Skip to content

Create Snapshot Copy Configuration

redshiftserverless_create_snapshot_copy_configuration R Documentation

Creates a snapshot copy configuration that lets you copy snapshots to another Amazon Web Services Region

Description

Creates a snapshot copy configuration that lets you copy snapshots to another Amazon Web Services Region.

Usage

redshiftserverless_create_snapshot_copy_configuration(
  destinationKmsKeyId, destinationRegion, namespaceName,
  snapshotRetentionPeriod)

Arguments

destinationKmsKeyId

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

destinationRegion

[required] The destination Amazon Web Services Region that you want to copy snapshots to.

namespaceName

[required] The name of the namespace to copy snapshots from.

snapshotRetentionPeriod

The retention period of the snapshots that you copy to the destination Amazon Web Services Region.

Value

A list with the following syntax:

list(
  snapshotCopyConfiguration = list(
    destinationKmsKeyId = "string",
    destinationRegion = "string",
    namespaceName = "string",
    snapshotCopyConfigurationArn = "string",
    snapshotCopyConfigurationId = "string",
    snapshotRetentionPeriod = 123
  )
)

Request syntax

svc$create_snapshot_copy_configuration(
  destinationKmsKeyId = "string",
  destinationRegion = "string",
  namespaceName = "string",
  snapshotRetentionPeriod = 123
)