Module AppConfig.ConfigurationProfile

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html

type validators = {
  1. type_ : string option;
  2. content : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-configurationprofile-validators.html

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

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

type properties = {
  1. location_uri : string;
  2. type_ : string option;
  3. kms_key_identifier : string option;
  4. description : string option;
  5. validators : validators list option;
  6. retrieval_role_arn : string option;
  7. application_id : string;
  8. tags : tags list option;
  9. name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html;

val make_properties : location_uri:string -> ?type_:string -> ?kms_key_identifier:string -> ?description:string -> ?validators:validators list -> ?retrieval_role_arn:string -> application_id:string -> ?tags:tags list -> name:string -> unit -> properties
val make_validators : ?type_:string -> ?content:string -> unit -> validators
val make_tags : ?value:string -> ?key:string -> unit -> tags
val yojson_of_validators : validators -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tags : tags -> [> `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. configuration_profile_id : string;
  3. kms_key_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string