Module Values.DescribeReplicatorResponseSource

Describes a replicator.

Sourcetype nonrec t = {
  1. creationTime : string option;
    (*

    The time when the replicator was created.

    *)
  2. currentVersion : string option;
    (*

    The current version number of the replicator.

    *)
  3. isReplicatorReference : bool option;
    (*

    Whether this resource is a replicator reference.

    *)
  4. kafkaClusters : KafkaClusterDescription.t list option;
    (*

    Kafka Clusters used in setting up sources / targets for replication.

    *)
  5. replicationInfoList : ReplicationInfoDescription.t list option;
    (*

    A list of replication configurations, where each configuration targets a given source cluster to target cluster replication flow.

    *)
  6. replicatorArn : string option;
    (*

    The Amazon Resource Name (ARN) of the replicator.

    *)
  7. replicatorDescription : string option;
    (*

    The description of the replicator.

    *)
  8. replicatorName : string option;
    (*

    The name of the replicator.

    *)
  9. replicatorResourceArn : string option;
    (*

    The Amazon Resource Name (ARN) of the replicator resource in the region where the replicator was created.

    *)
  10. replicatorState : ReplicatorState.t option;
    (*

    State of the replicator.

    *)
  11. serviceExecutionRoleArn : string option;
    (*

    The Amazon Resource Name (ARN) of the IAM role used by the replicator to access resources in the customer's account (e.g source and target clusters)

    *)
  12. stateInfo : ReplicationStateInfo.t option;
    (*

    Details about the state of the replicator.

    *)
  13. tags : (string * string) list option;
    (*

    List of tags attached to the Replicator.

    *)
  14. logDelivery : LogDelivery.t option;
    (*

    Configuration for log delivery.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `ForbiddenException of ForbiddenException.t
  3. | `InternalServerErrorException of InternalServerErrorException.t
  4. | `NotFoundException of NotFoundException.t
  5. | `ServiceUnavailableException of ServiceUnavailableException.t
  6. | `TooManyRequestsException of TooManyRequestsException.t
  7. | `UnauthorizedException of UnauthorizedException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?creationTime:??? -> ?currentVersion:??? -> ?isReplicatorReference:??? -> ?kafkaClusters:??? -> ?replicationInfoList:??? -> ?replicatorArn:??? -> ?replicatorDescription:??? -> ?replicatorName:??? -> ?replicatorResourceArn:??? -> ?replicatorState:??? -> ?serviceExecutionRoleArn:??? -> ?stateInfo:??? -> ?tags:??? -> ?logDelivery:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `TooManyRequestsException of TooManyRequestsException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `TooManyRequestsException of TooManyRequestsException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of string | `Structure of (string * [> `Boolean of bool | `Enum of string | `List of [> `String of string ] list | `String of string | `Structure of (string * [> `Enum of string | `String of string ]) list ]) list ]) list ] list | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string | `Structure of (string * [> `String of string | `Structure of (string * [> `Structure of (string * [> `Boolean of bool | `String of string ]) list ]) list ]) list | `Timestamp of string ]) 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