Module Values.GetResourceConfigurationResponseSource

Retrieves information about the specified 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 used to connect to the resource configuration in a given VPC. You can specify the resource gateway identifier only for resource configurations with type SINGLE, GROUP, or ARN.

    *)
  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. CHILD - A single resource that is part of a group resource configuration. ARN - An Amazon Web Services resource.

    *)
  7. allowAssociationToShareableServiceNetwork : Boolean.t option;
    (*

    Specifies whether the resource configuration is associated with a sharable service network.

    *)
  8. portRanges : PortRangeList.t option;
    (*

    The TCP port ranges that a consumer can use to access a resource configuration. You can separate port ranges with a comma. Example: 1-65535 or 1,2,22-30

    *)
  9. protocol : ProtocolType.t option;
    (*

    The TCP protocol accepted by the specified resource configuration.

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

    The custom domain name of the resource configuration.

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

    The status of the resource configuration.

    *)
  12. resourceConfigurationDefinition : ResourceConfigurationDefinition.t option;
    (*

    The resource configuration.

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

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

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

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

    *)
  15. failureReason : String_.t option;
    (*

    The reason the create-resource-configuration request failed.

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

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

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

    The domain verification ID.

    *)
  18. domainVerificationArn : DomainVerificationArn.t option;
    (*

    The ARN of the domain verification.

    *)
  19. domainVerificationStatus : VerificationStatus.t option;
    (*

    The domain verification status.

    *)
  20. 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.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?resourceGatewayId:??? -> ?resourceConfigurationGroupId:??? -> ?type_:??? -> ?allowAssociationToShareableServiceNetwork:??? -> ?portRanges:??? -> ?protocol:??? -> ?customDomainName:??? -> ?status:??? -> ?resourceConfigurationDefinition:??? -> ?createdAt:??? -> ?amazonManaged:??? -> ?failureReason:??? -> ?lastUpdatedAt:??? -> ?domainVerificationId:??? -> ?domainVerificationArn:??? -> ?domainVerificationStatus:??? -> ?groupDomain:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of PortRange.t ] list | `String of ResourceConfigurationId.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of DomainName.t ]) list ]) list | `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