Module DataZone.Environment

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

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

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

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

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

val make_properties : project_identifier:string -> ?user_parameters:environment_parameter list -> ?description:string -> environment_profile_identifier:string -> ?glossary_terms:string list -> 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. status : string;
  3. created_by : string;
  4. domain_id : string;
  5. environment_profile_id : string;
  6. aws_account_region : string;
  7. created_at : string;
  8. project_id : string;
  9. aws_account_id : string;
  10. environment_blueprint_id : string;
  11. id : string;
  12. updated_at : string;
  13. provider : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string