Module Values.ReplicationConfigurationTemplateSource

Creates a new ReplicationConfigurationTemplate.

Sourcetype nonrec t = {
  1. replicationConfigurationTemplateID : ReplicationConfigurationTemplateID.t option;
    (*

    The Replication Configuration Template ID.

    *)
  2. arn : ARN.t option;
    (*

    The Replication Configuration Template ARN.

    *)
  3. stagingAreaSubnetId : SubnetID.t option;
    (*

    The subnet to be used by the replication staging area.

    *)
  4. associateDefaultSecurityGroup : Boolean.t option;
    (*

    Whether to associate the default Elastic Disaster Recovery Security group with the Replication Configuration Template.

    *)
  5. replicationServersSecurityGroupsIDs : ReplicationServersSecurityGroupsIDs.t option;
    (*

    The security group IDs that will be used by the replication server.

    *)
  6. replicationServerInstanceType : EC2InstanceType.t option;
    (*

    The instance type to be used for the replication server.

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

    Whether to use a dedicated Replication Server in the replication staging area.

    *)
  8. defaultLargeStagingDiskType : ReplicationConfigurationDefaultLargeStagingDiskType.t option;
    (*

    The Staging Disk EBS volume type to be used during replication.

    *)
  9. ebsEncryption : ReplicationConfigurationEbsEncryption.t option;
    (*

    The type of EBS encryption to be used during replication.

    *)
  10. ebsEncryptionKeyArn : ARN.t option;
    (*

    The ARN of the EBS encryption key to be used during replication.

    *)
  11. bandwidthThrottling : PositiveInteger.t option;
    (*

    Configure bandwidth throttling for the outbound data transfer rate of the Source Server in Mbps.

    *)
  12. dataPlaneRouting : ReplicationConfigurationDataPlaneRouting.t option;
    (*

    The data plane routing mechanism that will be used for replication.

    *)
  13. createPublicIP : Boolean.t option;
    (*

    Whether to create a Public IP for the Recovery Instance by default.

    *)
  14. stagingAreaTags : TagsMap.t option;
    (*

    A set of tags to be associated with all resources created in the replication staging area: EC2 replication server, EBS volumes, EBS snapshots, etc.

    *)
  15. tags : TagsMap.t option;
    (*

    A set of tags to be associated with the Replication Configuration Template resource.

    *)
  16. pitPolicy : PITPolicy.t option;
    (*

    The Point in time (PIT) policy to manage snapshots taken during replication.

    *)
  17. autoReplicateNewDisks : Boolean.t option;
    (*

    Whether to allow the AWS replication agent to automatically replicate newly added disks.

    *)
  18. internetProtocol : InternetProtocol.t option;
    (*

    Which version of the Internet Protocol to use for replication of data. (IPv4 or IPv6)

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `UninitializedAccountException of UninitializedAccountException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?replicationConfigurationTemplateID:??? -> ?arn:??? -> ?stagingAreaSubnetId:??? -> ?associateDefaultSecurityGroup:??? -> ?replicationServersSecurityGroupsIDs:??? -> ?replicationServerInstanceType:??? -> ?useDedicatedReplicationServer:??? -> ?defaultLargeStagingDiskType:??? -> ?ebsEncryption:??? -> ?ebsEncryptionKeyArn:??? -> ?bandwidthThrottling:??? -> ?dataPlaneRouting:??? -> ?createPublicIP:??? -> ?stagingAreaTags:??? -> ?tags:??? -> ?pitPolicy:??? -> ?autoReplicateNewDisks:??? -> ?internetProtocol:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `UninitializedAccountException of UninitializedAccountException.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 | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `UninitializedAccountException of UninitializedAccountException.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 SecurityGroupID.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of StrictlyPositiveInteger.t | `Long of PositiveInteger.t ]) list ] list | `Long of PositiveInteger.t | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ReplicationConfigurationTemplateID.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