Module Values.EnvironmentSummarySource

The details of an environment.

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

    The identifier of the project in which the environment exists.

    *)
  2. id : EnvironmentId.t option;
    (*

    The identifier of the environment.

    *)
  3. domainId : DomainId.t option;
    (*

    The identifier of the Amazon DataZone domain in which the environment exists.

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

    The Amazon DataZone user who created the environment.

    *)
  5. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp of when the environment was created.

    *)
  6. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp of when the environment was updated.

    *)
  7. name : EnvironmentName.t option;
    (*

    The name of the environment.

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

    The description of the environment.

    *)
  9. environmentProfileId : EnvironmentProfileId.t option;
    (*

    The identifier of the environment profile with which the environment was created.

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

    The identifier of the Amazon Web Services account in which an environment exists.

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

    The Amazon Web Services Region in which an environment exists.

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

    The provider of the environment.

    *)
  13. status : EnvironmentStatus.t option;
    (*

    The status of the environment.

    *)
  14. environmentConfigurationId : EnvironmentConfigurationId.t option;
    (*

    The configuration ID with which the environment is created.

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

    The configuration name with which the environment is created.

    *)
}
Sourceval make : ?projectId:??? -> ?id:??? -> ?domainId:??? -> ?createdBy:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?name:??? -> ?description:??? -> ?environmentProfileId:??? -> ?awsAccountId:??? -> ?awsAccountRegion:??? -> ?provider:??? -> ?status:??? -> ?environmentConfigurationId:??? -> ?environmentConfigurationName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ProjectId.t | `Timestamp of SyntheticTimestamp_date_time.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