SecretsManager.Secret
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html
type generate_secret_string = {
exclude_uppercase : bool option;
require_each_included_type : bool option;
include_space : bool option;
exclude_characters : string option;
generate_string_key : string option;
password_length : int option;
exclude_punctuation : bool option;
exclude_lowercase : bool option;
secret_string_template : string option;
exclude_numbers : bool option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-replicaregion.html
type properties = {
description : string option;
kms_key_id : string option;
secret_string : string option;
generate_secret_string : generate_secret_string option;
replica_regions : replica_region list option;
name : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html;
val make_properties :
?description:string ->
?kms_key_id:string ->
?secret_string:string ->
?generate_secret_string:generate_secret_string ->
?replica_regions:replica_region list ->
?tags:tag list ->
?name:string ->
unit ->
properties
val make_generate_secret_string :
?exclude_uppercase:bool ->
?require_each_included_type:bool ->
?include_space:bool ->
?exclude_characters:string ->
?generate_string_key:string ->
?password_length:int ->
?exclude_punctuation:bool ->
?exclude_lowercase:bool ->
?secret_string_template:string ->
?exclude_numbers:bool ->
unit ->
generate_secret_string
val make_tag : value:string -> key:string -> unit -> tag
val make_replica_region :
?kms_key_id:string ->
region:string ->
unit ->
replica_region
val yojson_of_generate_secret_string :
generate_secret_string ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_replica_region :
replica_region ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes