Module Values.SnapshotCopyConfigurationSource

The object that you configure to copy snapshots from one namespace to a namespace in another Amazon Web Services Region.

Sourcetype nonrec t = {
  1. destinationKmsKeyId : KmsKeyId.t option;
    (*

    The ID of the KMS key to use to encrypt your snapshots in the destination Amazon Web Services Region.

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

    The destination Amazon Web Services Region to copy snapshots to.

    *)
  3. namespaceName : NamespaceName.t option;
    (*

    The name of the namespace to copy snapshots from in the source Amazon Web Services Region.

    *)
  4. snapshotCopyConfigurationArn : String_.t option;
    (*

    The ARN of the snapshot copy configuration object.

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

    The ID of the snapshot copy configuration object.

    *)
  6. snapshotRetentionPeriod : Integer.t option;
    (*

    The retention period of snapshots that are copied to the destination Amazon Web Services Region.

    *)
}
Sourceval make : ?destinationKmsKeyId:??? -> ?destinationRegion:??? -> ?namespaceName:??? -> ?snapshotCopyConfigurationArn:??? -> ?snapshotCopyConfigurationId:??? -> ?snapshotRetentionPeriod:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of KmsKeyId.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