Module DataZone.EnvironmentProfile

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentprofile.html

type environment_parameter = {
  1. value : string option;
  2. name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentprofile-environmentparameter.html

type properties = {
  1. project_identifier : string;
  2. user_parameters : environment_parameter list option;
  3. description : string option;
  4. aws_account_region : string;
  5. aws_account_id : string;
  6. environment_blueprint_identifier : string;
  7. name : string;
  8. domain_identifier : string;
}

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

val make_properties : project_identifier:string -> ?user_parameters:environment_parameter list -> ?description:string -> aws_account_region:string -> aws_account_id:string -> environment_blueprint_identifier:string -> name:string -> domain_identifier:string -> unit -> properties
val make_environment_parameter : ?value:string -> ?name:string -> unit -> environment_parameter
val yojson_of_environment_parameter : environment_parameter -> [> `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. created_by : string;
  3. domain_id : string;
  4. created_at : string;
  5. project_id : string;
  6. environment_blueprint_id : string;
  7. id : string;
  8. updated_at : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string