Module Values.CreateEnvironmentInputSource

Create an Amazon DataZone environment.

Sourcetype nonrec t = {
  1. projectIdentifier : ProjectId.t;
    (*

    The identifier of the Amazon DataZone project in which this environment is created.

    *)
  2. domainIdentifier : DomainId.t;
    (*

    The identifier of the Amazon DataZone domain in which the environment is created.

    *)
  3. description : String_.t option;
    (*

    The description of the Amazon DataZone environment.

    *)
  4. name : String_.t;
    (*

    The name of the Amazon DataZone environment.

    *)
  5. environmentProfileIdentifier : EnvironmentProfileId.t option;
    (*

    The identifier of the environment profile that is used to create this Amazon DataZone environment.

    *)
  6. userParameters : EnvironmentParametersList.t option;
    (*

    The user parameters of this Amazon DataZone environment.

    *)
  7. glossaryTerms : GlossaryTerms.t option;
    (*

    The glossary terms that can be used in this Amazon DataZone environment.

    *)
  8. environmentAccountIdentifier : String_.t option;
    (*

    The ID of the account in which the environment is being created.

    *)
  9. environmentAccountRegion : String_.t option;
    (*

    The region of the account in which the environment is being created.

    *)
  10. environmentBlueprintIdentifier : String_.t option;
    (*

    The ID of the blueprint with which the environment is being created.

    *)
  11. deploymentOrder : Integer.t option;
    (*

    The deployment order of the environment.

    *)
  12. environmentConfigurationId : String_.t option;
    (*

    The configuration ID of the environment.

    *)
  13. environmentConfigurationName : EnvironmentConfigurationName.t option;
    (*

    The configuration name of the environment.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?environmentProfileIdentifier:??? -> ?userParameters:??? -> ?glossaryTerms:??? -> ?environmentAccountIdentifier:??? -> ?environmentAccountRegion:??? -> ?environmentBlueprintIdentifier:??? -> ?deploymentOrder:??? -> ?environmentConfigurationId:??? -> ?environmentConfigurationName:??? -> projectIdentifier:ProjectId.t -> domainIdentifier:DomainId.t -> name:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `String of GlossaryTermId.t | `Structure of (string * [> `String of String_.t ]) list ] list | `String of ProjectId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t