Module Values.UpdateEnvironmentProfileInputSource

Updates the specified environment profile in Amazon DataZone.

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

    The identifier of the Amazon DataZone domain in which an environment profile is to be updated.

    *)
  2. identifier : EnvironmentProfileId.t;
    (*

    The identifier of the environment profile that is to be updated.

    *)
  3. name : EnvironmentProfileName.t option;
    (*

    The name to be updated as part of the UpdateEnvironmentProfile action.

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

    The description to be updated as part of the UpdateEnvironmentProfile action.

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

    The user parameters to be updated as part of the UpdateEnvironmentProfile action.

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

    The Amazon Web Services account in which a specified environment profile is to be udpated.

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

    The Amazon Web Services Region in which a specified environment profile is to be updated.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?userParameters:??? -> ?awsAccountId:??? -> ?awsAccountRegion:??? -> domainIdentifier:DomainId.t -> identifier:EnvironmentProfileId.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