Module Values.CreateEnvironmentProfileInputSource

Creates an Amazon DataZone environment profile.

Sourcetype nonrec t = {
  1. domainIdentifier : DomainId.t;
    (*

    The ID of the Amazon DataZone domain in which this environment profile is created.

    *)
  2. name : EnvironmentProfileName.t;
    (*

    The name of this Amazon DataZone environment profile.

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

    The description of this Amazon DataZone environment profile.

    *)
  4. environmentBlueprintIdentifier : EnvironmentBlueprintId.t;
    (*

    The ID of the blueprint with which this environment profile is created.

    *)
  5. projectIdentifier : ProjectId.t;
    (*

    The identifier of the project in which to create the environment profile.

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

    The user parameters of this Amazon DataZone environment profile.

    *)
  7. awsAccountId : AwsAccountId.t option;
    (*

    The Amazon Web Services account in which the Amazon DataZone environment is created.

    *)
  8. awsAccountRegion : AwsRegion.t option;
    (*

    The Amazon Web Services region in which this environment profile is created.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?userParameters:??? -> ?awsAccountId:??? -> ?awsAccountRegion:??? -> domainIdentifier:DomainId.t -> name:EnvironmentProfileName.t -> environmentBlueprintIdentifier:EnvironmentBlueprintId.t -> projectIdentifier:ProjectId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of DomainId.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