Module SecretsManager.Secret

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html

type generate_secret_string = {
  1. exclude_uppercase : bool option;
  2. require_each_included_type : bool option;
  3. include_space : bool option;
  4. exclude_characters : string option;
  5. generate_string_key : string option;
  6. password_length : int option;
  7. exclude_punctuation : bool option;
  8. exclude_lowercase : bool option;
  9. secret_string_template : string option;
  10. exclude_numbers : bool option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-generatesecretstring.html

and tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and replica_region = {
  1. kms_key_id : string option;
  2. region : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-secret-replicaregion.html

type properties = {
  1. description : string option;
  2. kms_key_id : string option;
  3. secret_string : string option;
  4. generate_secret_string : generate_secret_string option;
  5. replica_regions : replica_region list option;
  6. tags : tag list option;
  7. 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 ]
type attributes = {
  1. ref_ : string;
  2. id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string