Module Values.CreateSnapshotMessageSource

Represents the input of a CreateSnapshot operation.

Sourcetype nonrec t = {
  1. replicationGroupId : String_.t option;
    (*

    The identifier of an existing replication group. The snapshot is created from this replication group.

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

    The identifier of an existing cluster. The snapshot is created from this cluster.

    *)
  3. snapshotName : String_.t;
    (*

    A name for the snapshot being created. This value is stored as a lowercase string.

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

    The ID of the KMS key used to encrypt the snapshot.

    *)
  5. tags : TagList.t option;
    (*

    A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.

    *)
}
Sourceval context_ : string
Sourceval make : ?replicationGroupId:??? -> ?cacheClusterId:??? -> ?kmsKeyId:??? -> ?tags:??? -> snapshotName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.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