Module Values.CreateSnapshotCopyGrantMessageSource

The result of the CreateSnapshotCopyGrant action.

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

    The name of the snapshot copy grant. This name must be unique in the region for the Amazon Web Services account. Constraints: Must contain from 1 to 63 alphanumeric characters or hyphens. Alphabetic characters must be lowercase. First character must be a letter. Cannot end with a hyphen or contain two consecutive hyphens. Must be unique for all clusters within an Amazon Web Services account.

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

    The unique identifier of the encrypted symmetric key to which to grant Amazon Redshift permission. If no key is specified, the default key is used.

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

    A list of tag instances.

    *)
}
Sourceval context_ : string
Sourceval make : ?kmsKeyId:??? -> ?tags:??? -> snapshotCopyGrantName: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