Module Values.GetConnectorV2ResponseSource

Grants permission to retrieve details for a connectorV2 based on connector id.

Sourcetype nonrec t = {
  1. connectorArn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the connectorV2.

    *)
  2. connectorId : NonEmptyString.t option;
    (*

    The UUID of the connectorV2 to identify connectorV2 resource.

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

    The name of the connectorV2.

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

    The description of the connectorV2.

    *)
  5. kmsKeyArn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of KMS key used for the connectorV2.

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

    ISO 8601 UTC timestamp for the time create the connectorV2.

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

    ISO 8601 UTC timestamp for the time update the connectorV2 connectorStatus.

    *)
  8. health : HealthCheck.t option;
    (*

    The current health status for connectorV2

    *)
  9. providerDetail : ProviderDetail.t option;
    (*

    The third-party provider detail for a service configuration.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?connectorArn:??? -> ?connectorId:??? -> ?name:??? -> ?description:??? -> ?kmsKeyArn:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?health:??? -> ?providerDetail:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.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 | `ConflictException of ConflictException.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 * [> `String of NonEmptyString.t | `Structure of (string * [> `Enum of string | `String of NonEmptyString.t | `Structure of (string * [> `Enum of string | `String of NonEmptyString.t ]) list | `Timestamp of Timestamp.t ]) 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