Module Values.UpdateEnvironmentInputSource

Updates the specified environment in Amazon DataZone.

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

    The identifier of the domain in which the environment is to be updated.

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

    The identifier of the environment that is to be updated.

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

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

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

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

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

    The glossary terms to be updated as part of the UpdateEnvironment action.

    *)
  6. blueprintVersion : String_.t option;
    (*

    The blueprint version to which the environment should be updated. You can only specify the following string for this parameter: latest.

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

    The user parameters of the environment.

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

    The configuration name of the environment.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?glossaryTerms:??? -> ?blueprintVersion:??? -> ?userParameters:??? -> ?environmentConfigurationName:??? -> domainIdentifier:DomainId.t -> identifier:EnvironmentId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of GlossaryTermId.t | `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