Module Values.ResourceConfigurationSummarySource

Summary information about a resource configuration.

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

    The ID of the resource configuration.

    *)
  2. name : ResourceConfigurationName.t option;
    (*

    The name of the resource configuration.

    *)
  3. arn : ResourceConfigurationArn.t option;
    (*

    The Amazon Resource Name (ARN) of the resource configuration.

    *)
  4. resourceGatewayId : ResourceGatewayId.t option;
    (*

    The ID of the resource gateway.

    *)
  5. resourceConfigurationGroupId : ResourceConfigurationId.t option;
    (*

    The ID of the group resource configuration.

    *)
  6. type_ : ResourceConfigurationType.t option;
    (*

    The type of resource configuration. SINGLE - A single resource. GROUP - A group of resources. You must create a group resource configuration before you create a child resource configuration. CHILD - A single resource that is part of a group resource configuration. ARN - An Amazon Web Services resource.

    *)
  7. status : ResourceConfigurationStatus.t option;
    (*

    The status of the resource configuration.

    *)
  8. amazonManaged : Boolean.t option;
    (*

    Indicates whether the resource configuration was created and is managed by Amazon.

    *)
  9. createdAt : Timestamp.t option;
    (*

    The date and time that the resource configuration was created, in ISO-8601 format.

    *)
  10. lastUpdatedAt : Timestamp.t option;
    (*

    The most recent date and time that the resource configuration was updated, in ISO-8601 format.

    *)
  11. customDomainName : DomainName.t option;
    (*

    The custom domain name.

    *)
  12. domainVerificationId : DomainVerificationId.t option;
    (*

    The domain verification ID.

    *)
  13. groupDomain : DomainName.t option;
    (*

    (GROUP) The group domain for a group resource configuration. Any domains that you create for the child resource are subdomains of the group domain. Child resources inherit the verification status of the domain.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?resourceGatewayId:??? -> ?resourceConfigurationGroupId:??? -> ?type_:??? -> ?status:??? -> ?amazonManaged:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?customDomainName:??? -> ?domainVerificationId:??? -> ?groupDomain:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of ResourceConfigurationId.t | `Timestamp of Timestamp.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