Create Snapshot Copy Grant
redshift_create_snapshot_copy_grant | R Documentation |
Creates a snapshot copy grant that permits Amazon Redshift to use an encrypted symmetric key from Key Management Service (KMS) to encrypt copied snapshots in a destination region¶
Description¶
Creates a snapshot copy grant that permits Amazon Redshift to use an encrypted symmetric key from Key Management Service (KMS) to encrypt copied snapshots in a destination region.
For more information about managing snapshot copy grants, go to Amazon Redshift Database Encryption in the Amazon Redshift Cluster Management Guide.
Usage¶
redshift_create_snapshot_copy_grant(SnapshotCopyGrantName, KmsKeyId,
Tags)
Arguments¶
SnapshotCopyGrantName |
[required] The name of the snapshot copy grant. This name must be unique in the region for the Amazon Web Services account. Constraints:
|
KmsKeyId |
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. |
Tags |
A list of tag instances. |
Value¶
A list with the following syntax:
list(
SnapshotCopyGrant = list(
SnapshotCopyGrantName = "string",
KmsKeyId = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
)
Request syntax¶
svc$create_snapshot_copy_grant(
SnapshotCopyGrantName = "string",
KmsKeyId = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)