1**To disable snapshot copy for a cluster**
2
3The following ``disable-snapshot-copy`` example disables the automatic copy of a snapshot for the specified cluster. ::
4
5    aws redshift disable-snapshot-copy \
6        --cluster-identifier mycluster
7
8Output::
9
10    {
11        "Cluster": {
12            "ClusterIdentifier": "mycluster",
13            "NodeType": "dc2.large",
14            "ClusterStatus": "available",
15            "ClusterAvailabilityStatus": "Available",
16            "MasterUsername": "adminuser",
17            "DBName": "dev",
18            "Endpoint": {
19                "Address": "mycluster.cmeaswqeuae.us-west-2.redshift.amazonaws.com",
20                "Port": 5439
21            },
22            "ClusterCreateTime": "2019-12-05T18:44:36.991Z",
23            "AutomatedSnapshotRetentionPeriod": 3,
24            "ManualSnapshotRetentionPeriod": -1,
25            "ClusterSecurityGroups": [],
26            "VpcSecurityGroups": [
27                {
28                    "VpcSecurityGroupId": "sh-i9b431cd",
29                    "Status": "active"
30                }
31            ],
32            "ClusterParameterGroups": [
33                {
34                    "ParameterGroupName": "default.redshift-1.0",
35                    "ParameterApplyStatus": "in-sync"
36                }
37            ],
38            "ClusterSubnetGroupName": "default",
39            "VpcId": "vpc-b1fel7t9",
40            "AvailabilityZone": "us-west-2f",
41            "PreferredMaintenanceWindow": "sat:16:00-sat:16:30",
42            "PendingModifiedValues": {
43                "NodeType": "dc2.large",
44                "NumberOfNodes": 2,
45                "ClusterType": "multi-node"
46            },
47            "ClusterVersion": "1.0",
48            "AllowVersionUpgrade": true,
49            "NumberOfNodes": 4,
50            "PubliclyAccessible": false,
51            "Encrypted": false,
52            "Tags": [
53                {
54                    "Key": "mytags",
55                    "Value": "tag1"
56                }
57            ],
58            "EnhancedVpcRouting": false,
59            "IamRoles": [
60                {
61                    "IamRoleArn": "arn:aws:iam::123456789012:role/myRedshiftRole",
62                    "ApplyStatus": "in-sync"
63                }
64            ],
65            "MaintenanceTrackName": "current",
66            "DeferredMaintenanceWindows": [],
67            "ExpectedNextSnapshotScheduleTime": "2019-12-10T04:42:43.390Z",
68            "ExpectedNextSnapshotScheduleTimeStatus": "OnTrack",
69            "NextMaintenanceWindowStartTime": "2019-12-14T16:00:00Z"
70        }
71    }
72
73For more information, see `Copying Snapshots to Another AWS Region <https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html#cross-region-snapshot-copy>`__ in the *Amazon Redshift Cluster Management Guide*.
74