Module Values.GetIntegrationOutputSource

Retrieves information about an integration.

Sourcetype nonrec t = {
  1. integrationId : IntegrationId.t option;
    (*

    The unique identifier of the integration.

    *)
  2. installationId : String_.t option;
    (*

    The installation identifier from the integration provider.

    *)
  3. provider : Provider.t option;
    (*

    The integration provider.

    *)
  4. providerType : ProviderType.t option;
    (*

    The type of the integration provider.

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

    The display name of the integration.

    *)
  6. kmsKeyId : KmsKeyId.t option;
    (*

    The identifier of the AWS KMS key used to encrypt data associated with the integration.

    *)
}
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 : ?integrationId:??? -> ?installationId:??? -> ?provider:??? -> ?providerType:??? -> ?displayName:??? -> ?kmsKeyId:??? -> 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 * [> `Enum of string | `String of IntegrationId.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