Module Values.EnvironmentProfileSummarySource

The details of an environment profile.

Sourcetype nonrec t = {
  1. id : EnvironmentProfileId.t option;
    (*

    The identifier of the environment profile.

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

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

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

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

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

    The Amazon Web Services Region in which an environment profile exists.

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

    The Amazon DataZone user who created the environment profile.

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

    The timestamp of when an environment profile was created.

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

    The timestamp of when the environment profile was updated.

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

    The name of the environment profile.

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

    The description of the environment profile.

    *)
  10. environmentBlueprintId : EnvironmentBlueprintId.t option;
    (*

    The identifier of a blueprint with which an environment profile is created.

    *)
  11. projectId : ProjectId.t option;
    (*

    The identifier of a project in which an environment profile exists.

    *)
}
Sourceval make : ?id:??? -> ?domainId:??? -> ?awsAccountId:??? -> ?awsAccountRegion:??? -> ?createdBy:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?name:??? -> ?description:??? -> ?environmentBlueprintId:??? -> ?projectId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of EnvironmentProfileId.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