Amazon Redshift

2021/11/23 - Amazon Redshift - 2 new 19 updated api methods

Changes  This release adds support for reserved node exchange with restore/resize

GetReservedNodeExchangeConfigurationOptions (new) Link ¶

Gets the configuration options for the reserved-node exchange. These options include information about the source reserved node and target reserved node offering. Details include the node type, the price, the node count, and the offering type.

See also: AWS API Documentation

Request Syntax

client.get_reserved_node_exchange_configuration_options(
    ActionType='restore-cluster'|'resize-cluster',
    ClusterIdentifier='string',
    SnapshotIdentifier='string',
    MaxRecords=123,
    Marker='string'
)
type ActionType

string

param ActionType

[REQUIRED]

The action type of the reserved-node configuration. The action type can be an exchange initiated from either a snapshot or a resize.

type ClusterIdentifier

string

param ClusterIdentifier

The identifier for the cluster that is the source for a reserved-node exchange.

type SnapshotIdentifier

string

param SnapshotIdentifier

The identifier for the snapshot that is the source for the reserved-node exchange.

type MaxRecords

integer

param MaxRecords

The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a Marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

type Marker

string

param Marker

An optional pagination token provided by a previous GetReservedNodeExchangeConfigurationOptions request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by the MaxRecords parameter. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

rtype

dict

returns

Response Syntax

{
    'Marker': 'string',
    'ReservedNodeConfigurationOptionList': [
        {
            'SourceReservedNode': {
                'ReservedNodeId': 'string',
                'ReservedNodeOfferingId': 'string',
                'NodeType': 'string',
                'StartTime': datetime(2015, 1, 1),
                'Duration': 123,
                'FixedPrice': 123.0,
                'UsagePrice': 123.0,
                'CurrencyCode': 'string',
                'NodeCount': 123,
                'State': 'string',
                'OfferingType': 'string',
                'RecurringCharges': [
                    {
                        'RecurringChargeAmount': 123.0,
                        'RecurringChargeFrequency': 'string'
                    },
                ],
                'ReservedNodeOfferingType': 'Regular'|'Upgradable'
            },
            'TargetReservedNodeCount': 123,
            'TargetReservedNodeOffering': {
                'ReservedNodeOfferingId': 'string',
                'NodeType': 'string',
                'Duration': 123,
                'FixedPrice': 123.0,
                'UsagePrice': 123.0,
                'CurrencyCode': 'string',
                'OfferingType': 'string',
                'RecurringCharges': [
                    {
                        'RecurringChargeAmount': 123.0,
                        'RecurringChargeFrequency': 'string'
                    },
                ],
                'ReservedNodeOfferingType': 'Regular'|'Upgradable'
            }
        },
    ]
}

Response Structure

  • (dict) --

    • Marker (string) --

      A pagination token provided by a previous GetReservedNodeExchangeConfigurationOptions request.

    • ReservedNodeConfigurationOptionList (list) --

      the configuration options for the reserved-node exchange. These options include information about the source reserved node and target reserved node. Details include the node type, the price, the node count, and the offering type.

      • (dict) --

        Details for a reserved-node exchange. Examples include the node type for a reserved node, the price for a node, the node's state, and other details.

        • SourceReservedNode (dict) --

          Describes a reserved node. You can call the DescribeReservedNodeOfferings API to obtain the available reserved node offerings.

          • ReservedNodeId (string) --

            The unique identifier for the reservation.

          • ReservedNodeOfferingId (string) --

            The identifier for the reserved node offering.

          • NodeType (string) --

            The node type of the reserved node.

          • StartTime (datetime) --

            The time the reservation started. You purchase a reserved node offering for a duration. This is the start time of that duration.

          • Duration (integer) --

            The duration of the node reservation in seconds.

          • FixedPrice (float) --

            The fixed cost Amazon Redshift charges you for this reserved node.

          • UsagePrice (float) --

            The hourly rate Amazon Redshift charges you for this reserved node.

          • CurrencyCode (string) --

            The currency code for the reserved cluster.

          • NodeCount (integer) --

            The number of reserved compute nodes.

          • State (string) --

            The state of the reserved compute node.

            Possible Values:

            • pending-payment-This reserved node has recently been purchased, and the sale has been approved, but payment has not yet been confirmed.

            • active-This reserved node is owned by the caller and is available for use.

            • payment-failed-Payment failed for the purchase attempt.

            • retired-The reserved node is no longer available.

            • exchanging-The owner is exchanging the reserved node for another reserved node.

          • OfferingType (string) --

            The anticipated utilization of the reserved node, as defined in the reserved node offering.

          • RecurringCharges (list) --

            The recurring charges for the reserved node.

            • (dict) --

              Describes a recurring charge.

              • RecurringChargeAmount (float) --

                The amount charged per the period of time specified by the recurring charge frequency.

              • RecurringChargeFrequency (string) --

                The frequency at which the recurring charge amount is applied.

          • ReservedNodeOfferingType (string) --

        • TargetReservedNodeCount (integer) --

          The target reserved-node count.

        • TargetReservedNodeOffering (dict) --

          Describes a reserved node offering.

          • ReservedNodeOfferingId (string) --

            The offering identifier.

          • NodeType (string) --

            The node type offered by the reserved node offering.

          • Duration (integer) --

            The duration, in seconds, for which the offering will reserve the node.

          • FixedPrice (float) --

            The upfront fixed charge you will pay to purchase the specific reserved node offering.

          • UsagePrice (float) --

            The rate you are charged for each hour the cluster that is using the offering is running.

          • CurrencyCode (string) --

            The currency code for the compute nodes offering.

          • OfferingType (string) --

            The anticipated utilization of the reserved node, as defined in the reserved node offering.

          • RecurringCharges (list) --

            The charge to your account regardless of whether you are creating any clusters using the node offering. Recurring charges are only in effect for heavy-utilization reserved nodes.

            • (dict) --

              Describes a recurring charge.

              • RecurringChargeAmount (float) --

                The amount charged per the period of time specified by the recurring charge frequency.

              • RecurringChargeFrequency (string) --

                The frequency at which the recurring charge amount is applied.

          • ReservedNodeOfferingType (string) --

DescribeReservedNodeExchangeStatus (new) Link ¶

Returns exchange status details and associated metadata for a reserved-node exchange. Statuses include such values as in progress and requested.

See also: AWS API Documentation

Request Syntax

client.describe_reserved_node_exchange_status(
    ReservedNodeId='string',
    ReservedNodeExchangeRequestId='string',
    MaxRecords=123,
    Marker='string'
)
type ReservedNodeId

string

param ReservedNodeId

The identifier of the source reserved node in a reserved-node exchange request.

type ReservedNodeExchangeRequestId

string

param ReservedNodeExchangeRequestId

The identifier of the reserved-node exchange request.

type MaxRecords

integer

param MaxRecords

The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a Marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

type Marker

string

param Marker

An optional pagination token provided by a previous DescribeReservedNodeExchangeStatus request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by the MaxRecords parameter. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

rtype

dict

returns

Response Syntax

{
    'ReservedNodeExchangeStatusDetails': [
        {
            'ReservedNodeExchangeRequestId': 'string',
            'Status': 'REQUESTED'|'PENDING'|'IN_PROGRESS'|'RETRYING'|'SUCCEEDED'|'FAILED',
            'RequestTime': datetime(2015, 1, 1),
            'SourceReservedNodeId': 'string',
            'SourceReservedNodeType': 'string',
            'SourceReservedNodeCount': 123,
            'TargetReservedNodeOfferingId': 'string',
            'TargetReservedNodeType': 'string',
            'TargetReservedNodeCount': 123
        },
    ],
    'Marker': 'string'
}

Response Structure

  • (dict) --

    • ReservedNodeExchangeStatusDetails (list) --

      The details of the reserved-node exchange request, including the status, request time, source reserved-node identifier, and additional details.

      • (dict) --

        Reserved-node status details, such as the source reserved-node identifier, the target reserved-node identifier, the node type, the node count, and other details.

        • ReservedNodeExchangeRequestId (string) --

          The identifier of the reserved-node exchange request.

        • Status (string) --

          The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • RequestTime (datetime) --

          A date and time that indicate when the reserved-node exchange was requested.

        • SourceReservedNodeId (string) --

          The identifier of the source reserved node.

        • SourceReservedNodeType (string) --

          The source reserved-node type, for example ds2.xlarge.

        • SourceReservedNodeCount (integer) --

          The source reserved-node count in the cluster.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

        • TargetReservedNodeType (string) --

          The node type of the target reserved node, for example ra3.4xlarge.

        • TargetReservedNodeCount (integer) --

          The count of target reserved nodes in the cluster.

    • Marker (string) --

      A pagination token provided by a previous DescribeReservedNodeExchangeStatus request.

CreateCluster (updated) Link ¶
Changes (response)
{'Cluster': {'ReservedNodeExchangeStatus': {'RequestTime': 'timestamp',
                                            'ReservedNodeExchangeRequestId': 'string',
                                            'SourceReservedNodeCount': 'integer',
                                            'SourceReservedNodeId': 'string',
                                            'SourceReservedNodeType': 'string',
                                            'Status': 'REQUESTED | PENDING | '
                                                      'IN_PROGRESS | RETRYING '
                                                      '| SUCCEEDED | FAILED',
                                            'TargetReservedNodeCount': 'integer',
                                            'TargetReservedNodeOfferingId': 'string',
                                            'TargetReservedNodeType': 'string'}}}

Creates a new cluster with the specified parameters.

To create a cluster in Virtual Private Cloud (VPC), you must provide a cluster subnet group name. The cluster subnet group identifies the subnets of your VPC that Amazon Redshift uses when creating the cluster. For more information about managing clusters, go to Amazon Redshift Clusters in the Amazon Redshift Cluster Management Guide .

See also: AWS API Documentation

Request Syntax

client.create_cluster(
    DBName='string',
    ClusterIdentifier='string',
    ClusterType='string',
    NodeType='string',
    MasterUsername='string',
    MasterUserPassword='string',
    ClusterSecurityGroups=[
        'string',
    ],
    VpcSecurityGroupIds=[
        'string',
    ],
    ClusterSubnetGroupName='string',
    AvailabilityZone='string',
    PreferredMaintenanceWindow='string',
    ClusterParameterGroupName='string',
    AutomatedSnapshotRetentionPeriod=123,
    ManualSnapshotRetentionPeriod=123,
    Port=123,
    ClusterVersion='string',
    AllowVersionUpgrade=True|False,
    NumberOfNodes=123,
    PubliclyAccessible=True|False,
    Encrypted=True|False,
    HsmClientCertificateIdentifier='string',
    HsmConfigurationIdentifier='string',
    ElasticIp='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ],
    KmsKeyId='string',
    EnhancedVpcRouting=True|False,
    AdditionalInfo='string',
    IamRoles=[
        'string',
    ],
    MaintenanceTrackName='string',
    SnapshotScheduleIdentifier='string',
    AvailabilityZoneRelocation=True|False,
    AquaConfigurationStatus='enabled'|'disabled'|'auto',
    DefaultIamRoleArn='string'
)
type DBName

string

param DBName

The name of the first database to be created when the cluster is created.

To create additional databases after the cluster is created, connect to the cluster with a SQL client and use SQL commands to create a database. For more information, go to Create a Database in the Amazon Redshift Database Developer Guide.

Default: dev

Constraints:

  • Must contain 1 to 64 alphanumeric characters.

  • Must contain only lowercase letters.

  • Cannot be a word that is reserved by the service. A list of reserved words can be found in Reserved Words in the Amazon Redshift Database Developer Guide.

type ClusterIdentifier

string

param ClusterIdentifier

[REQUIRED]

A unique identifier for the cluster. You use this identifier to refer to the cluster for any subsequent cluster operations such as deleting or modifying. The identifier also appears in the Amazon Redshift console.

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.

Example: myexamplecluster

type ClusterType

string

param ClusterType

The type of the cluster. When cluster type is specified as

  • single-node , the NumberOfNodes parameter is not required.

  • multi-node , the NumberOfNodes parameter is required.

Valid Values: multi-node | single-node

Default: multi-node

type NodeType

string

param NodeType

[REQUIRED]

The node type to be provisioned for the cluster. For information about node types, go to Working with Clusters in the Amazon Redshift Cluster Management Guide .

Valid Values: ds2.xlarge | ds2.8xlarge | dc1.large | dc1.8xlarge | dc2.large | dc2.8xlarge | ra3.xlplus | ra3.4xlarge | ra3.16xlarge

type MasterUsername

string

param MasterUsername

[REQUIRED]

The user name associated with the admin user account for the cluster that is being created.

Constraints:

  • Must be 1 - 128 alphanumeric characters. The user name can't be PUBLIC .

  • First character must be a letter.

  • Cannot be a reserved word. A list of reserved words can be found in Reserved Words in the Amazon Redshift Database Developer Guide.

type MasterUserPassword

string

param MasterUserPassword

[REQUIRED]

The password associated with the admin user account for the cluster that is being created.

Constraints:

  • Must be between 8 and 64 characters in length.

  • Must contain at least one uppercase letter.

  • Must contain at least one lowercase letter.

  • Must contain one number.

  • Can be any printable ASCII character (ASCII code 33 to 126) except ' (single quote), " (double quote), , /, @, or space.

type ClusterSecurityGroups

list

param ClusterSecurityGroups

A list of security groups to be associated with this cluster.

Default: The default cluster security group for Amazon Redshift.

  • (string) --

type VpcSecurityGroupIds

list

param VpcSecurityGroupIds

A list of Virtual Private Cloud (VPC) security groups to be associated with the cluster.

Default: The default VPC security group is associated with the cluster.

  • (string) --

type ClusterSubnetGroupName

string

param ClusterSubnetGroupName

The name of a cluster subnet group to be associated with this cluster.

If this parameter is not provided the resulting cluster will be deployed outside virtual private cloud (VPC).

type AvailabilityZone

string

param AvailabilityZone

The EC2 Availability Zone (AZ) in which you want Amazon Redshift to provision the cluster. For example, if you have several EC2 instances running in a specific Availability Zone, then you might want the cluster to be provisioned in the same zone in order to decrease network latency.

Default: A random, system-chosen Availability Zone in the region that is specified by the endpoint.

Example: us-east-2d

Constraint: The specified Availability Zone must be in the same region as the current endpoint.

type PreferredMaintenanceWindow

string

param PreferredMaintenanceWindow

The weekly time range (in UTC) during which automated cluster maintenance can occur.

Format: ddd:hh24:mi-ddd:hh24:mi

Default: A 30-minute window selected at random from an 8-hour block of time per region, occurring on a random day of the week. For more information about the time blocks for each region, see Maintenance Windows in Amazon Redshift Cluster Management Guide.

Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun

Constraints: Minimum 30-minute window.

type ClusterParameterGroupName

string

param ClusterParameterGroupName

The name of the parameter group to be associated with this cluster.

Default: The default Amazon Redshift cluster parameter group. For information about the default parameter group, go to Working with Amazon Redshift Parameter Groups

Constraints:

  • Must be 1 to 255 alphanumeric characters or hyphens.

  • First character must be a letter.

  • Cannot end with a hyphen or contain two consecutive hyphens.

type AutomatedSnapshotRetentionPeriod

integer

param AutomatedSnapshotRetentionPeriod

The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with CreateClusterSnapshot.

You can't disable automated snapshots for RA3 node types. Set the automated retention period from 1-35 days.

Default: 1

Constraints: Must be a value from 0 to 35.

type ManualSnapshotRetentionPeriod

integer

param ManualSnapshotRetentionPeriod

The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

The value must be either -1 or an integer between 1 and 3,653.

type Port

integer

param Port

The port number on which the cluster accepts incoming connections.

The cluster is accessible only via the JDBC and ODBC connection strings. Part of the connection string requires the port on which the cluster will listen for incoming connections.

Default: 5439

Valid Values: 1150-65535

type ClusterVersion

string

param ClusterVersion

The version of the Amazon Redshift engine software that you want to deploy on the cluster.

The version selected runs on all the nodes in the cluster.

Constraints: Only version 1.0 is currently available.

Example: 1.0

type AllowVersionUpgrade

boolean

param AllowVersionUpgrade

If true , major version upgrades can be applied during the maintenance window to the Amazon Redshift engine that is running on the cluster.

When a new major version of the Amazon Redshift engine is released, you can request that the service automatically apply upgrades during the maintenance window to the Amazon Redshift engine that is running on your cluster.

Default: true

type NumberOfNodes

integer

param NumberOfNodes

The number of compute nodes in the cluster. This parameter is required when the ClusterType parameter is specified as multi-node .

For information about determining how many nodes you need, go to Working with Clusters in the Amazon Redshift Cluster Management Guide .

If you don't specify this parameter, you get a single-node cluster. When requesting a multi-node cluster, you must specify the number of nodes that you want in the cluster.

Default: 1

Constraints: Value must be at least 1 and no more than 100.

type PubliclyAccessible

boolean

param PubliclyAccessible

If true , the cluster can be accessed from a public network.

type Encrypted

boolean

param Encrypted

If true , the data in the cluster is encrypted at rest.

Default: false

type HsmClientCertificateIdentifier

string

param HsmClientCertificateIdentifier

Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

type HsmConfigurationIdentifier

string

param HsmConfigurationIdentifier

Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

type ElasticIp

string

param ElasticIp

The Elastic IP (EIP) address for the cluster.

Constraints: The cluster must be provisioned in EC2-VPC and publicly-accessible through an Internet gateway. For more information about provisioning clusters in EC2-VPC, go to Supported Platforms to Launch Your Cluster in the Amazon Redshift Cluster Management Guide.

type Tags

list

param Tags

A list of tag instances.

  • (dict) --

    A tag consisting of a name/value pair for a resource.

    • Key (string) --

      The key, or name, for the resource tag.

    • Value (string) --

      The value for the resource tag.

type KmsKeyId

string

param KmsKeyId

The Key Management Service (KMS) key ID of the encryption key that you want to use to encrypt data in the cluster.

type EnhancedVpcRouting

boolean

param EnhancedVpcRouting

An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

If this option is true , enhanced VPC routing is enabled.

Default: false

type AdditionalInfo

string

param AdditionalInfo

Reserved.

type IamRoles

list

param IamRoles

A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services. You must supply the IAM roles in their Amazon Resource Name (ARN) format. You can supply up to 10 IAM roles in a single request.

A cluster can have up to 10 IAM roles associated with it at any time.

  • (string) --

type MaintenanceTrackName

string

param MaintenanceTrackName

An optional parameter for the name of the maintenance track for the cluster. If you don't provide a maintenance track name, the cluster is assigned to the current track.

type SnapshotScheduleIdentifier

string

param SnapshotScheduleIdentifier

A unique identifier for the snapshot schedule.

type AvailabilityZoneRelocation

boolean

param AvailabilityZoneRelocation

The option to enable relocation for an Amazon Redshift cluster between Availability Zones after the cluster is created.

type AquaConfigurationStatus

string

param AquaConfigurationStatus

The value represents how the cluster is configured to use AQUA (Advanced Query Accelerator) when it is created. Possible values include the following.

  • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

  • disabled - Don't use AQUA.

  • auto - Amazon Redshift determines whether to use AQUA.

type DefaultIamRoleArn

string

param DefaultIamRoleArn

The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster was created.

rtype

dict

returns

Response Syntax

{
    'Cluster': {
        'ClusterIdentifier': 'string',
        'NodeType': 'string',
        'ClusterStatus': 'string',
        'ClusterAvailabilityStatus': 'string',
        'ModifyStatus': 'string',
        'MasterUsername': 'string',
        'DBName': 'string',
        'Endpoint': {
            'Address': 'string',
            'Port': 123,
            'VpcEndpoints': [
                {
                    'VpcEndpointId': 'string',
                    'VpcId': 'string',
                    'NetworkInterfaces': [
                        {
                            'NetworkInterfaceId': 'string',
                            'SubnetId': 'string',
                            'PrivateIpAddress': 'string',
                            'AvailabilityZone': 'string'
                        },
                    ]
                },
            ]
        },
        'ClusterCreateTime': datetime(2015, 1, 1),
        'AutomatedSnapshotRetentionPeriod': 123,
        'ManualSnapshotRetentionPeriod': 123,
        'ClusterSecurityGroups': [
            {
                'ClusterSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'VpcSecurityGroups': [
            {
                'VpcSecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ClusterParameterGroups': [
            {
                'ParameterGroupName': 'string',
                'ParameterApplyStatus': 'string',
                'ClusterParameterStatusList': [
                    {
                        'ParameterName': 'string',
                        'ParameterApplyStatus': 'string',
                        'ParameterApplyErrorDescription': 'string'
                    },
                ]
            },
        ],
        'ClusterSubnetGroupName': 'string',
        'VpcId': 'string',
        'AvailabilityZone': 'string',
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'MasterUserPassword': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'ClusterType': 'string',
            'ClusterVersion': 'string',
            'AutomatedSnapshotRetentionPeriod': 123,
            'ClusterIdentifier': 'string',
            'PubliclyAccessible': True|False,
            'EnhancedVpcRouting': True|False,
            'MaintenanceTrackName': 'string',
            'EncryptionType': 'string'
        },
        'ClusterVersion': 'string',
        'AllowVersionUpgrade': True|False,
        'NumberOfNodes': 123,
        'PubliclyAccessible': True|False,
        'Encrypted': True|False,
        'RestoreStatus': {
            'Status': 'string',
            'CurrentRestoreRateInMegaBytesPerSecond': 123.0,
            'SnapshotSizeInMegaBytes': 123,
            'ProgressInMegaBytes': 123,
            'ElapsedTimeInSeconds': 123,
            'EstimatedTimeToCompletionInSeconds': 123
        },
        'DataTransferProgress': {
            'Status': 'string',
            'CurrentRateInMegaBytesPerSecond': 123.0,
            'TotalDataInMegaBytes': 123,
            'DataTransferredInMegaBytes': 123,
            'EstimatedTimeToCompletionInSeconds': 123,
            'ElapsedTimeInSeconds': 123
        },
        'HsmStatus': {
            'HsmClientCertificateIdentifier': 'string',
            'HsmConfigurationIdentifier': 'string',
            'Status': 'string'
        },
        'ClusterSnapshotCopyStatus': {
            'DestinationRegion': 'string',
            'RetentionPeriod': 123,
            'ManualSnapshotRetentionPeriod': 123,
            'SnapshotCopyGrantName': 'string'
        },
        'ClusterPublicKey': 'string',
        'ClusterNodes': [
            {
                'NodeRole': 'string',
                'PrivateIPAddress': 'string',
                'PublicIPAddress': 'string'
            },
        ],
        'ElasticIpStatus': {
            'ElasticIp': 'string',
            'Status': 'string'
        },
        'ClusterRevisionNumber': 'string',
        'Tags': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        'KmsKeyId': 'string',
        'EnhancedVpcRouting': True|False,
        'IamRoles': [
            {
                'IamRoleArn': 'string',
                'ApplyStatus': 'string'
            },
        ],
        'PendingActions': [
            'string',
        ],
        'MaintenanceTrackName': 'string',
        'ElasticResizeNumberOfNodeOptions': 'string',
        'DeferredMaintenanceWindows': [
            {
                'DeferMaintenanceIdentifier': 'string',
                'DeferMaintenanceStartTime': datetime(2015, 1, 1),
                'DeferMaintenanceEndTime': datetime(2015, 1, 1)
            },
        ],
        'SnapshotScheduleIdentifier': 'string',
        'SnapshotScheduleState': 'MODIFYING'|'ACTIVE'|'FAILED',
        'ExpectedNextSnapshotScheduleTime': datetime(2015, 1, 1),
        'ExpectedNextSnapshotScheduleTimeStatus': 'string',
        'NextMaintenanceWindowStartTime': datetime(2015, 1, 1),
        'ResizeInfo': {
            'ResizeType': 'string',
            'AllowCancelResize': True|False
        },
        'AvailabilityZoneRelocationStatus': 'string',
        'ClusterNamespaceArn': 'string',
        'TotalStorageCapacityInMegaBytes': 123,
        'AquaConfiguration': {
            'AquaStatus': 'enabled'|'disabled'|'applying',
            'AquaConfigurationStatus': 'enabled'|'disabled'|'auto'
        },
        'DefaultIamRoleArn': 'string',
        'ReservedNodeExchangeStatus': {
            'ReservedNodeExchangeRequestId': 'string',
            'Status': 'REQUESTED'|'PENDING'|'IN_PROGRESS'|'RETRYING'|'SUCCEEDED'|'FAILED',
            'RequestTime': datetime(2015, 1, 1),
            'SourceReservedNodeId': 'string',
            'SourceReservedNodeType': 'string',
            'SourceReservedNodeCount': 123,
            'TargetReservedNodeOfferingId': 'string',
            'TargetReservedNodeType': 'string',
            'TargetReservedNodeCount': 123
        }
    }
}

Response Structure

  • (dict) --

    • Cluster (dict) --

      Describes a cluster.

      • ClusterIdentifier (string) --

        The unique identifier of the cluster.

      • NodeType (string) --

        The node type for the nodes in the cluster.

      • ClusterStatus (string) --

        The current state of the cluster. Possible values are the following:

        • available

        • available, prep-for-resize

        • available, resize-cleanup

        • cancelling-resize

        • creating

        • deleting

        • final-snapshot

        • hardware-failure

        • incompatible-hsm

        • incompatible-network

        • incompatible-parameters

        • incompatible-restore

        • modifying

        • paused

        • rebooting

        • renaming

        • resizing

        • rotating-keys

        • storage-full

        • updating-hsm

      • ClusterAvailabilityStatus (string) --

        The availability status of the cluster for queries. Possible values are the following:

        • Available - The cluster is available for queries.

        • Unavailable - The cluster is not available for queries.

        • Maintenance - The cluster is intermittently available for queries due to maintenance activities.

        • Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.

        • Failed - The cluster failed and is not available for queries.

      • ModifyStatus (string) --

        The status of a modify operation, if any, initiated for the cluster.

      • MasterUsername (string) --

        The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

      • DBName (string) --

        The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named dev dev was created by default.

      • Endpoint (dict) --

        The connection endpoint.

        • Address (string) --

          The DNS address of the Cluster.

        • Port (integer) --

          The port that the database engine is listening on.

        • VpcEndpoints (list) --

          Describes a connection endpoint.

          • (dict) --

            The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

            • VpcEndpointId (string) --

              The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.

            • VpcId (string) --

              The VPC identifier that the endpoint is associated.

            • NetworkInterfaces (list) --

              One or more network interfaces of the endpoint. Also known as an interface endpoint.

              • (dict) --

                Describes a network interface.

                • NetworkInterfaceId (string) --

                  The network interface identifier.

                • SubnetId (string) --

                  The subnet identifier.

                • PrivateIpAddress (string) --

                  The IPv4 address of the network interface within the subnet.

                • AvailabilityZone (string) --

                  The Availability Zone.

      • ClusterCreateTime (datetime) --

        The date and time that the cluster was created.

      • AutomatedSnapshotRetentionPeriod (integer) --

        The number of days that automatic cluster snapshots are retained.

      • ManualSnapshotRetentionPeriod (integer) --

        The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

        The value must be either -1 or an integer between 1 and 3,653.

      • ClusterSecurityGroups (list) --

        A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

        Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

        • (dict) --

          Describes a cluster security group.

          • ClusterSecurityGroupName (string) --

            The name of the cluster security group.

          • Status (string) --

            The status of the cluster security group.

      • VpcSecurityGroups (list) --

        A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

        • (dict) --

          Describes the members of a VPC security group.

          • VpcSecurityGroupId (string) --

            The identifier of the VPC security group.

          • Status (string) --

            The status of the VPC security group.

      • ClusterParameterGroups (list) --

        The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

        • (dict) --

          Describes the status of a parameter group.

          • ParameterGroupName (string) --

            The name of the cluster parameter group.

          • ParameterApplyStatus (string) --

            The status of parameter updates.

          • ClusterParameterStatusList (list) --

            The list of parameter statuses.

            For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide .

            • (dict) --

              Describes the status of a parameter group.

              • ParameterName (string) --

                The name of the parameter.

              • ParameterApplyStatus (string) --

                The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.

                The following are possible statuses and descriptions.

                • in-sync : The parameter value is in sync with the database.

                • pending-reboot : The parameter value will be applied after the cluster reboots.

                • applying : The parameter value is being applied to the database.

                • invalid-parameter : Cannot apply the parameter value because it has an invalid value or syntax.

                • apply-deferred : The parameter contains static property changes. The changes are deferred until the cluster reboots.

                • apply-error : Cannot connect to the cluster. The parameter change will be applied after the cluster reboots.

                • unknown-error : Cannot apply the parameter change right now. The change will be applied after the cluster reboots.

              • ParameterApplyErrorDescription (string) --

                The error that prevented the parameter from being applied to the database.

      • ClusterSubnetGroupName (string) --

        The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

      • VpcId (string) --

        The identifier of the VPC the cluster is in, if the cluster is in a VPC.

      • AvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located.

      • PreferredMaintenanceWindow (string) --

        The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

      • PendingModifiedValues (dict) --

        A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

        • MasterUserPassword (string) --

          The pending or in-progress change of the admin user password for the cluster.

        • NodeType (string) --

          The pending or in-progress change of the cluster's node type.

        • NumberOfNodes (integer) --

          The pending or in-progress change of the number of nodes in the cluster.

        • ClusterType (string) --

          The pending or in-progress change of the cluster type.

        • ClusterVersion (string) --

          The pending or in-progress change of the service version.

        • AutomatedSnapshotRetentionPeriod (integer) --

          The pending or in-progress change of the automated snapshot retention period.

        • ClusterIdentifier (string) --

          The pending or in-progress change of the new identifier for the cluster.

        • PubliclyAccessible (boolean) --

          The pending or in-progress change of the ability to connect to the cluster from the public network.

        • EnhancedVpcRouting (boolean) --

          An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

          If this option is true , enhanced VPC routing is enabled.

          Default: false

        • MaintenanceTrackName (string) --

          The name of the maintenance track that the cluster will change to during the next maintenance window.

        • EncryptionType (string) --

          The encryption type for a cluster. Possible values are: KMS and None.

      • ClusterVersion (string) --

        The version ID of the Amazon Redshift engine that is running on the cluster.

      • AllowVersionUpgrade (boolean) --

        A boolean value that, if true , indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

      • NumberOfNodes (integer) --

        The number of compute nodes in the cluster.

      • PubliclyAccessible (boolean) --

        A boolean value that, if true , indicates that the cluster can be accessed from a public network.

      • Encrypted (boolean) --

        A boolean value that, if true , indicates that data in the cluster is encrypted at rest.

      • RestoreStatus (dict) --

        A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

        • Status (string) --

          The status of the restore action. Returns starting, restoring, completed, or failed.

        • CurrentRestoreRateInMegaBytesPerSecond (float) --

          The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.

        • SnapshotSizeInMegaBytes (integer) --

          The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.

        • ProgressInMegaBytes (integer) --

          The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.

        • ElapsedTimeInSeconds (integer) --

          The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.

        • EstimatedTimeToCompletionInSeconds (integer) --

          The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.

      • DataTransferProgress (dict) --

        • Status (string) --

          Describes the status of the cluster. While the transfer is in progress the status is transferringdata .

        • CurrentRateInMegaBytesPerSecond (float) --

          Describes the data transfer rate in MB's per second.

        • TotalDataInMegaBytes (integer) --

          Describes the total amount of data to be transfered in megabytes.

        • DataTransferredInMegaBytes (integer) --

          Describes the total amount of data that has been transfered in MB's.

        • EstimatedTimeToCompletionInSeconds (integer) --

          Describes the estimated number of seconds remaining to complete the transfer.

        • ElapsedTimeInSeconds (integer) --

          Describes the number of seconds that have elapsed during the data transfer.

      • HsmStatus (dict) --

        A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

        Values: active, applying

        • HsmClientCertificateIdentifier (string) --

          Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

        • HsmConfigurationIdentifier (string) --

          Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

        • Status (string) --

          Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.

          Values: active, applying

      • ClusterSnapshotCopyStatus (dict) --

        A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

        • DestinationRegion (string) --

          The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

        • RetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

        • ManualSnapshotRetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely.

          The value must be either -1 or an integer between 1 and 3,653.

        • SnapshotCopyGrantName (string) --

          The name of the snapshot copy grant.

      • ClusterPublicKey (string) --

        The public key for the cluster.

      • ClusterNodes (list) --

        The nodes in the cluster.

        • (dict) --

          The identifier of a node in a cluster.

          • NodeRole (string) --

            Whether the node is a leader node or a compute node.

          • PrivateIPAddress (string) --

            The private IP address of a node within a cluster.

          • PublicIPAddress (string) --

            The public IP address of a node within a cluster.

      • ElasticIpStatus (dict) --

        The status of the elastic IP (EIP) address.

        • ElasticIp (string) --

          The elastic IP (EIP) address for the cluster.

        • Status (string) --

          The status of the elastic IP (EIP) address.

      • ClusterRevisionNumber (string) --

        The specific revision number of the database in the cluster.

      • Tags (list) --

        The list of tags for the cluster.

        • (dict) --

          A tag consisting of a name/value pair for a resource.

          • Key (string) --

            The key, or name, for the resource tag.

          • Value (string) --

            The value for the resource tag.

      • KmsKeyId (string) --

        The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.

      • EnhancedVpcRouting (boolean) --

        An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

        If this option is true , enhanced VPC routing is enabled.

        Default: false

      • IamRoles (list) --

        A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

        • (dict) --

          An Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other Amazon Web Services services.

          • IamRoleArn (string) --

            The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload .

          • ApplyStatus (string) --

            A value that describes the status of the IAM role's association with an Amazon Redshift cluster.

            The following are possible statuses and descriptions.

            • in-sync : The role is available for use by the cluster.

            • adding : The role is in the process of being associated with the cluster.

            • removing : The role is in the process of being disassociated with the cluster.

      • PendingActions (list) --

        Cluster operations that are waiting to be started.

        • (string) --

      • MaintenanceTrackName (string) --

        The name of the maintenance track for the cluster.

      • ElasticResizeNumberOfNodeOptions (string) --

        The number of nodes that you can resize the cluster to with the elastic resize method.

      • DeferredMaintenanceWindows (list) --

        Describes a group of DeferredMaintenanceWindow objects.

        • (dict) --

          Describes a deferred maintenance window

          • DeferMaintenanceIdentifier (string) --

            A unique identifier for the maintenance window.

          • DeferMaintenanceStartTime (datetime) --

            A timestamp for the beginning of the time period when we defer maintenance.

          • DeferMaintenanceEndTime (datetime) --

            A timestamp for the end of the time period when we defer maintenance.

      • SnapshotScheduleIdentifier (string) --

        A unique identifier for the cluster snapshot schedule.

      • SnapshotScheduleState (string) --

        The current state of the cluster snapshot schedule.

      • ExpectedNextSnapshotScheduleTime (datetime) --

        The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.

      • ExpectedNextSnapshotScheduleTimeStatus (string) --

        The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:

        • OnTrack - The next snapshot is expected to be taken on time.

        • Pending - The next snapshot is pending to be taken.

      • NextMaintenanceWindowStartTime (datetime) --

        The date and time in UTC when system maintenance can begin.

      • ResizeInfo (dict) --

        Returns the following:

        • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.

        • ResizeType: Returns ClassicResize

        • ResizeType (string) --

          Returns the value ClassicResize .

        • AllowCancelResize (boolean) --

          A boolean value indicating if the resize operation can be cancelled.

      • AvailabilityZoneRelocationStatus (string) --

        Describes the status of the Availability Zone relocation operation.

      • ClusterNamespaceArn (string) --

        The namespace Amazon Resource Name (ARN) of the cluster.

      • TotalStorageCapacityInMegaBytes (integer) --

        The total storage capacity of the cluster in megabytes.

      • AquaConfiguration (dict) --

        The AQUA (Advanced Query Accelerator) configuration of the cluster.

        • AquaStatus (string) --

          The value indicates the status of AQUA on the cluster. Possible values include the following.

          • enabled - AQUA is enabled.

          • disabled - AQUA is not enabled.

          • applying - AQUA status is being applied.

        • AquaConfigurationStatus (string) --

          The value represents how the cluster is configured to use AQUA. Possible values include the following.

          • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

          • disabled - Don't use AQUA.

          • auto - Amazon Redshift determines whether to use AQUA.

      • DefaultIamRoleArn (string) --

        The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.

      • ReservedNodeExchangeStatus (dict) --

        The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • ReservedNodeExchangeRequestId (string) --

          The identifier of the reserved-node exchange request.

        • Status (string) --

          The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • RequestTime (datetime) --

          A date and time that indicate when the reserved-node exchange was requested.

        • SourceReservedNodeId (string) --

          The identifier of the source reserved node.

        • SourceReservedNodeType (string) --

          The source reserved-node type, for example ds2.xlarge.

        • SourceReservedNodeCount (integer) --

          The source reserved-node count in the cluster.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

        • TargetReservedNodeType (string) --

          The node type of the target reserved node, for example ra3.4xlarge.

        • TargetReservedNodeCount (integer) --

          The count of target reserved nodes in the cluster.

CreateScheduledAction (updated) Link ¶
Changes (both)
{'TargetAction': {'ResizeCluster': {'ReservedNodeId': 'string',
                                    'TargetReservedNodeOfferingId': 'string'}}}

Creates a scheduled action. A scheduled action contains a schedule and an Amazon Redshift API action. For example, you can create a schedule of when to run the ResizeCluster API operation.

See also: AWS API Documentation

Request Syntax

client.create_scheduled_action(
    ScheduledActionName='string',
    TargetAction={
        'ResizeCluster': {
            'ClusterIdentifier': 'string',
            'ClusterType': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'Classic': True|False,
            'ReservedNodeId': 'string',
            'TargetReservedNodeOfferingId': 'string'
        },
        'PauseCluster': {
            'ClusterIdentifier': 'string'
        },
        'ResumeCluster': {
            'ClusterIdentifier': 'string'
        }
    },
    Schedule='string',
    IamRole='string',
    ScheduledActionDescription='string',
    StartTime=datetime(2015, 1, 1),
    EndTime=datetime(2015, 1, 1),
    Enable=True|False
)
type ScheduledActionName

string

param ScheduledActionName

[REQUIRED]

The name of the scheduled action. The name must be unique within an account. For more information about this parameter, see ScheduledAction.

type TargetAction

dict

param TargetAction

[REQUIRED]

A JSON format string of the Amazon Redshift API operation with input parameters. For more information about this parameter, see ScheduledAction.

  • ResizeCluster (dict) --

    An action that runs a ResizeCluster API operation.

    • ClusterIdentifier (string) -- [REQUIRED]

      The unique identifier for the cluster to resize.

    • ClusterType (string) --

      The new cluster type for the specified cluster.

    • NodeType (string) --

      The new node type for the nodes you are adding. If not specified, the cluster's current node type is used.

    • NumberOfNodes (integer) --

      The new number of nodes for the cluster. If not specified, the cluster's current number of nodes is used.

    • Classic (boolean) --

      A boolean value indicating whether the resize operation is using the classic resize process. If you don't provide this parameter or set the value to false , the resize type is elastic.

    • ReservedNodeId (string) --

      The identifier of the reserved node.

    • TargetReservedNodeOfferingId (string) --

      The identifier of the target reserved node offering.

  • PauseCluster (dict) --

    An action that runs a PauseCluster API operation.

    • ClusterIdentifier (string) -- [REQUIRED]

      The identifier of the cluster to be paused.

  • ResumeCluster (dict) --

    An action that runs a ResumeCluster API operation.

    • ClusterIdentifier (string) -- [REQUIRED]

      The identifier of the cluster to be resumed.

type Schedule

string

param Schedule

[REQUIRED]

The schedule in at( ) or cron( ) format. For more information about this parameter, see ScheduledAction.

type IamRole

string

param IamRole

[REQUIRED]

The IAM role to assume to run the target action. For more information about this parameter, see ScheduledAction.

type ScheduledActionDescription

string

param ScheduledActionDescription

The description of the scheduled action.

type StartTime

datetime

param StartTime

The start time in UTC of the scheduled action. Before this time, the scheduled action does not trigger. For more information about this parameter, see ScheduledAction.

type EndTime

datetime

param EndTime

The end time in UTC of the scheduled action. After this time, the scheduled action does not trigger. For more information about this parameter, see ScheduledAction.

type Enable

boolean

param Enable

If true, the schedule is enabled. If false, the scheduled action does not trigger. For more information about state of the scheduled action, see ScheduledAction.

rtype

dict

returns

Response Syntax

{
    'ScheduledActionName': 'string',
    'TargetAction': {
        'ResizeCluster': {
            'ClusterIdentifier': 'string',
            'ClusterType': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'Classic': True|False,
            'ReservedNodeId': 'string',
            'TargetReservedNodeOfferingId': 'string'
        },
        'PauseCluster': {
            'ClusterIdentifier': 'string'
        },
        'ResumeCluster': {
            'ClusterIdentifier': 'string'
        }
    },
    'Schedule': 'string',
    'IamRole': 'string',
    'ScheduledActionDescription': 'string',
    'State': 'ACTIVE'|'DISABLED',
    'NextInvocations': [
        datetime(2015, 1, 1),
    ],
    'StartTime': datetime(2015, 1, 1),
    'EndTime': datetime(2015, 1, 1)
}

Response Structure

  • (dict) --

    Describes a scheduled action. You can use a scheduled action to trigger some Amazon Redshift API operations on a schedule. For information about which API operations can be scheduled, see ScheduledActionType.

    • ScheduledActionName (string) --

      The name of the scheduled action.

    • TargetAction (dict) --

      A JSON format string of the Amazon Redshift API operation with input parameters.

      " {\"ResizeCluster\":{\"NodeType\":\"ds2.8xlarge\",\"ClusterIdentifier\":\"my-test-cluster\",\"NumberOfNodes\":3}} ".

      • ResizeCluster (dict) --

        An action that runs a ResizeCluster API operation.

        • ClusterIdentifier (string) --

          The unique identifier for the cluster to resize.

        • ClusterType (string) --

          The new cluster type for the specified cluster.

        • NodeType (string) --

          The new node type for the nodes you are adding. If not specified, the cluster's current node type is used.

        • NumberOfNodes (integer) --

          The new number of nodes for the cluster. If not specified, the cluster's current number of nodes is used.

        • Classic (boolean) --

          A boolean value indicating whether the resize operation is using the classic resize process. If you don't provide this parameter or set the value to false , the resize type is elastic.

        • ReservedNodeId (string) --

          The identifier of the reserved node.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

      • PauseCluster (dict) --

        An action that runs a PauseCluster API operation.

        • ClusterIdentifier (string) --

          The identifier of the cluster to be paused.

      • ResumeCluster (dict) --

        An action that runs a ResumeCluster API operation.

        • ClusterIdentifier (string) --

          The identifier of the cluster to be resumed.

    • Schedule (string) --

      The schedule for a one-time (at format) or recurring (cron format) scheduled action. Schedule invocations must be separated by at least one hour.

      Format of at expressions is " at(yyyy-mm-ddThh:mm:ss) ". For example, " at(2016-03-04T17:27:00) ".

      Format of cron expressions is " cron(Minutes Hours Day-of-month Month Day-of-week Year) ". For example, " cron(0 10 ? * MON *) ". For more information, see Cron Expressions in the Amazon CloudWatch Events User Guide .

    • IamRole (string) --

      The IAM role to assume to run the scheduled action. This IAM role must have permission to run the Amazon Redshift API operation in the scheduled action. This IAM role must allow the Amazon Redshift scheduler (Principal scheduler.redshift.amazonaws.com) to assume permissions on your behalf. For more information about the IAM role to use with the Amazon Redshift scheduler, see Using Identity-Based Policies for Amazon Redshift in the Amazon Redshift Cluster Management Guide .

    • ScheduledActionDescription (string) --

      The description of the scheduled action.

    • State (string) --

      The state of the scheduled action. For example, DISABLED .

    • NextInvocations (list) --

      List of times when the scheduled action will run.

      • (datetime) --

    • StartTime (datetime) --

      The start time in UTC when the schedule is active. Before this time, the scheduled action does not trigger.

    • EndTime (datetime) --

      The end time in UTC when the schedule is no longer active. After this time, the scheduled action does not trigger.

DeleteCluster (updated) Link ¶
Changes (response)
{'Cluster': {'ReservedNodeExchangeStatus': {'RequestTime': 'timestamp',
                                            'ReservedNodeExchangeRequestId': 'string',
                                            'SourceReservedNodeCount': 'integer',
                                            'SourceReservedNodeId': 'string',
                                            'SourceReservedNodeType': 'string',
                                            'Status': 'REQUESTED | PENDING | '
                                                      'IN_PROGRESS | RETRYING '
                                                      '| SUCCEEDED | FAILED',
                                            'TargetReservedNodeCount': 'integer',
                                            'TargetReservedNodeOfferingId': 'string',
                                            'TargetReservedNodeType': 'string'}}}

Deletes a previously provisioned cluster without its final snapshot being created. A successful response from the web service indicates that the request was received correctly. Use DescribeClusters to monitor the status of the deletion. The delete operation cannot be canceled or reverted once submitted. For more information about managing clusters, go to Amazon Redshift Clusters in the Amazon Redshift Cluster Management Guide .

If you want to shut down the cluster and retain it for future use, set SkipFinalClusterSnapshot to false and specify a name for FinalClusterSnapshotIdentifier . You can later restore this snapshot to resume using the cluster. If a final cluster snapshot is requested, the status of the cluster will be "final-snapshot" while the snapshot is being taken, then it's "deleting" once Amazon Redshift begins deleting the cluster.

For more information about managing clusters, go to Amazon Redshift Clusters in the Amazon Redshift Cluster Management Guide .

See also: AWS API Documentation

Request Syntax

client.delete_cluster(
    ClusterIdentifier='string',
    SkipFinalClusterSnapshot=True|False,
    FinalClusterSnapshotIdentifier='string',
    FinalClusterSnapshotRetentionPeriod=123
)
type ClusterIdentifier

string

param ClusterIdentifier

[REQUIRED]

The identifier of the cluster to be deleted.

Constraints:

  • Must contain lowercase characters.

  • Must contain from 1 to 63 alphanumeric characters or hyphens.

  • First character must be a letter.

  • Cannot end with a hyphen or contain two consecutive hyphens.

type SkipFinalClusterSnapshot

boolean

param SkipFinalClusterSnapshot

Determines whether a final snapshot of the cluster is created before Amazon Redshift deletes the cluster. If true , a final cluster snapshot is not created. If false , a final cluster snapshot is created before the cluster is deleted.

Note

The FinalClusterSnapshotIdentifier parameter must be specified if SkipFinalClusterSnapshot is false .

Default: false

type FinalClusterSnapshotIdentifier

string

param FinalClusterSnapshotIdentifier

The identifier of the final snapshot that is to be created immediately before deleting the cluster. If this parameter is provided, SkipFinalClusterSnapshot must be false .

Constraints:

  • Must be 1 to 255 alphanumeric characters.

  • First character must be a letter.

  • Cannot end with a hyphen or contain two consecutive hyphens.

type FinalClusterSnapshotRetentionPeriod

integer

param FinalClusterSnapshotRetentionPeriod

The number of days that a manual snapshot is retained. If the value is -1, the manual snapshot is retained indefinitely.

The value must be either -1 or an integer between 1 and 3,653.

The default value is -1.

rtype

dict

returns

Response Syntax

{
    'Cluster': {
        'ClusterIdentifier': 'string',
        'NodeType': 'string',
        'ClusterStatus': 'string',
        'ClusterAvailabilityStatus': 'string',
        'ModifyStatus': 'string',
        'MasterUsername': 'string',
        'DBName': 'string',
        'Endpoint': {
            'Address': 'string',
            'Port': 123,
            'VpcEndpoints': [
                {
                    'VpcEndpointId': 'string',
                    'VpcId': 'string',
                    'NetworkInterfaces': [
                        {
                            'NetworkInterfaceId': 'string',
                            'SubnetId': 'string',
                            'PrivateIpAddress': 'string',
                            'AvailabilityZone': 'string'
                        },
                    ]
                },
            ]
        },
        'ClusterCreateTime': datetime(2015, 1, 1),
        'AutomatedSnapshotRetentionPeriod': 123,
        'ManualSnapshotRetentionPeriod': 123,
        'ClusterSecurityGroups': [
            {
                'ClusterSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'VpcSecurityGroups': [
            {
                'VpcSecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ClusterParameterGroups': [
            {
                'ParameterGroupName': 'string',
                'ParameterApplyStatus': 'string',
                'ClusterParameterStatusList': [
                    {
                        'ParameterName': 'string',
                        'ParameterApplyStatus': 'string',
                        'ParameterApplyErrorDescription': 'string'
                    },
                ]
            },
        ],
        'ClusterSubnetGroupName': 'string',
        'VpcId': 'string',
        'AvailabilityZone': 'string',
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'MasterUserPassword': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'ClusterType': 'string',
            'ClusterVersion': 'string',
            'AutomatedSnapshotRetentionPeriod': 123,
            'ClusterIdentifier': 'string',
            'PubliclyAccessible': True|False,
            'EnhancedVpcRouting': True|False,
            'MaintenanceTrackName': 'string',
            'EncryptionType': 'string'
        },
        'ClusterVersion': 'string',
        'AllowVersionUpgrade': True|False,
        'NumberOfNodes': 123,
        'PubliclyAccessible': True|False,
        'Encrypted': True|False,
        'RestoreStatus': {
            'Status': 'string',
            'CurrentRestoreRateInMegaBytesPerSecond': 123.0,
            'SnapshotSizeInMegaBytes': 123,
            'ProgressInMegaBytes': 123,
            'ElapsedTimeInSeconds': 123,
            'EstimatedTimeToCompletionInSeconds': 123
        },
        'DataTransferProgress': {
            'Status': 'string',
            'CurrentRateInMegaBytesPerSecond': 123.0,
            'TotalDataInMegaBytes': 123,
            'DataTransferredInMegaBytes': 123,
            'EstimatedTimeToCompletionInSeconds': 123,
            'ElapsedTimeInSeconds': 123
        },
        'HsmStatus': {
            'HsmClientCertificateIdentifier': 'string',
            'HsmConfigurationIdentifier': 'string',
            'Status': 'string'
        },
        'ClusterSnapshotCopyStatus': {
            'DestinationRegion': 'string',
            'RetentionPeriod': 123,
            'ManualSnapshotRetentionPeriod': 123,
            'SnapshotCopyGrantName': 'string'
        },
        'ClusterPublicKey': 'string',
        'ClusterNodes': [
            {
                'NodeRole': 'string',
                'PrivateIPAddress': 'string',
                'PublicIPAddress': 'string'
            },
        ],
        'ElasticIpStatus': {
            'ElasticIp': 'string',
            'Status': 'string'
        },
        'ClusterRevisionNumber': 'string',
        'Tags': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        'KmsKeyId': 'string',
        'EnhancedVpcRouting': True|False,
        'IamRoles': [
            {
                'IamRoleArn': 'string',
                'ApplyStatus': 'string'
            },
        ],
        'PendingActions': [
            'string',
        ],
        'MaintenanceTrackName': 'string',
        'ElasticResizeNumberOfNodeOptions': 'string',
        'DeferredMaintenanceWindows': [
            {
                'DeferMaintenanceIdentifier': 'string',
                'DeferMaintenanceStartTime': datetime(2015, 1, 1),
                'DeferMaintenanceEndTime': datetime(2015, 1, 1)
            },
        ],
        'SnapshotScheduleIdentifier': 'string',
        'SnapshotScheduleState': 'MODIFYING'|'ACTIVE'|'FAILED',
        'ExpectedNextSnapshotScheduleTime': datetime(2015, 1, 1),
        'ExpectedNextSnapshotScheduleTimeStatus': 'string',
        'NextMaintenanceWindowStartTime': datetime(2015, 1, 1),
        'ResizeInfo': {
            'ResizeType': 'string',
            'AllowCancelResize': True|False
        },
        'AvailabilityZoneRelocationStatus': 'string',
        'ClusterNamespaceArn': 'string',
        'TotalStorageCapacityInMegaBytes': 123,
        'AquaConfiguration': {
            'AquaStatus': 'enabled'|'disabled'|'applying',
            'AquaConfigurationStatus': 'enabled'|'disabled'|'auto'
        },
        'DefaultIamRoleArn': 'string',
        'ReservedNodeExchangeStatus': {
            'ReservedNodeExchangeRequestId': 'string',
            'Status': 'REQUESTED'|'PENDING'|'IN_PROGRESS'|'RETRYING'|'SUCCEEDED'|'FAILED',
            'RequestTime': datetime(2015, 1, 1),
            'SourceReservedNodeId': 'string',
            'SourceReservedNodeType': 'string',
            'SourceReservedNodeCount': 123,
            'TargetReservedNodeOfferingId': 'string',
            'TargetReservedNodeType': 'string',
            'TargetReservedNodeCount': 123
        }
    }
}

Response Structure

  • (dict) --

    • Cluster (dict) --

      Describes a cluster.

      • ClusterIdentifier (string) --

        The unique identifier of the cluster.

      • NodeType (string) --

        The node type for the nodes in the cluster.

      • ClusterStatus (string) --

        The current state of the cluster. Possible values are the following:

        • available

        • available, prep-for-resize

        • available, resize-cleanup

        • cancelling-resize

        • creating

        • deleting

        • final-snapshot

        • hardware-failure

        • incompatible-hsm

        • incompatible-network

        • incompatible-parameters

        • incompatible-restore

        • modifying

        • paused

        • rebooting

        • renaming

        • resizing

        • rotating-keys

        • storage-full

        • updating-hsm

      • ClusterAvailabilityStatus (string) --

        The availability status of the cluster for queries. Possible values are the following:

        • Available - The cluster is available for queries.

        • Unavailable - The cluster is not available for queries.

        • Maintenance - The cluster is intermittently available for queries due to maintenance activities.

        • Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.

        • Failed - The cluster failed and is not available for queries.

      • ModifyStatus (string) --

        The status of a modify operation, if any, initiated for the cluster.

      • MasterUsername (string) --

        The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

      • DBName (string) --

        The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named dev dev was created by default.

      • Endpoint (dict) --

        The connection endpoint.

        • Address (string) --

          The DNS address of the Cluster.

        • Port (integer) --

          The port that the database engine is listening on.

        • VpcEndpoints (list) --

          Describes a connection endpoint.

          • (dict) --

            The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

            • VpcEndpointId (string) --

              The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.

            • VpcId (string) --

              The VPC identifier that the endpoint is associated.

            • NetworkInterfaces (list) --

              One or more network interfaces of the endpoint. Also known as an interface endpoint.

              • (dict) --

                Describes a network interface.

                • NetworkInterfaceId (string) --

                  The network interface identifier.

                • SubnetId (string) --

                  The subnet identifier.

                • PrivateIpAddress (string) --

                  The IPv4 address of the network interface within the subnet.

                • AvailabilityZone (string) --

                  The Availability Zone.

      • ClusterCreateTime (datetime) --

        The date and time that the cluster was created.

      • AutomatedSnapshotRetentionPeriod (integer) --

        The number of days that automatic cluster snapshots are retained.

      • ManualSnapshotRetentionPeriod (integer) --

        The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

        The value must be either -1 or an integer between 1 and 3,653.

      • ClusterSecurityGroups (list) --

        A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

        Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

        • (dict) --

          Describes a cluster security group.

          • ClusterSecurityGroupName (string) --

            The name of the cluster security group.

          • Status (string) --

            The status of the cluster security group.

      • VpcSecurityGroups (list) --

        A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

        • (dict) --

          Describes the members of a VPC security group.

          • VpcSecurityGroupId (string) --

            The identifier of the VPC security group.

          • Status (string) --

            The status of the VPC security group.

      • ClusterParameterGroups (list) --

        The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

        • (dict) --

          Describes the status of a parameter group.

          • ParameterGroupName (string) --

            The name of the cluster parameter group.

          • ParameterApplyStatus (string) --

            The status of parameter updates.

          • ClusterParameterStatusList (list) --

            The list of parameter statuses.

            For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide .

            • (dict) --

              Describes the status of a parameter group.

              • ParameterName (string) --

                The name of the parameter.

              • ParameterApplyStatus (string) --

                The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.

                The following are possible statuses and descriptions.

                • in-sync : The parameter value is in sync with the database.

                • pending-reboot : The parameter value will be applied after the cluster reboots.

                • applying : The parameter value is being applied to the database.

                • invalid-parameter : Cannot apply the parameter value because it has an invalid value or syntax.

                • apply-deferred : The parameter contains static property changes. The changes are deferred until the cluster reboots.

                • apply-error : Cannot connect to the cluster. The parameter change will be applied after the cluster reboots.

                • unknown-error : Cannot apply the parameter change right now. The change will be applied after the cluster reboots.

              • ParameterApplyErrorDescription (string) --

                The error that prevented the parameter from being applied to the database.

      • ClusterSubnetGroupName (string) --

        The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

      • VpcId (string) --

        The identifier of the VPC the cluster is in, if the cluster is in a VPC.

      • AvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located.

      • PreferredMaintenanceWindow (string) --

        The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

      • PendingModifiedValues (dict) --

        A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

        • MasterUserPassword (string) --

          The pending or in-progress change of the admin user password for the cluster.

        • NodeType (string) --

          The pending or in-progress change of the cluster's node type.

        • NumberOfNodes (integer) --

          The pending or in-progress change of the number of nodes in the cluster.

        • ClusterType (string) --

          The pending or in-progress change of the cluster type.

        • ClusterVersion (string) --

          The pending or in-progress change of the service version.

        • AutomatedSnapshotRetentionPeriod (integer) --

          The pending or in-progress change of the automated snapshot retention period.

        • ClusterIdentifier (string) --

          The pending or in-progress change of the new identifier for the cluster.

        • PubliclyAccessible (boolean) --

          The pending or in-progress change of the ability to connect to the cluster from the public network.

        • EnhancedVpcRouting (boolean) --

          An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

          If this option is true , enhanced VPC routing is enabled.

          Default: false

        • MaintenanceTrackName (string) --

          The name of the maintenance track that the cluster will change to during the next maintenance window.

        • EncryptionType (string) --

          The encryption type for a cluster. Possible values are: KMS and None.

      • ClusterVersion (string) --

        The version ID of the Amazon Redshift engine that is running on the cluster.

      • AllowVersionUpgrade (boolean) --

        A boolean value that, if true , indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

      • NumberOfNodes (integer) --

        The number of compute nodes in the cluster.

      • PubliclyAccessible (boolean) --

        A boolean value that, if true , indicates that the cluster can be accessed from a public network.

      • Encrypted (boolean) --

        A boolean value that, if true , indicates that data in the cluster is encrypted at rest.

      • RestoreStatus (dict) --

        A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

        • Status (string) --

          The status of the restore action. Returns starting, restoring, completed, or failed.

        • CurrentRestoreRateInMegaBytesPerSecond (float) --

          The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.

        • SnapshotSizeInMegaBytes (integer) --

          The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.

        • ProgressInMegaBytes (integer) --

          The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.

        • ElapsedTimeInSeconds (integer) --

          The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.

        • EstimatedTimeToCompletionInSeconds (integer) --

          The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.

      • DataTransferProgress (dict) --

        • Status (string) --

          Describes the status of the cluster. While the transfer is in progress the status is transferringdata .

        • CurrentRateInMegaBytesPerSecond (float) --

          Describes the data transfer rate in MB's per second.

        • TotalDataInMegaBytes (integer) --

          Describes the total amount of data to be transfered in megabytes.

        • DataTransferredInMegaBytes (integer) --

          Describes the total amount of data that has been transfered in MB's.

        • EstimatedTimeToCompletionInSeconds (integer) --

          Describes the estimated number of seconds remaining to complete the transfer.

        • ElapsedTimeInSeconds (integer) --

          Describes the number of seconds that have elapsed during the data transfer.

      • HsmStatus (dict) --

        A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

        Values: active, applying

        • HsmClientCertificateIdentifier (string) --

          Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

        • HsmConfigurationIdentifier (string) --

          Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

        • Status (string) --

          Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.

          Values: active, applying

      • ClusterSnapshotCopyStatus (dict) --

        A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

        • DestinationRegion (string) --

          The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

        • RetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

        • ManualSnapshotRetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely.

          The value must be either -1 or an integer between 1 and 3,653.

        • SnapshotCopyGrantName (string) --

          The name of the snapshot copy grant.

      • ClusterPublicKey (string) --

        The public key for the cluster.

      • ClusterNodes (list) --

        The nodes in the cluster.

        • (dict) --

          The identifier of a node in a cluster.

          • NodeRole (string) --

            Whether the node is a leader node or a compute node.

          • PrivateIPAddress (string) --

            The private IP address of a node within a cluster.

          • PublicIPAddress (string) --

            The public IP address of a node within a cluster.

      • ElasticIpStatus (dict) --

        The status of the elastic IP (EIP) address.

        • ElasticIp (string) --

          The elastic IP (EIP) address for the cluster.

        • Status (string) --

          The status of the elastic IP (EIP) address.

      • ClusterRevisionNumber (string) --

        The specific revision number of the database in the cluster.

      • Tags (list) --

        The list of tags for the cluster.

        • (dict) --

          A tag consisting of a name/value pair for a resource.

          • Key (string) --

            The key, or name, for the resource tag.

          • Value (string) --

            The value for the resource tag.

      • KmsKeyId (string) --

        The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.

      • EnhancedVpcRouting (boolean) --

        An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

        If this option is true , enhanced VPC routing is enabled.

        Default: false

      • IamRoles (list) --

        A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

        • (dict) --

          An Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other Amazon Web Services services.

          • IamRoleArn (string) --

            The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload .

          • ApplyStatus (string) --

            A value that describes the status of the IAM role's association with an Amazon Redshift cluster.

            The following are possible statuses and descriptions.

            • in-sync : The role is available for use by the cluster.

            • adding : The role is in the process of being associated with the cluster.

            • removing : The role is in the process of being disassociated with the cluster.

      • PendingActions (list) --

        Cluster operations that are waiting to be started.

        • (string) --

      • MaintenanceTrackName (string) --

        The name of the maintenance track for the cluster.

      • ElasticResizeNumberOfNodeOptions (string) --

        The number of nodes that you can resize the cluster to with the elastic resize method.

      • DeferredMaintenanceWindows (list) --

        Describes a group of DeferredMaintenanceWindow objects.

        • (dict) --

          Describes a deferred maintenance window

          • DeferMaintenanceIdentifier (string) --

            A unique identifier for the maintenance window.

          • DeferMaintenanceStartTime (datetime) --

            A timestamp for the beginning of the time period when we defer maintenance.

          • DeferMaintenanceEndTime (datetime) --

            A timestamp for the end of the time period when we defer maintenance.

      • SnapshotScheduleIdentifier (string) --

        A unique identifier for the cluster snapshot schedule.

      • SnapshotScheduleState (string) --

        The current state of the cluster snapshot schedule.

      • ExpectedNextSnapshotScheduleTime (datetime) --

        The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.

      • ExpectedNextSnapshotScheduleTimeStatus (string) --

        The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:

        • OnTrack - The next snapshot is expected to be taken on time.

        • Pending - The next snapshot is pending to be taken.

      • NextMaintenanceWindowStartTime (datetime) --

        The date and time in UTC when system maintenance can begin.

      • ResizeInfo (dict) --

        Returns the following:

        • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.

        • ResizeType: Returns ClassicResize

        • ResizeType (string) --

          Returns the value ClassicResize .

        • AllowCancelResize (boolean) --

          A boolean value indicating if the resize operation can be cancelled.

      • AvailabilityZoneRelocationStatus (string) --

        Describes the status of the Availability Zone relocation operation.

      • ClusterNamespaceArn (string) --

        The namespace Amazon Resource Name (ARN) of the cluster.

      • TotalStorageCapacityInMegaBytes (integer) --

        The total storage capacity of the cluster in megabytes.

      • AquaConfiguration (dict) --

        The AQUA (Advanced Query Accelerator) configuration of the cluster.

        • AquaStatus (string) --

          The value indicates the status of AQUA on the cluster. Possible values include the following.

          • enabled - AQUA is enabled.

          • disabled - AQUA is not enabled.

          • applying - AQUA status is being applied.

        • AquaConfigurationStatus (string) --

          The value represents how the cluster is configured to use AQUA. Possible values include the following.

          • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

          • disabled - Don't use AQUA.

          • auto - Amazon Redshift determines whether to use AQUA.

      • DefaultIamRoleArn (string) --

        The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.

      • ReservedNodeExchangeStatus (dict) --

        The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • ReservedNodeExchangeRequestId (string) --

          The identifier of the reserved-node exchange request.

        • Status (string) --

          The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • RequestTime (datetime) --

          A date and time that indicate when the reserved-node exchange was requested.

        • SourceReservedNodeId (string) --

          The identifier of the source reserved node.

        • SourceReservedNodeType (string) --

          The source reserved-node type, for example ds2.xlarge.

        • SourceReservedNodeCount (integer) --

          The source reserved-node count in the cluster.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

        • TargetReservedNodeType (string) --

          The node type of the target reserved node, for example ra3.4xlarge.

        • TargetReservedNodeCount (integer) --

          The count of target reserved nodes in the cluster.

DescribeClusters (updated) Link ¶
Changes (response)
{'Clusters': {'ReservedNodeExchangeStatus': {'RequestTime': 'timestamp',
                                             'ReservedNodeExchangeRequestId': 'string',
                                             'SourceReservedNodeCount': 'integer',
                                             'SourceReservedNodeId': 'string',
                                             'SourceReservedNodeType': 'string',
                                             'Status': 'REQUESTED | PENDING | '
                                                       'IN_PROGRESS | RETRYING '
                                                       '| SUCCEEDED | FAILED',
                                             'TargetReservedNodeCount': 'integer',
                                             'TargetReservedNodeOfferingId': 'string',
                                             'TargetReservedNodeType': 'string'}}}

Returns properties of provisioned clusters including general cluster properties, cluster database properties, maintenance and backup properties, and security and access properties. This operation supports pagination. For more information about managing clusters, go to Amazon Redshift Clusters in the Amazon Redshift Cluster Management Guide .

If you specify both tag keys and tag values in the same request, Amazon Redshift returns all clusters that match any combination of the specified keys and values. For example, if you have owner and environment for tag keys, and admin and test for tag values, all clusters that have any combination of those values are returned.

If both tag keys and values are omitted from the request, clusters are returned regardless of whether they have tag keys or values associated with them.

See also: AWS API Documentation

Request Syntax

client.describe_clusters(
    ClusterIdentifier='string',
    MaxRecords=123,
    Marker='string',
    TagKeys=[
        'string',
    ],
    TagValues=[
        'string',
    ]
)
type ClusterIdentifier

string

param ClusterIdentifier

The unique identifier of a cluster whose properties you are requesting. This parameter is case sensitive.

The default is that all clusters defined for an account are returned.

type MaxRecords

integer

param MaxRecords

The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

Default: 100

Constraints: minimum 20, maximum 100.

type Marker

string

param Marker

An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusters request exceed the value specified in MaxRecords , Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

Constraints: You can specify either the ClusterIdentifier parameter or the Marker parameter, but not both.

type TagKeys

list

param TagKeys

A tag key or keys for which you want to return all matching clusters that are associated with the specified key or keys. For example, suppose that you have clusters that are tagged with keys called owner and environment . If you specify both of these tag keys in the request, Amazon Redshift returns a response with the clusters that have either or both of these tag keys associated with them.

  • (string) --

type TagValues

list

param TagValues

A tag value or values for which you want to return all matching clusters that are associated with the specified tag value or values. For example, suppose that you have clusters that are tagged with values called admin and test . If you specify both of these tag values in the request, Amazon Redshift returns a response with the clusters that have either or both of these tag values associated with them.

  • (string) --

rtype

dict

returns

Response Syntax

{
    'Marker': 'string',
    'Clusters': [
        {
            'ClusterIdentifier': 'string',
            'NodeType': 'string',
            'ClusterStatus': 'string',
            'ClusterAvailabilityStatus': 'string',
            'ModifyStatus': 'string',
            'MasterUsername': 'string',
            'DBName': 'string',
            'Endpoint': {
                'Address': 'string',
                'Port': 123,
                'VpcEndpoints': [
                    {
                        'VpcEndpointId': 'string',
                        'VpcId': 'string',
                        'NetworkInterfaces': [
                            {
                                'NetworkInterfaceId': 'string',
                                'SubnetId': 'string',
                                'PrivateIpAddress': 'string',
                                'AvailabilityZone': 'string'
                            },
                        ]
                    },
                ]
            },
            'ClusterCreateTime': datetime(2015, 1, 1),
            'AutomatedSnapshotRetentionPeriod': 123,
            'ManualSnapshotRetentionPeriod': 123,
            'ClusterSecurityGroups': [
                {
                    'ClusterSecurityGroupName': 'string',
                    'Status': 'string'
                },
            ],
            'VpcSecurityGroups': [
                {
                    'VpcSecurityGroupId': 'string',
                    'Status': 'string'
                },
            ],
            'ClusterParameterGroups': [
                {
                    'ParameterGroupName': 'string',
                    'ParameterApplyStatus': 'string',
                    'ClusterParameterStatusList': [
                        {
                            'ParameterName': 'string',
                            'ParameterApplyStatus': 'string',
                            'ParameterApplyErrorDescription': 'string'
                        },
                    ]
                },
            ],
            'ClusterSubnetGroupName': 'string',
            'VpcId': 'string',
            'AvailabilityZone': 'string',
            'PreferredMaintenanceWindow': 'string',
            'PendingModifiedValues': {
                'MasterUserPassword': 'string',
                'NodeType': 'string',
                'NumberOfNodes': 123,
                'ClusterType': 'string',
                'ClusterVersion': 'string',
                'AutomatedSnapshotRetentionPeriod': 123,
                'ClusterIdentifier': 'string',
                'PubliclyAccessible': True|False,
                'EnhancedVpcRouting': True|False,
                'MaintenanceTrackName': 'string',
                'EncryptionType': 'string'
            },
            'ClusterVersion': 'string',
            'AllowVersionUpgrade': True|False,
            'NumberOfNodes': 123,
            'PubliclyAccessible': True|False,
            'Encrypted': True|False,
            'RestoreStatus': {
                'Status': 'string',
                'CurrentRestoreRateInMegaBytesPerSecond': 123.0,
                'SnapshotSizeInMegaBytes': 123,
                'ProgressInMegaBytes': 123,
                'ElapsedTimeInSeconds': 123,
                'EstimatedTimeToCompletionInSeconds': 123
            },
            'DataTransferProgress': {
                'Status': 'string',
                'CurrentRateInMegaBytesPerSecond': 123.0,
                'TotalDataInMegaBytes': 123,
                'DataTransferredInMegaBytes': 123,
                'EstimatedTimeToCompletionInSeconds': 123,
                'ElapsedTimeInSeconds': 123
            },
            'HsmStatus': {
                'HsmClientCertificateIdentifier': 'string',
                'HsmConfigurationIdentifier': 'string',
                'Status': 'string'
            },
            'ClusterSnapshotCopyStatus': {
                'DestinationRegion': 'string',
                'RetentionPeriod': 123,
                'ManualSnapshotRetentionPeriod': 123,
                'SnapshotCopyGrantName': 'string'
            },
            'ClusterPublicKey': 'string',
            'ClusterNodes': [
                {
                    'NodeRole': 'string',
                    'PrivateIPAddress': 'string',
                    'PublicIPAddress': 'string'
                },
            ],
            'ElasticIpStatus': {
                'ElasticIp': 'string',
                'Status': 'string'
            },
            'ClusterRevisionNumber': 'string',
            'Tags': [
                {
                    'Key': 'string',
                    'Value': 'string'
                },
            ],
            'KmsKeyId': 'string',
            'EnhancedVpcRouting': True|False,
            'IamRoles': [
                {
                    'IamRoleArn': 'string',
                    'ApplyStatus': 'string'
                },
            ],
            'PendingActions': [
                'string',
            ],
            'MaintenanceTrackName': 'string',
            'ElasticResizeNumberOfNodeOptions': 'string',
            'DeferredMaintenanceWindows': [
                {
                    'DeferMaintenanceIdentifier': 'string',
                    'DeferMaintenanceStartTime': datetime(2015, 1, 1),
                    'DeferMaintenanceEndTime': datetime(2015, 1, 1)
                },
            ],
            'SnapshotScheduleIdentifier': 'string',
            'SnapshotScheduleState': 'MODIFYING'|'ACTIVE'|'FAILED',
            'ExpectedNextSnapshotScheduleTime': datetime(2015, 1, 1),
            'ExpectedNextSnapshotScheduleTimeStatus': 'string',
            'NextMaintenanceWindowStartTime': datetime(2015, 1, 1),
            'ResizeInfo': {
                'ResizeType': 'string',
                'AllowCancelResize': True|False
            },
            'AvailabilityZoneRelocationStatus': 'string',
            'ClusterNamespaceArn': 'string',
            'TotalStorageCapacityInMegaBytes': 123,
            'AquaConfiguration': {
                'AquaStatus': 'enabled'|'disabled'|'applying',
                'AquaConfigurationStatus': 'enabled'|'disabled'|'auto'
            },
            'DefaultIamRoleArn': 'string',
            'ReservedNodeExchangeStatus': {
                'ReservedNodeExchangeRequestId': 'string',
                'Status': 'REQUESTED'|'PENDING'|'IN_PROGRESS'|'RETRYING'|'SUCCEEDED'|'FAILED',
                'RequestTime': datetime(2015, 1, 1),
                'SourceReservedNodeId': 'string',
                'SourceReservedNodeType': 'string',
                'SourceReservedNodeCount': 123,
                'TargetReservedNodeOfferingId': 'string',
                'TargetReservedNodeType': 'string',
                'TargetReservedNodeCount': 123
            }
        },
    ]
}

Response Structure

  • (dict) --

    Contains the output from the DescribeClusters action.

    • Marker (string) --

      A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.

    • Clusters (list) --

      A list of Cluster objects, where each object describes one cluster.

      • (dict) --

        Describes a cluster.

        • ClusterIdentifier (string) --

          The unique identifier of the cluster.

        • NodeType (string) --

          The node type for the nodes in the cluster.

        • ClusterStatus (string) --

          The current state of the cluster. Possible values are the following:

          • available

          • available, prep-for-resize

          • available, resize-cleanup

          • cancelling-resize

          • creating

          • deleting

          • final-snapshot

          • hardware-failure

          • incompatible-hsm

          • incompatible-network

          • incompatible-parameters

          • incompatible-restore

          • modifying

          • paused

          • rebooting

          • renaming

          • resizing

          • rotating-keys

          • storage-full

          • updating-hsm

        • ClusterAvailabilityStatus (string) --

          The availability status of the cluster for queries. Possible values are the following:

          • Available - The cluster is available for queries.

          • Unavailable - The cluster is not available for queries.

          • Maintenance - The cluster is intermittently available for queries due to maintenance activities.

          • Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.

          • Failed - The cluster failed and is not available for queries.

        • ModifyStatus (string) --

          The status of a modify operation, if any, initiated for the cluster.

        • MasterUsername (string) --

          The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

        • DBName (string) --

          The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named dev dev was created by default.

        • Endpoint (dict) --

          The connection endpoint.

          • Address (string) --

            The DNS address of the Cluster.

          • Port (integer) --

            The port that the database engine is listening on.

          • VpcEndpoints (list) --

            Describes a connection endpoint.

            • (dict) --

              The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

              • VpcEndpointId (string) --

                The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.

              • VpcId (string) --

                The VPC identifier that the endpoint is associated.

              • NetworkInterfaces (list) --

                One or more network interfaces of the endpoint. Also known as an interface endpoint.

                • (dict) --

                  Describes a network interface.

                  • NetworkInterfaceId (string) --

                    The network interface identifier.

                  • SubnetId (string) --

                    The subnet identifier.

                  • PrivateIpAddress (string) --

                    The IPv4 address of the network interface within the subnet.

                  • AvailabilityZone (string) --

                    The Availability Zone.

        • ClusterCreateTime (datetime) --

          The date and time that the cluster was created.

        • AutomatedSnapshotRetentionPeriod (integer) --

          The number of days that automatic cluster snapshots are retained.

        • ManualSnapshotRetentionPeriod (integer) --

          The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

          The value must be either -1 or an integer between 1 and 3,653.

        • ClusterSecurityGroups (list) --

          A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

          Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

          • (dict) --

            Describes a cluster security group.

            • ClusterSecurityGroupName (string) --

              The name of the cluster security group.

            • Status (string) --

              The status of the cluster security group.

        • VpcSecurityGroups (list) --

          A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

          • (dict) --

            Describes the members of a VPC security group.

            • VpcSecurityGroupId (string) --

              The identifier of the VPC security group.

            • Status (string) --

              The status of the VPC security group.

        • ClusterParameterGroups (list) --

          The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

          • (dict) --

            Describes the status of a parameter group.

            • ParameterGroupName (string) --

              The name of the cluster parameter group.

            • ParameterApplyStatus (string) --

              The status of parameter updates.

            • ClusterParameterStatusList (list) --

              The list of parameter statuses.

              For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide .

              • (dict) --

                Describes the status of a parameter group.

                • ParameterName (string) --

                  The name of the parameter.

                • ParameterApplyStatus (string) --

                  The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.

                  The following are possible statuses and descriptions.

                  • in-sync : The parameter value is in sync with the database.

                  • pending-reboot : The parameter value will be applied after the cluster reboots.

                  • applying : The parameter value is being applied to the database.

                  • invalid-parameter : Cannot apply the parameter value because it has an invalid value or syntax.

                  • apply-deferred : The parameter contains static property changes. The changes are deferred until the cluster reboots.

                  • apply-error : Cannot connect to the cluster. The parameter change will be applied after the cluster reboots.

                  • unknown-error : Cannot apply the parameter change right now. The change will be applied after the cluster reboots.

                • ParameterApplyErrorDescription (string) --

                  The error that prevented the parameter from being applied to the database.

        • ClusterSubnetGroupName (string) --

          The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

        • VpcId (string) --

          The identifier of the VPC the cluster is in, if the cluster is in a VPC.

        • AvailabilityZone (string) --

          The name of the Availability Zone in which the cluster is located.

        • PreferredMaintenanceWindow (string) --

          The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

        • PendingModifiedValues (dict) --

          A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

          • MasterUserPassword (string) --

            The pending or in-progress change of the admin user password for the cluster.

          • NodeType (string) --

            The pending or in-progress change of the cluster's node type.

          • NumberOfNodes (integer) --

            The pending or in-progress change of the number of nodes in the cluster.

          • ClusterType (string) --

            The pending or in-progress change of the cluster type.

          • ClusterVersion (string) --

            The pending or in-progress change of the service version.

          • AutomatedSnapshotRetentionPeriod (integer) --

            The pending or in-progress change of the automated snapshot retention period.

          • ClusterIdentifier (string) --

            The pending or in-progress change of the new identifier for the cluster.

          • PubliclyAccessible (boolean) --

            The pending or in-progress change of the ability to connect to the cluster from the public network.

          • EnhancedVpcRouting (boolean) --

            An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

            If this option is true , enhanced VPC routing is enabled.

            Default: false

          • MaintenanceTrackName (string) --

            The name of the maintenance track that the cluster will change to during the next maintenance window.

          • EncryptionType (string) --

            The encryption type for a cluster. Possible values are: KMS and None.

        • ClusterVersion (string) --

          The version ID of the Amazon Redshift engine that is running on the cluster.

        • AllowVersionUpgrade (boolean) --

          A boolean value that, if true , indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

        • NumberOfNodes (integer) --

          The number of compute nodes in the cluster.

        • PubliclyAccessible (boolean) --

          A boolean value that, if true , indicates that the cluster can be accessed from a public network.

        • Encrypted (boolean) --

          A boolean value that, if true , indicates that data in the cluster is encrypted at rest.

        • RestoreStatus (dict) --

          A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

          • Status (string) --

            The status of the restore action. Returns starting, restoring, completed, or failed.

          • CurrentRestoreRateInMegaBytesPerSecond (float) --

            The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.

          • SnapshotSizeInMegaBytes (integer) --

            The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.

          • ProgressInMegaBytes (integer) --

            The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.

          • ElapsedTimeInSeconds (integer) --

            The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.

          • EstimatedTimeToCompletionInSeconds (integer) --

            The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.

        • DataTransferProgress (dict) --

          • Status (string) --

            Describes the status of the cluster. While the transfer is in progress the status is transferringdata .

          • CurrentRateInMegaBytesPerSecond (float) --

            Describes the data transfer rate in MB's per second.

          • TotalDataInMegaBytes (integer) --

            Describes the total amount of data to be transfered in megabytes.

          • DataTransferredInMegaBytes (integer) --

            Describes the total amount of data that has been transfered in MB's.

          • EstimatedTimeToCompletionInSeconds (integer) --

            Describes the estimated number of seconds remaining to complete the transfer.

          • ElapsedTimeInSeconds (integer) --

            Describes the number of seconds that have elapsed during the data transfer.

        • HsmStatus (dict) --

          A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

          Values: active, applying

          • HsmClientCertificateIdentifier (string) --

            Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

          • HsmConfigurationIdentifier (string) --

            Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

          • Status (string) --

            Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.

            Values: active, applying

        • ClusterSnapshotCopyStatus (dict) --

          A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

          • DestinationRegion (string) --

            The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

          • RetentionPeriod (integer) --

            The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

          • ManualSnapshotRetentionPeriod (integer) --

            The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely.

            The value must be either -1 or an integer between 1 and 3,653.

          • SnapshotCopyGrantName (string) --

            The name of the snapshot copy grant.

        • ClusterPublicKey (string) --

          The public key for the cluster.

        • ClusterNodes (list) --

          The nodes in the cluster.

          • (dict) --

            The identifier of a node in a cluster.

            • NodeRole (string) --

              Whether the node is a leader node or a compute node.

            • PrivateIPAddress (string) --

              The private IP address of a node within a cluster.

            • PublicIPAddress (string) --

              The public IP address of a node within a cluster.

        • ElasticIpStatus (dict) --

          The status of the elastic IP (EIP) address.

          • ElasticIp (string) --

            The elastic IP (EIP) address for the cluster.

          • Status (string) --

            The status of the elastic IP (EIP) address.

        • ClusterRevisionNumber (string) --

          The specific revision number of the database in the cluster.

        • Tags (list) --

          The list of tags for the cluster.

          • (dict) --

            A tag consisting of a name/value pair for a resource.

            • Key (string) --

              The key, or name, for the resource tag.

            • Value (string) --

              The value for the resource tag.

        • KmsKeyId (string) --

          The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.

        • EnhancedVpcRouting (boolean) --

          An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

          If this option is true , enhanced VPC routing is enabled.

          Default: false

        • IamRoles (list) --

          A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

          • (dict) --

            An Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other Amazon Web Services services.

            • IamRoleArn (string) --

              The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload .

            • ApplyStatus (string) --

              A value that describes the status of the IAM role's association with an Amazon Redshift cluster.

              The following are possible statuses and descriptions.

              • in-sync : The role is available for use by the cluster.

              • adding : The role is in the process of being associated with the cluster.

              • removing : The role is in the process of being disassociated with the cluster.

        • PendingActions (list) --

          Cluster operations that are waiting to be started.

          • (string) --

        • MaintenanceTrackName (string) --

          The name of the maintenance track for the cluster.

        • ElasticResizeNumberOfNodeOptions (string) --

          The number of nodes that you can resize the cluster to with the elastic resize method.

        • DeferredMaintenanceWindows (list) --

          Describes a group of DeferredMaintenanceWindow objects.

          • (dict) --

            Describes a deferred maintenance window

            • DeferMaintenanceIdentifier (string) --

              A unique identifier for the maintenance window.

            • DeferMaintenanceStartTime (datetime) --

              A timestamp for the beginning of the time period when we defer maintenance.

            • DeferMaintenanceEndTime (datetime) --

              A timestamp for the end of the time period when we defer maintenance.

        • SnapshotScheduleIdentifier (string) --

          A unique identifier for the cluster snapshot schedule.

        • SnapshotScheduleState (string) --

          The current state of the cluster snapshot schedule.

        • ExpectedNextSnapshotScheduleTime (datetime) --

          The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.

        • ExpectedNextSnapshotScheduleTimeStatus (string) --

          The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:

          • OnTrack - The next snapshot is expected to be taken on time.

          • Pending - The next snapshot is pending to be taken.

        • NextMaintenanceWindowStartTime (datetime) --

          The date and time in UTC when system maintenance can begin.

        • ResizeInfo (dict) --

          Returns the following:

          • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.

          • ResizeType: Returns ClassicResize

          • ResizeType (string) --

            Returns the value ClassicResize .

          • AllowCancelResize (boolean) --

            A boolean value indicating if the resize operation can be cancelled.

        • AvailabilityZoneRelocationStatus (string) --

          Describes the status of the Availability Zone relocation operation.

        • ClusterNamespaceArn (string) --

          The namespace Amazon Resource Name (ARN) of the cluster.

        • TotalStorageCapacityInMegaBytes (integer) --

          The total storage capacity of the cluster in megabytes.

        • AquaConfiguration (dict) --

          The AQUA (Advanced Query Accelerator) configuration of the cluster.

          • AquaStatus (string) --

            The value indicates the status of AQUA on the cluster. Possible values include the following.

            • enabled - AQUA is enabled.

            • disabled - AQUA is not enabled.

            • applying - AQUA status is being applied.

          • AquaConfigurationStatus (string) --

            The value represents how the cluster is configured to use AQUA. Possible values include the following.

            • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

            • disabled - Don't use AQUA.

            • auto - Amazon Redshift determines whether to use AQUA.

        • DefaultIamRoleArn (string) --

          The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.

        • ReservedNodeExchangeStatus (dict) --

          The status of the reserved-node exchange request. Statuses include in-progress and requested.

          • ReservedNodeExchangeRequestId (string) --

            The identifier of the reserved-node exchange request.

          • Status (string) --

            The status of the reserved-node exchange request. Statuses include in-progress and requested.

          • RequestTime (datetime) --

            A date and time that indicate when the reserved-node exchange was requested.

          • SourceReservedNodeId (string) --

            The identifier of the source reserved node.

          • SourceReservedNodeType (string) --

            The source reserved-node type, for example ds2.xlarge.

          • SourceReservedNodeCount (integer) --

            The source reserved-node count in the cluster.

          • TargetReservedNodeOfferingId (string) --

            The identifier of the target reserved node offering.

          • TargetReservedNodeType (string) --

            The node type of the target reserved node, for example ra3.4xlarge.

          • TargetReservedNodeCount (integer) --

            The count of target reserved nodes in the cluster.

DescribeScheduledActions (updated) Link ¶
Changes (response)
{'ScheduledActions': {'TargetAction': {'ResizeCluster': {'ReservedNodeId': 'string',
                                                         'TargetReservedNodeOfferingId': 'string'}}}}

Describes properties of scheduled actions.

See also: AWS API Documentation

Request Syntax

client.describe_scheduled_actions(
    ScheduledActionName='string',
    TargetActionType='ResizeCluster'|'PauseCluster'|'ResumeCluster',
    StartTime=datetime(2015, 1, 1),
    EndTime=datetime(2015, 1, 1),
    Active=True|False,
    Filters=[
        {
            'Name': 'cluster-identifier'|'iam-role',
            'Values': [
                'string',
            ]
        },
    ],
    Marker='string',
    MaxRecords=123
)
type ScheduledActionName

string

param ScheduledActionName

The name of the scheduled action to retrieve.

type TargetActionType

string

param TargetActionType

The type of the scheduled actions to retrieve.

type StartTime

datetime

param StartTime

The start time in UTC of the scheduled actions to retrieve. Only active scheduled actions that have invocations after this time are retrieved.

type EndTime

datetime

param EndTime

The end time in UTC of the scheduled action to retrieve. Only active scheduled actions that have invocations before this time are retrieved.

type Active

boolean

param Active

If true, retrieve only active scheduled actions. If false, retrieve only disabled scheduled actions.

type Filters

list

param Filters

List of scheduled action filters.

  • (dict) --

    A set of elements to filter the returned scheduled actions.

    • Name (string) -- [REQUIRED]

      The type of element to filter.

    • Values (list) -- [REQUIRED]

      List of values. Compare if the value (of type defined by Name ) equals an item in the list of scheduled actions.

      • (string) --

type Marker

string

param Marker

An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeScheduledActions request exceed the value specified in MaxRecords , Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

type MaxRecords

integer

param MaxRecords

The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

Default: 100

Constraints: minimum 20, maximum 100.

rtype

dict

returns

Response Syntax

{
    'Marker': 'string',
    'ScheduledActions': [
        {
            'ScheduledActionName': 'string',
            'TargetAction': {
                'ResizeCluster': {
                    'ClusterIdentifier': 'string',
                    'ClusterType': 'string',
                    'NodeType': 'string',
                    'NumberOfNodes': 123,
                    'Classic': True|False,
                    'ReservedNodeId': 'string',
                    'TargetReservedNodeOfferingId': 'string'
                },
                'PauseCluster': {
                    'ClusterIdentifier': 'string'
                },
                'ResumeCluster': {
                    'ClusterIdentifier': 'string'
                }
            },
            'Schedule': 'string',
            'IamRole': 'string',
            'ScheduledActionDescription': 'string',
            'State': 'ACTIVE'|'DISABLED',
            'NextInvocations': [
                datetime(2015, 1, 1),
            ],
            'StartTime': datetime(2015, 1, 1),
            'EndTime': datetime(2015, 1, 1)
        },
    ]
}

Response Structure

  • (dict) --

    • Marker (string) --

      An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeScheduledActions request exceed the value specified in MaxRecords , Amazon Web Services returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.

    • ScheduledActions (list) --

      List of retrieved scheduled actions.

      • (dict) --

        Describes a scheduled action. You can use a scheduled action to trigger some Amazon Redshift API operations on a schedule. For information about which API operations can be scheduled, see ScheduledActionType.

        • ScheduledActionName (string) --

          The name of the scheduled action.

        • TargetAction (dict) --

          A JSON format string of the Amazon Redshift API operation with input parameters.

          " {\"ResizeCluster\":{\"NodeType\":\"ds2.8xlarge\",\"ClusterIdentifier\":\"my-test-cluster\",\"NumberOfNodes\":3}} ".

          • ResizeCluster (dict) --

            An action that runs a ResizeCluster API operation.

            • ClusterIdentifier (string) --

              The unique identifier for the cluster to resize.

            • ClusterType (string) --

              The new cluster type for the specified cluster.

            • NodeType (string) --

              The new node type for the nodes you are adding. If not specified, the cluster's current node type is used.

            • NumberOfNodes (integer) --

              The new number of nodes for the cluster. If not specified, the cluster's current number of nodes is used.

            • Classic (boolean) --

              A boolean value indicating whether the resize operation is using the classic resize process. If you don't provide this parameter or set the value to false , the resize type is elastic.

            • ReservedNodeId (string) --

              The identifier of the reserved node.

            • TargetReservedNodeOfferingId (string) --

              The identifier of the target reserved node offering.

          • PauseCluster (dict) --

            An action that runs a PauseCluster API operation.

            • ClusterIdentifier (string) --

              The identifier of the cluster to be paused.

          • ResumeCluster (dict) --

            An action that runs a ResumeCluster API operation.

            • ClusterIdentifier (string) --

              The identifier of the cluster to be resumed.

        • Schedule (string) --

          The schedule for a one-time (at format) or recurring (cron format) scheduled action. Schedule invocations must be separated by at least one hour.

          Format of at expressions is " at(yyyy-mm-ddThh:mm:ss) ". For example, " at(2016-03-04T17:27:00) ".

          Format of cron expressions is " cron(Minutes Hours Day-of-month Month Day-of-week Year) ". For example, " cron(0 10 ? * MON *) ". For more information, see Cron Expressions in the Amazon CloudWatch Events User Guide .

        • IamRole (string) --

          The IAM role to assume to run the scheduled action. This IAM role must have permission to run the Amazon Redshift API operation in the scheduled action. This IAM role must allow the Amazon Redshift scheduler (Principal scheduler.redshift.amazonaws.com) to assume permissions on your behalf. For more information about the IAM role to use with the Amazon Redshift scheduler, see Using Identity-Based Policies for Amazon Redshift in the Amazon Redshift Cluster Management Guide .

        • ScheduledActionDescription (string) --

          The description of the scheduled action.

        • State (string) --

          The state of the scheduled action. For example, DISABLED .

        • NextInvocations (list) --

          List of times when the scheduled action will run.

          • (datetime) --

        • StartTime (datetime) --

          The start time in UTC when the schedule is active. Before this time, the scheduled action does not trigger.

        • EndTime (datetime) --

          The end time in UTC when the schedule is no longer active. After this time, the scheduled action does not trigger.

DisableSnapshotCopy (updated) Link ¶
Changes (response)
{'Cluster': {'ReservedNodeExchangeStatus': {'RequestTime': 'timestamp',
                                            'ReservedNodeExchangeRequestId': 'string',
                                            'SourceReservedNodeCount': 'integer',
                                            'SourceReservedNodeId': 'string',
                                            'SourceReservedNodeType': 'string',
                                            'Status': 'REQUESTED | PENDING | '
                                                      'IN_PROGRESS | RETRYING '
                                                      '| SUCCEEDED | FAILED',
                                            'TargetReservedNodeCount': 'integer',
                                            'TargetReservedNodeOfferingId': 'string',
                                            'TargetReservedNodeType': 'string'}}}

Disables the automatic copying of snapshots from one region to another region for a specified cluster.

If your cluster and its snapshots are encrypted using a customer master key (CMK) from Key Management Service, use DeleteSnapshotCopyGrant to delete the grant that grants Amazon Redshift permission to the CMK in the destination region.

See also: AWS API Documentation

Request Syntax

client.disable_snapshot_copy(
    ClusterIdentifier='string'
)
type ClusterIdentifier

string

param ClusterIdentifier

[REQUIRED]

The unique identifier of the source cluster that you want to disable copying of snapshots to a destination region.

Constraints: Must be the valid name of an existing cluster that has cross-region snapshot copy enabled.

rtype

dict

returns

Response Syntax

{
    'Cluster': {
        'ClusterIdentifier': 'string',
        'NodeType': 'string',
        'ClusterStatus': 'string',
        'ClusterAvailabilityStatus': 'string',
        'ModifyStatus': 'string',
        'MasterUsername': 'string',
        'DBName': 'string',
        'Endpoint': {
            'Address': 'string',
            'Port': 123,
            'VpcEndpoints': [
                {
                    'VpcEndpointId': 'string',
                    'VpcId': 'string',
                    'NetworkInterfaces': [
                        {
                            'NetworkInterfaceId': 'string',
                            'SubnetId': 'string',
                            'PrivateIpAddress': 'string',
                            'AvailabilityZone': 'string'
                        },
                    ]
                },
            ]
        },
        'ClusterCreateTime': datetime(2015, 1, 1),
        'AutomatedSnapshotRetentionPeriod': 123,
        'ManualSnapshotRetentionPeriod': 123,
        'ClusterSecurityGroups': [
            {
                'ClusterSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'VpcSecurityGroups': [
            {
                'VpcSecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ClusterParameterGroups': [
            {
                'ParameterGroupName': 'string',
                'ParameterApplyStatus': 'string',
                'ClusterParameterStatusList': [
                    {
                        'ParameterName': 'string',
                        'ParameterApplyStatus': 'string',
                        'ParameterApplyErrorDescription': 'string'
                    },
                ]
            },
        ],
        'ClusterSubnetGroupName': 'string',
        'VpcId': 'string',
        'AvailabilityZone': 'string',
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'MasterUserPassword': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'ClusterType': 'string',
            'ClusterVersion': 'string',
            'AutomatedSnapshotRetentionPeriod': 123,
            'ClusterIdentifier': 'string',
            'PubliclyAccessible': True|False,
            'EnhancedVpcRouting': True|False,
            'MaintenanceTrackName': 'string',
            'EncryptionType': 'string'
        },
        'ClusterVersion': 'string',
        'AllowVersionUpgrade': True|False,
        'NumberOfNodes': 123,
        'PubliclyAccessible': True|False,
        'Encrypted': True|False,
        'RestoreStatus': {
            'Status': 'string',
            'CurrentRestoreRateInMegaBytesPerSecond': 123.0,
            'SnapshotSizeInMegaBytes': 123,
            'ProgressInMegaBytes': 123,
            'ElapsedTimeInSeconds': 123,
            'EstimatedTimeToCompletionInSeconds': 123
        },
        'DataTransferProgress': {
            'Status': 'string',
            'CurrentRateInMegaBytesPerSecond': 123.0,
            'TotalDataInMegaBytes': 123,
            'DataTransferredInMegaBytes': 123,
            'EstimatedTimeToCompletionInSeconds': 123,
            'ElapsedTimeInSeconds': 123
        },
        'HsmStatus': {
            'HsmClientCertificateIdentifier': 'string',
            'HsmConfigurationIdentifier': 'string',
            'Status': 'string'
        },
        'ClusterSnapshotCopyStatus': {
            'DestinationRegion': 'string',
            'RetentionPeriod': 123,
            'ManualSnapshotRetentionPeriod': 123,
            'SnapshotCopyGrantName': 'string'
        },
        'ClusterPublicKey': 'string',
        'ClusterNodes': [
            {
                'NodeRole': 'string',
                'PrivateIPAddress': 'string',
                'PublicIPAddress': 'string'
            },
        ],
        'ElasticIpStatus': {
            'ElasticIp': 'string',
            'Status': 'string'
        },
        'ClusterRevisionNumber': 'string',
        'Tags': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        'KmsKeyId': 'string',
        'EnhancedVpcRouting': True|False,
        'IamRoles': [
            {
                'IamRoleArn': 'string',
                'ApplyStatus': 'string'
            },
        ],
        'PendingActions': [
            'string',
        ],
        'MaintenanceTrackName': 'string',
        'ElasticResizeNumberOfNodeOptions': 'string',
        'DeferredMaintenanceWindows': [
            {
                'DeferMaintenanceIdentifier': 'string',
                'DeferMaintenanceStartTime': datetime(2015, 1, 1),
                'DeferMaintenanceEndTime': datetime(2015, 1, 1)
            },
        ],
        'SnapshotScheduleIdentifier': 'string',
        'SnapshotScheduleState': 'MODIFYING'|'ACTIVE'|'FAILED',
        'ExpectedNextSnapshotScheduleTime': datetime(2015, 1, 1),
        'ExpectedNextSnapshotScheduleTimeStatus': 'string',
        'NextMaintenanceWindowStartTime': datetime(2015, 1, 1),
        'ResizeInfo': {
            'ResizeType': 'string',
            'AllowCancelResize': True|False
        },
        'AvailabilityZoneRelocationStatus': 'string',
        'ClusterNamespaceArn': 'string',
        'TotalStorageCapacityInMegaBytes': 123,
        'AquaConfiguration': {
            'AquaStatus': 'enabled'|'disabled'|'applying',
            'AquaConfigurationStatus': 'enabled'|'disabled'|'auto'
        },
        'DefaultIamRoleArn': 'string',
        'ReservedNodeExchangeStatus': {
            'ReservedNodeExchangeRequestId': 'string',
            'Status': 'REQUESTED'|'PENDING'|'IN_PROGRESS'|'RETRYING'|'SUCCEEDED'|'FAILED',
            'RequestTime': datetime(2015, 1, 1),
            'SourceReservedNodeId': 'string',
            'SourceReservedNodeType': 'string',
            'SourceReservedNodeCount': 123,
            'TargetReservedNodeOfferingId': 'string',
            'TargetReservedNodeType': 'string',
            'TargetReservedNodeCount': 123
        }
    }
}

Response Structure

  • (dict) --

    • Cluster (dict) --

      Describes a cluster.

      • ClusterIdentifier (string) --

        The unique identifier of the cluster.

      • NodeType (string) --

        The node type for the nodes in the cluster.

      • ClusterStatus (string) --

        The current state of the cluster. Possible values are the following:

        • available

        • available, prep-for-resize

        • available, resize-cleanup

        • cancelling-resize

        • creating

        • deleting

        • final-snapshot

        • hardware-failure

        • incompatible-hsm

        • incompatible-network

        • incompatible-parameters

        • incompatible-restore

        • modifying

        • paused

        • rebooting

        • renaming

        • resizing

        • rotating-keys

        • storage-full

        • updating-hsm

      • ClusterAvailabilityStatus (string) --

        The availability status of the cluster for queries. Possible values are the following:

        • Available - The cluster is available for queries.

        • Unavailable - The cluster is not available for queries.

        • Maintenance - The cluster is intermittently available for queries due to maintenance activities.

        • Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.

        • Failed - The cluster failed and is not available for queries.

      • ModifyStatus (string) --

        The status of a modify operation, if any, initiated for the cluster.

      • MasterUsername (string) --

        The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

      • DBName (string) --

        The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named dev dev was created by default.

      • Endpoint (dict) --

        The connection endpoint.

        • Address (string) --

          The DNS address of the Cluster.

        • Port (integer) --

          The port that the database engine is listening on.

        • VpcEndpoints (list) --

          Describes a connection endpoint.

          • (dict) --

            The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

            • VpcEndpointId (string) --

              The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.

            • VpcId (string) --

              The VPC identifier that the endpoint is associated.

            • NetworkInterfaces (list) --

              One or more network interfaces of the endpoint. Also known as an interface endpoint.

              • (dict) --

                Describes a network interface.

                • NetworkInterfaceId (string) --

                  The network interface identifier.

                • SubnetId (string) --

                  The subnet identifier.

                • PrivateIpAddress (string) --

                  The IPv4 address of the network interface within the subnet.

                • AvailabilityZone (string) --

                  The Availability Zone.

      • ClusterCreateTime (datetime) --

        The date and time that the cluster was created.

      • AutomatedSnapshotRetentionPeriod (integer) --

        The number of days that automatic cluster snapshots are retained.

      • ManualSnapshotRetentionPeriod (integer) --

        The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

        The value must be either -1 or an integer between 1 and 3,653.

      • ClusterSecurityGroups (list) --

        A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

        Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

        • (dict) --

          Describes a cluster security group.

          • ClusterSecurityGroupName (string) --

            The name of the cluster security group.

          • Status (string) --

            The status of the cluster security group.

      • VpcSecurityGroups (list) --

        A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

        • (dict) --

          Describes the members of a VPC security group.

          • VpcSecurityGroupId (string) --

            The identifier of the VPC security group.

          • Status (string) --

            The status of the VPC security group.

      • ClusterParameterGroups (list) --

        The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

        • (dict) --

          Describes the status of a parameter group.

          • ParameterGroupName (string) --

            The name of the cluster parameter group.

          • ParameterApplyStatus (string) --

            The status of parameter updates.

          • ClusterParameterStatusList (list) --

            The list of parameter statuses.

            For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide .

            • (dict) --

              Describes the status of a parameter group.

              • ParameterName (string) --

                The name of the parameter.

              • ParameterApplyStatus (string) --

                The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.

                The following are possible statuses and descriptions.

                • in-sync : The parameter value is in sync with the database.

                • pending-reboot : The parameter value will be applied after the cluster reboots.

                • applying : The parameter value is being applied to the database.

                • invalid-parameter : Cannot apply the parameter value because it has an invalid value or syntax.

                • apply-deferred : The parameter contains static property changes. The changes are deferred until the cluster reboots.

                • apply-error : Cannot connect to the cluster. The parameter change will be applied after the cluster reboots.

                • unknown-error : Cannot apply the parameter change right now. The change will be applied after the cluster reboots.

              • ParameterApplyErrorDescription (string) --

                The error that prevented the parameter from being applied to the database.

      • ClusterSubnetGroupName (string) --

        The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

      • VpcId (string) --

        The identifier of the VPC the cluster is in, if the cluster is in a VPC.

      • AvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located.

      • PreferredMaintenanceWindow (string) --

        The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

      • PendingModifiedValues (dict) --

        A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

        • MasterUserPassword (string) --

          The pending or in-progress change of the admin user password for the cluster.

        • NodeType (string) --

          The pending or in-progress change of the cluster's node type.

        • NumberOfNodes (integer) --

          The pending or in-progress change of the number of nodes in the cluster.

        • ClusterType (string) --

          The pending or in-progress change of the cluster type.

        • ClusterVersion (string) --

          The pending or in-progress change of the service version.

        • AutomatedSnapshotRetentionPeriod (integer) --

          The pending or in-progress change of the automated snapshot retention period.

        • ClusterIdentifier (string) --

          The pending or in-progress change of the new identifier for the cluster.

        • PubliclyAccessible (boolean) --

          The pending or in-progress change of the ability to connect to the cluster from the public network.

        • EnhancedVpcRouting (boolean) --

          An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

          If this option is true , enhanced VPC routing is enabled.

          Default: false

        • MaintenanceTrackName (string) --

          The name of the maintenance track that the cluster will change to during the next maintenance window.

        • EncryptionType (string) --

          The encryption type for a cluster. Possible values are: KMS and None.

      • ClusterVersion (string) --

        The version ID of the Amazon Redshift engine that is running on the cluster.

      • AllowVersionUpgrade (boolean) --

        A boolean value that, if true , indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

      • NumberOfNodes (integer) --

        The number of compute nodes in the cluster.

      • PubliclyAccessible (boolean) --

        A boolean value that, if true , indicates that the cluster can be accessed from a public network.

      • Encrypted (boolean) --

        A boolean value that, if true , indicates that data in the cluster is encrypted at rest.

      • RestoreStatus (dict) --

        A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

        • Status (string) --

          The status of the restore action. Returns starting, restoring, completed, or failed.

        • CurrentRestoreRateInMegaBytesPerSecond (float) --

          The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.

        • SnapshotSizeInMegaBytes (integer) --

          The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.

        • ProgressInMegaBytes (integer) --

          The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.

        • ElapsedTimeInSeconds (integer) --

          The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.

        • EstimatedTimeToCompletionInSeconds (integer) --

          The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.

      • DataTransferProgress (dict) --

        • Status (string) --

          Describes the status of the cluster. While the transfer is in progress the status is transferringdata .

        • CurrentRateInMegaBytesPerSecond (float) --

          Describes the data transfer rate in MB's per second.

        • TotalDataInMegaBytes (integer) --

          Describes the total amount of data to be transfered in megabytes.

        • DataTransferredInMegaBytes (integer) --

          Describes the total amount of data that has been transfered in MB's.

        • EstimatedTimeToCompletionInSeconds (integer) --

          Describes the estimated number of seconds remaining to complete the transfer.

        • ElapsedTimeInSeconds (integer) --

          Describes the number of seconds that have elapsed during the data transfer.

      • HsmStatus (dict) --

        A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

        Values: active, applying

        • HsmClientCertificateIdentifier (string) --

          Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

        • HsmConfigurationIdentifier (string) --

          Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

        • Status (string) --

          Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.

          Values: active, applying

      • ClusterSnapshotCopyStatus (dict) --

        A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

        • DestinationRegion (string) --

          The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

        • RetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

        • ManualSnapshotRetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely.

          The value must be either -1 or an integer between 1 and 3,653.

        • SnapshotCopyGrantName (string) --

          The name of the snapshot copy grant.

      • ClusterPublicKey (string) --

        The public key for the cluster.

      • ClusterNodes (list) --

        The nodes in the cluster.

        • (dict) --

          The identifier of a node in a cluster.

          • NodeRole (string) --

            Whether the node is a leader node or a compute node.

          • PrivateIPAddress (string) --

            The private IP address of a node within a cluster.

          • PublicIPAddress (string) --

            The public IP address of a node within a cluster.

      • ElasticIpStatus (dict) --

        The status of the elastic IP (EIP) address.

        • ElasticIp (string) --

          The elastic IP (EIP) address for the cluster.

        • Status (string) --

          The status of the elastic IP (EIP) address.

      • ClusterRevisionNumber (string) --

        The specific revision number of the database in the cluster.

      • Tags (list) --

        The list of tags for the cluster.

        • (dict) --

          A tag consisting of a name/value pair for a resource.

          • Key (string) --

            The key, or name, for the resource tag.

          • Value (string) --

            The value for the resource tag.

      • KmsKeyId (string) --

        The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.

      • EnhancedVpcRouting (boolean) --

        An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

        If this option is true , enhanced VPC routing is enabled.

        Default: false

      • IamRoles (list) --

        A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

        • (dict) --

          An Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other Amazon Web Services services.

          • IamRoleArn (string) --

            The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload .

          • ApplyStatus (string) --

            A value that describes the status of the IAM role's association with an Amazon Redshift cluster.

            The following are possible statuses and descriptions.

            • in-sync : The role is available for use by the cluster.

            • adding : The role is in the process of being associated with the cluster.

            • removing : The role is in the process of being disassociated with the cluster.

      • PendingActions (list) --

        Cluster operations that are waiting to be started.

        • (string) --

      • MaintenanceTrackName (string) --

        The name of the maintenance track for the cluster.

      • ElasticResizeNumberOfNodeOptions (string) --

        The number of nodes that you can resize the cluster to with the elastic resize method.

      • DeferredMaintenanceWindows (list) --

        Describes a group of DeferredMaintenanceWindow objects.

        • (dict) --

          Describes a deferred maintenance window

          • DeferMaintenanceIdentifier (string) --

            A unique identifier for the maintenance window.

          • DeferMaintenanceStartTime (datetime) --

            A timestamp for the beginning of the time period when we defer maintenance.

          • DeferMaintenanceEndTime (datetime) --

            A timestamp for the end of the time period when we defer maintenance.

      • SnapshotScheduleIdentifier (string) --

        A unique identifier for the cluster snapshot schedule.

      • SnapshotScheduleState (string) --

        The current state of the cluster snapshot schedule.

      • ExpectedNextSnapshotScheduleTime (datetime) --

        The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.

      • ExpectedNextSnapshotScheduleTimeStatus (string) --

        The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:

        • OnTrack - The next snapshot is expected to be taken on time.

        • Pending - The next snapshot is pending to be taken.

      • NextMaintenanceWindowStartTime (datetime) --

        The date and time in UTC when system maintenance can begin.

      • ResizeInfo (dict) --

        Returns the following:

        • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.

        • ResizeType: Returns ClassicResize

        • ResizeType (string) --

          Returns the value ClassicResize .

        • AllowCancelResize (boolean) --

          A boolean value indicating if the resize operation can be cancelled.

      • AvailabilityZoneRelocationStatus (string) --

        Describes the status of the Availability Zone relocation operation.

      • ClusterNamespaceArn (string) --

        The namespace Amazon Resource Name (ARN) of the cluster.

      • TotalStorageCapacityInMegaBytes (integer) --

        The total storage capacity of the cluster in megabytes.

      • AquaConfiguration (dict) --

        The AQUA (Advanced Query Accelerator) configuration of the cluster.

        • AquaStatus (string) --

          The value indicates the status of AQUA on the cluster. Possible values include the following.

          • enabled - AQUA is enabled.

          • disabled - AQUA is not enabled.

          • applying - AQUA status is being applied.

        • AquaConfigurationStatus (string) --

          The value represents how the cluster is configured to use AQUA. Possible values include the following.

          • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

          • disabled - Don't use AQUA.

          • auto - Amazon Redshift determines whether to use AQUA.

      • DefaultIamRoleArn (string) --

        The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.

      • ReservedNodeExchangeStatus (dict) --

        The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • ReservedNodeExchangeRequestId (string) --

          The identifier of the reserved-node exchange request.

        • Status (string) --

          The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • RequestTime (datetime) --

          A date and time that indicate when the reserved-node exchange was requested.

        • SourceReservedNodeId (string) --

          The identifier of the source reserved node.

        • SourceReservedNodeType (string) --

          The source reserved-node type, for example ds2.xlarge.

        • SourceReservedNodeCount (integer) --

          The source reserved-node count in the cluster.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

        • TargetReservedNodeType (string) --

          The node type of the target reserved node, for example ra3.4xlarge.

        • TargetReservedNodeCount (integer) --

          The count of target reserved nodes in the cluster.

EnableSnapshotCopy (updated) Link ¶
Changes (response)
{'Cluster': {'ReservedNodeExchangeStatus': {'RequestTime': 'timestamp',
                                            'ReservedNodeExchangeRequestId': 'string',
                                            'SourceReservedNodeCount': 'integer',
                                            'SourceReservedNodeId': 'string',
                                            'SourceReservedNodeType': 'string',
                                            'Status': 'REQUESTED | PENDING | '
                                                      'IN_PROGRESS | RETRYING '
                                                      '| SUCCEEDED | FAILED',
                                            'TargetReservedNodeCount': 'integer',
                                            'TargetReservedNodeOfferingId': 'string',
                                            'TargetReservedNodeType': 'string'}}}

Enables the automatic copy of snapshots from one region to another region for a specified cluster.

See also: AWS API Documentation

Request Syntax

client.enable_snapshot_copy(
    ClusterIdentifier='string',
    DestinationRegion='string',
    RetentionPeriod=123,
    SnapshotCopyGrantName='string',
    ManualSnapshotRetentionPeriod=123
)
type ClusterIdentifier

string

param ClusterIdentifier

[REQUIRED]

The unique identifier of the source cluster to copy snapshots from.

Constraints: Must be the valid name of an existing cluster that does not already have cross-region snapshot copy enabled.

type DestinationRegion

string

param DestinationRegion

[REQUIRED]

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

Constraints: Must be the name of a valid Amazon Web Services Region. For more information, see Regions and Endpoints in the Amazon Web Services General Reference.

type RetentionPeriod

integer

param RetentionPeriod

The number of days to retain automated snapshots in the destination region after they are copied from the source region.

Default: 7.

Constraints: Must be at least 1 and no more than 35.

type SnapshotCopyGrantName

string

param SnapshotCopyGrantName

The name of the snapshot copy grant to use when snapshots of an Amazon Web Services KMS-encrypted cluster are copied to the destination region.

type ManualSnapshotRetentionPeriod

integer

param ManualSnapshotRetentionPeriod

The number of days to retain newly copied snapshots in the destination Amazon Web Services Region after they are copied from the source Amazon Web Services Region. If the value is -1, the manual snapshot is retained indefinitely.

The value must be either -1 or an integer between 1 and 3,653.

rtype

dict

returns

Response Syntax

{
    'Cluster': {
        'ClusterIdentifier': 'string',
        'NodeType': 'string',
        'ClusterStatus': 'string',
        'ClusterAvailabilityStatus': 'string',
        'ModifyStatus': 'string',
        'MasterUsername': 'string',
        'DBName': 'string',
        'Endpoint': {
            'Address': 'string',
            'Port': 123,
            'VpcEndpoints': [
                {
                    'VpcEndpointId': 'string',
                    'VpcId': 'string',
                    'NetworkInterfaces': [
                        {
                            'NetworkInterfaceId': 'string',
                            'SubnetId': 'string',
                            'PrivateIpAddress': 'string',
                            'AvailabilityZone': 'string'
                        },
                    ]
                },
            ]
        },
        'ClusterCreateTime': datetime(2015, 1, 1),
        'AutomatedSnapshotRetentionPeriod': 123,
        'ManualSnapshotRetentionPeriod': 123,
        'ClusterSecurityGroups': [
            {
                'ClusterSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'VpcSecurityGroups': [
            {
                'VpcSecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ClusterParameterGroups': [
            {
                'ParameterGroupName': 'string',
                'ParameterApplyStatus': 'string',
                'ClusterParameterStatusList': [
                    {
                        'ParameterName': 'string',
                        'ParameterApplyStatus': 'string',
                        'ParameterApplyErrorDescription': 'string'
                    },
                ]
            },
        ],
        'ClusterSubnetGroupName': 'string',
        'VpcId': 'string',
        'AvailabilityZone': 'string',
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'MasterUserPassword': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'ClusterType': 'string',
            'ClusterVersion': 'string',
            'AutomatedSnapshotRetentionPeriod': 123,
            'ClusterIdentifier': 'string',
            'PubliclyAccessible': True|False,
            'EnhancedVpcRouting': True|False,
            'MaintenanceTrackName': 'string',
            'EncryptionType': 'string'
        },
        'ClusterVersion': 'string',
        'AllowVersionUpgrade': True|False,
        'NumberOfNodes': 123,
        'PubliclyAccessible': True|False,
        'Encrypted': True|False,
        'RestoreStatus': {
            'Status': 'string',
            'CurrentRestoreRateInMegaBytesPerSecond': 123.0,
            'SnapshotSizeInMegaBytes': 123,
            'ProgressInMegaBytes': 123,
            'ElapsedTimeInSeconds': 123,
            'EstimatedTimeToCompletionInSeconds': 123
        },
        'DataTransferProgress': {
            'Status': 'string',
            'CurrentRateInMegaBytesPerSecond': 123.0,
            'TotalDataInMegaBytes': 123,
            'DataTransferredInMegaBytes': 123,
            'EstimatedTimeToCompletionInSeconds': 123,
            'ElapsedTimeInSeconds': 123
        },
        'HsmStatus': {
            'HsmClientCertificateIdentifier': 'string',
            'HsmConfigurationIdentifier': 'string',
            'Status': 'string'
        },
        'ClusterSnapshotCopyStatus': {
            'DestinationRegion': 'string',
            'RetentionPeriod': 123,
            'ManualSnapshotRetentionPeriod': 123,
            'SnapshotCopyGrantName': 'string'
        },
        'ClusterPublicKey': 'string',
        'ClusterNodes': [
            {
                'NodeRole': 'string',
                'PrivateIPAddress': 'string',
                'PublicIPAddress': 'string'
            },
        ],
        'ElasticIpStatus': {
            'ElasticIp': 'string',
            'Status': 'string'
        },
        'ClusterRevisionNumber': 'string',
        'Tags': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        'KmsKeyId': 'string',
        'EnhancedVpcRouting': True|False,
        'IamRoles': [
            {
                'IamRoleArn': 'string',
                'ApplyStatus': 'string'
            },
        ],
        'PendingActions': [
            'string',
        ],
        'MaintenanceTrackName': 'string',
        'ElasticResizeNumberOfNodeOptions': 'string',
        'DeferredMaintenanceWindows': [
            {
                'DeferMaintenanceIdentifier': 'string',
                'DeferMaintenanceStartTime': datetime(2015, 1, 1),
                'DeferMaintenanceEndTime': datetime(2015, 1, 1)
            },
        ],
        'SnapshotScheduleIdentifier': 'string',
        'SnapshotScheduleState': 'MODIFYING'|'ACTIVE'|'FAILED',
        'ExpectedNextSnapshotScheduleTime': datetime(2015, 1, 1),
        'ExpectedNextSnapshotScheduleTimeStatus': 'string',
        'NextMaintenanceWindowStartTime': datetime(2015, 1, 1),
        'ResizeInfo': {
            'ResizeType': 'string',
            'AllowCancelResize': True|False
        },
        'AvailabilityZoneRelocationStatus': 'string',
        'ClusterNamespaceArn': 'string',
        'TotalStorageCapacityInMegaBytes': 123,
        'AquaConfiguration': {
            'AquaStatus': 'enabled'|'disabled'|'applying',
            'AquaConfigurationStatus': 'enabled'|'disabled'|'auto'
        },
        'DefaultIamRoleArn': 'string',
        'ReservedNodeExchangeStatus': {
            'ReservedNodeExchangeRequestId': 'string',
            'Status': 'REQUESTED'|'PENDING'|'IN_PROGRESS'|'RETRYING'|'SUCCEEDED'|'FAILED',
            'RequestTime': datetime(2015, 1, 1),
            'SourceReservedNodeId': 'string',
            'SourceReservedNodeType': 'string',
            'SourceReservedNodeCount': 123,
            'TargetReservedNodeOfferingId': 'string',
            'TargetReservedNodeType': 'string',
            'TargetReservedNodeCount': 123
        }
    }
}

Response Structure

  • (dict) --

    • Cluster (dict) --

      Describes a cluster.

      • ClusterIdentifier (string) --

        The unique identifier of the cluster.

      • NodeType (string) --

        The node type for the nodes in the cluster.

      • ClusterStatus (string) --

        The current state of the cluster. Possible values are the following:

        • available

        • available, prep-for-resize

        • available, resize-cleanup

        • cancelling-resize

        • creating

        • deleting

        • final-snapshot

        • hardware-failure

        • incompatible-hsm

        • incompatible-network

        • incompatible-parameters

        • incompatible-restore

        • modifying

        • paused

        • rebooting

        • renaming

        • resizing

        • rotating-keys

        • storage-full

        • updating-hsm

      • ClusterAvailabilityStatus (string) --

        The availability status of the cluster for queries. Possible values are the following:

        • Available - The cluster is available for queries.

        • Unavailable - The cluster is not available for queries.

        • Maintenance - The cluster is intermittently available for queries due to maintenance activities.

        • Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.

        • Failed - The cluster failed and is not available for queries.

      • ModifyStatus (string) --

        The status of a modify operation, if any, initiated for the cluster.

      • MasterUsername (string) --

        The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

      • DBName (string) --

        The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named dev dev was created by default.

      • Endpoint (dict) --

        The connection endpoint.

        • Address (string) --

          The DNS address of the Cluster.

        • Port (integer) --

          The port that the database engine is listening on.

        • VpcEndpoints (list) --

          Describes a connection endpoint.

          • (dict) --

            The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

            • VpcEndpointId (string) --

              The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.

            • VpcId (string) --

              The VPC identifier that the endpoint is associated.

            • NetworkInterfaces (list) --

              One or more network interfaces of the endpoint. Also known as an interface endpoint.

              • (dict) --

                Describes a network interface.

                • NetworkInterfaceId (string) --

                  The network interface identifier.

                • SubnetId (string) --

                  The subnet identifier.

                • PrivateIpAddress (string) --

                  The IPv4 address of the network interface within the subnet.

                • AvailabilityZone (string) --

                  The Availability Zone.

      • ClusterCreateTime (datetime) --

        The date and time that the cluster was created.

      • AutomatedSnapshotRetentionPeriod (integer) --

        The number of days that automatic cluster snapshots are retained.

      • ManualSnapshotRetentionPeriod (integer) --

        The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

        The value must be either -1 or an integer between 1 and 3,653.

      • ClusterSecurityGroups (list) --

        A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

        Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

        • (dict) --

          Describes a cluster security group.

          • ClusterSecurityGroupName (string) --

            The name of the cluster security group.

          • Status (string) --

            The status of the cluster security group.

      • VpcSecurityGroups (list) --

        A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

        • (dict) --

          Describes the members of a VPC security group.

          • VpcSecurityGroupId (string) --

            The identifier of the VPC security group.

          • Status (string) --

            The status of the VPC security group.

      • ClusterParameterGroups (list) --

        The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

        • (dict) --

          Describes the status of a parameter group.

          • ParameterGroupName (string) --

            The name of the cluster parameter group.

          • ParameterApplyStatus (string) --

            The status of parameter updates.

          • ClusterParameterStatusList (list) --

            The list of parameter statuses.

            For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide .

            • (dict) --

              Describes the status of a parameter group.

              • ParameterName (string) --

                The name of the parameter.

              • ParameterApplyStatus (string) --

                The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.

                The following are possible statuses and descriptions.

                • in-sync : The parameter value is in sync with the database.

                • pending-reboot : The parameter value will be applied after the cluster reboots.

                • applying : The parameter value is being applied to the database.

                • invalid-parameter : Cannot apply the parameter value because it has an invalid value or syntax.

                • apply-deferred : The parameter contains static property changes. The changes are deferred until the cluster reboots.

                • apply-error : Cannot connect to the cluster. The parameter change will be applied after the cluster reboots.

                • unknown-error : Cannot apply the parameter change right now. The change will be applied after the cluster reboots.

              • ParameterApplyErrorDescription (string) --

                The error that prevented the parameter from being applied to the database.

      • ClusterSubnetGroupName (string) --

        The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

      • VpcId (string) --

        The identifier of the VPC the cluster is in, if the cluster is in a VPC.

      • AvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located.

      • PreferredMaintenanceWindow (string) --

        The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

      • PendingModifiedValues (dict) --

        A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

        • MasterUserPassword (string) --

          The pending or in-progress change of the admin user password for the cluster.

        • NodeType (string) --

          The pending or in-progress change of the cluster's node type.

        • NumberOfNodes (integer) --

          The pending or in-progress change of the number of nodes in the cluster.

        • ClusterType (string) --

          The pending or in-progress change of the cluster type.

        • ClusterVersion (string) --

          The pending or in-progress change of the service version.

        • AutomatedSnapshotRetentionPeriod (integer) --

          The pending or in-progress change of the automated snapshot retention period.

        • ClusterIdentifier (string) --

          The pending or in-progress change of the new identifier for the cluster.

        • PubliclyAccessible (boolean) --

          The pending or in-progress change of the ability to connect to the cluster from the public network.

        • EnhancedVpcRouting (boolean) --

          An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

          If this option is true , enhanced VPC routing is enabled.

          Default: false

        • MaintenanceTrackName (string) --

          The name of the maintenance track that the cluster will change to during the next maintenance window.

        • EncryptionType (string) --

          The encryption type for a cluster. Possible values are: KMS and None.

      • ClusterVersion (string) --

        The version ID of the Amazon Redshift engine that is running on the cluster.

      • AllowVersionUpgrade (boolean) --

        A boolean value that, if true , indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

      • NumberOfNodes (integer) --

        The number of compute nodes in the cluster.

      • PubliclyAccessible (boolean) --

        A boolean value that, if true , indicates that the cluster can be accessed from a public network.

      • Encrypted (boolean) --

        A boolean value that, if true , indicates that data in the cluster is encrypted at rest.

      • RestoreStatus (dict) --

        A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

        • Status (string) --

          The status of the restore action. Returns starting, restoring, completed, or failed.

        • CurrentRestoreRateInMegaBytesPerSecond (float) --

          The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.

        • SnapshotSizeInMegaBytes (integer) --

          The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.

        • ProgressInMegaBytes (integer) --

          The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.

        • ElapsedTimeInSeconds (integer) --

          The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.

        • EstimatedTimeToCompletionInSeconds (integer) --

          The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.

      • DataTransferProgress (dict) --

        • Status (string) --

          Describes the status of the cluster. While the transfer is in progress the status is transferringdata .

        • CurrentRateInMegaBytesPerSecond (float) --

          Describes the data transfer rate in MB's per second.

        • TotalDataInMegaBytes (integer) --

          Describes the total amount of data to be transfered in megabytes.

        • DataTransferredInMegaBytes (integer) --

          Describes the total amount of data that has been transfered in MB's.

        • EstimatedTimeToCompletionInSeconds (integer) --

          Describes the estimated number of seconds remaining to complete the transfer.

        • ElapsedTimeInSeconds (integer) --

          Describes the number of seconds that have elapsed during the data transfer.

      • HsmStatus (dict) --

        A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

        Values: active, applying

        • HsmClientCertificateIdentifier (string) --

          Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

        • HsmConfigurationIdentifier (string) --

          Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

        • Status (string) --

          Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.

          Values: active, applying

      • ClusterSnapshotCopyStatus (dict) --

        A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

        • DestinationRegion (string) --

          The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

        • RetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

        • ManualSnapshotRetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely.

          The value must be either -1 or an integer between 1 and 3,653.

        • SnapshotCopyGrantName (string) --

          The name of the snapshot copy grant.

      • ClusterPublicKey (string) --

        The public key for the cluster.

      • ClusterNodes (list) --

        The nodes in the cluster.

        • (dict) --

          The identifier of a node in a cluster.

          • NodeRole (string) --

            Whether the node is a leader node or a compute node.

          • PrivateIPAddress (string) --

            The private IP address of a node within a cluster.

          • PublicIPAddress (string) --

            The public IP address of a node within a cluster.

      • ElasticIpStatus (dict) --

        The status of the elastic IP (EIP) address.

        • ElasticIp (string) --

          The elastic IP (EIP) address for the cluster.

        • Status (string) --

          The status of the elastic IP (EIP) address.

      • ClusterRevisionNumber (string) --

        The specific revision number of the database in the cluster.

      • Tags (list) --

        The list of tags for the cluster.

        • (dict) --

          A tag consisting of a name/value pair for a resource.

          • Key (string) --

            The key, or name, for the resource tag.

          • Value (string) --

            The value for the resource tag.

      • KmsKeyId (string) --

        The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.

      • EnhancedVpcRouting (boolean) --

        An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

        If this option is true , enhanced VPC routing is enabled.

        Default: false

      • IamRoles (list) --

        A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

        • (dict) --

          An Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other Amazon Web Services services.

          • IamRoleArn (string) --

            The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload .

          • ApplyStatus (string) --

            A value that describes the status of the IAM role's association with an Amazon Redshift cluster.

            The following are possible statuses and descriptions.

            • in-sync : The role is available for use by the cluster.

            • adding : The role is in the process of being associated with the cluster.

            • removing : The role is in the process of being disassociated with the cluster.

      • PendingActions (list) --

        Cluster operations that are waiting to be started.

        • (string) --

      • MaintenanceTrackName (string) --

        The name of the maintenance track for the cluster.

      • ElasticResizeNumberOfNodeOptions (string) --

        The number of nodes that you can resize the cluster to with the elastic resize method.

      • DeferredMaintenanceWindows (list) --

        Describes a group of DeferredMaintenanceWindow objects.

        • (dict) --

          Describes a deferred maintenance window

          • DeferMaintenanceIdentifier (string) --

            A unique identifier for the maintenance window.

          • DeferMaintenanceStartTime (datetime) --

            A timestamp for the beginning of the time period when we defer maintenance.

          • DeferMaintenanceEndTime (datetime) --

            A timestamp for the end of the time period when we defer maintenance.

      • SnapshotScheduleIdentifier (string) --

        A unique identifier for the cluster snapshot schedule.

      • SnapshotScheduleState (string) --

        The current state of the cluster snapshot schedule.

      • ExpectedNextSnapshotScheduleTime (datetime) --

        The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.

      • ExpectedNextSnapshotScheduleTimeStatus (string) --

        The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:

        • OnTrack - The next snapshot is expected to be taken on time.

        • Pending - The next snapshot is pending to be taken.

      • NextMaintenanceWindowStartTime (datetime) --

        The date and time in UTC when system maintenance can begin.

      • ResizeInfo (dict) --

        Returns the following:

        • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.

        • ResizeType: Returns ClassicResize

        • ResizeType (string) --

          Returns the value ClassicResize .

        • AllowCancelResize (boolean) --

          A boolean value indicating if the resize operation can be cancelled.

      • AvailabilityZoneRelocationStatus (string) --

        Describes the status of the Availability Zone relocation operation.

      • ClusterNamespaceArn (string) --

        The namespace Amazon Resource Name (ARN) of the cluster.

      • TotalStorageCapacityInMegaBytes (integer) --

        The total storage capacity of the cluster in megabytes.

      • AquaConfiguration (dict) --

        The AQUA (Advanced Query Accelerator) configuration of the cluster.

        • AquaStatus (string) --

          The value indicates the status of AQUA on the cluster. Possible values include the following.

          • enabled - AQUA is enabled.

          • disabled - AQUA is not enabled.

          • applying - AQUA status is being applied.

        • AquaConfigurationStatus (string) --

          The value represents how the cluster is configured to use AQUA. Possible values include the following.

          • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

          • disabled - Don't use AQUA.

          • auto - Amazon Redshift determines whether to use AQUA.

      • DefaultIamRoleArn (string) --

        The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.

      • ReservedNodeExchangeStatus (dict) --

        The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • ReservedNodeExchangeRequestId (string) --

          The identifier of the reserved-node exchange request.

        • Status (string) --

          The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • RequestTime (datetime) --

          A date and time that indicate when the reserved-node exchange was requested.

        • SourceReservedNodeId (string) --

          The identifier of the source reserved node.

        • SourceReservedNodeType (string) --

          The source reserved-node type, for example ds2.xlarge.

        • SourceReservedNodeCount (integer) --

          The source reserved-node count in the cluster.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

        • TargetReservedNodeType (string) --

          The node type of the target reserved node, for example ra3.4xlarge.

        • TargetReservedNodeCount (integer) --

          The count of target reserved nodes in the cluster.

ModifyCluster (updated) Link ¶
Changes (response)
{'Cluster': {'ReservedNodeExchangeStatus': {'RequestTime': 'timestamp',
                                            'ReservedNodeExchangeRequestId': 'string',
                                            'SourceReservedNodeCount': 'integer',
                                            'SourceReservedNodeId': 'string',
                                            'SourceReservedNodeType': 'string',
                                            'Status': 'REQUESTED | PENDING | '
                                                      'IN_PROGRESS | RETRYING '
                                                      '| SUCCEEDED | FAILED',
                                            'TargetReservedNodeCount': 'integer',
                                            'TargetReservedNodeOfferingId': 'string',
                                            'TargetReservedNodeType': 'string'}}}

Modifies the settings for a cluster.

You can also change node type and the number of nodes to scale up or down the cluster. When resizing a cluster, you must specify both the number of nodes and the node type even if one of the parameters does not change.

You can add another security or parameter group, or change the admin user password. Resetting a cluster password or modifying the security groups associated with a cluster do not need a reboot. However, modifying a parameter group requires a reboot for parameters to take effect. For more information about managing clusters, go to Amazon Redshift Clusters in the Amazon Redshift Cluster Management Guide .

See also: AWS API Documentation

Request Syntax

client.modify_cluster(
    ClusterIdentifier='string',
    ClusterType='string',
    NodeType='string',
    NumberOfNodes=123,
    ClusterSecurityGroups=[
        'string',
    ],
    VpcSecurityGroupIds=[
        'string',
    ],
    MasterUserPassword='string',
    ClusterParameterGroupName='string',
    AutomatedSnapshotRetentionPeriod=123,
    ManualSnapshotRetentionPeriod=123,
    PreferredMaintenanceWindow='string',
    ClusterVersion='string',
    AllowVersionUpgrade=True|False,
    HsmClientCertificateIdentifier='string',
    HsmConfigurationIdentifier='string',
    NewClusterIdentifier='string',
    PubliclyAccessible=True|False,
    ElasticIp='string',
    EnhancedVpcRouting=True|False,
    MaintenanceTrackName='string',
    Encrypted=True|False,
    KmsKeyId='string',
    AvailabilityZoneRelocation=True|False,
    AvailabilityZone='string',
    Port=123
)
type ClusterIdentifier

string

param ClusterIdentifier

[REQUIRED]

The unique identifier of the cluster to be modified.

Example: examplecluster

type ClusterType

string

param ClusterType

The new cluster type.

When you submit your cluster resize request, your existing cluster goes into a read-only mode. After Amazon Redshift provisions a new cluster based on your resize requirements, there will be outage for a period while the old cluster is deleted and your connection is switched to the new cluster. You can use DescribeResize to track the progress of the resize request.

Valid Values: multi-node | single-node

type NodeType

string

param NodeType

The new node type of the cluster. If you specify a new node type, you must also specify the number of nodes parameter.

For more information about resizing clusters, go to Resizing Clusters in Amazon Redshift in the Amazon Redshift Cluster Management Guide .

Valid Values: ds2.xlarge | ds2.8xlarge | dc1.large | dc1.8xlarge | dc2.large | dc2.8xlarge | ra3.xlplus | ra3.4xlarge | ra3.16xlarge

type NumberOfNodes

integer

param NumberOfNodes

The new number of nodes of the cluster. If you specify a new number of nodes, you must also specify the node type parameter.

For more information about resizing clusters, go to Resizing Clusters in Amazon Redshift in the Amazon Redshift Cluster Management Guide .

Valid Values: Integer greater than 0 .

type ClusterSecurityGroups

list

param ClusterSecurityGroups

A list of cluster security groups to be authorized on this cluster. This change is asynchronously applied as soon as possible.

Security groups currently associated with the cluster, and not in the list of groups to apply, will be revoked from the cluster.

Constraints:

  • Must be 1 to 255 alphanumeric characters or hyphens

  • First character must be a letter

  • Cannot end with a hyphen or contain two consecutive hyphens

  • (string) --

type VpcSecurityGroupIds

list

param VpcSecurityGroupIds

A list of virtual private cloud (VPC) security groups to be associated with the cluster. This change is asynchronously applied as soon as possible.

  • (string) --

type MasterUserPassword

string

param MasterUserPassword

The new password for the cluster admin user. This change is asynchronously applied as soon as possible. Between the time of the request and the completion of the request, the MasterUserPassword element exists in the PendingModifiedValues element of the operation response.

Note

Operations never return the password, so this operation provides a way to regain access to the admin user account for a cluster if the password is lost.

Default: Uses existing setting.

Constraints:

  • Must be between 8 and 64 characters in length.

  • Must contain at least one uppercase letter.

  • Must contain at least one lowercase letter.

  • Must contain one number.

  • Can be any printable ASCII character (ASCII code 33 to 126) except ' (single quote), " (double quote), , /, @, or space.

type ClusterParameterGroupName

string

param ClusterParameterGroupName

The name of the cluster parameter group to apply to this cluster. This change is applied only after the cluster is rebooted. To reboot a cluster use RebootCluster.

Default: Uses existing setting.

Constraints: The cluster parameter group must be in the same parameter group family that matches the cluster version.

type AutomatedSnapshotRetentionPeriod

integer

param AutomatedSnapshotRetentionPeriod

The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with CreateClusterSnapshot.

If you decrease the automated snapshot retention period from its current value, existing automated snapshots that fall outside of the new retention period will be immediately deleted.

You can't disable automated snapshots for RA3 node types. Set the automated retention period from 1-35 days.

Default: Uses existing setting.

Constraints: Must be a value from 0 to 35.

type ManualSnapshotRetentionPeriod

integer

param ManualSnapshotRetentionPeriod

The default for number of days that a newly created manual snapshot is retained. If the value is -1, the manual snapshot is retained indefinitely. This value doesn't retroactively change the retention periods of existing manual snapshots.

The value must be either -1 or an integer between 1 and 3,653.

The default value is -1.

type PreferredMaintenanceWindow

string

param PreferredMaintenanceWindow

The weekly time range (in UTC) during which system maintenance can occur, if necessary. If system maintenance is necessary during the window, it may result in an outage.

This maintenance window change is made immediately. If the new maintenance window indicates the current time, there must be at least 120 minutes between the current time and end of the window in order to ensure that pending changes are applied.

Default: Uses existing setting.

Format: ddd:hh24:mi-ddd:hh24:mi, for example wed:07:30-wed:08:00 .

Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun

Constraints: Must be at least 30 minutes.

type ClusterVersion

string

param ClusterVersion

The new version number of the Amazon Redshift engine to upgrade to.

For major version upgrades, if a non-default cluster parameter group is currently in use, a new cluster parameter group in the cluster parameter group family for the new version must be specified. The new cluster parameter group can be the default for that cluster parameter group family. For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide .

Example: 1.0

type AllowVersionUpgrade

boolean

param AllowVersionUpgrade

If true , major version upgrades will be applied automatically to the cluster during the maintenance window.

Default: false

type HsmClientCertificateIdentifier

string

param HsmClientCertificateIdentifier

Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

type HsmConfigurationIdentifier

string

param HsmConfigurationIdentifier

Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

type NewClusterIdentifier

string

param NewClusterIdentifier

The new identifier for the cluster.

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.

Example: examplecluster

type PubliclyAccessible

boolean

param PubliclyAccessible

If true , the cluster can be accessed from a public network. Only clusters in VPCs can be set to be publicly available.

type ElasticIp

string

param ElasticIp

The Elastic IP (EIP) address for the cluster.

Constraints: The cluster must be provisioned in EC2-VPC and publicly-accessible through an Internet gateway. For more information about provisioning clusters in EC2-VPC, go to Supported Platforms to Launch Your Cluster in the Amazon Redshift Cluster Management Guide.

type EnhancedVpcRouting

boolean

param EnhancedVpcRouting

An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

If this option is true , enhanced VPC routing is enabled.

Default: false

type MaintenanceTrackName

string

param MaintenanceTrackName

The name for the maintenance track that you want to assign for the cluster. This name change is asynchronous. The new track name stays in the PendingModifiedValues for the cluster until the next maintenance window. When the maintenance track changes, the cluster is switched to the latest cluster release available for the maintenance track. At this point, the maintenance track name is applied.

type Encrypted

boolean

param Encrypted

Indicates whether the cluster is encrypted. If the value is encrypted (true) and you provide a value for the KmsKeyId parameter, we encrypt the cluster with the provided KmsKeyId . If you don't provide a KmsKeyId , we encrypt with the default key.

If the value is not encrypted (false), then the cluster is decrypted.

type KmsKeyId

string

param KmsKeyId

The Key Management Service (KMS) key ID of the encryption key that you want to use to encrypt data in the cluster.

type AvailabilityZoneRelocation

boolean

param AvailabilityZoneRelocation

The option to enable relocation for an Amazon Redshift cluster between Availability Zones after the cluster modification is complete.

type AvailabilityZone

string

param AvailabilityZone

The option to initiate relocation for an Amazon Redshift cluster to the target Availability Zone.

type Port

integer

param Port

The option to change the port of an Amazon Redshift cluster.

rtype

dict

returns

Response Syntax

{
    'Cluster': {
        'ClusterIdentifier': 'string',
        'NodeType': 'string',
        'ClusterStatus': 'string',
        'ClusterAvailabilityStatus': 'string',
        'ModifyStatus': 'string',
        'MasterUsername': 'string',
        'DBName': 'string',
        'Endpoint': {
            'Address': 'string',
            'Port': 123,
            'VpcEndpoints': [
                {
                    'VpcEndpointId': 'string',
                    'VpcId': 'string',
                    'NetworkInterfaces': [
                        {
                            'NetworkInterfaceId': 'string',
                            'SubnetId': 'string',
                            'PrivateIpAddress': 'string',
                            'AvailabilityZone': 'string'
                        },
                    ]
                },
            ]
        },
        'ClusterCreateTime': datetime(2015, 1, 1),
        'AutomatedSnapshotRetentionPeriod': 123,
        'ManualSnapshotRetentionPeriod': 123,
        'ClusterSecurityGroups': [
            {
                'ClusterSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'VpcSecurityGroups': [
            {
                'VpcSecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ClusterParameterGroups': [
            {
                'ParameterGroupName': 'string',
                'ParameterApplyStatus': 'string',
                'ClusterParameterStatusList': [
                    {
                        'ParameterName': 'string',
                        'ParameterApplyStatus': 'string',
                        'ParameterApplyErrorDescription': 'string'
                    },
                ]
            },
        ],
        'ClusterSubnetGroupName': 'string',
        'VpcId': 'string',
        'AvailabilityZone': 'string',
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'MasterUserPassword': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'ClusterType': 'string',
            'ClusterVersion': 'string',
            'AutomatedSnapshotRetentionPeriod': 123,
            'ClusterIdentifier': 'string',
            'PubliclyAccessible': True|False,
            'EnhancedVpcRouting': True|False,
            'MaintenanceTrackName': 'string',
            'EncryptionType': 'string'
        },
        'ClusterVersion': 'string',
        'AllowVersionUpgrade': True|False,
        'NumberOfNodes': 123,
        'PubliclyAccessible': True|False,
        'Encrypted': True|False,
        'RestoreStatus': {
            'Status': 'string',
            'CurrentRestoreRateInMegaBytesPerSecond': 123.0,
            'SnapshotSizeInMegaBytes': 123,
            'ProgressInMegaBytes': 123,
            'ElapsedTimeInSeconds': 123,
            'EstimatedTimeToCompletionInSeconds': 123
        },
        'DataTransferProgress': {
            'Status': 'string',
            'CurrentRateInMegaBytesPerSecond': 123.0,
            'TotalDataInMegaBytes': 123,
            'DataTransferredInMegaBytes': 123,
            'EstimatedTimeToCompletionInSeconds': 123,
            'ElapsedTimeInSeconds': 123
        },
        'HsmStatus': {
            'HsmClientCertificateIdentifier': 'string',
            'HsmConfigurationIdentifier': 'string',
            'Status': 'string'
        },
        'ClusterSnapshotCopyStatus': {
            'DestinationRegion': 'string',
            'RetentionPeriod': 123,
            'ManualSnapshotRetentionPeriod': 123,
            'SnapshotCopyGrantName': 'string'
        },
        'ClusterPublicKey': 'string',
        'ClusterNodes': [
            {
                'NodeRole': 'string',
                'PrivateIPAddress': 'string',
                'PublicIPAddress': 'string'
            },
        ],
        'ElasticIpStatus': {
            'ElasticIp': 'string',
            'Status': 'string'
        },
        'ClusterRevisionNumber': 'string',
        'Tags': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        'KmsKeyId': 'string',
        'EnhancedVpcRouting': True|False,
        'IamRoles': [
            {
                'IamRoleArn': 'string',
                'ApplyStatus': 'string'
            },
        ],
        'PendingActions': [
            'string',
        ],
        'MaintenanceTrackName': 'string',
        'ElasticResizeNumberOfNodeOptions': 'string',
        'DeferredMaintenanceWindows': [
            {
                'DeferMaintenanceIdentifier': 'string',
                'DeferMaintenanceStartTime': datetime(2015, 1, 1),
                'DeferMaintenanceEndTime': datetime(2015, 1, 1)
            },
        ],
        'SnapshotScheduleIdentifier': 'string',
        'SnapshotScheduleState': 'MODIFYING'|'ACTIVE'|'FAILED',
        'ExpectedNextSnapshotScheduleTime': datetime(2015, 1, 1),
        'ExpectedNextSnapshotScheduleTimeStatus': 'string',
        'NextMaintenanceWindowStartTime': datetime(2015, 1, 1),
        'ResizeInfo': {
            'ResizeType': 'string',
            'AllowCancelResize': True|False
        },
        'AvailabilityZoneRelocationStatus': 'string',
        'ClusterNamespaceArn': 'string',
        'TotalStorageCapacityInMegaBytes': 123,
        'AquaConfiguration': {
            'AquaStatus': 'enabled'|'disabled'|'applying',
            'AquaConfigurationStatus': 'enabled'|'disabled'|'auto'
        },
        'DefaultIamRoleArn': 'string',
        'ReservedNodeExchangeStatus': {
            'ReservedNodeExchangeRequestId': 'string',
            'Status': 'REQUESTED'|'PENDING'|'IN_PROGRESS'|'RETRYING'|'SUCCEEDED'|'FAILED',
            'RequestTime': datetime(2015, 1, 1),
            'SourceReservedNodeId': 'string',
            'SourceReservedNodeType': 'string',
            'SourceReservedNodeCount': 123,
            'TargetReservedNodeOfferingId': 'string',
            'TargetReservedNodeType': 'string',
            'TargetReservedNodeCount': 123
        }
    }
}

Response Structure

  • (dict) --

    • Cluster (dict) --

      Describes a cluster.

      • ClusterIdentifier (string) --

        The unique identifier of the cluster.

      • NodeType (string) --

        The node type for the nodes in the cluster.

      • ClusterStatus (string) --

        The current state of the cluster. Possible values are the following:

        • available

        • available, prep-for-resize

        • available, resize-cleanup

        • cancelling-resize

        • creating

        • deleting

        • final-snapshot

        • hardware-failure

        • incompatible-hsm

        • incompatible-network

        • incompatible-parameters

        • incompatible-restore

        • modifying

        • paused

        • rebooting

        • renaming

        • resizing

        • rotating-keys

        • storage-full

        • updating-hsm

      • ClusterAvailabilityStatus (string) --

        The availability status of the cluster for queries. Possible values are the following:

        • Available - The cluster is available for queries.

        • Unavailable - The cluster is not available for queries.

        • Maintenance - The cluster is intermittently available for queries due to maintenance activities.

        • Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.

        • Failed - The cluster failed and is not available for queries.

      • ModifyStatus (string) --

        The status of a modify operation, if any, initiated for the cluster.

      • MasterUsername (string) --

        The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

      • DBName (string) --

        The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named dev dev was created by default.

      • Endpoint (dict) --

        The connection endpoint.

        • Address (string) --

          The DNS address of the Cluster.

        • Port (integer) --

          The port that the database engine is listening on.

        • VpcEndpoints (list) --

          Describes a connection endpoint.

          • (dict) --

            The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

            • VpcEndpointId (string) --

              The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.

            • VpcId (string) --

              The VPC identifier that the endpoint is associated.

            • NetworkInterfaces (list) --

              One or more network interfaces of the endpoint. Also known as an interface endpoint.

              • (dict) --

                Describes a network interface.

                • NetworkInterfaceId (string) --

                  The network interface identifier.

                • SubnetId (string) --

                  The subnet identifier.

                • PrivateIpAddress (string) --

                  The IPv4 address of the network interface within the subnet.

                • AvailabilityZone (string) --

                  The Availability Zone.

      • ClusterCreateTime (datetime) --

        The date and time that the cluster was created.

      • AutomatedSnapshotRetentionPeriod (integer) --

        The number of days that automatic cluster snapshots are retained.

      • ManualSnapshotRetentionPeriod (integer) --

        The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

        The value must be either -1 or an integer between 1 and 3,653.

      • ClusterSecurityGroups (list) --

        A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

        Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

        • (dict) --

          Describes a cluster security group.

          • ClusterSecurityGroupName (string) --

            The name of the cluster security group.

          • Status (string) --

            The status of the cluster security group.

      • VpcSecurityGroups (list) --

        A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

        • (dict) --

          Describes the members of a VPC security group.

          • VpcSecurityGroupId (string) --

            The identifier of the VPC security group.

          • Status (string) --

            The status of the VPC security group.

      • ClusterParameterGroups (list) --

        The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

        • (dict) --

          Describes the status of a parameter group.

          • ParameterGroupName (string) --

            The name of the cluster parameter group.

          • ParameterApplyStatus (string) --

            The status of parameter updates.

          • ClusterParameterStatusList (list) --

            The list of parameter statuses.

            For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide .

            • (dict) --

              Describes the status of a parameter group.

              • ParameterName (string) --

                The name of the parameter.

              • ParameterApplyStatus (string) --

                The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.

                The following are possible statuses and descriptions.

                • in-sync : The parameter value is in sync with the database.

                • pending-reboot : The parameter value will be applied after the cluster reboots.

                • applying : The parameter value is being applied to the database.

                • invalid-parameter : Cannot apply the parameter value because it has an invalid value or syntax.

                • apply-deferred : The parameter contains static property changes. The changes are deferred until the cluster reboots.

                • apply-error : Cannot connect to the cluster. The parameter change will be applied after the cluster reboots.

                • unknown-error : Cannot apply the parameter change right now. The change will be applied after the cluster reboots.

              • ParameterApplyErrorDescription (string) --

                The error that prevented the parameter from being applied to the database.

      • ClusterSubnetGroupName (string) --

        The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

      • VpcId (string) --

        The identifier of the VPC the cluster is in, if the cluster is in a VPC.

      • AvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located.

      • PreferredMaintenanceWindow (string) --

        The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

      • PendingModifiedValues (dict) --

        A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

        • MasterUserPassword (string) --

          The pending or in-progress change of the admin user password for the cluster.

        • NodeType (string) --

          The pending or in-progress change of the cluster's node type.

        • NumberOfNodes (integer) --

          The pending or in-progress change of the number of nodes in the cluster.

        • ClusterType (string) --

          The pending or in-progress change of the cluster type.

        • ClusterVersion (string) --

          The pending or in-progress change of the service version.

        • AutomatedSnapshotRetentionPeriod (integer) --

          The pending or in-progress change of the automated snapshot retention period.

        • ClusterIdentifier (string) --

          The pending or in-progress change of the new identifier for the cluster.

        • PubliclyAccessible (boolean) --

          The pending or in-progress change of the ability to connect to the cluster from the public network.

        • EnhancedVpcRouting (boolean) --

          An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

          If this option is true , enhanced VPC routing is enabled.

          Default: false

        • MaintenanceTrackName (string) --

          The name of the maintenance track that the cluster will change to during the next maintenance window.

        • EncryptionType (string) --

          The encryption type for a cluster. Possible values are: KMS and None.

      • ClusterVersion (string) --

        The version ID of the Amazon Redshift engine that is running on the cluster.

      • AllowVersionUpgrade (boolean) --

        A boolean value that, if true , indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

      • NumberOfNodes (integer) --

        The number of compute nodes in the cluster.

      • PubliclyAccessible (boolean) --

        A boolean value that, if true , indicates that the cluster can be accessed from a public network.

      • Encrypted (boolean) --

        A boolean value that, if true , indicates that data in the cluster is encrypted at rest.

      • RestoreStatus (dict) --

        A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

        • Status (string) --

          The status of the restore action. Returns starting, restoring, completed, or failed.

        • CurrentRestoreRateInMegaBytesPerSecond (float) --

          The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.

        • SnapshotSizeInMegaBytes (integer) --

          The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.

        • ProgressInMegaBytes (integer) --

          The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.

        • ElapsedTimeInSeconds (integer) --

          The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.

        • EstimatedTimeToCompletionInSeconds (integer) --

          The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.

      • DataTransferProgress (dict) --

        • Status (string) --

          Describes the status of the cluster. While the transfer is in progress the status is transferringdata .

        • CurrentRateInMegaBytesPerSecond (float) --

          Describes the data transfer rate in MB's per second.

        • TotalDataInMegaBytes (integer) --

          Describes the total amount of data to be transfered in megabytes.

        • DataTransferredInMegaBytes (integer) --

          Describes the total amount of data that has been transfered in MB's.

        • EstimatedTimeToCompletionInSeconds (integer) --

          Describes the estimated number of seconds remaining to complete the transfer.

        • ElapsedTimeInSeconds (integer) --

          Describes the number of seconds that have elapsed during the data transfer.

      • HsmStatus (dict) --

        A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

        Values: active, applying

        • HsmClientCertificateIdentifier (string) --

          Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

        • HsmConfigurationIdentifier (string) --

          Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

        • Status (string) --

          Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.

          Values: active, applying

      • ClusterSnapshotCopyStatus (dict) --

        A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

        • DestinationRegion (string) --

          The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

        • RetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

        • ManualSnapshotRetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely.

          The value must be either -1 or an integer between 1 and 3,653.

        • SnapshotCopyGrantName (string) --

          The name of the snapshot copy grant.

      • ClusterPublicKey (string) --

        The public key for the cluster.

      • ClusterNodes (list) --

        The nodes in the cluster.

        • (dict) --

          The identifier of a node in a cluster.

          • NodeRole (string) --

            Whether the node is a leader node or a compute node.

          • PrivateIPAddress (string) --

            The private IP address of a node within a cluster.

          • PublicIPAddress (string) --

            The public IP address of a node within a cluster.

      • ElasticIpStatus (dict) --

        The status of the elastic IP (EIP) address.

        • ElasticIp (string) --

          The elastic IP (EIP) address for the cluster.

        • Status (string) --

          The status of the elastic IP (EIP) address.

      • ClusterRevisionNumber (string) --

        The specific revision number of the database in the cluster.

      • Tags (list) --

        The list of tags for the cluster.

        • (dict) --

          A tag consisting of a name/value pair for a resource.

          • Key (string) --

            The key, or name, for the resource tag.

          • Value (string) --

            The value for the resource tag.

      • KmsKeyId (string) --

        The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.

      • EnhancedVpcRouting (boolean) --

        An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

        If this option is true , enhanced VPC routing is enabled.

        Default: false

      • IamRoles (list) --

        A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

        • (dict) --

          An Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other Amazon Web Services services.

          • IamRoleArn (string) --

            The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload .

          • ApplyStatus (string) --

            A value that describes the status of the IAM role's association with an Amazon Redshift cluster.

            The following are possible statuses and descriptions.

            • in-sync : The role is available for use by the cluster.

            • adding : The role is in the process of being associated with the cluster.

            • removing : The role is in the process of being disassociated with the cluster.

      • PendingActions (list) --

        Cluster operations that are waiting to be started.

        • (string) --

      • MaintenanceTrackName (string) --

        The name of the maintenance track for the cluster.

      • ElasticResizeNumberOfNodeOptions (string) --

        The number of nodes that you can resize the cluster to with the elastic resize method.

      • DeferredMaintenanceWindows (list) --

        Describes a group of DeferredMaintenanceWindow objects.

        • (dict) --

          Describes a deferred maintenance window

          • DeferMaintenanceIdentifier (string) --

            A unique identifier for the maintenance window.

          • DeferMaintenanceStartTime (datetime) --

            A timestamp for the beginning of the time period when we defer maintenance.

          • DeferMaintenanceEndTime (datetime) --

            A timestamp for the end of the time period when we defer maintenance.

      • SnapshotScheduleIdentifier (string) --

        A unique identifier for the cluster snapshot schedule.

      • SnapshotScheduleState (string) --

        The current state of the cluster snapshot schedule.

      • ExpectedNextSnapshotScheduleTime (datetime) --

        The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.

      • ExpectedNextSnapshotScheduleTimeStatus (string) --

        The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:

        • OnTrack - The next snapshot is expected to be taken on time.

        • Pending - The next snapshot is pending to be taken.

      • NextMaintenanceWindowStartTime (datetime) --

        The date and time in UTC when system maintenance can begin.

      • ResizeInfo (dict) --

        Returns the following:

        • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.

        • ResizeType: Returns ClassicResize

        • ResizeType (string) --

          Returns the value ClassicResize .

        • AllowCancelResize (boolean) --

          A boolean value indicating if the resize operation can be cancelled.

      • AvailabilityZoneRelocationStatus (string) --

        Describes the status of the Availability Zone relocation operation.

      • ClusterNamespaceArn (string) --

        The namespace Amazon Resource Name (ARN) of the cluster.

      • TotalStorageCapacityInMegaBytes (integer) --

        The total storage capacity of the cluster in megabytes.

      • AquaConfiguration (dict) --

        The AQUA (Advanced Query Accelerator) configuration of the cluster.

        • AquaStatus (string) --

          The value indicates the status of AQUA on the cluster. Possible values include the following.

          • enabled - AQUA is enabled.

          • disabled - AQUA is not enabled.

          • applying - AQUA status is being applied.

        • AquaConfigurationStatus (string) --

          The value represents how the cluster is configured to use AQUA. Possible values include the following.

          • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

          • disabled - Don't use AQUA.

          • auto - Amazon Redshift determines whether to use AQUA.

      • DefaultIamRoleArn (string) --

        The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.

      • ReservedNodeExchangeStatus (dict) --

        The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • ReservedNodeExchangeRequestId (string) --

          The identifier of the reserved-node exchange request.

        • Status (string) --

          The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • RequestTime (datetime) --

          A date and time that indicate when the reserved-node exchange was requested.

        • SourceReservedNodeId (string) --

          The identifier of the source reserved node.

        • SourceReservedNodeType (string) --

          The source reserved-node type, for example ds2.xlarge.

        • SourceReservedNodeCount (integer) --

          The source reserved-node count in the cluster.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

        • TargetReservedNodeType (string) --

          The node type of the target reserved node, for example ra3.4xlarge.

        • TargetReservedNodeCount (integer) --

          The count of target reserved nodes in the cluster.

ModifyClusterDbRevision (updated) Link ¶
Changes (response)
{'Cluster': {'ReservedNodeExchangeStatus': {'RequestTime': 'timestamp',
                                            'ReservedNodeExchangeRequestId': 'string',
                                            'SourceReservedNodeCount': 'integer',
                                            'SourceReservedNodeId': 'string',
                                            'SourceReservedNodeType': 'string',
                                            'Status': 'REQUESTED | PENDING | '
                                                      'IN_PROGRESS | RETRYING '
                                                      '| SUCCEEDED | FAILED',
                                            'TargetReservedNodeCount': 'integer',
                                            'TargetReservedNodeOfferingId': 'string',
                                            'TargetReservedNodeType': 'string'}}}

Modifies the database revision of a cluster. The database revision is a unique revision of the database running in a cluster.

See also: AWS API Documentation

Request Syntax

client.modify_cluster_db_revision(
    ClusterIdentifier='string',
    RevisionTarget='string'
)
type ClusterIdentifier

string

param ClusterIdentifier

[REQUIRED]

The unique identifier of a cluster whose database revision you want to modify.

Example: examplecluster

type RevisionTarget

string

param RevisionTarget

[REQUIRED]

The identifier of the database revision. You can retrieve this value from the response to the DescribeClusterDbRevisions request.

rtype

dict

returns

Response Syntax

{
    'Cluster': {
        'ClusterIdentifier': 'string',
        'NodeType': 'string',
        'ClusterStatus': 'string',
        'ClusterAvailabilityStatus': 'string',
        'ModifyStatus': 'string',
        'MasterUsername': 'string',
        'DBName': 'string',
        'Endpoint': {
            'Address': 'string',
            'Port': 123,
            'VpcEndpoints': [
                {
                    'VpcEndpointId': 'string',
                    'VpcId': 'string',
                    'NetworkInterfaces': [
                        {
                            'NetworkInterfaceId': 'string',
                            'SubnetId': 'string',
                            'PrivateIpAddress': 'string',
                            'AvailabilityZone': 'string'
                        },
                    ]
                },
            ]
        },
        'ClusterCreateTime': datetime(2015, 1, 1),
        'AutomatedSnapshotRetentionPeriod': 123,
        'ManualSnapshotRetentionPeriod': 123,
        'ClusterSecurityGroups': [
            {
                'ClusterSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'VpcSecurityGroups': [
            {
                'VpcSecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ClusterParameterGroups': [
            {
                'ParameterGroupName': 'string',
                'ParameterApplyStatus': 'string',
                'ClusterParameterStatusList': [
                    {
                        'ParameterName': 'string',
                        'ParameterApplyStatus': 'string',
                        'ParameterApplyErrorDescription': 'string'
                    },
                ]
            },
        ],
        'ClusterSubnetGroupName': 'string',
        'VpcId': 'string',
        'AvailabilityZone': 'string',
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'MasterUserPassword': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'ClusterType': 'string',
            'ClusterVersion': 'string',
            'AutomatedSnapshotRetentionPeriod': 123,
            'ClusterIdentifier': 'string',
            'PubliclyAccessible': True|False,
            'EnhancedVpcRouting': True|False,
            'MaintenanceTrackName': 'string',
            'EncryptionType': 'string'
        },
        'ClusterVersion': 'string',
        'AllowVersionUpgrade': True|False,
        'NumberOfNodes': 123,
        'PubliclyAccessible': True|False,
        'Encrypted': True|False,
        'RestoreStatus': {
            'Status': 'string',
            'CurrentRestoreRateInMegaBytesPerSecond': 123.0,
            'SnapshotSizeInMegaBytes': 123,
            'ProgressInMegaBytes': 123,
            'ElapsedTimeInSeconds': 123,
            'EstimatedTimeToCompletionInSeconds': 123
        },
        'DataTransferProgress': {
            'Status': 'string',
            'CurrentRateInMegaBytesPerSecond': 123.0,
            'TotalDataInMegaBytes': 123,
            'DataTransferredInMegaBytes': 123,
            'EstimatedTimeToCompletionInSeconds': 123,
            'ElapsedTimeInSeconds': 123
        },
        'HsmStatus': {
            'HsmClientCertificateIdentifier': 'string',
            'HsmConfigurationIdentifier': 'string',
            'Status': 'string'
        },
        'ClusterSnapshotCopyStatus': {
            'DestinationRegion': 'string',
            'RetentionPeriod': 123,
            'ManualSnapshotRetentionPeriod': 123,
            'SnapshotCopyGrantName': 'string'
        },
        'ClusterPublicKey': 'string',
        'ClusterNodes': [
            {
                'NodeRole': 'string',
                'PrivateIPAddress': 'string',
                'PublicIPAddress': 'string'
            },
        ],
        'ElasticIpStatus': {
            'ElasticIp': 'string',
            'Status': 'string'
        },
        'ClusterRevisionNumber': 'string',
        'Tags': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        'KmsKeyId': 'string',
        'EnhancedVpcRouting': True|False,
        'IamRoles': [
            {
                'IamRoleArn': 'string',
                'ApplyStatus': 'string'
            },
        ],
        'PendingActions': [
            'string',
        ],
        'MaintenanceTrackName': 'string',
        'ElasticResizeNumberOfNodeOptions': 'string',
        'DeferredMaintenanceWindows': [
            {
                'DeferMaintenanceIdentifier': 'string',
                'DeferMaintenanceStartTime': datetime(2015, 1, 1),
                'DeferMaintenanceEndTime': datetime(2015, 1, 1)
            },
        ],
        'SnapshotScheduleIdentifier': 'string',
        'SnapshotScheduleState': 'MODIFYING'|'ACTIVE'|'FAILED',
        'ExpectedNextSnapshotScheduleTime': datetime(2015, 1, 1),
        'ExpectedNextSnapshotScheduleTimeStatus': 'string',
        'NextMaintenanceWindowStartTime': datetime(2015, 1, 1),
        'ResizeInfo': {
            'ResizeType': 'string',
            'AllowCancelResize': True|False
        },
        'AvailabilityZoneRelocationStatus': 'string',
        'ClusterNamespaceArn': 'string',
        'TotalStorageCapacityInMegaBytes': 123,
        'AquaConfiguration': {
            'AquaStatus': 'enabled'|'disabled'|'applying',
            'AquaConfigurationStatus': 'enabled'|'disabled'|'auto'
        },
        'DefaultIamRoleArn': 'string',
        'ReservedNodeExchangeStatus': {
            'ReservedNodeExchangeRequestId': 'string',
            'Status': 'REQUESTED'|'PENDING'|'IN_PROGRESS'|'RETRYING'|'SUCCEEDED'|'FAILED',
            'RequestTime': datetime(2015, 1, 1),
            'SourceReservedNodeId': 'string',
            'SourceReservedNodeType': 'string',
            'SourceReservedNodeCount': 123,
            'TargetReservedNodeOfferingId': 'string',
            'TargetReservedNodeType': 'string',
            'TargetReservedNodeCount': 123
        }
    }
}

Response Structure

  • (dict) --

    • Cluster (dict) --

      Describes a cluster.

      • ClusterIdentifier (string) --

        The unique identifier of the cluster.

      • NodeType (string) --

        The node type for the nodes in the cluster.

      • ClusterStatus (string) --

        The current state of the cluster. Possible values are the following:

        • available

        • available, prep-for-resize

        • available, resize-cleanup

        • cancelling-resize

        • creating

        • deleting

        • final-snapshot

        • hardware-failure

        • incompatible-hsm

        • incompatible-network

        • incompatible-parameters

        • incompatible-restore

        • modifying

        • paused

        • rebooting

        • renaming

        • resizing

        • rotating-keys

        • storage-full

        • updating-hsm

      • ClusterAvailabilityStatus (string) --

        The availability status of the cluster for queries. Possible values are the following:

        • Available - The cluster is available for queries.

        • Unavailable - The cluster is not available for queries.

        • Maintenance - The cluster is intermittently available for queries due to maintenance activities.

        • Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.

        • Failed - The cluster failed and is not available for queries.

      • ModifyStatus (string) --

        The status of a modify operation, if any, initiated for the cluster.

      • MasterUsername (string) --

        The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

      • DBName (string) --

        The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named dev dev was created by default.

      • Endpoint (dict) --

        The connection endpoint.

        • Address (string) --

          The DNS address of the Cluster.

        • Port (integer) --

          The port that the database engine is listening on.

        • VpcEndpoints (list) --

          Describes a connection endpoint.

          • (dict) --

            The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

            • VpcEndpointId (string) --

              The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.

            • VpcId (string) --

              The VPC identifier that the endpoint is associated.

            • NetworkInterfaces (list) --

              One or more network interfaces of the endpoint. Also known as an interface endpoint.

              • (dict) --

                Describes a network interface.

                • NetworkInterfaceId (string) --

                  The network interface identifier.

                • SubnetId (string) --

                  The subnet identifier.

                • PrivateIpAddress (string) --

                  The IPv4 address of the network interface within the subnet.

                • AvailabilityZone (string) --

                  The Availability Zone.

      • ClusterCreateTime (datetime) --

        The date and time that the cluster was created.

      • AutomatedSnapshotRetentionPeriod (integer) --

        The number of days that automatic cluster snapshots are retained.

      • ManualSnapshotRetentionPeriod (integer) --

        The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

        The value must be either -1 or an integer between 1 and 3,653.

      • ClusterSecurityGroups (list) --

        A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

        Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

        • (dict) --

          Describes a cluster security group.

          • ClusterSecurityGroupName (string) --

            The name of the cluster security group.

          • Status (string) --

            The status of the cluster security group.

      • VpcSecurityGroups (list) --

        A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

        • (dict) --

          Describes the members of a VPC security group.

          • VpcSecurityGroupId (string) --

            The identifier of the VPC security group.

          • Status (string) --

            The status of the VPC security group.

      • ClusterParameterGroups (list) --

        The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

        • (dict) --

          Describes the status of a parameter group.

          • ParameterGroupName (string) --

            The name of the cluster parameter group.

          • ParameterApplyStatus (string) --

            The status of parameter updates.

          • ClusterParameterStatusList (list) --

            The list of parameter statuses.

            For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide .

            • (dict) --

              Describes the status of a parameter group.

              • ParameterName (string) --

                The name of the parameter.

              • ParameterApplyStatus (string) --

                The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.

                The following are possible statuses and descriptions.

                • in-sync : The parameter value is in sync with the database.

                • pending-reboot : The parameter value will be applied after the cluster reboots.

                • applying : The parameter value is being applied to the database.

                • invalid-parameter : Cannot apply the parameter value because it has an invalid value or syntax.

                • apply-deferred : The parameter contains static property changes. The changes are deferred until the cluster reboots.

                • apply-error : Cannot connect to the cluster. The parameter change will be applied after the cluster reboots.

                • unknown-error : Cannot apply the parameter change right now. The change will be applied after the cluster reboots.

              • ParameterApplyErrorDescription (string) --

                The error that prevented the parameter from being applied to the database.

      • ClusterSubnetGroupName (string) --

        The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

      • VpcId (string) --

        The identifier of the VPC the cluster is in, if the cluster is in a VPC.

      • AvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located.

      • PreferredMaintenanceWindow (string) --

        The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

      • PendingModifiedValues (dict) --

        A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

        • MasterUserPassword (string) --

          The pending or in-progress change of the admin user password for the cluster.

        • NodeType (string) --

          The pending or in-progress change of the cluster's node type.

        • NumberOfNodes (integer) --

          The pending or in-progress change of the number of nodes in the cluster.

        • ClusterType (string) --

          The pending or in-progress change of the cluster type.

        • ClusterVersion (string) --

          The pending or in-progress change of the service version.

        • AutomatedSnapshotRetentionPeriod (integer) --

          The pending or in-progress change of the automated snapshot retention period.

        • ClusterIdentifier (string) --

          The pending or in-progress change of the new identifier for the cluster.

        • PubliclyAccessible (boolean) --

          The pending or in-progress change of the ability to connect to the cluster from the public network.

        • EnhancedVpcRouting (boolean) --

          An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

          If this option is true , enhanced VPC routing is enabled.

          Default: false

        • MaintenanceTrackName (string) --

          The name of the maintenance track that the cluster will change to during the next maintenance window.

        • EncryptionType (string) --

          The encryption type for a cluster. Possible values are: KMS and None.

      • ClusterVersion (string) --

        The version ID of the Amazon Redshift engine that is running on the cluster.

      • AllowVersionUpgrade (boolean) --

        A boolean value that, if true , indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

      • NumberOfNodes (integer) --

        The number of compute nodes in the cluster.

      • PubliclyAccessible (boolean) --

        A boolean value that, if true , indicates that the cluster can be accessed from a public network.

      • Encrypted (boolean) --

        A boolean value that, if true , indicates that data in the cluster is encrypted at rest.

      • RestoreStatus (dict) --

        A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

        • Status (string) --

          The status of the restore action. Returns starting, restoring, completed, or failed.

        • CurrentRestoreRateInMegaBytesPerSecond (float) --

          The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.

        • SnapshotSizeInMegaBytes (integer) --

          The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.

        • ProgressInMegaBytes (integer) --

          The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.

        • ElapsedTimeInSeconds (integer) --

          The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.

        • EstimatedTimeToCompletionInSeconds (integer) --

          The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.

      • DataTransferProgress (dict) --

        • Status (string) --

          Describes the status of the cluster. While the transfer is in progress the status is transferringdata .

        • CurrentRateInMegaBytesPerSecond (float) --

          Describes the data transfer rate in MB's per second.

        • TotalDataInMegaBytes (integer) --

          Describes the total amount of data to be transfered in megabytes.

        • DataTransferredInMegaBytes (integer) --

          Describes the total amount of data that has been transfered in MB's.

        • EstimatedTimeToCompletionInSeconds (integer) --

          Describes the estimated number of seconds remaining to complete the transfer.

        • ElapsedTimeInSeconds (integer) --

          Describes the number of seconds that have elapsed during the data transfer.

      • HsmStatus (dict) --

        A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

        Values: active, applying

        • HsmClientCertificateIdentifier (string) --

          Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

        • HsmConfigurationIdentifier (string) --

          Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

        • Status (string) --

          Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.

          Values: active, applying

      • ClusterSnapshotCopyStatus (dict) --

        A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

        • DestinationRegion (string) --

          The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

        • RetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

        • ManualSnapshotRetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely.

          The value must be either -1 or an integer between 1 and 3,653.

        • SnapshotCopyGrantName (string) --

          The name of the snapshot copy grant.

      • ClusterPublicKey (string) --

        The public key for the cluster.

      • ClusterNodes (list) --

        The nodes in the cluster.

        • (dict) --

          The identifier of a node in a cluster.

          • NodeRole (string) --

            Whether the node is a leader node or a compute node.

          • PrivateIPAddress (string) --

            The private IP address of a node within a cluster.

          • PublicIPAddress (string) --

            The public IP address of a node within a cluster.

      • ElasticIpStatus (dict) --

        The status of the elastic IP (EIP) address.

        • ElasticIp (string) --

          The elastic IP (EIP) address for the cluster.

        • Status (string) --

          The status of the elastic IP (EIP) address.

      • ClusterRevisionNumber (string) --

        The specific revision number of the database in the cluster.

      • Tags (list) --

        The list of tags for the cluster.

        • (dict) --

          A tag consisting of a name/value pair for a resource.

          • Key (string) --

            The key, or name, for the resource tag.

          • Value (string) --

            The value for the resource tag.

      • KmsKeyId (string) --

        The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.

      • EnhancedVpcRouting (boolean) --

        An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

        If this option is true , enhanced VPC routing is enabled.

        Default: false

      • IamRoles (list) --

        A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

        • (dict) --

          An Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other Amazon Web Services services.

          • IamRoleArn (string) --

            The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload .

          • ApplyStatus (string) --

            A value that describes the status of the IAM role's association with an Amazon Redshift cluster.

            The following are possible statuses and descriptions.

            • in-sync : The role is available for use by the cluster.

            • adding : The role is in the process of being associated with the cluster.

            • removing : The role is in the process of being disassociated with the cluster.

      • PendingActions (list) --

        Cluster operations that are waiting to be started.

        • (string) --

      • MaintenanceTrackName (string) --

        The name of the maintenance track for the cluster.

      • ElasticResizeNumberOfNodeOptions (string) --

        The number of nodes that you can resize the cluster to with the elastic resize method.

      • DeferredMaintenanceWindows (list) --

        Describes a group of DeferredMaintenanceWindow objects.

        • (dict) --

          Describes a deferred maintenance window

          • DeferMaintenanceIdentifier (string) --

            A unique identifier for the maintenance window.

          • DeferMaintenanceStartTime (datetime) --

            A timestamp for the beginning of the time period when we defer maintenance.

          • DeferMaintenanceEndTime (datetime) --

            A timestamp for the end of the time period when we defer maintenance.

      • SnapshotScheduleIdentifier (string) --

        A unique identifier for the cluster snapshot schedule.

      • SnapshotScheduleState (string) --

        The current state of the cluster snapshot schedule.

      • ExpectedNextSnapshotScheduleTime (datetime) --

        The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.

      • ExpectedNextSnapshotScheduleTimeStatus (string) --

        The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:

        • OnTrack - The next snapshot is expected to be taken on time.

        • Pending - The next snapshot is pending to be taken.

      • NextMaintenanceWindowStartTime (datetime) --

        The date and time in UTC when system maintenance can begin.

      • ResizeInfo (dict) --

        Returns the following:

        • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.

        • ResizeType: Returns ClassicResize

        • ResizeType (string) --

          Returns the value ClassicResize .

        • AllowCancelResize (boolean) --

          A boolean value indicating if the resize operation can be cancelled.

      • AvailabilityZoneRelocationStatus (string) --

        Describes the status of the Availability Zone relocation operation.

      • ClusterNamespaceArn (string) --

        The namespace Amazon Resource Name (ARN) of the cluster.

      • TotalStorageCapacityInMegaBytes (integer) --

        The total storage capacity of the cluster in megabytes.

      • AquaConfiguration (dict) --

        The AQUA (Advanced Query Accelerator) configuration of the cluster.

        • AquaStatus (string) --

          The value indicates the status of AQUA on the cluster. Possible values include the following.

          • enabled - AQUA is enabled.

          • disabled - AQUA is not enabled.

          • applying - AQUA status is being applied.

        • AquaConfigurationStatus (string) --

          The value represents how the cluster is configured to use AQUA. Possible values include the following.

          • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

          • disabled - Don't use AQUA.

          • auto - Amazon Redshift determines whether to use AQUA.

      • DefaultIamRoleArn (string) --

        The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.

      • ReservedNodeExchangeStatus (dict) --

        The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • ReservedNodeExchangeRequestId (string) --

          The identifier of the reserved-node exchange request.

        • Status (string) --

          The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • RequestTime (datetime) --

          A date and time that indicate when the reserved-node exchange was requested.

        • SourceReservedNodeId (string) --

          The identifier of the source reserved node.

        • SourceReservedNodeType (string) --

          The source reserved-node type, for example ds2.xlarge.

        • SourceReservedNodeCount (integer) --

          The source reserved-node count in the cluster.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

        • TargetReservedNodeType (string) --

          The node type of the target reserved node, for example ra3.4xlarge.

        • TargetReservedNodeCount (integer) --

          The count of target reserved nodes in the cluster.

ModifyClusterIamRoles (updated) Link ¶
Changes (response)
{'Cluster': {'ReservedNodeExchangeStatus': {'RequestTime': 'timestamp',
                                            'ReservedNodeExchangeRequestId': 'string',
                                            'SourceReservedNodeCount': 'integer',
                                            'SourceReservedNodeId': 'string',
                                            'SourceReservedNodeType': 'string',
                                            'Status': 'REQUESTED | PENDING | '
                                                      'IN_PROGRESS | RETRYING '
                                                      '| SUCCEEDED | FAILED',
                                            'TargetReservedNodeCount': 'integer',
                                            'TargetReservedNodeOfferingId': 'string',
                                            'TargetReservedNodeType': 'string'}}}

Modifies the list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

A cluster can have up to 10 IAM roles associated at any time.

See also: AWS API Documentation

Request Syntax

client.modify_cluster_iam_roles(
    ClusterIdentifier='string',
    AddIamRoles=[
        'string',
    ],
    RemoveIamRoles=[
        'string',
    ],
    DefaultIamRoleArn='string'
)
type ClusterIdentifier

string

param ClusterIdentifier

[REQUIRED]

The unique identifier of the cluster for which you want to associate or disassociate IAM roles.

type AddIamRoles

list

param AddIamRoles

Zero or more IAM roles to associate with the cluster. The roles must be in their Amazon Resource Name (ARN) format. You can associate up to 10 IAM roles with a single cluster in a single request.

  • (string) --

type RemoveIamRoles

list

param RemoveIamRoles

Zero or more IAM roles in ARN format to disassociate from the cluster. You can disassociate up to 10 IAM roles from a single cluster in a single request.

  • (string) --

type DefaultIamRoleArn

string

param DefaultIamRoleArn

The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster was last modified.

rtype

dict

returns

Response Syntax

{
    'Cluster': {
        'ClusterIdentifier': 'string',
        'NodeType': 'string',
        'ClusterStatus': 'string',
        'ClusterAvailabilityStatus': 'string',
        'ModifyStatus': 'string',
        'MasterUsername': 'string',
        'DBName': 'string',
        'Endpoint': {
            'Address': 'string',
            'Port': 123,
            'VpcEndpoints': [
                {
                    'VpcEndpointId': 'string',
                    'VpcId': 'string',
                    'NetworkInterfaces': [
                        {
                            'NetworkInterfaceId': 'string',
                            'SubnetId': 'string',
                            'PrivateIpAddress': 'string',
                            'AvailabilityZone': 'string'
                        },
                    ]
                },
            ]
        },
        'ClusterCreateTime': datetime(2015, 1, 1),
        'AutomatedSnapshotRetentionPeriod': 123,
        'ManualSnapshotRetentionPeriod': 123,
        'ClusterSecurityGroups': [
            {
                'ClusterSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'VpcSecurityGroups': [
            {
                'VpcSecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ClusterParameterGroups': [
            {
                'ParameterGroupName': 'string',
                'ParameterApplyStatus': 'string',
                'ClusterParameterStatusList': [
                    {
                        'ParameterName': 'string',
                        'ParameterApplyStatus': 'string',
                        'ParameterApplyErrorDescription': 'string'
                    },
                ]
            },
        ],
        'ClusterSubnetGroupName': 'string',
        'VpcId': 'string',
        'AvailabilityZone': 'string',
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'MasterUserPassword': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'ClusterType': 'string',
            'ClusterVersion': 'string',
            'AutomatedSnapshotRetentionPeriod': 123,
            'ClusterIdentifier': 'string',
            'PubliclyAccessible': True|False,
            'EnhancedVpcRouting': True|False,
            'MaintenanceTrackName': 'string',
            'EncryptionType': 'string'
        },
        'ClusterVersion': 'string',
        'AllowVersionUpgrade': True|False,
        'NumberOfNodes': 123,
        'PubliclyAccessible': True|False,
        'Encrypted': True|False,
        'RestoreStatus': {
            'Status': 'string',
            'CurrentRestoreRateInMegaBytesPerSecond': 123.0,
            'SnapshotSizeInMegaBytes': 123,
            'ProgressInMegaBytes': 123,
            'ElapsedTimeInSeconds': 123,
            'EstimatedTimeToCompletionInSeconds': 123
        },
        'DataTransferProgress': {
            'Status': 'string',
            'CurrentRateInMegaBytesPerSecond': 123.0,
            'TotalDataInMegaBytes': 123,
            'DataTransferredInMegaBytes': 123,
            'EstimatedTimeToCompletionInSeconds': 123,
            'ElapsedTimeInSeconds': 123
        },
        'HsmStatus': {
            'HsmClientCertificateIdentifier': 'string',
            'HsmConfigurationIdentifier': 'string',
            'Status': 'string'
        },
        'ClusterSnapshotCopyStatus': {
            'DestinationRegion': 'string',
            'RetentionPeriod': 123,
            'ManualSnapshotRetentionPeriod': 123,
            'SnapshotCopyGrantName': 'string'
        },
        'ClusterPublicKey': 'string',
        'ClusterNodes': [
            {
                'NodeRole': 'string',
                'PrivateIPAddress': 'string',
                'PublicIPAddress': 'string'
            },
        ],
        'ElasticIpStatus': {
            'ElasticIp': 'string',
            'Status': 'string'
        },
        'ClusterRevisionNumber': 'string',
        'Tags': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        'KmsKeyId': 'string',
        'EnhancedVpcRouting': True|False,
        'IamRoles': [
            {
                'IamRoleArn': 'string',
                'ApplyStatus': 'string'
            },
        ],
        'PendingActions': [
            'string',
        ],
        'MaintenanceTrackName': 'string',
        'ElasticResizeNumberOfNodeOptions': 'string',
        'DeferredMaintenanceWindows': [
            {
                'DeferMaintenanceIdentifier': 'string',
                'DeferMaintenanceStartTime': datetime(2015, 1, 1),
                'DeferMaintenanceEndTime': datetime(2015, 1, 1)
            },
        ],
        'SnapshotScheduleIdentifier': 'string',
        'SnapshotScheduleState': 'MODIFYING'|'ACTIVE'|'FAILED',
        'ExpectedNextSnapshotScheduleTime': datetime(2015, 1, 1),
        'ExpectedNextSnapshotScheduleTimeStatus': 'string',
        'NextMaintenanceWindowStartTime': datetime(2015, 1, 1),
        'ResizeInfo': {
            'ResizeType': 'string',
            'AllowCancelResize': True|False
        },
        'AvailabilityZoneRelocationStatus': 'string',
        'ClusterNamespaceArn': 'string',
        'TotalStorageCapacityInMegaBytes': 123,
        'AquaConfiguration': {
            'AquaStatus': 'enabled'|'disabled'|'applying',
            'AquaConfigurationStatus': 'enabled'|'disabled'|'auto'
        },
        'DefaultIamRoleArn': 'string',
        'ReservedNodeExchangeStatus': {
            'ReservedNodeExchangeRequestId': 'string',
            'Status': 'REQUESTED'|'PENDING'|'IN_PROGRESS'|'RETRYING'|'SUCCEEDED'|'FAILED',
            'RequestTime': datetime(2015, 1, 1),
            'SourceReservedNodeId': 'string',
            'SourceReservedNodeType': 'string',
            'SourceReservedNodeCount': 123,
            'TargetReservedNodeOfferingId': 'string',
            'TargetReservedNodeType': 'string',
            'TargetReservedNodeCount': 123
        }
    }
}

Response Structure

  • (dict) --

    • Cluster (dict) --

      Describes a cluster.

      • ClusterIdentifier (string) --

        The unique identifier of the cluster.

      • NodeType (string) --

        The node type for the nodes in the cluster.

      • ClusterStatus (string) --

        The current state of the cluster. Possible values are the following:

        • available

        • available, prep-for-resize

        • available, resize-cleanup

        • cancelling-resize

        • creating

        • deleting

        • final-snapshot

        • hardware-failure

        • incompatible-hsm

        • incompatible-network

        • incompatible-parameters

        • incompatible-restore

        • modifying

        • paused

        • rebooting

        • renaming

        • resizing

        • rotating-keys

        • storage-full

        • updating-hsm

      • ClusterAvailabilityStatus (string) --

        The availability status of the cluster for queries. Possible values are the following:

        • Available - The cluster is available for queries.

        • Unavailable - The cluster is not available for queries.

        • Maintenance - The cluster is intermittently available for queries due to maintenance activities.

        • Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.

        • Failed - The cluster failed and is not available for queries.

      • ModifyStatus (string) --

        The status of a modify operation, if any, initiated for the cluster.

      • MasterUsername (string) --

        The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

      • DBName (string) --

        The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named dev dev was created by default.

      • Endpoint (dict) --

        The connection endpoint.

        • Address (string) --

          The DNS address of the Cluster.

        • Port (integer) --

          The port that the database engine is listening on.

        • VpcEndpoints (list) --

          Describes a connection endpoint.

          • (dict) --

            The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

            • VpcEndpointId (string) --

              The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.

            • VpcId (string) --

              The VPC identifier that the endpoint is associated.

            • NetworkInterfaces (list) --

              One or more network interfaces of the endpoint. Also known as an interface endpoint.

              • (dict) --

                Describes a network interface.

                • NetworkInterfaceId (string) --

                  The network interface identifier.

                • SubnetId (string) --

                  The subnet identifier.

                • PrivateIpAddress (string) --

                  The IPv4 address of the network interface within the subnet.

                • AvailabilityZone (string) --

                  The Availability Zone.

      • ClusterCreateTime (datetime) --

        The date and time that the cluster was created.

      • AutomatedSnapshotRetentionPeriod (integer) --

        The number of days that automatic cluster snapshots are retained.

      • ManualSnapshotRetentionPeriod (integer) --

        The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

        The value must be either -1 or an integer between 1 and 3,653.

      • ClusterSecurityGroups (list) --

        A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

        Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

        • (dict) --

          Describes a cluster security group.

          • ClusterSecurityGroupName (string) --

            The name of the cluster security group.

          • Status (string) --

            The status of the cluster security group.

      • VpcSecurityGroups (list) --

        A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

        • (dict) --

          Describes the members of a VPC security group.

          • VpcSecurityGroupId (string) --

            The identifier of the VPC security group.

          • Status (string) --

            The status of the VPC security group.

      • ClusterParameterGroups (list) --

        The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

        • (dict) --

          Describes the status of a parameter group.

          • ParameterGroupName (string) --

            The name of the cluster parameter group.

          • ParameterApplyStatus (string) --

            The status of parameter updates.

          • ClusterParameterStatusList (list) --

            The list of parameter statuses.

            For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide .

            • (dict) --

              Describes the status of a parameter group.

              • ParameterName (string) --

                The name of the parameter.

              • ParameterApplyStatus (string) --

                The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.

                The following are possible statuses and descriptions.

                • in-sync : The parameter value is in sync with the database.

                • pending-reboot : The parameter value will be applied after the cluster reboots.

                • applying : The parameter value is being applied to the database.

                • invalid-parameter : Cannot apply the parameter value because it has an invalid value or syntax.

                • apply-deferred : The parameter contains static property changes. The changes are deferred until the cluster reboots.

                • apply-error : Cannot connect to the cluster. The parameter change will be applied after the cluster reboots.

                • unknown-error : Cannot apply the parameter change right now. The change will be applied after the cluster reboots.

              • ParameterApplyErrorDescription (string) --

                The error that prevented the parameter from being applied to the database.

      • ClusterSubnetGroupName (string) --

        The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

      • VpcId (string) --

        The identifier of the VPC the cluster is in, if the cluster is in a VPC.

      • AvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located.

      • PreferredMaintenanceWindow (string) --

        The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

      • PendingModifiedValues (dict) --

        A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

        • MasterUserPassword (string) --

          The pending or in-progress change of the admin user password for the cluster.

        • NodeType (string) --

          The pending or in-progress change of the cluster's node type.

        • NumberOfNodes (integer) --

          The pending or in-progress change of the number of nodes in the cluster.

        • ClusterType (string) --

          The pending or in-progress change of the cluster type.

        • ClusterVersion (string) --

          The pending or in-progress change of the service version.

        • AutomatedSnapshotRetentionPeriod (integer) --

          The pending or in-progress change of the automated snapshot retention period.

        • ClusterIdentifier (string) --

          The pending or in-progress change of the new identifier for the cluster.

        • PubliclyAccessible (boolean) --

          The pending or in-progress change of the ability to connect to the cluster from the public network.

        • EnhancedVpcRouting (boolean) --

          An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

          If this option is true , enhanced VPC routing is enabled.

          Default: false

        • MaintenanceTrackName (string) --

          The name of the maintenance track that the cluster will change to during the next maintenance window.

        • EncryptionType (string) --

          The encryption type for a cluster. Possible values are: KMS and None.

      • ClusterVersion (string) --

        The version ID of the Amazon Redshift engine that is running on the cluster.

      • AllowVersionUpgrade (boolean) --

        A boolean value that, if true , indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

      • NumberOfNodes (integer) --

        The number of compute nodes in the cluster.

      • PubliclyAccessible (boolean) --

        A boolean value that, if true , indicates that the cluster can be accessed from a public network.

      • Encrypted (boolean) --

        A boolean value that, if true , indicates that data in the cluster is encrypted at rest.

      • RestoreStatus (dict) --

        A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

        • Status (string) --

          The status of the restore action. Returns starting, restoring, completed, or failed.

        • CurrentRestoreRateInMegaBytesPerSecond (float) --

          The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.

        • SnapshotSizeInMegaBytes (integer) --

          The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.

        • ProgressInMegaBytes (integer) --

          The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.

        • ElapsedTimeInSeconds (integer) --

          The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.

        • EstimatedTimeToCompletionInSeconds (integer) --

          The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.

      • DataTransferProgress (dict) --

        • Status (string) --

          Describes the status of the cluster. While the transfer is in progress the status is transferringdata .

        • CurrentRateInMegaBytesPerSecond (float) --

          Describes the data transfer rate in MB's per second.

        • TotalDataInMegaBytes (integer) --

          Describes the total amount of data to be transfered in megabytes.

        • DataTransferredInMegaBytes (integer) --

          Describes the total amount of data that has been transfered in MB's.

        • EstimatedTimeToCompletionInSeconds (integer) --

          Describes the estimated number of seconds remaining to complete the transfer.

        • ElapsedTimeInSeconds (integer) --

          Describes the number of seconds that have elapsed during the data transfer.

      • HsmStatus (dict) --

        A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

        Values: active, applying

        • HsmClientCertificateIdentifier (string) --

          Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

        • HsmConfigurationIdentifier (string) --

          Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

        • Status (string) --

          Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.

          Values: active, applying

      • ClusterSnapshotCopyStatus (dict) --

        A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

        • DestinationRegion (string) --

          The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

        • RetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

        • ManualSnapshotRetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely.

          The value must be either -1 or an integer between 1 and 3,653.

        • SnapshotCopyGrantName (string) --

          The name of the snapshot copy grant.

      • ClusterPublicKey (string) --

        The public key for the cluster.

      • ClusterNodes (list) --

        The nodes in the cluster.

        • (dict) --

          The identifier of a node in a cluster.

          • NodeRole (string) --

            Whether the node is a leader node or a compute node.

          • PrivateIPAddress (string) --

            The private IP address of a node within a cluster.

          • PublicIPAddress (string) --

            The public IP address of a node within a cluster.

      • ElasticIpStatus (dict) --

        The status of the elastic IP (EIP) address.

        • ElasticIp (string) --

          The elastic IP (EIP) address for the cluster.

        • Status (string) --

          The status of the elastic IP (EIP) address.

      • ClusterRevisionNumber (string) --

        The specific revision number of the database in the cluster.

      • Tags (list) --

        The list of tags for the cluster.

        • (dict) --

          A tag consisting of a name/value pair for a resource.

          • Key (string) --

            The key, or name, for the resource tag.

          • Value (string) --

            The value for the resource tag.

      • KmsKeyId (string) --

        The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.

      • EnhancedVpcRouting (boolean) --

        An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

        If this option is true , enhanced VPC routing is enabled.

        Default: false

      • IamRoles (list) --

        A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

        • (dict) --

          An Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other Amazon Web Services services.

          • IamRoleArn (string) --

            The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload .

          • ApplyStatus (string) --

            A value that describes the status of the IAM role's association with an Amazon Redshift cluster.

            The following are possible statuses and descriptions.

            • in-sync : The role is available for use by the cluster.

            • adding : The role is in the process of being associated with the cluster.

            • removing : The role is in the process of being disassociated with the cluster.

      • PendingActions (list) --

        Cluster operations that are waiting to be started.

        • (string) --

      • MaintenanceTrackName (string) --

        The name of the maintenance track for the cluster.

      • ElasticResizeNumberOfNodeOptions (string) --

        The number of nodes that you can resize the cluster to with the elastic resize method.

      • DeferredMaintenanceWindows (list) --

        Describes a group of DeferredMaintenanceWindow objects.

        • (dict) --

          Describes a deferred maintenance window

          • DeferMaintenanceIdentifier (string) --

            A unique identifier for the maintenance window.

          • DeferMaintenanceStartTime (datetime) --

            A timestamp for the beginning of the time period when we defer maintenance.

          • DeferMaintenanceEndTime (datetime) --

            A timestamp for the end of the time period when we defer maintenance.

      • SnapshotScheduleIdentifier (string) --

        A unique identifier for the cluster snapshot schedule.

      • SnapshotScheduleState (string) --

        The current state of the cluster snapshot schedule.

      • ExpectedNextSnapshotScheduleTime (datetime) --

        The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.

      • ExpectedNextSnapshotScheduleTimeStatus (string) --

        The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:

        • OnTrack - The next snapshot is expected to be taken on time.

        • Pending - The next snapshot is pending to be taken.

      • NextMaintenanceWindowStartTime (datetime) --

        The date and time in UTC when system maintenance can begin.

      • ResizeInfo (dict) --

        Returns the following:

        • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.

        • ResizeType: Returns ClassicResize

        • ResizeType (string) --

          Returns the value ClassicResize .

        • AllowCancelResize (boolean) --

          A boolean value indicating if the resize operation can be cancelled.

      • AvailabilityZoneRelocationStatus (string) --

        Describes the status of the Availability Zone relocation operation.

      • ClusterNamespaceArn (string) --

        The namespace Amazon Resource Name (ARN) of the cluster.

      • TotalStorageCapacityInMegaBytes (integer) --

        The total storage capacity of the cluster in megabytes.

      • AquaConfiguration (dict) --

        The AQUA (Advanced Query Accelerator) configuration of the cluster.

        • AquaStatus (string) --

          The value indicates the status of AQUA on the cluster. Possible values include the following.

          • enabled - AQUA is enabled.

          • disabled - AQUA is not enabled.

          • applying - AQUA status is being applied.

        • AquaConfigurationStatus (string) --

          The value represents how the cluster is configured to use AQUA. Possible values include the following.

          • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

          • disabled - Don't use AQUA.

          • auto - Amazon Redshift determines whether to use AQUA.

      • DefaultIamRoleArn (string) --

        The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.

      • ReservedNodeExchangeStatus (dict) --

        The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • ReservedNodeExchangeRequestId (string) --

          The identifier of the reserved-node exchange request.

        • Status (string) --

          The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • RequestTime (datetime) --

          A date and time that indicate when the reserved-node exchange was requested.

        • SourceReservedNodeId (string) --

          The identifier of the source reserved node.

        • SourceReservedNodeType (string) --

          The source reserved-node type, for example ds2.xlarge.

        • SourceReservedNodeCount (integer) --

          The source reserved-node count in the cluster.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

        • TargetReservedNodeType (string) --

          The node type of the target reserved node, for example ra3.4xlarge.

        • TargetReservedNodeCount (integer) --

          The count of target reserved nodes in the cluster.

ModifyClusterMaintenance (updated) Link ¶
Changes (response)
{'Cluster': {'ReservedNodeExchangeStatus': {'RequestTime': 'timestamp',
                                            'ReservedNodeExchangeRequestId': 'string',
                                            'SourceReservedNodeCount': 'integer',
                                            'SourceReservedNodeId': 'string',
                                            'SourceReservedNodeType': 'string',
                                            'Status': 'REQUESTED | PENDING | '
                                                      'IN_PROGRESS | RETRYING '
                                                      '| SUCCEEDED | FAILED',
                                            'TargetReservedNodeCount': 'integer',
                                            'TargetReservedNodeOfferingId': 'string',
                                            'TargetReservedNodeType': 'string'}}}

Modifies the maintenance settings of a cluster.

See also: AWS API Documentation

Request Syntax

client.modify_cluster_maintenance(
    ClusterIdentifier='string',
    DeferMaintenance=True|False,
    DeferMaintenanceIdentifier='string',
    DeferMaintenanceStartTime=datetime(2015, 1, 1),
    DeferMaintenanceEndTime=datetime(2015, 1, 1),
    DeferMaintenanceDuration=123
)
type ClusterIdentifier

string

param ClusterIdentifier

[REQUIRED]

A unique identifier for the cluster.

type DeferMaintenance

boolean

param DeferMaintenance

A boolean indicating whether to enable the deferred maintenance window.

type DeferMaintenanceIdentifier

string

param DeferMaintenanceIdentifier

A unique identifier for the deferred maintenance window.

type DeferMaintenanceStartTime

datetime

param DeferMaintenanceStartTime

A timestamp indicating the start time for the deferred maintenance window.

type DeferMaintenanceEndTime

datetime

param DeferMaintenanceEndTime

A timestamp indicating end time for the deferred maintenance window. If you specify an end time, you can't specify a duration.

type DeferMaintenanceDuration

integer

param DeferMaintenanceDuration

An integer indicating the duration of the maintenance window in days. If you specify a duration, you can't specify an end time. The duration must be 45 days or less.

rtype

dict

returns

Response Syntax

{
    'Cluster': {
        'ClusterIdentifier': 'string',
        'NodeType': 'string',
        'ClusterStatus': 'string',
        'ClusterAvailabilityStatus': 'string',
        'ModifyStatus': 'string',
        'MasterUsername': 'string',
        'DBName': 'string',
        'Endpoint': {
            'Address': 'string',
            'Port': 123,
            'VpcEndpoints': [
                {
                    'VpcEndpointId': 'string',
                    'VpcId': 'string',
                    'NetworkInterfaces': [
                        {
                            'NetworkInterfaceId': 'string',
                            'SubnetId': 'string',
                            'PrivateIpAddress': 'string',
                            'AvailabilityZone': 'string'
                        },
                    ]
                },
            ]
        },
        'ClusterCreateTime': datetime(2015, 1, 1),
        'AutomatedSnapshotRetentionPeriod': 123,
        'ManualSnapshotRetentionPeriod': 123,
        'ClusterSecurityGroups': [
            {
                'ClusterSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'VpcSecurityGroups': [
            {
                'VpcSecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ClusterParameterGroups': [
            {
                'ParameterGroupName': 'string',
                'ParameterApplyStatus': 'string',
                'ClusterParameterStatusList': [
                    {
                        'ParameterName': 'string',
                        'ParameterApplyStatus': 'string',
                        'ParameterApplyErrorDescription': 'string'
                    },
                ]
            },
        ],
        'ClusterSubnetGroupName': 'string',
        'VpcId': 'string',
        'AvailabilityZone': 'string',
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'MasterUserPassword': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'ClusterType': 'string',
            'ClusterVersion': 'string',
            'AutomatedSnapshotRetentionPeriod': 123,
            'ClusterIdentifier': 'string',
            'PubliclyAccessible': True|False,
            'EnhancedVpcRouting': True|False,
            'MaintenanceTrackName': 'string',
            'EncryptionType': 'string'
        },
        'ClusterVersion': 'string',
        'AllowVersionUpgrade': True|False,
        'NumberOfNodes': 123,
        'PubliclyAccessible': True|False,
        'Encrypted': True|False,
        'RestoreStatus': {
            'Status': 'string',
            'CurrentRestoreRateInMegaBytesPerSecond': 123.0,
            'SnapshotSizeInMegaBytes': 123,
            'ProgressInMegaBytes': 123,
            'ElapsedTimeInSeconds': 123,
            'EstimatedTimeToCompletionInSeconds': 123
        },
        'DataTransferProgress': {
            'Status': 'string',
            'CurrentRateInMegaBytesPerSecond': 123.0,
            'TotalDataInMegaBytes': 123,
            'DataTransferredInMegaBytes': 123,
            'EstimatedTimeToCompletionInSeconds': 123,
            'ElapsedTimeInSeconds': 123
        },
        'HsmStatus': {
            'HsmClientCertificateIdentifier': 'string',
            'HsmConfigurationIdentifier': 'string',
            'Status': 'string'
        },
        'ClusterSnapshotCopyStatus': {
            'DestinationRegion': 'string',
            'RetentionPeriod': 123,
            'ManualSnapshotRetentionPeriod': 123,
            'SnapshotCopyGrantName': 'string'
        },
        'ClusterPublicKey': 'string',
        'ClusterNodes': [
            {
                'NodeRole': 'string',
                'PrivateIPAddress': 'string',
                'PublicIPAddress': 'string'
            },
        ],
        'ElasticIpStatus': {
            'ElasticIp': 'string',
            'Status': 'string'
        },
        'ClusterRevisionNumber': 'string',
        'Tags': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        'KmsKeyId': 'string',
        'EnhancedVpcRouting': True|False,
        'IamRoles': [
            {
                'IamRoleArn': 'string',
                'ApplyStatus': 'string'
            },
        ],
        'PendingActions': [
            'string',
        ],
        'MaintenanceTrackName': 'string',
        'ElasticResizeNumberOfNodeOptions': 'string',
        'DeferredMaintenanceWindows': [
            {
                'DeferMaintenanceIdentifier': 'string',
                'DeferMaintenanceStartTime': datetime(2015, 1, 1),
                'DeferMaintenanceEndTime': datetime(2015, 1, 1)
            },
        ],
        'SnapshotScheduleIdentifier': 'string',
        'SnapshotScheduleState': 'MODIFYING'|'ACTIVE'|'FAILED',
        'ExpectedNextSnapshotScheduleTime': datetime(2015, 1, 1),
        'ExpectedNextSnapshotScheduleTimeStatus': 'string',
        'NextMaintenanceWindowStartTime': datetime(2015, 1, 1),
        'ResizeInfo': {
            'ResizeType': 'string',
            'AllowCancelResize': True|False
        },
        'AvailabilityZoneRelocationStatus': 'string',
        'ClusterNamespaceArn': 'string',
        'TotalStorageCapacityInMegaBytes': 123,
        'AquaConfiguration': {
            'AquaStatus': 'enabled'|'disabled'|'applying',
            'AquaConfigurationStatus': 'enabled'|'disabled'|'auto'
        },
        'DefaultIamRoleArn': 'string',
        'ReservedNodeExchangeStatus': {
            'ReservedNodeExchangeRequestId': 'string',
            'Status': 'REQUESTED'|'PENDING'|'IN_PROGRESS'|'RETRYING'|'SUCCEEDED'|'FAILED',
            'RequestTime': datetime(2015, 1, 1),
            'SourceReservedNodeId': 'string',
            'SourceReservedNodeType': 'string',
            'SourceReservedNodeCount': 123,
            'TargetReservedNodeOfferingId': 'string',
            'TargetReservedNodeType': 'string',
            'TargetReservedNodeCount': 123
        }
    }
}

Response Structure

  • (dict) --

    • Cluster (dict) --

      Describes a cluster.

      • ClusterIdentifier (string) --

        The unique identifier of the cluster.

      • NodeType (string) --

        The node type for the nodes in the cluster.

      • ClusterStatus (string) --

        The current state of the cluster. Possible values are the following:

        • available

        • available, prep-for-resize

        • available, resize-cleanup

        • cancelling-resize

        • creating

        • deleting

        • final-snapshot

        • hardware-failure

        • incompatible-hsm

        • incompatible-network

        • incompatible-parameters

        • incompatible-restore

        • modifying

        • paused

        • rebooting

        • renaming

        • resizing

        • rotating-keys

        • storage-full

        • updating-hsm

      • ClusterAvailabilityStatus (string) --

        The availability status of the cluster for queries. Possible values are the following:

        • Available - The cluster is available for queries.

        • Unavailable - The cluster is not available for queries.

        • Maintenance - The cluster is intermittently available for queries due to maintenance activities.

        • Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.

        • Failed - The cluster failed and is not available for queries.

      • ModifyStatus (string) --

        The status of a modify operation, if any, initiated for the cluster.

      • MasterUsername (string) --

        The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

      • DBName (string) --

        The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named dev dev was created by default.

      • Endpoint (dict) --

        The connection endpoint.

        • Address (string) --

          The DNS address of the Cluster.

        • Port (integer) --

          The port that the database engine is listening on.

        • VpcEndpoints (list) --

          Describes a connection endpoint.

          • (dict) --

            The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

            • VpcEndpointId (string) --

              The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.

            • VpcId (string) --

              The VPC identifier that the endpoint is associated.

            • NetworkInterfaces (list) --

              One or more network interfaces of the endpoint. Also known as an interface endpoint.

              • (dict) --

                Describes a network interface.

                • NetworkInterfaceId (string) --

                  The network interface identifier.

                • SubnetId (string) --

                  The subnet identifier.

                • PrivateIpAddress (string) --

                  The IPv4 address of the network interface within the subnet.

                • AvailabilityZone (string) --

                  The Availability Zone.

      • ClusterCreateTime (datetime) --

        The date and time that the cluster was created.

      • AutomatedSnapshotRetentionPeriod (integer) --

        The number of days that automatic cluster snapshots are retained.

      • ManualSnapshotRetentionPeriod (integer) --

        The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

        The value must be either -1 or an integer between 1 and 3,653.

      • ClusterSecurityGroups (list) --

        A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

        Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

        • (dict) --

          Describes a cluster security group.

          • ClusterSecurityGroupName (string) --

            The name of the cluster security group.

          • Status (string) --

            The status of the cluster security group.

      • VpcSecurityGroups (list) --

        A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

        • (dict) --

          Describes the members of a VPC security group.

          • VpcSecurityGroupId (string) --

            The identifier of the VPC security group.

          • Status (string) --

            The status of the VPC security group.

      • ClusterParameterGroups (list) --

        The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

        • (dict) --

          Describes the status of a parameter group.

          • ParameterGroupName (string) --

            The name of the cluster parameter group.

          • ParameterApplyStatus (string) --

            The status of parameter updates.

          • ClusterParameterStatusList (list) --

            The list of parameter statuses.

            For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide .

            • (dict) --

              Describes the status of a parameter group.

              • ParameterName (string) --

                The name of the parameter.

              • ParameterApplyStatus (string) --

                The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.

                The following are possible statuses and descriptions.

                • in-sync : The parameter value is in sync with the database.

                • pending-reboot : The parameter value will be applied after the cluster reboots.

                • applying : The parameter value is being applied to the database.

                • invalid-parameter : Cannot apply the parameter value because it has an invalid value or syntax.

                • apply-deferred : The parameter contains static property changes. The changes are deferred until the cluster reboots.

                • apply-error : Cannot connect to the cluster. The parameter change will be applied after the cluster reboots.

                • unknown-error : Cannot apply the parameter change right now. The change will be applied after the cluster reboots.

              • ParameterApplyErrorDescription (string) --

                The error that prevented the parameter from being applied to the database.

      • ClusterSubnetGroupName (string) --

        The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

      • VpcId (string) --

        The identifier of the VPC the cluster is in, if the cluster is in a VPC.

      • AvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located.

      • PreferredMaintenanceWindow (string) --

        The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

      • PendingModifiedValues (dict) --

        A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

        • MasterUserPassword (string) --

          The pending or in-progress change of the admin user password for the cluster.

        • NodeType (string) --

          The pending or in-progress change of the cluster's node type.

        • NumberOfNodes (integer) --

          The pending or in-progress change of the number of nodes in the cluster.

        • ClusterType (string) --

          The pending or in-progress change of the cluster type.

        • ClusterVersion (string) --

          The pending or in-progress change of the service version.

        • AutomatedSnapshotRetentionPeriod (integer) --

          The pending or in-progress change of the automated snapshot retention period.

        • ClusterIdentifier (string) --

          The pending or in-progress change of the new identifier for the cluster.

        • PubliclyAccessible (boolean) --

          The pending or in-progress change of the ability to connect to the cluster from the public network.

        • EnhancedVpcRouting (boolean) --

          An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

          If this option is true , enhanced VPC routing is enabled.

          Default: false

        • MaintenanceTrackName (string) --

          The name of the maintenance track that the cluster will change to during the next maintenance window.

        • EncryptionType (string) --

          The encryption type for a cluster. Possible values are: KMS and None.

      • ClusterVersion (string) --

        The version ID of the Amazon Redshift engine that is running on the cluster.

      • AllowVersionUpgrade (boolean) --

        A boolean value that, if true , indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

      • NumberOfNodes (integer) --

        The number of compute nodes in the cluster.

      • PubliclyAccessible (boolean) --

        A boolean value that, if true , indicates that the cluster can be accessed from a public network.

      • Encrypted (boolean) --

        A boolean value that, if true , indicates that data in the cluster is encrypted at rest.

      • RestoreStatus (dict) --

        A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

        • Status (string) --

          The status of the restore action. Returns starting, restoring, completed, or failed.

        • CurrentRestoreRateInMegaBytesPerSecond (float) --

          The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.

        • SnapshotSizeInMegaBytes (integer) --

          The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.

        • ProgressInMegaBytes (integer) --

          The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.

        • ElapsedTimeInSeconds (integer) --

          The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.

        • EstimatedTimeToCompletionInSeconds (integer) --

          The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.

      • DataTransferProgress (dict) --

        • Status (string) --

          Describes the status of the cluster. While the transfer is in progress the status is transferringdata .

        • CurrentRateInMegaBytesPerSecond (float) --

          Describes the data transfer rate in MB's per second.

        • TotalDataInMegaBytes (integer) --

          Describes the total amount of data to be transfered in megabytes.

        • DataTransferredInMegaBytes (integer) --

          Describes the total amount of data that has been transfered in MB's.

        • EstimatedTimeToCompletionInSeconds (integer) --

          Describes the estimated number of seconds remaining to complete the transfer.

        • ElapsedTimeInSeconds (integer) --

          Describes the number of seconds that have elapsed during the data transfer.

      • HsmStatus (dict) --

        A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

        Values: active, applying

        • HsmClientCertificateIdentifier (string) --

          Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

        • HsmConfigurationIdentifier (string) --

          Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

        • Status (string) --

          Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.

          Values: active, applying

      • ClusterSnapshotCopyStatus (dict) --

        A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

        • DestinationRegion (string) --

          The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

        • RetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

        • ManualSnapshotRetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely.

          The value must be either -1 or an integer between 1 and 3,653.

        • SnapshotCopyGrantName (string) --

          The name of the snapshot copy grant.

      • ClusterPublicKey (string) --

        The public key for the cluster.

      • ClusterNodes (list) --

        The nodes in the cluster.

        • (dict) --

          The identifier of a node in a cluster.

          • NodeRole (string) --

            Whether the node is a leader node or a compute node.

          • PrivateIPAddress (string) --

            The private IP address of a node within a cluster.

          • PublicIPAddress (string) --

            The public IP address of a node within a cluster.

      • ElasticIpStatus (dict) --

        The status of the elastic IP (EIP) address.

        • ElasticIp (string) --

          The elastic IP (EIP) address for the cluster.

        • Status (string) --

          The status of the elastic IP (EIP) address.

      • ClusterRevisionNumber (string) --

        The specific revision number of the database in the cluster.

      • Tags (list) --

        The list of tags for the cluster.

        • (dict) --

          A tag consisting of a name/value pair for a resource.

          • Key (string) --

            The key, or name, for the resource tag.

          • Value (string) --

            The value for the resource tag.

      • KmsKeyId (string) --

        The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.

      • EnhancedVpcRouting (boolean) --

        An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

        If this option is true , enhanced VPC routing is enabled.

        Default: false

      • IamRoles (list) --

        A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

        • (dict) --

          An Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other Amazon Web Services services.

          • IamRoleArn (string) --

            The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload .

          • ApplyStatus (string) --

            A value that describes the status of the IAM role's association with an Amazon Redshift cluster.

            The following are possible statuses and descriptions.

            • in-sync : The role is available for use by the cluster.

            • adding : The role is in the process of being associated with the cluster.

            • removing : The role is in the process of being disassociated with the cluster.

      • PendingActions (list) --

        Cluster operations that are waiting to be started.

        • (string) --

      • MaintenanceTrackName (string) --

        The name of the maintenance track for the cluster.

      • ElasticResizeNumberOfNodeOptions (string) --

        The number of nodes that you can resize the cluster to with the elastic resize method.

      • DeferredMaintenanceWindows (list) --

        Describes a group of DeferredMaintenanceWindow objects.

        • (dict) --

          Describes a deferred maintenance window

          • DeferMaintenanceIdentifier (string) --

            A unique identifier for the maintenance window.

          • DeferMaintenanceStartTime (datetime) --

            A timestamp for the beginning of the time period when we defer maintenance.

          • DeferMaintenanceEndTime (datetime) --

            A timestamp for the end of the time period when we defer maintenance.

      • SnapshotScheduleIdentifier (string) --

        A unique identifier for the cluster snapshot schedule.

      • SnapshotScheduleState (string) --

        The current state of the cluster snapshot schedule.

      • ExpectedNextSnapshotScheduleTime (datetime) --

        The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.

      • ExpectedNextSnapshotScheduleTimeStatus (string) --

        The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:

        • OnTrack - The next snapshot is expected to be taken on time.

        • Pending - The next snapshot is pending to be taken.

      • NextMaintenanceWindowStartTime (datetime) --

        The date and time in UTC when system maintenance can begin.

      • ResizeInfo (dict) --

        Returns the following:

        • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.

        • ResizeType: Returns ClassicResize

        • ResizeType (string) --

          Returns the value ClassicResize .

        • AllowCancelResize (boolean) --

          A boolean value indicating if the resize operation can be cancelled.

      • AvailabilityZoneRelocationStatus (string) --

        Describes the status of the Availability Zone relocation operation.

      • ClusterNamespaceArn (string) --

        The namespace Amazon Resource Name (ARN) of the cluster.

      • TotalStorageCapacityInMegaBytes (integer) --

        The total storage capacity of the cluster in megabytes.

      • AquaConfiguration (dict) --

        The AQUA (Advanced Query Accelerator) configuration of the cluster.

        • AquaStatus (string) --

          The value indicates the status of AQUA on the cluster. Possible values include the following.

          • enabled - AQUA is enabled.

          • disabled - AQUA is not enabled.

          • applying - AQUA status is being applied.

        • AquaConfigurationStatus (string) --

          The value represents how the cluster is configured to use AQUA. Possible values include the following.

          • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

          • disabled - Don't use AQUA.

          • auto - Amazon Redshift determines whether to use AQUA.

      • DefaultIamRoleArn (string) --

        The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.

      • ReservedNodeExchangeStatus (dict) --

        The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • ReservedNodeExchangeRequestId (string) --

          The identifier of the reserved-node exchange request.

        • Status (string) --

          The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • RequestTime (datetime) --

          A date and time that indicate when the reserved-node exchange was requested.

        • SourceReservedNodeId (string) --

          The identifier of the source reserved node.

        • SourceReservedNodeType (string) --

          The source reserved-node type, for example ds2.xlarge.

        • SourceReservedNodeCount (integer) --

          The source reserved-node count in the cluster.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

        • TargetReservedNodeType (string) --

          The node type of the target reserved node, for example ra3.4xlarge.

        • TargetReservedNodeCount (integer) --

          The count of target reserved nodes in the cluster.

ModifyScheduledAction (updated) Link ¶
Changes (both)
{'TargetAction': {'ResizeCluster': {'ReservedNodeId': 'string',
                                    'TargetReservedNodeOfferingId': 'string'}}}

Modifies a scheduled action.

See also: AWS API Documentation

Request Syntax

client.modify_scheduled_action(
    ScheduledActionName='string',
    TargetAction={
        'ResizeCluster': {
            'ClusterIdentifier': 'string',
            'ClusterType': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'Classic': True|False,
            'ReservedNodeId': 'string',
            'TargetReservedNodeOfferingId': 'string'
        },
        'PauseCluster': {
            'ClusterIdentifier': 'string'
        },
        'ResumeCluster': {
            'ClusterIdentifier': 'string'
        }
    },
    Schedule='string',
    IamRole='string',
    ScheduledActionDescription='string',
    StartTime=datetime(2015, 1, 1),
    EndTime=datetime(2015, 1, 1),
    Enable=True|False
)
type ScheduledActionName

string

param ScheduledActionName

[REQUIRED]

The name of the scheduled action to modify.

type TargetAction

dict

param TargetAction

A modified JSON format of the scheduled action. For more information about this parameter, see ScheduledAction.

  • ResizeCluster (dict) --

    An action that runs a ResizeCluster API operation.

    • ClusterIdentifier (string) -- [REQUIRED]

      The unique identifier for the cluster to resize.

    • ClusterType (string) --

      The new cluster type for the specified cluster.

    • NodeType (string) --

      The new node type for the nodes you are adding. If not specified, the cluster's current node type is used.

    • NumberOfNodes (integer) --

      The new number of nodes for the cluster. If not specified, the cluster's current number of nodes is used.

    • Classic (boolean) --

      A boolean value indicating whether the resize operation is using the classic resize process. If you don't provide this parameter or set the value to false , the resize type is elastic.

    • ReservedNodeId (string) --

      The identifier of the reserved node.

    • TargetReservedNodeOfferingId (string) --

      The identifier of the target reserved node offering.

  • PauseCluster (dict) --

    An action that runs a PauseCluster API operation.

    • ClusterIdentifier (string) -- [REQUIRED]

      The identifier of the cluster to be paused.

  • ResumeCluster (dict) --

    An action that runs a ResumeCluster API operation.

    • ClusterIdentifier (string) -- [REQUIRED]

      The identifier of the cluster to be resumed.

type Schedule

string

param Schedule

A modified schedule in either at( ) or cron( ) format. For more information about this parameter, see ScheduledAction.

type IamRole

string

param IamRole

A different IAM role to assume to run the target action. For more information about this parameter, see ScheduledAction.

type ScheduledActionDescription

string

param ScheduledActionDescription

A modified description of the scheduled action.

type StartTime

datetime

param StartTime

A modified start time of the scheduled action. For more information about this parameter, see ScheduledAction.

type EndTime

datetime

param EndTime

A modified end time of the scheduled action. For more information about this parameter, see ScheduledAction.

type Enable

boolean

param Enable

A modified enable flag of the scheduled action. If true, the scheduled action is active. If false, the scheduled action is disabled.

rtype

dict

returns

Response Syntax

{
    'ScheduledActionName': 'string',
    'TargetAction': {
        'ResizeCluster': {
            'ClusterIdentifier': 'string',
            'ClusterType': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'Classic': True|False,
            'ReservedNodeId': 'string',
            'TargetReservedNodeOfferingId': 'string'
        },
        'PauseCluster': {
            'ClusterIdentifier': 'string'
        },
        'ResumeCluster': {
            'ClusterIdentifier': 'string'
        }
    },
    'Schedule': 'string',
    'IamRole': 'string',
    'ScheduledActionDescription': 'string',
    'State': 'ACTIVE'|'DISABLED',
    'NextInvocations': [
        datetime(2015, 1, 1),
    ],
    'StartTime': datetime(2015, 1, 1),
    'EndTime': datetime(2015, 1, 1)
}

Response Structure

  • (dict) --

    Describes a scheduled action. You can use a scheduled action to trigger some Amazon Redshift API operations on a schedule. For information about which API operations can be scheduled, see ScheduledActionType.

    • ScheduledActionName (string) --

      The name of the scheduled action.

    • TargetAction (dict) --

      A JSON format string of the Amazon Redshift API operation with input parameters.

      " {\"ResizeCluster\":{\"NodeType\":\"ds2.8xlarge\",\"ClusterIdentifier\":\"my-test-cluster\",\"NumberOfNodes\":3}} ".

      • ResizeCluster (dict) --

        An action that runs a ResizeCluster API operation.

        • ClusterIdentifier (string) --

          The unique identifier for the cluster to resize.

        • ClusterType (string) --

          The new cluster type for the specified cluster.

        • NodeType (string) --

          The new node type for the nodes you are adding. If not specified, the cluster's current node type is used.

        • NumberOfNodes (integer) --

          The new number of nodes for the cluster. If not specified, the cluster's current number of nodes is used.

        • Classic (boolean) --

          A boolean value indicating whether the resize operation is using the classic resize process. If you don't provide this parameter or set the value to false , the resize type is elastic.

        • ReservedNodeId (string) --

          The identifier of the reserved node.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

      • PauseCluster (dict) --

        An action that runs a PauseCluster API operation.

        • ClusterIdentifier (string) --

          The identifier of the cluster to be paused.

      • ResumeCluster (dict) --

        An action that runs a ResumeCluster API operation.

        • ClusterIdentifier (string) --

          The identifier of the cluster to be resumed.

    • Schedule (string) --

      The schedule for a one-time (at format) or recurring (cron format) scheduled action. Schedule invocations must be separated by at least one hour.

      Format of at expressions is " at(yyyy-mm-ddThh:mm:ss) ". For example, " at(2016-03-04T17:27:00) ".

      Format of cron expressions is " cron(Minutes Hours Day-of-month Month Day-of-week Year) ". For example, " cron(0 10 ? * MON *) ". For more information, see Cron Expressions in the Amazon CloudWatch Events User Guide .

    • IamRole (string) --

      The IAM role to assume to run the scheduled action. This IAM role must have permission to run the Amazon Redshift API operation in the scheduled action. This IAM role must allow the Amazon Redshift scheduler (Principal scheduler.redshift.amazonaws.com) to assume permissions on your behalf. For more information about the IAM role to use with the Amazon Redshift scheduler, see Using Identity-Based Policies for Amazon Redshift in the Amazon Redshift Cluster Management Guide .

    • ScheduledActionDescription (string) --

      The description of the scheduled action.

    • State (string) --

      The state of the scheduled action. For example, DISABLED .

    • NextInvocations (list) --

      List of times when the scheduled action will run.

      • (datetime) --

    • StartTime (datetime) --

      The start time in UTC when the schedule is active. Before this time, the scheduled action does not trigger.

    • EndTime (datetime) --

      The end time in UTC when the schedule is no longer active. After this time, the scheduled action does not trigger.

ModifySnapshotCopyRetentionPeriod (updated) Link ¶
Changes (response)
{'Cluster': {'ReservedNodeExchangeStatus': {'RequestTime': 'timestamp',
                                            'ReservedNodeExchangeRequestId': 'string',
                                            'SourceReservedNodeCount': 'integer',
                                            'SourceReservedNodeId': 'string',
                                            'SourceReservedNodeType': 'string',
                                            'Status': 'REQUESTED | PENDING | '
                                                      'IN_PROGRESS | RETRYING '
                                                      '| SUCCEEDED | FAILED',
                                            'TargetReservedNodeCount': 'integer',
                                            'TargetReservedNodeOfferingId': 'string',
                                            'TargetReservedNodeType': 'string'}}}

Modifies the number of days to retain snapshots in the destination Amazon Web Services Region after they are copied from the source Amazon Web Services Region. By default, this operation only changes the retention period of copied automated snapshots. The retention periods for both new and existing copied automated snapshots are updated with the new retention period. You can set the manual option to change only the retention periods of copied manual snapshots. If you set this option, only newly copied manual snapshots have the new retention period.

See also: AWS API Documentation

Request Syntax

client.modify_snapshot_copy_retention_period(
    ClusterIdentifier='string',
    RetentionPeriod=123,
    Manual=True|False
)
type ClusterIdentifier

string

param ClusterIdentifier

[REQUIRED]

The unique identifier of the cluster for which you want to change the retention period for either automated or manual snapshots that are copied to a destination Amazon Web Services Region.

Constraints: Must be the valid name of an existing cluster that has cross-region snapshot copy enabled.

type RetentionPeriod

integer

param RetentionPeriod

[REQUIRED]

The number of days to retain automated snapshots in the destination Amazon Web Services Region after they are copied from the source Amazon Web Services Region.

By default, this only changes the retention period of copied automated snapshots.

If you decrease the retention period for automated snapshots that are copied to a destination Amazon Web Services Region, Amazon Redshift deletes any existing automated snapshots that were copied to the destination Amazon Web Services Region and that fall outside of the new retention period.

Constraints: Must be at least 1 and no more than 35 for automated snapshots.

If you specify the manual option, only newly copied manual snapshots will have the new retention period.

If you specify the value of -1 newly copied manual snapshots are retained indefinitely.

Constraints: The number of days must be either -1 or an integer between 1 and 3,653 for manual snapshots.

type Manual

boolean

param Manual

Indicates whether to apply the snapshot retention period to newly copied manual snapshots instead of automated snapshots.

rtype

dict

returns

Response Syntax

{
    'Cluster': {
        'ClusterIdentifier': 'string',
        'NodeType': 'string',
        'ClusterStatus': 'string',
        'ClusterAvailabilityStatus': 'string',
        'ModifyStatus': 'string',
        'MasterUsername': 'string',
        'DBName': 'string',
        'Endpoint': {
            'Address': 'string',
            'Port': 123,
            'VpcEndpoints': [
                {
                    'VpcEndpointId': 'string',
                    'VpcId': 'string',
                    'NetworkInterfaces': [
                        {
                            'NetworkInterfaceId': 'string',
                            'SubnetId': 'string',
                            'PrivateIpAddress': 'string',
                            'AvailabilityZone': 'string'
                        },
                    ]
                },
            ]
        },
        'ClusterCreateTime': datetime(2015, 1, 1),
        'AutomatedSnapshotRetentionPeriod': 123,
        'ManualSnapshotRetentionPeriod': 123,
        'ClusterSecurityGroups': [
            {
                'ClusterSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'VpcSecurityGroups': [
            {
                'VpcSecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ClusterParameterGroups': [
            {
                'ParameterGroupName': 'string',
                'ParameterApplyStatus': 'string',
                'ClusterParameterStatusList': [
                    {
                        'ParameterName': 'string',
                        'ParameterApplyStatus': 'string',
                        'ParameterApplyErrorDescription': 'string'
                    },
                ]
            },
        ],
        'ClusterSubnetGroupName': 'string',
        'VpcId': 'string',
        'AvailabilityZone': 'string',
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'MasterUserPassword': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'ClusterType': 'string',
            'ClusterVersion': 'string',
            'AutomatedSnapshotRetentionPeriod': 123,
            'ClusterIdentifier': 'string',
            'PubliclyAccessible': True|False,
            'EnhancedVpcRouting': True|False,
            'MaintenanceTrackName': 'string',
            'EncryptionType': 'string'
        },
        'ClusterVersion': 'string',
        'AllowVersionUpgrade': True|False,
        'NumberOfNodes': 123,
        'PubliclyAccessible': True|False,
        'Encrypted': True|False,
        'RestoreStatus': {
            'Status': 'string',
            'CurrentRestoreRateInMegaBytesPerSecond': 123.0,
            'SnapshotSizeInMegaBytes': 123,
            'ProgressInMegaBytes': 123,
            'ElapsedTimeInSeconds': 123,
            'EstimatedTimeToCompletionInSeconds': 123
        },
        'DataTransferProgress': {
            'Status': 'string',
            'CurrentRateInMegaBytesPerSecond': 123.0,
            'TotalDataInMegaBytes': 123,
            'DataTransferredInMegaBytes': 123,
            'EstimatedTimeToCompletionInSeconds': 123,
            'ElapsedTimeInSeconds': 123
        },
        'HsmStatus': {
            'HsmClientCertificateIdentifier': 'string',
            'HsmConfigurationIdentifier': 'string',
            'Status': 'string'
        },
        'ClusterSnapshotCopyStatus': {
            'DestinationRegion': 'string',
            'RetentionPeriod': 123,
            'ManualSnapshotRetentionPeriod': 123,
            'SnapshotCopyGrantName': 'string'
        },
        'ClusterPublicKey': 'string',
        'ClusterNodes': [
            {
                'NodeRole': 'string',
                'PrivateIPAddress': 'string',
                'PublicIPAddress': 'string'
            },
        ],
        'ElasticIpStatus': {
            'ElasticIp': 'string',
            'Status': 'string'
        },
        'ClusterRevisionNumber': 'string',
        'Tags': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        'KmsKeyId': 'string',
        'EnhancedVpcRouting': True|False,
        'IamRoles': [
            {
                'IamRoleArn': 'string',
                'ApplyStatus': 'string'
            },
        ],
        'PendingActions': [
            'string',
        ],
        'MaintenanceTrackName': 'string',
        'ElasticResizeNumberOfNodeOptions': 'string',
        'DeferredMaintenanceWindows': [
            {
                'DeferMaintenanceIdentifier': 'string',
                'DeferMaintenanceStartTime': datetime(2015, 1, 1),
                'DeferMaintenanceEndTime': datetime(2015, 1, 1)
            },
        ],
        'SnapshotScheduleIdentifier': 'string',
        'SnapshotScheduleState': 'MODIFYING'|'ACTIVE'|'FAILED',
        'ExpectedNextSnapshotScheduleTime': datetime(2015, 1, 1),
        'ExpectedNextSnapshotScheduleTimeStatus': 'string',
        'NextMaintenanceWindowStartTime': datetime(2015, 1, 1),
        'ResizeInfo': {
            'ResizeType': 'string',
            'AllowCancelResize': True|False
        },
        'AvailabilityZoneRelocationStatus': 'string',
        'ClusterNamespaceArn': 'string',
        'TotalStorageCapacityInMegaBytes': 123,
        'AquaConfiguration': {
            'AquaStatus': 'enabled'|'disabled'|'applying',
            'AquaConfigurationStatus': 'enabled'|'disabled'|'auto'
        },
        'DefaultIamRoleArn': 'string',
        'ReservedNodeExchangeStatus': {
            'ReservedNodeExchangeRequestId': 'string',
            'Status': 'REQUESTED'|'PENDING'|'IN_PROGRESS'|'RETRYING'|'SUCCEEDED'|'FAILED',
            'RequestTime': datetime(2015, 1, 1),
            'SourceReservedNodeId': 'string',
            'SourceReservedNodeType': 'string',
            'SourceReservedNodeCount': 123,
            'TargetReservedNodeOfferingId': 'string',
            'TargetReservedNodeType': 'string',
            'TargetReservedNodeCount': 123
        }
    }
}

Response Structure

  • (dict) --

    • Cluster (dict) --

      Describes a cluster.

      • ClusterIdentifier (string) --

        The unique identifier of the cluster.

      • NodeType (string) --

        The node type for the nodes in the cluster.

      • ClusterStatus (string) --

        The current state of the cluster. Possible values are the following:

        • available

        • available, prep-for-resize

        • available, resize-cleanup

        • cancelling-resize

        • creating

        • deleting

        • final-snapshot

        • hardware-failure

        • incompatible-hsm

        • incompatible-network

        • incompatible-parameters

        • incompatible-restore

        • modifying

        • paused

        • rebooting

        • renaming

        • resizing

        • rotating-keys

        • storage-full

        • updating-hsm

      • ClusterAvailabilityStatus (string) --

        The availability status of the cluster for queries. Possible values are the following:

        • Available - The cluster is available for queries.

        • Unavailable - The cluster is not available for queries.

        • Maintenance - The cluster is intermittently available for queries due to maintenance activities.

        • Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.

        • Failed - The cluster failed and is not available for queries.

      • ModifyStatus (string) --

        The status of a modify operation, if any, initiated for the cluster.

      • MasterUsername (string) --

        The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

      • DBName (string) --

        The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named dev dev was created by default.

      • Endpoint (dict) --

        The connection endpoint.

        • Address (string) --

          The DNS address of the Cluster.

        • Port (integer) --

          The port that the database engine is listening on.

        • VpcEndpoints (list) --

          Describes a connection endpoint.

          • (dict) --

            The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

            • VpcEndpointId (string) --

              The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.

            • VpcId (string) --

              The VPC identifier that the endpoint is associated.

            • NetworkInterfaces (list) --

              One or more network interfaces of the endpoint. Also known as an interface endpoint.

              • (dict) --

                Describes a network interface.

                • NetworkInterfaceId (string) --

                  The network interface identifier.

                • SubnetId (string) --

                  The subnet identifier.

                • PrivateIpAddress (string) --

                  The IPv4 address of the network interface within the subnet.

                • AvailabilityZone (string) --

                  The Availability Zone.

      • ClusterCreateTime (datetime) --

        The date and time that the cluster was created.

      • AutomatedSnapshotRetentionPeriod (integer) --

        The number of days that automatic cluster snapshots are retained.

      • ManualSnapshotRetentionPeriod (integer) --

        The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

        The value must be either -1 or an integer between 1 and 3,653.

      • ClusterSecurityGroups (list) --

        A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

        Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

        • (dict) --

          Describes a cluster security group.

          • ClusterSecurityGroupName (string) --

            The name of the cluster security group.

          • Status (string) --

            The status of the cluster security group.

      • VpcSecurityGroups (list) --

        A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

        • (dict) --

          Describes the members of a VPC security group.

          • VpcSecurityGroupId (string) --

            The identifier of the VPC security group.

          • Status (string) --

            The status of the VPC security group.

      • ClusterParameterGroups (list) --

        The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

        • (dict) --

          Describes the status of a parameter group.

          • ParameterGroupName (string) --

            The name of the cluster parameter group.

          • ParameterApplyStatus (string) --

            The status of parameter updates.

          • ClusterParameterStatusList (list) --

            The list of parameter statuses.

            For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide .

            • (dict) --

              Describes the status of a parameter group.

              • ParameterName (string) --

                The name of the parameter.

              • ParameterApplyStatus (string) --

                The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.

                The following are possible statuses and descriptions.

                • in-sync : The parameter value is in sync with the database.

                • pending-reboot : The parameter value will be applied after the cluster reboots.

                • applying : The parameter value is being applied to the database.

                • invalid-parameter : Cannot apply the parameter value because it has an invalid value or syntax.

                • apply-deferred : The parameter contains static property changes. The changes are deferred until the cluster reboots.

                • apply-error : Cannot connect to the cluster. The parameter change will be applied after the cluster reboots.

                • unknown-error : Cannot apply the parameter change right now. The change will be applied after the cluster reboots.

              • ParameterApplyErrorDescription (string) --

                The error that prevented the parameter from being applied to the database.

      • ClusterSubnetGroupName (string) --

        The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

      • VpcId (string) --

        The identifier of the VPC the cluster is in, if the cluster is in a VPC.

      • AvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located.

      • PreferredMaintenanceWindow (string) --

        The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

      • PendingModifiedValues (dict) --

        A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

        • MasterUserPassword (string) --

          The pending or in-progress change of the admin user password for the cluster.

        • NodeType (string) --

          The pending or in-progress change of the cluster's node type.

        • NumberOfNodes (integer) --

          The pending or in-progress change of the number of nodes in the cluster.

        • ClusterType (string) --

          The pending or in-progress change of the cluster type.

        • ClusterVersion (string) --

          The pending or in-progress change of the service version.

        • AutomatedSnapshotRetentionPeriod (integer) --

          The pending or in-progress change of the automated snapshot retention period.

        • ClusterIdentifier (string) --

          The pending or in-progress change of the new identifier for the cluster.

        • PubliclyAccessible (boolean) --

          The pending or in-progress change of the ability to connect to the cluster from the public network.

        • EnhancedVpcRouting (boolean) --

          An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

          If this option is true , enhanced VPC routing is enabled.

          Default: false

        • MaintenanceTrackName (string) --

          The name of the maintenance track that the cluster will change to during the next maintenance window.

        • EncryptionType (string) --

          The encryption type for a cluster. Possible values are: KMS and None.

      • ClusterVersion (string) --

        The version ID of the Amazon Redshift engine that is running on the cluster.

      • AllowVersionUpgrade (boolean) --

        A boolean value that, if true , indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

      • NumberOfNodes (integer) --

        The number of compute nodes in the cluster.

      • PubliclyAccessible (boolean) --

        A boolean value that, if true , indicates that the cluster can be accessed from a public network.

      • Encrypted (boolean) --

        A boolean value that, if true , indicates that data in the cluster is encrypted at rest.

      • RestoreStatus (dict) --

        A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

        • Status (string) --

          The status of the restore action. Returns starting, restoring, completed, or failed.

        • CurrentRestoreRateInMegaBytesPerSecond (float) --

          The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.

        • SnapshotSizeInMegaBytes (integer) --

          The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.

        • ProgressInMegaBytes (integer) --

          The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.

        • ElapsedTimeInSeconds (integer) --

          The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.

        • EstimatedTimeToCompletionInSeconds (integer) --

          The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.

      • DataTransferProgress (dict) --

        • Status (string) --

          Describes the status of the cluster. While the transfer is in progress the status is transferringdata .

        • CurrentRateInMegaBytesPerSecond (float) --

          Describes the data transfer rate in MB's per second.

        • TotalDataInMegaBytes (integer) --

          Describes the total amount of data to be transfered in megabytes.

        • DataTransferredInMegaBytes (integer) --

          Describes the total amount of data that has been transfered in MB's.

        • EstimatedTimeToCompletionInSeconds (integer) --

          Describes the estimated number of seconds remaining to complete the transfer.

        • ElapsedTimeInSeconds (integer) --

          Describes the number of seconds that have elapsed during the data transfer.

      • HsmStatus (dict) --

        A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

        Values: active, applying

        • HsmClientCertificateIdentifier (string) --

          Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

        • HsmConfigurationIdentifier (string) --

          Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

        • Status (string) --

          Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.

          Values: active, applying

      • ClusterSnapshotCopyStatus (dict) --

        A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

        • DestinationRegion (string) --

          The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

        • RetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

        • ManualSnapshotRetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely.

          The value must be either -1 or an integer between 1 and 3,653.

        • SnapshotCopyGrantName (string) --

          The name of the snapshot copy grant.

      • ClusterPublicKey (string) --

        The public key for the cluster.

      • ClusterNodes (list) --

        The nodes in the cluster.

        • (dict) --

          The identifier of a node in a cluster.

          • NodeRole (string) --

            Whether the node is a leader node or a compute node.

          • PrivateIPAddress (string) --

            The private IP address of a node within a cluster.

          • PublicIPAddress (string) --

            The public IP address of a node within a cluster.

      • ElasticIpStatus (dict) --

        The status of the elastic IP (EIP) address.

        • ElasticIp (string) --

          The elastic IP (EIP) address for the cluster.

        • Status (string) --

          The status of the elastic IP (EIP) address.

      • ClusterRevisionNumber (string) --

        The specific revision number of the database in the cluster.

      • Tags (list) --

        The list of tags for the cluster.

        • (dict) --

          A tag consisting of a name/value pair for a resource.

          • Key (string) --

            The key, or name, for the resource tag.

          • Value (string) --

            The value for the resource tag.

      • KmsKeyId (string) --

        The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.

      • EnhancedVpcRouting (boolean) --

        An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

        If this option is true , enhanced VPC routing is enabled.

        Default: false

      • IamRoles (list) --

        A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

        • (dict) --

          An Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other Amazon Web Services services.

          • IamRoleArn (string) --

            The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload .

          • ApplyStatus (string) --

            A value that describes the status of the IAM role's association with an Amazon Redshift cluster.

            The following are possible statuses and descriptions.

            • in-sync : The role is available for use by the cluster.

            • adding : The role is in the process of being associated with the cluster.

            • removing : The role is in the process of being disassociated with the cluster.

      • PendingActions (list) --

        Cluster operations that are waiting to be started.

        • (string) --

      • MaintenanceTrackName (string) --

        The name of the maintenance track for the cluster.

      • ElasticResizeNumberOfNodeOptions (string) --

        The number of nodes that you can resize the cluster to with the elastic resize method.

      • DeferredMaintenanceWindows (list) --

        Describes a group of DeferredMaintenanceWindow objects.

        • (dict) --

          Describes a deferred maintenance window

          • DeferMaintenanceIdentifier (string) --

            A unique identifier for the maintenance window.

          • DeferMaintenanceStartTime (datetime) --

            A timestamp for the beginning of the time period when we defer maintenance.

          • DeferMaintenanceEndTime (datetime) --

            A timestamp for the end of the time period when we defer maintenance.

      • SnapshotScheduleIdentifier (string) --

        A unique identifier for the cluster snapshot schedule.

      • SnapshotScheduleState (string) --

        The current state of the cluster snapshot schedule.

      • ExpectedNextSnapshotScheduleTime (datetime) --

        The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.

      • ExpectedNextSnapshotScheduleTimeStatus (string) --

        The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:

        • OnTrack - The next snapshot is expected to be taken on time.

        • Pending - The next snapshot is pending to be taken.

      • NextMaintenanceWindowStartTime (datetime) --

        The date and time in UTC when system maintenance can begin.

      • ResizeInfo (dict) --

        Returns the following:

        • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.

        • ResizeType: Returns ClassicResize

        • ResizeType (string) --

          Returns the value ClassicResize .

        • AllowCancelResize (boolean) --

          A boolean value indicating if the resize operation can be cancelled.

      • AvailabilityZoneRelocationStatus (string) --

        Describes the status of the Availability Zone relocation operation.

      • ClusterNamespaceArn (string) --

        The namespace Amazon Resource Name (ARN) of the cluster.

      • TotalStorageCapacityInMegaBytes (integer) --

        The total storage capacity of the cluster in megabytes.

      • AquaConfiguration (dict) --

        The AQUA (Advanced Query Accelerator) configuration of the cluster.

        • AquaStatus (string) --

          The value indicates the status of AQUA on the cluster. Possible values include the following.

          • enabled - AQUA is enabled.

          • disabled - AQUA is not enabled.

          • applying - AQUA status is being applied.

        • AquaConfigurationStatus (string) --

          The value represents how the cluster is configured to use AQUA. Possible values include the following.

          • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

          • disabled - Don't use AQUA.

          • auto - Amazon Redshift determines whether to use AQUA.

      • DefaultIamRoleArn (string) --

        The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.

      • ReservedNodeExchangeStatus (dict) --

        The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • ReservedNodeExchangeRequestId (string) --

          The identifier of the reserved-node exchange request.

        • Status (string) --

          The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • RequestTime (datetime) --

          A date and time that indicate when the reserved-node exchange was requested.

        • SourceReservedNodeId (string) --

          The identifier of the source reserved node.

        • SourceReservedNodeType (string) --

          The source reserved-node type, for example ds2.xlarge.

        • SourceReservedNodeCount (integer) --

          The source reserved-node count in the cluster.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

        • TargetReservedNodeType (string) --

          The node type of the target reserved node, for example ra3.4xlarge.

        • TargetReservedNodeCount (integer) --

          The count of target reserved nodes in the cluster.

PauseCluster (updated) Link ¶
Changes (response)
{'Cluster': {'ReservedNodeExchangeStatus': {'RequestTime': 'timestamp',
                                            'ReservedNodeExchangeRequestId': 'string',
                                            'SourceReservedNodeCount': 'integer',
                                            'SourceReservedNodeId': 'string',
                                            'SourceReservedNodeType': 'string',
                                            'Status': 'REQUESTED | PENDING | '
                                                      'IN_PROGRESS | RETRYING '
                                                      '| SUCCEEDED | FAILED',
                                            'TargetReservedNodeCount': 'integer',
                                            'TargetReservedNodeOfferingId': 'string',
                                            'TargetReservedNodeType': 'string'}}}

Pauses a cluster.

See also: AWS API Documentation

Request Syntax

client.pause_cluster(
    ClusterIdentifier='string'
)
type ClusterIdentifier

string

param ClusterIdentifier

[REQUIRED]

The identifier of the cluster to be paused.

rtype

dict

returns

Response Syntax

{
    'Cluster': {
        'ClusterIdentifier': 'string',
        'NodeType': 'string',
        'ClusterStatus': 'string',
        'ClusterAvailabilityStatus': 'string',
        'ModifyStatus': 'string',
        'MasterUsername': 'string',
        'DBName': 'string',
        'Endpoint': {
            'Address': 'string',
            'Port': 123,
            'VpcEndpoints': [
                {
                    'VpcEndpointId': 'string',
                    'VpcId': 'string',
                    'NetworkInterfaces': [
                        {
                            'NetworkInterfaceId': 'string',
                            'SubnetId': 'string',
                            'PrivateIpAddress': 'string',
                            'AvailabilityZone': 'string'
                        },
                    ]
                },
            ]
        },
        'ClusterCreateTime': datetime(2015, 1, 1),
        'AutomatedSnapshotRetentionPeriod': 123,
        'ManualSnapshotRetentionPeriod': 123,
        'ClusterSecurityGroups': [
            {
                'ClusterSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'VpcSecurityGroups': [
            {
                'VpcSecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ClusterParameterGroups': [
            {
                'ParameterGroupName': 'string',
                'ParameterApplyStatus': 'string',
                'ClusterParameterStatusList': [
                    {
                        'ParameterName': 'string',
                        'ParameterApplyStatus': 'string',
                        'ParameterApplyErrorDescription': 'string'
                    },
                ]
            },
        ],
        'ClusterSubnetGroupName': 'string',
        'VpcId': 'string',
        'AvailabilityZone': 'string',
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'MasterUserPassword': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'ClusterType': 'string',
            'ClusterVersion': 'string',
            'AutomatedSnapshotRetentionPeriod': 123,
            'ClusterIdentifier': 'string',
            'PubliclyAccessible': True|False,
            'EnhancedVpcRouting': True|False,
            'MaintenanceTrackName': 'string',
            'EncryptionType': 'string'
        },
        'ClusterVersion': 'string',
        'AllowVersionUpgrade': True|False,
        'NumberOfNodes': 123,
        'PubliclyAccessible': True|False,
        'Encrypted': True|False,
        'RestoreStatus': {
            'Status': 'string',
            'CurrentRestoreRateInMegaBytesPerSecond': 123.0,
            'SnapshotSizeInMegaBytes': 123,
            'ProgressInMegaBytes': 123,
            'ElapsedTimeInSeconds': 123,
            'EstimatedTimeToCompletionInSeconds': 123
        },
        'DataTransferProgress': {
            'Status': 'string',
            'CurrentRateInMegaBytesPerSecond': 123.0,
            'TotalDataInMegaBytes': 123,
            'DataTransferredInMegaBytes': 123,
            'EstimatedTimeToCompletionInSeconds': 123,
            'ElapsedTimeInSeconds': 123
        },
        'HsmStatus': {
            'HsmClientCertificateIdentifier': 'string',
            'HsmConfigurationIdentifier': 'string',
            'Status': 'string'
        },
        'ClusterSnapshotCopyStatus': {
            'DestinationRegion': 'string',
            'RetentionPeriod': 123,
            'ManualSnapshotRetentionPeriod': 123,
            'SnapshotCopyGrantName': 'string'
        },
        'ClusterPublicKey': 'string',
        'ClusterNodes': [
            {
                'NodeRole': 'string',
                'PrivateIPAddress': 'string',
                'PublicIPAddress': 'string'
            },
        ],
        'ElasticIpStatus': {
            'ElasticIp': 'string',
            'Status': 'string'
        },
        'ClusterRevisionNumber': 'string',
        'Tags': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        'KmsKeyId': 'string',
        'EnhancedVpcRouting': True|False,
        'IamRoles': [
            {
                'IamRoleArn': 'string',
                'ApplyStatus': 'string'
            },
        ],
        'PendingActions': [
            'string',
        ],
        'MaintenanceTrackName': 'string',
        'ElasticResizeNumberOfNodeOptions': 'string',
        'DeferredMaintenanceWindows': [
            {
                'DeferMaintenanceIdentifier': 'string',
                'DeferMaintenanceStartTime': datetime(2015, 1, 1),
                'DeferMaintenanceEndTime': datetime(2015, 1, 1)
            },
        ],
        'SnapshotScheduleIdentifier': 'string',
        'SnapshotScheduleState': 'MODIFYING'|'ACTIVE'|'FAILED',
        'ExpectedNextSnapshotScheduleTime': datetime(2015, 1, 1),
        'ExpectedNextSnapshotScheduleTimeStatus': 'string',
        'NextMaintenanceWindowStartTime': datetime(2015, 1, 1),
        'ResizeInfo': {
            'ResizeType': 'string',
            'AllowCancelResize': True|False
        },
        'AvailabilityZoneRelocationStatus': 'string',
        'ClusterNamespaceArn': 'string',
        'TotalStorageCapacityInMegaBytes': 123,
        'AquaConfiguration': {
            'AquaStatus': 'enabled'|'disabled'|'applying',
            'AquaConfigurationStatus': 'enabled'|'disabled'|'auto'
        },
        'DefaultIamRoleArn': 'string',
        'ReservedNodeExchangeStatus': {
            'ReservedNodeExchangeRequestId': 'string',
            'Status': 'REQUESTED'|'PENDING'|'IN_PROGRESS'|'RETRYING'|'SUCCEEDED'|'FAILED',
            'RequestTime': datetime(2015, 1, 1),
            'SourceReservedNodeId': 'string',
            'SourceReservedNodeType': 'string',
            'SourceReservedNodeCount': 123,
            'TargetReservedNodeOfferingId': 'string',
            'TargetReservedNodeType': 'string',
            'TargetReservedNodeCount': 123
        }
    }
}

Response Structure

  • (dict) --

    • Cluster (dict) --

      Describes a cluster.

      • ClusterIdentifier (string) --

        The unique identifier of the cluster.

      • NodeType (string) --

        The node type for the nodes in the cluster.

      • ClusterStatus (string) --

        The current state of the cluster. Possible values are the following:

        • available

        • available, prep-for-resize

        • available, resize-cleanup

        • cancelling-resize

        • creating

        • deleting

        • final-snapshot

        • hardware-failure

        • incompatible-hsm

        • incompatible-network

        • incompatible-parameters

        • incompatible-restore

        • modifying

        • paused

        • rebooting

        • renaming

        • resizing

        • rotating-keys

        • storage-full

        • updating-hsm

      • ClusterAvailabilityStatus (string) --

        The availability status of the cluster for queries. Possible values are the following:

        • Available - The cluster is available for queries.

        • Unavailable - The cluster is not available for queries.

        • Maintenance - The cluster is intermittently available for queries due to maintenance activities.

        • Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.

        • Failed - The cluster failed and is not available for queries.

      • ModifyStatus (string) --

        The status of a modify operation, if any, initiated for the cluster.

      • MasterUsername (string) --

        The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

      • DBName (string) --

        The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named dev dev was created by default.

      • Endpoint (dict) --

        The connection endpoint.

        • Address (string) --

          The DNS address of the Cluster.

        • Port (integer) --

          The port that the database engine is listening on.

        • VpcEndpoints (list) --

          Describes a connection endpoint.

          • (dict) --

            The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

            • VpcEndpointId (string) --

              The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.

            • VpcId (string) --

              The VPC identifier that the endpoint is associated.

            • NetworkInterfaces (list) --

              One or more network interfaces of the endpoint. Also known as an interface endpoint.

              • (dict) --

                Describes a network interface.

                • NetworkInterfaceId (string) --

                  The network interface identifier.

                • SubnetId (string) --

                  The subnet identifier.

                • PrivateIpAddress (string) --

                  The IPv4 address of the network interface within the subnet.

                • AvailabilityZone (string) --

                  The Availability Zone.

      • ClusterCreateTime (datetime) --

        The date and time that the cluster was created.

      • AutomatedSnapshotRetentionPeriod (integer) --

        The number of days that automatic cluster snapshots are retained.

      • ManualSnapshotRetentionPeriod (integer) --

        The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

        The value must be either -1 or an integer between 1 and 3,653.

      • ClusterSecurityGroups (list) --

        A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

        Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

        • (dict) --

          Describes a cluster security group.

          • ClusterSecurityGroupName (string) --

            The name of the cluster security group.

          • Status (string) --

            The status of the cluster security group.

      • VpcSecurityGroups (list) --

        A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

        • (dict) --

          Describes the members of a VPC security group.

          • VpcSecurityGroupId (string) --

            The identifier of the VPC security group.

          • Status (string) --

            The status of the VPC security group.

      • ClusterParameterGroups (list) --

        The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

        • (dict) --

          Describes the status of a parameter group.

          • ParameterGroupName (string) --

            The name of the cluster parameter group.

          • ParameterApplyStatus (string) --

            The status of parameter updates.

          • ClusterParameterStatusList (list) --

            The list of parameter statuses.

            For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide .

            • (dict) --

              Describes the status of a parameter group.

              • ParameterName (string) --

                The name of the parameter.

              • ParameterApplyStatus (string) --

                The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.

                The following are possible statuses and descriptions.

                • in-sync : The parameter value is in sync with the database.

                • pending-reboot : The parameter value will be applied after the cluster reboots.

                • applying : The parameter value is being applied to the database.

                • invalid-parameter : Cannot apply the parameter value because it has an invalid value or syntax.

                • apply-deferred : The parameter contains static property changes. The changes are deferred until the cluster reboots.

                • apply-error : Cannot connect to the cluster. The parameter change will be applied after the cluster reboots.

                • unknown-error : Cannot apply the parameter change right now. The change will be applied after the cluster reboots.

              • ParameterApplyErrorDescription (string) --

                The error that prevented the parameter from being applied to the database.

      • ClusterSubnetGroupName (string) --

        The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

      • VpcId (string) --

        The identifier of the VPC the cluster is in, if the cluster is in a VPC.

      • AvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located.

      • PreferredMaintenanceWindow (string) --

        The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

      • PendingModifiedValues (dict) --

        A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

        • MasterUserPassword (string) --

          The pending or in-progress change of the admin user password for the cluster.

        • NodeType (string) --

          The pending or in-progress change of the cluster's node type.

        • NumberOfNodes (integer) --

          The pending or in-progress change of the number of nodes in the cluster.

        • ClusterType (string) --

          The pending or in-progress change of the cluster type.

        • ClusterVersion (string) --

          The pending or in-progress change of the service version.

        • AutomatedSnapshotRetentionPeriod (integer) --

          The pending or in-progress change of the automated snapshot retention period.

        • ClusterIdentifier (string) --

          The pending or in-progress change of the new identifier for the cluster.

        • PubliclyAccessible (boolean) --

          The pending or in-progress change of the ability to connect to the cluster from the public network.

        • EnhancedVpcRouting (boolean) --

          An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

          If this option is true , enhanced VPC routing is enabled.

          Default: false

        • MaintenanceTrackName (string) --

          The name of the maintenance track that the cluster will change to during the next maintenance window.

        • EncryptionType (string) --

          The encryption type for a cluster. Possible values are: KMS and None.

      • ClusterVersion (string) --

        The version ID of the Amazon Redshift engine that is running on the cluster.

      • AllowVersionUpgrade (boolean) --

        A boolean value that, if true , indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

      • NumberOfNodes (integer) --

        The number of compute nodes in the cluster.

      • PubliclyAccessible (boolean) --

        A boolean value that, if true , indicates that the cluster can be accessed from a public network.

      • Encrypted (boolean) --

        A boolean value that, if true , indicates that data in the cluster is encrypted at rest.

      • RestoreStatus (dict) --

        A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

        • Status (string) --

          The status of the restore action. Returns starting, restoring, completed, or failed.

        • CurrentRestoreRateInMegaBytesPerSecond (float) --

          The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.

        • SnapshotSizeInMegaBytes (integer) --

          The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.

        • ProgressInMegaBytes (integer) --

          The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.

        • ElapsedTimeInSeconds (integer) --

          The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.

        • EstimatedTimeToCompletionInSeconds (integer) --

          The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.

      • DataTransferProgress (dict) --

        • Status (string) --

          Describes the status of the cluster. While the transfer is in progress the status is transferringdata .

        • CurrentRateInMegaBytesPerSecond (float) --

          Describes the data transfer rate in MB's per second.

        • TotalDataInMegaBytes (integer) --

          Describes the total amount of data to be transfered in megabytes.

        • DataTransferredInMegaBytes (integer) --

          Describes the total amount of data that has been transfered in MB's.

        • EstimatedTimeToCompletionInSeconds (integer) --

          Describes the estimated number of seconds remaining to complete the transfer.

        • ElapsedTimeInSeconds (integer) --

          Describes the number of seconds that have elapsed during the data transfer.

      • HsmStatus (dict) --

        A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

        Values: active, applying

        • HsmClientCertificateIdentifier (string) --

          Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

        • HsmConfigurationIdentifier (string) --

          Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

        • Status (string) --

          Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.

          Values: active, applying

      • ClusterSnapshotCopyStatus (dict) --

        A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

        • DestinationRegion (string) --

          The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

        • RetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

        • ManualSnapshotRetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely.

          The value must be either -1 or an integer between 1 and 3,653.

        • SnapshotCopyGrantName (string) --

          The name of the snapshot copy grant.

      • ClusterPublicKey (string) --

        The public key for the cluster.

      • ClusterNodes (list) --

        The nodes in the cluster.

        • (dict) --

          The identifier of a node in a cluster.

          • NodeRole (string) --

            Whether the node is a leader node or a compute node.

          • PrivateIPAddress (string) --

            The private IP address of a node within a cluster.

          • PublicIPAddress (string) --

            The public IP address of a node within a cluster.

      • ElasticIpStatus (dict) --

        The status of the elastic IP (EIP) address.

        • ElasticIp (string) --

          The elastic IP (EIP) address for the cluster.

        • Status (string) --

          The status of the elastic IP (EIP) address.

      • ClusterRevisionNumber (string) --

        The specific revision number of the database in the cluster.

      • Tags (list) --

        The list of tags for the cluster.

        • (dict) --

          A tag consisting of a name/value pair for a resource.

          • Key (string) --

            The key, or name, for the resource tag.

          • Value (string) --

            The value for the resource tag.

      • KmsKeyId (string) --

        The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.

      • EnhancedVpcRouting (boolean) --

        An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

        If this option is true , enhanced VPC routing is enabled.

        Default: false

      • IamRoles (list) --

        A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

        • (dict) --

          An Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other Amazon Web Services services.

          • IamRoleArn (string) --

            The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload .

          • ApplyStatus (string) --

            A value that describes the status of the IAM role's association with an Amazon Redshift cluster.

            The following are possible statuses and descriptions.

            • in-sync : The role is available for use by the cluster.

            • adding : The role is in the process of being associated with the cluster.

            • removing : The role is in the process of being disassociated with the cluster.

      • PendingActions (list) --

        Cluster operations that are waiting to be started.

        • (string) --

      • MaintenanceTrackName (string) --

        The name of the maintenance track for the cluster.

      • ElasticResizeNumberOfNodeOptions (string) --

        The number of nodes that you can resize the cluster to with the elastic resize method.

      • DeferredMaintenanceWindows (list) --

        Describes a group of DeferredMaintenanceWindow objects.

        • (dict) --

          Describes a deferred maintenance window

          • DeferMaintenanceIdentifier (string) --

            A unique identifier for the maintenance window.

          • DeferMaintenanceStartTime (datetime) --

            A timestamp for the beginning of the time period when we defer maintenance.

          • DeferMaintenanceEndTime (datetime) --

            A timestamp for the end of the time period when we defer maintenance.

      • SnapshotScheduleIdentifier (string) --

        A unique identifier for the cluster snapshot schedule.

      • SnapshotScheduleState (string) --

        The current state of the cluster snapshot schedule.

      • ExpectedNextSnapshotScheduleTime (datetime) --

        The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.

      • ExpectedNextSnapshotScheduleTimeStatus (string) --

        The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:

        • OnTrack - The next snapshot is expected to be taken on time.

        • Pending - The next snapshot is pending to be taken.

      • NextMaintenanceWindowStartTime (datetime) --

        The date and time in UTC when system maintenance can begin.

      • ResizeInfo (dict) --

        Returns the following:

        • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.

        • ResizeType: Returns ClassicResize

        • ResizeType (string) --

          Returns the value ClassicResize .

        • AllowCancelResize (boolean) --

          A boolean value indicating if the resize operation can be cancelled.

      • AvailabilityZoneRelocationStatus (string) --

        Describes the status of the Availability Zone relocation operation.

      • ClusterNamespaceArn (string) --

        The namespace Amazon Resource Name (ARN) of the cluster.

      • TotalStorageCapacityInMegaBytes (integer) --

        The total storage capacity of the cluster in megabytes.

      • AquaConfiguration (dict) --

        The AQUA (Advanced Query Accelerator) configuration of the cluster.

        • AquaStatus (string) --

          The value indicates the status of AQUA on the cluster. Possible values include the following.

          • enabled - AQUA is enabled.

          • disabled - AQUA is not enabled.

          • applying - AQUA status is being applied.

        • AquaConfigurationStatus (string) --

          The value represents how the cluster is configured to use AQUA. Possible values include the following.

          • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

          • disabled - Don't use AQUA.

          • auto - Amazon Redshift determines whether to use AQUA.

      • DefaultIamRoleArn (string) --

        The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.

      • ReservedNodeExchangeStatus (dict) --

        The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • ReservedNodeExchangeRequestId (string) --

          The identifier of the reserved-node exchange request.

        • Status (string) --

          The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • RequestTime (datetime) --

          A date and time that indicate when the reserved-node exchange was requested.

        • SourceReservedNodeId (string) --

          The identifier of the source reserved node.

        • SourceReservedNodeType (string) --

          The source reserved-node type, for example ds2.xlarge.

        • SourceReservedNodeCount (integer) --

          The source reserved-node count in the cluster.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

        • TargetReservedNodeType (string) --

          The node type of the target reserved node, for example ra3.4xlarge.

        • TargetReservedNodeCount (integer) --

          The count of target reserved nodes in the cluster.

RebootCluster (updated) Link ¶
Changes (response)
{'Cluster': {'ReservedNodeExchangeStatus': {'RequestTime': 'timestamp',
                                            'ReservedNodeExchangeRequestId': 'string',
                                            'SourceReservedNodeCount': 'integer',
                                            'SourceReservedNodeId': 'string',
                                            'SourceReservedNodeType': 'string',
                                            'Status': 'REQUESTED | PENDING | '
                                                      'IN_PROGRESS | RETRYING '
                                                      '| SUCCEEDED | FAILED',
                                            'TargetReservedNodeCount': 'integer',
                                            'TargetReservedNodeOfferingId': 'string',
                                            'TargetReservedNodeType': 'string'}}}

Reboots a cluster. This action is taken as soon as possible. It results in a momentary outage to the cluster, during which the cluster status is set to rebooting . A cluster event is created when the reboot is completed. Any pending cluster modifications (see ModifyCluster ) are applied at this reboot. For more information about managing clusters, go to Amazon Redshift Clusters in the Amazon Redshift Cluster Management Guide .

See also: AWS API Documentation

Request Syntax

client.reboot_cluster(
    ClusterIdentifier='string'
)
type ClusterIdentifier

string

param ClusterIdentifier

[REQUIRED]

The cluster identifier.

rtype

dict

returns

Response Syntax

{
    'Cluster': {
        'ClusterIdentifier': 'string',
        'NodeType': 'string',
        'ClusterStatus': 'string',
        'ClusterAvailabilityStatus': 'string',
        'ModifyStatus': 'string',
        'MasterUsername': 'string',
        'DBName': 'string',
        'Endpoint': {
            'Address': 'string',
            'Port': 123,
            'VpcEndpoints': [
                {
                    'VpcEndpointId': 'string',
                    'VpcId': 'string',
                    'NetworkInterfaces': [
                        {
                            'NetworkInterfaceId': 'string',
                            'SubnetId': 'string',
                            'PrivateIpAddress': 'string',
                            'AvailabilityZone': 'string'
                        },
                    ]
                },
            ]
        },
        'ClusterCreateTime': datetime(2015, 1, 1),
        'AutomatedSnapshotRetentionPeriod': 123,
        'ManualSnapshotRetentionPeriod': 123,
        'ClusterSecurityGroups': [
            {
                'ClusterSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'VpcSecurityGroups': [
            {
                'VpcSecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ClusterParameterGroups': [
            {
                'ParameterGroupName': 'string',
                'ParameterApplyStatus': 'string',
                'ClusterParameterStatusList': [
                    {
                        'ParameterName': 'string',
                        'ParameterApplyStatus': 'string',
                        'ParameterApplyErrorDescription': 'string'
                    },
                ]
            },
        ],
        'ClusterSubnetGroupName': 'string',
        'VpcId': 'string',
        'AvailabilityZone': 'string',
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'MasterUserPassword': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'ClusterType': 'string',
            'ClusterVersion': 'string',
            'AutomatedSnapshotRetentionPeriod': 123,
            'ClusterIdentifier': 'string',
            'PubliclyAccessible': True|False,
            'EnhancedVpcRouting': True|False,
            'MaintenanceTrackName': 'string',
            'EncryptionType': 'string'
        },
        'ClusterVersion': 'string',
        'AllowVersionUpgrade': True|False,
        'NumberOfNodes': 123,
        'PubliclyAccessible': True|False,
        'Encrypted': True|False,
        'RestoreStatus': {
            'Status': 'string',
            'CurrentRestoreRateInMegaBytesPerSecond': 123.0,
            'SnapshotSizeInMegaBytes': 123,
            'ProgressInMegaBytes': 123,
            'ElapsedTimeInSeconds': 123,
            'EstimatedTimeToCompletionInSeconds': 123
        },
        'DataTransferProgress': {
            'Status': 'string',
            'CurrentRateInMegaBytesPerSecond': 123.0,
            'TotalDataInMegaBytes': 123,
            'DataTransferredInMegaBytes': 123,
            'EstimatedTimeToCompletionInSeconds': 123,
            'ElapsedTimeInSeconds': 123
        },
        'HsmStatus': {
            'HsmClientCertificateIdentifier': 'string',
            'HsmConfigurationIdentifier': 'string',
            'Status': 'string'
        },
        'ClusterSnapshotCopyStatus': {
            'DestinationRegion': 'string',
            'RetentionPeriod': 123,
            'ManualSnapshotRetentionPeriod': 123,
            'SnapshotCopyGrantName': 'string'
        },
        'ClusterPublicKey': 'string',
        'ClusterNodes': [
            {
                'NodeRole': 'string',
                'PrivateIPAddress': 'string',
                'PublicIPAddress': 'string'
            },
        ],
        'ElasticIpStatus': {
            'ElasticIp': 'string',
            'Status': 'string'
        },
        'ClusterRevisionNumber': 'string',
        'Tags': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        'KmsKeyId': 'string',
        'EnhancedVpcRouting': True|False,
        'IamRoles': [
            {
                'IamRoleArn': 'string',
                'ApplyStatus': 'string'
            },
        ],
        'PendingActions': [
            'string',
        ],
        'MaintenanceTrackName': 'string',
        'ElasticResizeNumberOfNodeOptions': 'string',
        'DeferredMaintenanceWindows': [
            {
                'DeferMaintenanceIdentifier': 'string',
                'DeferMaintenanceStartTime': datetime(2015, 1, 1),
                'DeferMaintenanceEndTime': datetime(2015, 1, 1)
            },
        ],
        'SnapshotScheduleIdentifier': 'string',
        'SnapshotScheduleState': 'MODIFYING'|'ACTIVE'|'FAILED',
        'ExpectedNextSnapshotScheduleTime': datetime(2015, 1, 1),
        'ExpectedNextSnapshotScheduleTimeStatus': 'string',
        'NextMaintenanceWindowStartTime': datetime(2015, 1, 1),
        'ResizeInfo': {
            'ResizeType': 'string',
            'AllowCancelResize': True|False
        },
        'AvailabilityZoneRelocationStatus': 'string',
        'ClusterNamespaceArn': 'string',
        'TotalStorageCapacityInMegaBytes': 123,
        'AquaConfiguration': {
            'AquaStatus': 'enabled'|'disabled'|'applying',
            'AquaConfigurationStatus': 'enabled'|'disabled'|'auto'
        },
        'DefaultIamRoleArn': 'string',
        'ReservedNodeExchangeStatus': {
            'ReservedNodeExchangeRequestId': 'string',
            'Status': 'REQUESTED'|'PENDING'|'IN_PROGRESS'|'RETRYING'|'SUCCEEDED'|'FAILED',
            'RequestTime': datetime(2015, 1, 1),
            'SourceReservedNodeId': 'string',
            'SourceReservedNodeType': 'string',
            'SourceReservedNodeCount': 123,
            'TargetReservedNodeOfferingId': 'string',
            'TargetReservedNodeType': 'string',
            'TargetReservedNodeCount': 123
        }
    }
}

Response Structure

  • (dict) --

    • Cluster (dict) --

      Describes a cluster.

      • ClusterIdentifier (string) --

        The unique identifier of the cluster.

      • NodeType (string) --

        The node type for the nodes in the cluster.

      • ClusterStatus (string) --

        The current state of the cluster. Possible values are the following:

        • available

        • available, prep-for-resize

        • available, resize-cleanup

        • cancelling-resize

        • creating

        • deleting

        • final-snapshot

        • hardware-failure

        • incompatible-hsm

        • incompatible-network

        • incompatible-parameters

        • incompatible-restore

        • modifying

        • paused

        • rebooting

        • renaming

        • resizing

        • rotating-keys

        • storage-full

        • updating-hsm

      • ClusterAvailabilityStatus (string) --

        The availability status of the cluster for queries. Possible values are the following:

        • Available - The cluster is available for queries.

        • Unavailable - The cluster is not available for queries.

        • Maintenance - The cluster is intermittently available for queries due to maintenance activities.

        • Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.

        • Failed - The cluster failed and is not available for queries.

      • ModifyStatus (string) --

        The status of a modify operation, if any, initiated for the cluster.

      • MasterUsername (string) --

        The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

      • DBName (string) --

        The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named dev dev was created by default.

      • Endpoint (dict) --

        The connection endpoint.

        • Address (string) --

          The DNS address of the Cluster.

        • Port (integer) --

          The port that the database engine is listening on.

        • VpcEndpoints (list) --

          Describes a connection endpoint.

          • (dict) --

            The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

            • VpcEndpointId (string) --

              The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.

            • VpcId (string) --

              The VPC identifier that the endpoint is associated.

            • NetworkInterfaces (list) --

              One or more network interfaces of the endpoint. Also known as an interface endpoint.

              • (dict) --

                Describes a network interface.

                • NetworkInterfaceId (string) --

                  The network interface identifier.

                • SubnetId (string) --

                  The subnet identifier.

                • PrivateIpAddress (string) --

                  The IPv4 address of the network interface within the subnet.

                • AvailabilityZone (string) --

                  The Availability Zone.

      • ClusterCreateTime (datetime) --

        The date and time that the cluster was created.

      • AutomatedSnapshotRetentionPeriod (integer) --

        The number of days that automatic cluster snapshots are retained.

      • ManualSnapshotRetentionPeriod (integer) --

        The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

        The value must be either -1 or an integer between 1 and 3,653.

      • ClusterSecurityGroups (list) --

        A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

        Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

        • (dict) --

          Describes a cluster security group.

          • ClusterSecurityGroupName (string) --

            The name of the cluster security group.

          • Status (string) --

            The status of the cluster security group.

      • VpcSecurityGroups (list) --

        A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

        • (dict) --

          Describes the members of a VPC security group.

          • VpcSecurityGroupId (string) --

            The identifier of the VPC security group.

          • Status (string) --

            The status of the VPC security group.

      • ClusterParameterGroups (list) --

        The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

        • (dict) --

          Describes the status of a parameter group.

          • ParameterGroupName (string) --

            The name of the cluster parameter group.

          • ParameterApplyStatus (string) --

            The status of parameter updates.

          • ClusterParameterStatusList (list) --

            The list of parameter statuses.

            For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide .

            • (dict) --

              Describes the status of a parameter group.

              • ParameterName (string) --

                The name of the parameter.

              • ParameterApplyStatus (string) --

                The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.

                The following are possible statuses and descriptions.

                • in-sync : The parameter value is in sync with the database.

                • pending-reboot : The parameter value will be applied after the cluster reboots.

                • applying : The parameter value is being applied to the database.

                • invalid-parameter : Cannot apply the parameter value because it has an invalid value or syntax.

                • apply-deferred : The parameter contains static property changes. The changes are deferred until the cluster reboots.

                • apply-error : Cannot connect to the cluster. The parameter change will be applied after the cluster reboots.

                • unknown-error : Cannot apply the parameter change right now. The change will be applied after the cluster reboots.

              • ParameterApplyErrorDescription (string) --

                The error that prevented the parameter from being applied to the database.

      • ClusterSubnetGroupName (string) --

        The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

      • VpcId (string) --

        The identifier of the VPC the cluster is in, if the cluster is in a VPC.

      • AvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located.

      • PreferredMaintenanceWindow (string) --

        The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

      • PendingModifiedValues (dict) --

        A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

        • MasterUserPassword (string) --

          The pending or in-progress change of the admin user password for the cluster.

        • NodeType (string) --

          The pending or in-progress change of the cluster's node type.

        • NumberOfNodes (integer) --

          The pending or in-progress change of the number of nodes in the cluster.

        • ClusterType (string) --

          The pending or in-progress change of the cluster type.

        • ClusterVersion (string) --

          The pending or in-progress change of the service version.

        • AutomatedSnapshotRetentionPeriod (integer) --

          The pending or in-progress change of the automated snapshot retention period.

        • ClusterIdentifier (string) --

          The pending or in-progress change of the new identifier for the cluster.

        • PubliclyAccessible (boolean) --

          The pending or in-progress change of the ability to connect to the cluster from the public network.

        • EnhancedVpcRouting (boolean) --

          An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

          If this option is true , enhanced VPC routing is enabled.

          Default: false

        • MaintenanceTrackName (string) --

          The name of the maintenance track that the cluster will change to during the next maintenance window.

        • EncryptionType (string) --

          The encryption type for a cluster. Possible values are: KMS and None.

      • ClusterVersion (string) --

        The version ID of the Amazon Redshift engine that is running on the cluster.

      • AllowVersionUpgrade (boolean) --

        A boolean value that, if true , indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

      • NumberOfNodes (integer) --

        The number of compute nodes in the cluster.

      • PubliclyAccessible (boolean) --

        A boolean value that, if true , indicates that the cluster can be accessed from a public network.

      • Encrypted (boolean) --

        A boolean value that, if true , indicates that data in the cluster is encrypted at rest.

      • RestoreStatus (dict) --

        A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

        • Status (string) --

          The status of the restore action. Returns starting, restoring, completed, or failed.

        • CurrentRestoreRateInMegaBytesPerSecond (float) --

          The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.

        • SnapshotSizeInMegaBytes (integer) --

          The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.

        • ProgressInMegaBytes (integer) --

          The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.

        • ElapsedTimeInSeconds (integer) --

          The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.

        • EstimatedTimeToCompletionInSeconds (integer) --

          The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.

      • DataTransferProgress (dict) --

        • Status (string) --

          Describes the status of the cluster. While the transfer is in progress the status is transferringdata .

        • CurrentRateInMegaBytesPerSecond (float) --

          Describes the data transfer rate in MB's per second.

        • TotalDataInMegaBytes (integer) --

          Describes the total amount of data to be transfered in megabytes.

        • DataTransferredInMegaBytes (integer) --

          Describes the total amount of data that has been transfered in MB's.

        • EstimatedTimeToCompletionInSeconds (integer) --

          Describes the estimated number of seconds remaining to complete the transfer.

        • ElapsedTimeInSeconds (integer) --

          Describes the number of seconds that have elapsed during the data transfer.

      • HsmStatus (dict) --

        A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

        Values: active, applying

        • HsmClientCertificateIdentifier (string) --

          Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

        • HsmConfigurationIdentifier (string) --

          Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

        • Status (string) --

          Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.

          Values: active, applying

      • ClusterSnapshotCopyStatus (dict) --

        A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

        • DestinationRegion (string) --

          The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

        • RetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

        • ManualSnapshotRetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely.

          The value must be either -1 or an integer between 1 and 3,653.

        • SnapshotCopyGrantName (string) --

          The name of the snapshot copy grant.

      • ClusterPublicKey (string) --

        The public key for the cluster.

      • ClusterNodes (list) --

        The nodes in the cluster.

        • (dict) --

          The identifier of a node in a cluster.

          • NodeRole (string) --

            Whether the node is a leader node or a compute node.

          • PrivateIPAddress (string) --

            The private IP address of a node within a cluster.

          • PublicIPAddress (string) --

            The public IP address of a node within a cluster.

      • ElasticIpStatus (dict) --

        The status of the elastic IP (EIP) address.

        • ElasticIp (string) --

          The elastic IP (EIP) address for the cluster.

        • Status (string) --

          The status of the elastic IP (EIP) address.

      • ClusterRevisionNumber (string) --

        The specific revision number of the database in the cluster.

      • Tags (list) --

        The list of tags for the cluster.

        • (dict) --

          A tag consisting of a name/value pair for a resource.

          • Key (string) --

            The key, or name, for the resource tag.

          • Value (string) --

            The value for the resource tag.

      • KmsKeyId (string) --

        The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.

      • EnhancedVpcRouting (boolean) --

        An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

        If this option is true , enhanced VPC routing is enabled.

        Default: false

      • IamRoles (list) --

        A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

        • (dict) --

          An Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other Amazon Web Services services.

          • IamRoleArn (string) --

            The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload .

          • ApplyStatus (string) --

            A value that describes the status of the IAM role's association with an Amazon Redshift cluster.

            The following are possible statuses and descriptions.

            • in-sync : The role is available for use by the cluster.

            • adding : The role is in the process of being associated with the cluster.

            • removing : The role is in the process of being disassociated with the cluster.

      • PendingActions (list) --

        Cluster operations that are waiting to be started.

        • (string) --

      • MaintenanceTrackName (string) --

        The name of the maintenance track for the cluster.

      • ElasticResizeNumberOfNodeOptions (string) --

        The number of nodes that you can resize the cluster to with the elastic resize method.

      • DeferredMaintenanceWindows (list) --

        Describes a group of DeferredMaintenanceWindow objects.

        • (dict) --

          Describes a deferred maintenance window

          • DeferMaintenanceIdentifier (string) --

            A unique identifier for the maintenance window.

          • DeferMaintenanceStartTime (datetime) --

            A timestamp for the beginning of the time period when we defer maintenance.

          • DeferMaintenanceEndTime (datetime) --

            A timestamp for the end of the time period when we defer maintenance.

      • SnapshotScheduleIdentifier (string) --

        A unique identifier for the cluster snapshot schedule.

      • SnapshotScheduleState (string) --

        The current state of the cluster snapshot schedule.

      • ExpectedNextSnapshotScheduleTime (datetime) --

        The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.

      • ExpectedNextSnapshotScheduleTimeStatus (string) --

        The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:

        • OnTrack - The next snapshot is expected to be taken on time.

        • Pending - The next snapshot is pending to be taken.

      • NextMaintenanceWindowStartTime (datetime) --

        The date and time in UTC when system maintenance can begin.

      • ResizeInfo (dict) --

        Returns the following:

        • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.

        • ResizeType: Returns ClassicResize

        • ResizeType (string) --

          Returns the value ClassicResize .

        • AllowCancelResize (boolean) --

          A boolean value indicating if the resize operation can be cancelled.

      • AvailabilityZoneRelocationStatus (string) --

        Describes the status of the Availability Zone relocation operation.

      • ClusterNamespaceArn (string) --

        The namespace Amazon Resource Name (ARN) of the cluster.

      • TotalStorageCapacityInMegaBytes (integer) --

        The total storage capacity of the cluster in megabytes.

      • AquaConfiguration (dict) --

        The AQUA (Advanced Query Accelerator) configuration of the cluster.

        • AquaStatus (string) --

          The value indicates the status of AQUA on the cluster. Possible values include the following.

          • enabled - AQUA is enabled.

          • disabled - AQUA is not enabled.

          • applying - AQUA status is being applied.

        • AquaConfigurationStatus (string) --

          The value represents how the cluster is configured to use AQUA. Possible values include the following.

          • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

          • disabled - Don't use AQUA.

          • auto - Amazon Redshift determines whether to use AQUA.

      • DefaultIamRoleArn (string) --

        The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.

      • ReservedNodeExchangeStatus (dict) --

        The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • ReservedNodeExchangeRequestId (string) --

          The identifier of the reserved-node exchange request.

        • Status (string) --

          The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • RequestTime (datetime) --

          A date and time that indicate when the reserved-node exchange was requested.

        • SourceReservedNodeId (string) --

          The identifier of the source reserved node.

        • SourceReservedNodeType (string) --

          The source reserved-node type, for example ds2.xlarge.

        • SourceReservedNodeCount (integer) --

          The source reserved-node count in the cluster.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

        • TargetReservedNodeType (string) --

          The node type of the target reserved node, for example ra3.4xlarge.

        • TargetReservedNodeCount (integer) --

          The count of target reserved nodes in the cluster.

ResizeCluster (updated) Link ¶
Changes (request, response)
Request
{'ReservedNodeId': 'string', 'TargetReservedNodeOfferingId': 'string'}
Response
{'Cluster': {'ReservedNodeExchangeStatus': {'RequestTime': 'timestamp',
                                            'ReservedNodeExchangeRequestId': 'string',
                                            'SourceReservedNodeCount': 'integer',
                                            'SourceReservedNodeId': 'string',
                                            'SourceReservedNodeType': 'string',
                                            'Status': 'REQUESTED | PENDING | '
                                                      'IN_PROGRESS | RETRYING '
                                                      '| SUCCEEDED | FAILED',
                                            'TargetReservedNodeCount': 'integer',
                                            'TargetReservedNodeOfferingId': 'string',
                                            'TargetReservedNodeType': 'string'}}}

Changes the size of the cluster. You can change the cluster's type, or change the number or type of nodes. The default behavior is to use the elastic resize method. With an elastic resize, your cluster is available for read and write operations more quickly than with the classic resize method.

Elastic resize operations have the following restrictions:

  • You can only resize clusters of the following types:

    • dc1.large (if your cluster is in a VPC)

    • dc1.8xlarge (if your cluster is in a VPC)

    • dc2.large

    • dc2.8xlarge

    • ds2.xlarge

    • ds2.8xlarge

    • ra3.xlplus

    • ra3.4xlarge

    • ra3.16xlarge

  • The type of nodes that you add must match the node type for the cluster.

See also: AWS API Documentation

Request Syntax

client.resize_cluster(
    ClusterIdentifier='string',
    ClusterType='string',
    NodeType='string',
    NumberOfNodes=123,
    Classic=True|False,
    ReservedNodeId='string',
    TargetReservedNodeOfferingId='string'
)
type ClusterIdentifier

string

param ClusterIdentifier

[REQUIRED]

The unique identifier for the cluster to resize.

type ClusterType

string

param ClusterType

The new cluster type for the specified cluster.

type NodeType

string

param NodeType

The new node type for the nodes you are adding. If not specified, the cluster's current node type is used.

type NumberOfNodes

integer

param NumberOfNodes

The new number of nodes for the cluster. If not specified, the cluster's current number of nodes is used.

type Classic

boolean

param Classic

A boolean value indicating whether the resize operation is using the classic resize process. If you don't provide this parameter or set the value to false , the resize type is elastic.

type ReservedNodeId

string

param ReservedNodeId

The identifier of the reserved node.

type TargetReservedNodeOfferingId

string

param TargetReservedNodeOfferingId

The identifier of the target reserved node offering.

rtype

dict

returns

Response Syntax

{
    'Cluster': {
        'ClusterIdentifier': 'string',
        'NodeType': 'string',
        'ClusterStatus': 'string',
        'ClusterAvailabilityStatus': 'string',
        'ModifyStatus': 'string',
        'MasterUsername': 'string',
        'DBName': 'string',
        'Endpoint': {
            'Address': 'string',
            'Port': 123,
            'VpcEndpoints': [
                {
                    'VpcEndpointId': 'string',
                    'VpcId': 'string',
                    'NetworkInterfaces': [
                        {
                            'NetworkInterfaceId': 'string',
                            'SubnetId': 'string',
                            'PrivateIpAddress': 'string',
                            'AvailabilityZone': 'string'
                        },
                    ]
                },
            ]
        },
        'ClusterCreateTime': datetime(2015, 1, 1),
        'AutomatedSnapshotRetentionPeriod': 123,
        'ManualSnapshotRetentionPeriod': 123,
        'ClusterSecurityGroups': [
            {
                'ClusterSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'VpcSecurityGroups': [
            {
                'VpcSecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ClusterParameterGroups': [
            {
                'ParameterGroupName': 'string',
                'ParameterApplyStatus': 'string',
                'ClusterParameterStatusList': [
                    {
                        'ParameterName': 'string',
                        'ParameterApplyStatus': 'string',
                        'ParameterApplyErrorDescription': 'string'
                    },
                ]
            },
        ],
        'ClusterSubnetGroupName': 'string',
        'VpcId': 'string',
        'AvailabilityZone': 'string',
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'MasterUserPassword': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'ClusterType': 'string',
            'ClusterVersion': 'string',
            'AutomatedSnapshotRetentionPeriod': 123,
            'ClusterIdentifier': 'string',
            'PubliclyAccessible': True|False,
            'EnhancedVpcRouting': True|False,
            'MaintenanceTrackName': 'string',
            'EncryptionType': 'string'
        },
        'ClusterVersion': 'string',
        'AllowVersionUpgrade': True|False,
        'NumberOfNodes': 123,
        'PubliclyAccessible': True|False,
        'Encrypted': True|False,
        'RestoreStatus': {
            'Status': 'string',
            'CurrentRestoreRateInMegaBytesPerSecond': 123.0,
            'SnapshotSizeInMegaBytes': 123,
            'ProgressInMegaBytes': 123,
            'ElapsedTimeInSeconds': 123,
            'EstimatedTimeToCompletionInSeconds': 123
        },
        'DataTransferProgress': {
            'Status': 'string',
            'CurrentRateInMegaBytesPerSecond': 123.0,
            'TotalDataInMegaBytes': 123,
            'DataTransferredInMegaBytes': 123,
            'EstimatedTimeToCompletionInSeconds': 123,
            'ElapsedTimeInSeconds': 123
        },
        'HsmStatus': {
            'HsmClientCertificateIdentifier': 'string',
            'HsmConfigurationIdentifier': 'string',
            'Status': 'string'
        },
        'ClusterSnapshotCopyStatus': {
            'DestinationRegion': 'string',
            'RetentionPeriod': 123,
            'ManualSnapshotRetentionPeriod': 123,
            'SnapshotCopyGrantName': 'string'
        },
        'ClusterPublicKey': 'string',
        'ClusterNodes': [
            {
                'NodeRole': 'string',
                'PrivateIPAddress': 'string',
                'PublicIPAddress': 'string'
            },
        ],
        'ElasticIpStatus': {
            'ElasticIp': 'string',
            'Status': 'string'
        },
        'ClusterRevisionNumber': 'string',
        'Tags': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        'KmsKeyId': 'string',
        'EnhancedVpcRouting': True|False,
        'IamRoles': [
            {
                'IamRoleArn': 'string',
                'ApplyStatus': 'string'
            },
        ],
        'PendingActions': [
            'string',
        ],
        'MaintenanceTrackName': 'string',
        'ElasticResizeNumberOfNodeOptions': 'string',
        'DeferredMaintenanceWindows': [
            {
                'DeferMaintenanceIdentifier': 'string',
                'DeferMaintenanceStartTime': datetime(2015, 1, 1),
                'DeferMaintenanceEndTime': datetime(2015, 1, 1)
            },
        ],
        'SnapshotScheduleIdentifier': 'string',
        'SnapshotScheduleState': 'MODIFYING'|'ACTIVE'|'FAILED',
        'ExpectedNextSnapshotScheduleTime': datetime(2015, 1, 1),
        'ExpectedNextSnapshotScheduleTimeStatus': 'string',
        'NextMaintenanceWindowStartTime': datetime(2015, 1, 1),
        'ResizeInfo': {
            'ResizeType': 'string',
            'AllowCancelResize': True|False
        },
        'AvailabilityZoneRelocationStatus': 'string',
        'ClusterNamespaceArn': 'string',
        'TotalStorageCapacityInMegaBytes': 123,
        'AquaConfiguration': {
            'AquaStatus': 'enabled'|'disabled'|'applying',
            'AquaConfigurationStatus': 'enabled'|'disabled'|'auto'
        },
        'DefaultIamRoleArn': 'string',
        'ReservedNodeExchangeStatus': {
            'ReservedNodeExchangeRequestId': 'string',
            'Status': 'REQUESTED'|'PENDING'|'IN_PROGRESS'|'RETRYING'|'SUCCEEDED'|'FAILED',
            'RequestTime': datetime(2015, 1, 1),
            'SourceReservedNodeId': 'string',
            'SourceReservedNodeType': 'string',
            'SourceReservedNodeCount': 123,
            'TargetReservedNodeOfferingId': 'string',
            'TargetReservedNodeType': 'string',
            'TargetReservedNodeCount': 123
        }
    }
}

Response Structure

  • (dict) --

    • Cluster (dict) --

      Describes a cluster.

      • ClusterIdentifier (string) --

        The unique identifier of the cluster.

      • NodeType (string) --

        The node type for the nodes in the cluster.

      • ClusterStatus (string) --

        The current state of the cluster. Possible values are the following:

        • available

        • available, prep-for-resize

        • available, resize-cleanup

        • cancelling-resize

        • creating

        • deleting

        • final-snapshot

        • hardware-failure

        • incompatible-hsm

        • incompatible-network

        • incompatible-parameters

        • incompatible-restore

        • modifying

        • paused

        • rebooting

        • renaming

        • resizing

        • rotating-keys

        • storage-full

        • updating-hsm

      • ClusterAvailabilityStatus (string) --

        The availability status of the cluster for queries. Possible values are the following:

        • Available - The cluster is available for queries.

        • Unavailable - The cluster is not available for queries.

        • Maintenance - The cluster is intermittently available for queries due to maintenance activities.

        • Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.

        • Failed - The cluster failed and is not available for queries.

      • ModifyStatus (string) --

        The status of a modify operation, if any, initiated for the cluster.

      • MasterUsername (string) --

        The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

      • DBName (string) --

        The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named dev dev was created by default.

      • Endpoint (dict) --

        The connection endpoint.

        • Address (string) --

          The DNS address of the Cluster.

        • Port (integer) --

          The port that the database engine is listening on.

        • VpcEndpoints (list) --

          Describes a connection endpoint.

          • (dict) --

            The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

            • VpcEndpointId (string) --

              The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.

            • VpcId (string) --

              The VPC identifier that the endpoint is associated.

            • NetworkInterfaces (list) --

              One or more network interfaces of the endpoint. Also known as an interface endpoint.

              • (dict) --

                Describes a network interface.

                • NetworkInterfaceId (string) --

                  The network interface identifier.

                • SubnetId (string) --

                  The subnet identifier.

                • PrivateIpAddress (string) --

                  The IPv4 address of the network interface within the subnet.

                • AvailabilityZone (string) --

                  The Availability Zone.

      • ClusterCreateTime (datetime) --

        The date and time that the cluster was created.

      • AutomatedSnapshotRetentionPeriod (integer) --

        The number of days that automatic cluster snapshots are retained.

      • ManualSnapshotRetentionPeriod (integer) --

        The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

        The value must be either -1 or an integer between 1 and 3,653.

      • ClusterSecurityGroups (list) --

        A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

        Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

        • (dict) --

          Describes a cluster security group.

          • ClusterSecurityGroupName (string) --

            The name of the cluster security group.

          • Status (string) --

            The status of the cluster security group.

      • VpcSecurityGroups (list) --

        A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

        • (dict) --

          Describes the members of a VPC security group.

          • VpcSecurityGroupId (string) --

            The identifier of the VPC security group.

          • Status (string) --

            The status of the VPC security group.

      • ClusterParameterGroups (list) --

        The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

        • (dict) --

          Describes the status of a parameter group.

          • ParameterGroupName (string) --

            The name of the cluster parameter group.

          • ParameterApplyStatus (string) --

            The status of parameter updates.

          • ClusterParameterStatusList (list) --

            The list of parameter statuses.

            For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide .

            • (dict) --

              Describes the status of a parameter group.

              • ParameterName (string) --

                The name of the parameter.

              • ParameterApplyStatus (string) --

                The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.

                The following are possible statuses and descriptions.

                • in-sync : The parameter value is in sync with the database.

                • pending-reboot : The parameter value will be applied after the cluster reboots.

                • applying : The parameter value is being applied to the database.

                • invalid-parameter : Cannot apply the parameter value because it has an invalid value or syntax.

                • apply-deferred : The parameter contains static property changes. The changes are deferred until the cluster reboots.

                • apply-error : Cannot connect to the cluster. The parameter change will be applied after the cluster reboots.

                • unknown-error : Cannot apply the parameter change right now. The change will be applied after the cluster reboots.

              • ParameterApplyErrorDescription (string) --

                The error that prevented the parameter from being applied to the database.

      • ClusterSubnetGroupName (string) --

        The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

      • VpcId (string) --

        The identifier of the VPC the cluster is in, if the cluster is in a VPC.

      • AvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located.

      • PreferredMaintenanceWindow (string) --

        The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

      • PendingModifiedValues (dict) --

        A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

        • MasterUserPassword (string) --

          The pending or in-progress change of the admin user password for the cluster.

        • NodeType (string) --

          The pending or in-progress change of the cluster's node type.

        • NumberOfNodes (integer) --

          The pending or in-progress change of the number of nodes in the cluster.

        • ClusterType (string) --

          The pending or in-progress change of the cluster type.

        • ClusterVersion (string) --

          The pending or in-progress change of the service version.

        • AutomatedSnapshotRetentionPeriod (integer) --

          The pending or in-progress change of the automated snapshot retention period.

        • ClusterIdentifier (string) --

          The pending or in-progress change of the new identifier for the cluster.

        • PubliclyAccessible (boolean) --

          The pending or in-progress change of the ability to connect to the cluster from the public network.

        • EnhancedVpcRouting (boolean) --

          An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

          If this option is true , enhanced VPC routing is enabled.

          Default: false

        • MaintenanceTrackName (string) --

          The name of the maintenance track that the cluster will change to during the next maintenance window.

        • EncryptionType (string) --

          The encryption type for a cluster. Possible values are: KMS and None.

      • ClusterVersion (string) --

        The version ID of the Amazon Redshift engine that is running on the cluster.

      • AllowVersionUpgrade (boolean) --

        A boolean value that, if true , indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

      • NumberOfNodes (integer) --

        The number of compute nodes in the cluster.

      • PubliclyAccessible (boolean) --

        A boolean value that, if true , indicates that the cluster can be accessed from a public network.

      • Encrypted (boolean) --

        A boolean value that, if true , indicates that data in the cluster is encrypted at rest.

      • RestoreStatus (dict) --

        A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

        • Status (string) --

          The status of the restore action. Returns starting, restoring, completed, or failed.

        • CurrentRestoreRateInMegaBytesPerSecond (float) --

          The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.

        • SnapshotSizeInMegaBytes (integer) --

          The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.

        • ProgressInMegaBytes (integer) --

          The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.

        • ElapsedTimeInSeconds (integer) --

          The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.

        • EstimatedTimeToCompletionInSeconds (integer) --

          The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.

      • DataTransferProgress (dict) --

        • Status (string) --

          Describes the status of the cluster. While the transfer is in progress the status is transferringdata .

        • CurrentRateInMegaBytesPerSecond (float) --

          Describes the data transfer rate in MB's per second.

        • TotalDataInMegaBytes (integer) --

          Describes the total amount of data to be transfered in megabytes.

        • DataTransferredInMegaBytes (integer) --

          Describes the total amount of data that has been transfered in MB's.

        • EstimatedTimeToCompletionInSeconds (integer) --

          Describes the estimated number of seconds remaining to complete the transfer.

        • ElapsedTimeInSeconds (integer) --

          Describes the number of seconds that have elapsed during the data transfer.

      • HsmStatus (dict) --

        A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

        Values: active, applying

        • HsmClientCertificateIdentifier (string) --

          Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

        • HsmConfigurationIdentifier (string) --

          Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

        • Status (string) --

          Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.

          Values: active, applying

      • ClusterSnapshotCopyStatus (dict) --

        A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

        • DestinationRegion (string) --

          The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

        • RetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

        • ManualSnapshotRetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely.

          The value must be either -1 or an integer between 1 and 3,653.

        • SnapshotCopyGrantName (string) --

          The name of the snapshot copy grant.

      • ClusterPublicKey (string) --

        The public key for the cluster.

      • ClusterNodes (list) --

        The nodes in the cluster.

        • (dict) --

          The identifier of a node in a cluster.

          • NodeRole (string) --

            Whether the node is a leader node or a compute node.

          • PrivateIPAddress (string) --

            The private IP address of a node within a cluster.

          • PublicIPAddress (string) --

            The public IP address of a node within a cluster.

      • ElasticIpStatus (dict) --

        The status of the elastic IP (EIP) address.

        • ElasticIp (string) --

          The elastic IP (EIP) address for the cluster.

        • Status (string) --

          The status of the elastic IP (EIP) address.

      • ClusterRevisionNumber (string) --

        The specific revision number of the database in the cluster.

      • Tags (list) --

        The list of tags for the cluster.

        • (dict) --

          A tag consisting of a name/value pair for a resource.

          • Key (string) --

            The key, or name, for the resource tag.

          • Value (string) --

            The value for the resource tag.

      • KmsKeyId (string) --

        The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.

      • EnhancedVpcRouting (boolean) --

        An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

        If this option is true , enhanced VPC routing is enabled.

        Default: false

      • IamRoles (list) --

        A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

        • (dict) --

          An Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other Amazon Web Services services.

          • IamRoleArn (string) --

            The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload .

          • ApplyStatus (string) --

            A value that describes the status of the IAM role's association with an Amazon Redshift cluster.

            The following are possible statuses and descriptions.

            • in-sync : The role is available for use by the cluster.

            • adding : The role is in the process of being associated with the cluster.

            • removing : The role is in the process of being disassociated with the cluster.

      • PendingActions (list) --

        Cluster operations that are waiting to be started.

        • (string) --

      • MaintenanceTrackName (string) --

        The name of the maintenance track for the cluster.

      • ElasticResizeNumberOfNodeOptions (string) --

        The number of nodes that you can resize the cluster to with the elastic resize method.

      • DeferredMaintenanceWindows (list) --

        Describes a group of DeferredMaintenanceWindow objects.

        • (dict) --

          Describes a deferred maintenance window

          • DeferMaintenanceIdentifier (string) --

            A unique identifier for the maintenance window.

          • DeferMaintenanceStartTime (datetime) --

            A timestamp for the beginning of the time period when we defer maintenance.

          • DeferMaintenanceEndTime (datetime) --

            A timestamp for the end of the time period when we defer maintenance.

      • SnapshotScheduleIdentifier (string) --

        A unique identifier for the cluster snapshot schedule.

      • SnapshotScheduleState (string) --

        The current state of the cluster snapshot schedule.

      • ExpectedNextSnapshotScheduleTime (datetime) --

        The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.

      • ExpectedNextSnapshotScheduleTimeStatus (string) --

        The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:

        • OnTrack - The next snapshot is expected to be taken on time.

        • Pending - The next snapshot is pending to be taken.

      • NextMaintenanceWindowStartTime (datetime) --

        The date and time in UTC when system maintenance can begin.

      • ResizeInfo (dict) --

        Returns the following:

        • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.

        • ResizeType: Returns ClassicResize

        • ResizeType (string) --

          Returns the value ClassicResize .

        • AllowCancelResize (boolean) --

          A boolean value indicating if the resize operation can be cancelled.

      • AvailabilityZoneRelocationStatus (string) --

        Describes the status of the Availability Zone relocation operation.

      • ClusterNamespaceArn (string) --

        The namespace Amazon Resource Name (ARN) of the cluster.

      • TotalStorageCapacityInMegaBytes (integer) --

        The total storage capacity of the cluster in megabytes.

      • AquaConfiguration (dict) --

        The AQUA (Advanced Query Accelerator) configuration of the cluster.

        • AquaStatus (string) --

          The value indicates the status of AQUA on the cluster. Possible values include the following.

          • enabled - AQUA is enabled.

          • disabled - AQUA is not enabled.

          • applying - AQUA status is being applied.

        • AquaConfigurationStatus (string) --

          The value represents how the cluster is configured to use AQUA. Possible values include the following.

          • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

          • disabled - Don't use AQUA.

          • auto - Amazon Redshift determines whether to use AQUA.

      • DefaultIamRoleArn (string) --

        The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.

      • ReservedNodeExchangeStatus (dict) --

        The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • ReservedNodeExchangeRequestId (string) --

          The identifier of the reserved-node exchange request.

        • Status (string) --

          The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • RequestTime (datetime) --

          A date and time that indicate when the reserved-node exchange was requested.

        • SourceReservedNodeId (string) --

          The identifier of the source reserved node.

        • SourceReservedNodeType (string) --

          The source reserved-node type, for example ds2.xlarge.

        • SourceReservedNodeCount (integer) --

          The source reserved-node count in the cluster.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

        • TargetReservedNodeType (string) --

          The node type of the target reserved node, for example ra3.4xlarge.

        • TargetReservedNodeCount (integer) --

          The count of target reserved nodes in the cluster.

RestoreFromClusterSnapshot (updated) Link ¶
Changes (request, response)
Request
{'ReservedNodeId': 'string', 'TargetReservedNodeOfferingId': 'string'}
Response
{'Cluster': {'ReservedNodeExchangeStatus': {'RequestTime': 'timestamp',
                                            'ReservedNodeExchangeRequestId': 'string',
                                            'SourceReservedNodeCount': 'integer',
                                            'SourceReservedNodeId': 'string',
                                            'SourceReservedNodeType': 'string',
                                            'Status': 'REQUESTED | PENDING | '
                                                      'IN_PROGRESS | RETRYING '
                                                      '| SUCCEEDED | FAILED',
                                            'TargetReservedNodeCount': 'integer',
                                            'TargetReservedNodeOfferingId': 'string',
                                            'TargetReservedNodeType': 'string'}}}

Creates a new cluster from a snapshot. By default, Amazon Redshift creates the resulting cluster with the same configuration as the original cluster from which the snapshot was created, except that the new cluster is created with the default cluster security and parameter groups. After Amazon Redshift creates the cluster, you can use the ModifyCluster API to associate a different security group and different parameter group with the restored cluster. If you are using a DS node type, you can also choose to change to another DS node type of the same size during restore.

If you restore a cluster into a VPC, you must provide a cluster subnet group where you want the cluster restored.

For more information about working with snapshots, go to Amazon Redshift Snapshots in the Amazon Redshift Cluster Management Guide .

See also: AWS API Documentation

Request Syntax

client.restore_from_cluster_snapshot(
    ClusterIdentifier='string',
    SnapshotIdentifier='string',
    SnapshotClusterIdentifier='string',
    Port=123,
    AvailabilityZone='string',
    AllowVersionUpgrade=True|False,
    ClusterSubnetGroupName='string',
    PubliclyAccessible=True|False,
    OwnerAccount='string',
    HsmClientCertificateIdentifier='string',
    HsmConfigurationIdentifier='string',
    ElasticIp='string',
    ClusterParameterGroupName='string',
    ClusterSecurityGroups=[
        'string',
    ],
    VpcSecurityGroupIds=[
        'string',
    ],
    PreferredMaintenanceWindow='string',
    AutomatedSnapshotRetentionPeriod=123,
    ManualSnapshotRetentionPeriod=123,
    KmsKeyId='string',
    NodeType='string',
    EnhancedVpcRouting=True|False,
    AdditionalInfo='string',
    IamRoles=[
        'string',
    ],
    MaintenanceTrackName='string',
    SnapshotScheduleIdentifier='string',
    NumberOfNodes=123,
    AvailabilityZoneRelocation=True|False,
    AquaConfigurationStatus='enabled'|'disabled'|'auto',
    DefaultIamRoleArn='string',
    ReservedNodeId='string',
    TargetReservedNodeOfferingId='string'
)
type ClusterIdentifier

string

param ClusterIdentifier

[REQUIRED]

The identifier of the cluster that will be created from restoring the snapshot.

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.

type SnapshotIdentifier

string

param SnapshotIdentifier

[REQUIRED]

The name of the snapshot from which to create the new cluster. This parameter isn't case sensitive.

Example: my-snapshot-id

type SnapshotClusterIdentifier

string

param SnapshotClusterIdentifier

The name of the cluster the source snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.

type Port

integer

param Port

The port number on which the cluster accepts connections.

Default: The same port as the original cluster.

Constraints: Must be between 1115 and 65535 .

type AvailabilityZone

string

param AvailabilityZone

The Amazon EC2 Availability Zone in which to restore the cluster.

Default: A random, system-chosen Availability Zone.

Example: us-east-2a

type AllowVersionUpgrade

boolean

param AllowVersionUpgrade

If true , major version upgrades can be applied during the maintenance window to the Amazon Redshift engine that is running on the cluster.

Default: true

type ClusterSubnetGroupName

string

param ClusterSubnetGroupName

The name of the subnet group where you want to cluster restored.

A snapshot of cluster in VPC can be restored only in VPC. Therefore, you must provide subnet group name where you want the cluster restored.

type PubliclyAccessible

boolean

param PubliclyAccessible

If true , the cluster can be accessed from a public network.

type OwnerAccount

string

param OwnerAccount

The Amazon Web Services account used to create or copy the snapshot. Required if you are restoring a snapshot you do not own, optional if you own the snapshot.

type HsmClientCertificateIdentifier

string

param HsmClientCertificateIdentifier

Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

type HsmConfigurationIdentifier

string

param HsmConfigurationIdentifier

Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

type ElasticIp

string

param ElasticIp

The elastic IP (EIP) address for the cluster.

type ClusterParameterGroupName

string

param ClusterParameterGroupName

The name of the parameter group to be associated with this cluster.

Default: The default Amazon Redshift cluster parameter group. For information about the default parameter group, go to Working with Amazon Redshift Parameter Groups.

Constraints:

  • Must be 1 to 255 alphanumeric characters or hyphens.

  • First character must be a letter.

  • Cannot end with a hyphen or contain two consecutive hyphens.

type ClusterSecurityGroups

list

param ClusterSecurityGroups

A list of security groups to be associated with this cluster.

Default: The default cluster security group for Amazon Redshift.

Cluster security groups only apply to clusters outside of VPCs.

  • (string) --

type VpcSecurityGroupIds

list

param VpcSecurityGroupIds

A list of Virtual Private Cloud (VPC) security groups to be associated with the cluster.

Default: The default VPC security group is associated with the cluster.

VPC security groups only apply to clusters in VPCs.

  • (string) --

type PreferredMaintenanceWindow

string

param PreferredMaintenanceWindow

The weekly time range (in UTC) during which automated cluster maintenance can occur.

Format: ddd:hh24:mi-ddd:hh24:mi

Default: The value selected for the cluster from which the snapshot was taken. For more information about the time blocks for each region, see Maintenance Windows in Amazon Redshift Cluster Management Guide.

Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun

Constraints: Minimum 30-minute window.

type AutomatedSnapshotRetentionPeriod

integer

param AutomatedSnapshotRetentionPeriod

The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with CreateClusterSnapshot.

You can't disable automated snapshots for RA3 node types. Set the automated retention period from 1-35 days.

Default: The value selected for the cluster from which the snapshot was taken.

Constraints: Must be a value from 0 to 35.

type ManualSnapshotRetentionPeriod

integer

param ManualSnapshotRetentionPeriod

The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

The value must be either -1 or an integer between 1 and 3,653.

type KmsKeyId

string

param KmsKeyId

The Key Management Service (KMS) key ID of the encryption key that you want to use to encrypt data in the cluster that you restore from a shared snapshot.

type NodeType

string

param NodeType

The node type that the restored cluster will be provisioned with.

Default: The node type of the cluster from which the snapshot was taken. You can modify this if you are using any DS node type. In that case, you can choose to restore into another DS node type of the same size. For example, you can restore ds1.8xlarge into ds2.8xlarge, or ds1.xlarge into ds2.xlarge. If you have a DC instance type, you must restore into that same instance type and size. In other words, you can only restore a dc1.large instance type into another dc1.large instance type or dc2.large instance type. You can't restore dc1.8xlarge to dc2.8xlarge. First restore to a dc1.8xlarge cluster, then resize to a dc2.8large cluster. For more information about node types, see About Clusters and Nodes in the Amazon Redshift Cluster Management Guide .

type EnhancedVpcRouting

boolean

param EnhancedVpcRouting

An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

If this option is true , enhanced VPC routing is enabled.

Default: false

type AdditionalInfo

string

param AdditionalInfo

Reserved.

type IamRoles

list

param IamRoles

A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services. You must supply the IAM roles in their Amazon Resource Name (ARN) format. You can supply up to 10 IAM roles in a single request.

A cluster can have up to 10 IAM roles associated at any time.

  • (string) --

type MaintenanceTrackName

string

param MaintenanceTrackName

The name of the maintenance track for the restored cluster. When you take a snapshot, the snapshot inherits the MaintenanceTrack value from the cluster. The snapshot might be on a different track than the cluster that was the source for the snapshot. For example, suppose that you take a snapshot of a cluster that is on the current track and then change the cluster to be on the trailing track. In this case, the snapshot and the source cluster are on different tracks.

type SnapshotScheduleIdentifier

string

param SnapshotScheduleIdentifier

A unique identifier for the snapshot schedule.

type NumberOfNodes

integer

param NumberOfNodes

The number of nodes specified when provisioning the restored cluster.

type AvailabilityZoneRelocation

boolean

param AvailabilityZoneRelocation

The option to enable relocation for an Amazon Redshift cluster between Availability Zones after the cluster is restored.

type AquaConfigurationStatus

string

param AquaConfigurationStatus

The value represents how the cluster is configured to use AQUA (Advanced Query Accelerator) after the cluster is restored. Possible values include the following.

  • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

  • disabled - Don't use AQUA.

  • auto - Amazon Redshift determines whether to use AQUA.

type DefaultIamRoleArn

string

param DefaultIamRoleArn

The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster was last modified while it was restored from a snapshot.

type ReservedNodeId

string

param ReservedNodeId

The identifier of the target reserved node offering.

type TargetReservedNodeOfferingId

string

param TargetReservedNodeOfferingId

The identifier of the target reserved node offering.

rtype

dict

returns

Response Syntax

{
    'Cluster': {
        'ClusterIdentifier': 'string',
        'NodeType': 'string',
        'ClusterStatus': 'string',
        'ClusterAvailabilityStatus': 'string',
        'ModifyStatus': 'string',
        'MasterUsername': 'string',
        'DBName': 'string',
        'Endpoint': {
            'Address': 'string',
            'Port': 123,
            'VpcEndpoints': [
                {
                    'VpcEndpointId': 'string',
                    'VpcId': 'string',
                    'NetworkInterfaces': [
                        {
                            'NetworkInterfaceId': 'string',
                            'SubnetId': 'string',
                            'PrivateIpAddress': 'string',
                            'AvailabilityZone': 'string'
                        },
                    ]
                },
            ]
        },
        'ClusterCreateTime': datetime(2015, 1, 1),
        'AutomatedSnapshotRetentionPeriod': 123,
        'ManualSnapshotRetentionPeriod': 123,
        'ClusterSecurityGroups': [
            {
                'ClusterSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'VpcSecurityGroups': [
            {
                'VpcSecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ClusterParameterGroups': [
            {
                'ParameterGroupName': 'string',
                'ParameterApplyStatus': 'string',
                'ClusterParameterStatusList': [
                    {
                        'ParameterName': 'string',
                        'ParameterApplyStatus': 'string',
                        'ParameterApplyErrorDescription': 'string'
                    },
                ]
            },
        ],
        'ClusterSubnetGroupName': 'string',
        'VpcId': 'string',
        'AvailabilityZone': 'string',
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'MasterUserPassword': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'ClusterType': 'string',
            'ClusterVersion': 'string',
            'AutomatedSnapshotRetentionPeriod': 123,
            'ClusterIdentifier': 'string',
            'PubliclyAccessible': True|False,
            'EnhancedVpcRouting': True|False,
            'MaintenanceTrackName': 'string',
            'EncryptionType': 'string'
        },
        'ClusterVersion': 'string',
        'AllowVersionUpgrade': True|False,
        'NumberOfNodes': 123,
        'PubliclyAccessible': True|False,
        'Encrypted': True|False,
        'RestoreStatus': {
            'Status': 'string',
            'CurrentRestoreRateInMegaBytesPerSecond': 123.0,
            'SnapshotSizeInMegaBytes': 123,
            'ProgressInMegaBytes': 123,
            'ElapsedTimeInSeconds': 123,
            'EstimatedTimeToCompletionInSeconds': 123
        },
        'DataTransferProgress': {
            'Status': 'string',
            'CurrentRateInMegaBytesPerSecond': 123.0,
            'TotalDataInMegaBytes': 123,
            'DataTransferredInMegaBytes': 123,
            'EstimatedTimeToCompletionInSeconds': 123,
            'ElapsedTimeInSeconds': 123
        },
        'HsmStatus': {
            'HsmClientCertificateIdentifier': 'string',
            'HsmConfigurationIdentifier': 'string',
            'Status': 'string'
        },
        'ClusterSnapshotCopyStatus': {
            'DestinationRegion': 'string',
            'RetentionPeriod': 123,
            'ManualSnapshotRetentionPeriod': 123,
            'SnapshotCopyGrantName': 'string'
        },
        'ClusterPublicKey': 'string',
        'ClusterNodes': [
            {
                'NodeRole': 'string',
                'PrivateIPAddress': 'string',
                'PublicIPAddress': 'string'
            },
        ],
        'ElasticIpStatus': {
            'ElasticIp': 'string',
            'Status': 'string'
        },
        'ClusterRevisionNumber': 'string',
        'Tags': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        'KmsKeyId': 'string',
        'EnhancedVpcRouting': True|False,
        'IamRoles': [
            {
                'IamRoleArn': 'string',
                'ApplyStatus': 'string'
            },
        ],
        'PendingActions': [
            'string',
        ],
        'MaintenanceTrackName': 'string',
        'ElasticResizeNumberOfNodeOptions': 'string',
        'DeferredMaintenanceWindows': [
            {
                'DeferMaintenanceIdentifier': 'string',
                'DeferMaintenanceStartTime': datetime(2015, 1, 1),
                'DeferMaintenanceEndTime': datetime(2015, 1, 1)
            },
        ],
        'SnapshotScheduleIdentifier': 'string',
        'SnapshotScheduleState': 'MODIFYING'|'ACTIVE'|'FAILED',
        'ExpectedNextSnapshotScheduleTime': datetime(2015, 1, 1),
        'ExpectedNextSnapshotScheduleTimeStatus': 'string',
        'NextMaintenanceWindowStartTime': datetime(2015, 1, 1),
        'ResizeInfo': {
            'ResizeType': 'string',
            'AllowCancelResize': True|False
        },
        'AvailabilityZoneRelocationStatus': 'string',
        'ClusterNamespaceArn': 'string',
        'TotalStorageCapacityInMegaBytes': 123,
        'AquaConfiguration': {
            'AquaStatus': 'enabled'|'disabled'|'applying',
            'AquaConfigurationStatus': 'enabled'|'disabled'|'auto'
        },
        'DefaultIamRoleArn': 'string',
        'ReservedNodeExchangeStatus': {
            'ReservedNodeExchangeRequestId': 'string',
            'Status': 'REQUESTED'|'PENDING'|'IN_PROGRESS'|'RETRYING'|'SUCCEEDED'|'FAILED',
            'RequestTime': datetime(2015, 1, 1),
            'SourceReservedNodeId': 'string',
            'SourceReservedNodeType': 'string',
            'SourceReservedNodeCount': 123,
            'TargetReservedNodeOfferingId': 'string',
            'TargetReservedNodeType': 'string',
            'TargetReservedNodeCount': 123
        }
    }
}

Response Structure

  • (dict) --

    • Cluster (dict) --

      Describes a cluster.

      • ClusterIdentifier (string) --

        The unique identifier of the cluster.

      • NodeType (string) --

        The node type for the nodes in the cluster.

      • ClusterStatus (string) --

        The current state of the cluster. Possible values are the following:

        • available

        • available, prep-for-resize

        • available, resize-cleanup

        • cancelling-resize

        • creating

        • deleting

        • final-snapshot

        • hardware-failure

        • incompatible-hsm

        • incompatible-network

        • incompatible-parameters

        • incompatible-restore

        • modifying

        • paused

        • rebooting

        • renaming

        • resizing

        • rotating-keys

        • storage-full

        • updating-hsm

      • ClusterAvailabilityStatus (string) --

        The availability status of the cluster for queries. Possible values are the following:

        • Available - The cluster is available for queries.

        • Unavailable - The cluster is not available for queries.

        • Maintenance - The cluster is intermittently available for queries due to maintenance activities.

        • Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.

        • Failed - The cluster failed and is not available for queries.

      • ModifyStatus (string) --

        The status of a modify operation, if any, initiated for the cluster.

      • MasterUsername (string) --

        The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

      • DBName (string) --

        The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named dev dev was created by default.

      • Endpoint (dict) --

        The connection endpoint.

        • Address (string) --

          The DNS address of the Cluster.

        • Port (integer) --

          The port that the database engine is listening on.

        • VpcEndpoints (list) --

          Describes a connection endpoint.

          • (dict) --

            The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

            • VpcEndpointId (string) --

              The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.

            • VpcId (string) --

              The VPC identifier that the endpoint is associated.

            • NetworkInterfaces (list) --

              One or more network interfaces of the endpoint. Also known as an interface endpoint.

              • (dict) --

                Describes a network interface.

                • NetworkInterfaceId (string) --

                  The network interface identifier.

                • SubnetId (string) --

                  The subnet identifier.

                • PrivateIpAddress (string) --

                  The IPv4 address of the network interface within the subnet.

                • AvailabilityZone (string) --

                  The Availability Zone.

      • ClusterCreateTime (datetime) --

        The date and time that the cluster was created.

      • AutomatedSnapshotRetentionPeriod (integer) --

        The number of days that automatic cluster snapshots are retained.

      • ManualSnapshotRetentionPeriod (integer) --

        The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

        The value must be either -1 or an integer between 1 and 3,653.

      • ClusterSecurityGroups (list) --

        A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

        Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

        • (dict) --

          Describes a cluster security group.

          • ClusterSecurityGroupName (string) --

            The name of the cluster security group.

          • Status (string) --

            The status of the cluster security group.

      • VpcSecurityGroups (list) --

        A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

        • (dict) --

          Describes the members of a VPC security group.

          • VpcSecurityGroupId (string) --

            The identifier of the VPC security group.

          • Status (string) --

            The status of the VPC security group.

      • ClusterParameterGroups (list) --

        The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

        • (dict) --

          Describes the status of a parameter group.

          • ParameterGroupName (string) --

            The name of the cluster parameter group.

          • ParameterApplyStatus (string) --

            The status of parameter updates.

          • ClusterParameterStatusList (list) --

            The list of parameter statuses.

            For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide .

            • (dict) --

              Describes the status of a parameter group.

              • ParameterName (string) --

                The name of the parameter.

              • ParameterApplyStatus (string) --

                The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.

                The following are possible statuses and descriptions.

                • in-sync : The parameter value is in sync with the database.

                • pending-reboot : The parameter value will be applied after the cluster reboots.

                • applying : The parameter value is being applied to the database.

                • invalid-parameter : Cannot apply the parameter value because it has an invalid value or syntax.

                • apply-deferred : The parameter contains static property changes. The changes are deferred until the cluster reboots.

                • apply-error : Cannot connect to the cluster. The parameter change will be applied after the cluster reboots.

                • unknown-error : Cannot apply the parameter change right now. The change will be applied after the cluster reboots.

              • ParameterApplyErrorDescription (string) --

                The error that prevented the parameter from being applied to the database.

      • ClusterSubnetGroupName (string) --

        The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

      • VpcId (string) --

        The identifier of the VPC the cluster is in, if the cluster is in a VPC.

      • AvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located.

      • PreferredMaintenanceWindow (string) --

        The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

      • PendingModifiedValues (dict) --

        A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

        • MasterUserPassword (string) --

          The pending or in-progress change of the admin user password for the cluster.

        • NodeType (string) --

          The pending or in-progress change of the cluster's node type.

        • NumberOfNodes (integer) --

          The pending or in-progress change of the number of nodes in the cluster.

        • ClusterType (string) --

          The pending or in-progress change of the cluster type.

        • ClusterVersion (string) --

          The pending or in-progress change of the service version.

        • AutomatedSnapshotRetentionPeriod (integer) --

          The pending or in-progress change of the automated snapshot retention period.

        • ClusterIdentifier (string) --

          The pending or in-progress change of the new identifier for the cluster.

        • PubliclyAccessible (boolean) --

          The pending or in-progress change of the ability to connect to the cluster from the public network.

        • EnhancedVpcRouting (boolean) --

          An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

          If this option is true , enhanced VPC routing is enabled.

          Default: false

        • MaintenanceTrackName (string) --

          The name of the maintenance track that the cluster will change to during the next maintenance window.

        • EncryptionType (string) --

          The encryption type for a cluster. Possible values are: KMS and None.

      • ClusterVersion (string) --

        The version ID of the Amazon Redshift engine that is running on the cluster.

      • AllowVersionUpgrade (boolean) --

        A boolean value that, if true , indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

      • NumberOfNodes (integer) --

        The number of compute nodes in the cluster.

      • PubliclyAccessible (boolean) --

        A boolean value that, if true , indicates that the cluster can be accessed from a public network.

      • Encrypted (boolean) --

        A boolean value that, if true , indicates that data in the cluster is encrypted at rest.

      • RestoreStatus (dict) --

        A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

        • Status (string) --

          The status of the restore action. Returns starting, restoring, completed, or failed.

        • CurrentRestoreRateInMegaBytesPerSecond (float) --

          The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.

        • SnapshotSizeInMegaBytes (integer) --

          The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.

        • ProgressInMegaBytes (integer) --

          The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.

        • ElapsedTimeInSeconds (integer) --

          The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.

        • EstimatedTimeToCompletionInSeconds (integer) --

          The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.

      • DataTransferProgress (dict) --

        • Status (string) --

          Describes the status of the cluster. While the transfer is in progress the status is transferringdata .

        • CurrentRateInMegaBytesPerSecond (float) --

          Describes the data transfer rate in MB's per second.

        • TotalDataInMegaBytes (integer) --

          Describes the total amount of data to be transfered in megabytes.

        • DataTransferredInMegaBytes (integer) --

          Describes the total amount of data that has been transfered in MB's.

        • EstimatedTimeToCompletionInSeconds (integer) --

          Describes the estimated number of seconds remaining to complete the transfer.

        • ElapsedTimeInSeconds (integer) --

          Describes the number of seconds that have elapsed during the data transfer.

      • HsmStatus (dict) --

        A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

        Values: active, applying

        • HsmClientCertificateIdentifier (string) --

          Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

        • HsmConfigurationIdentifier (string) --

          Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

        • Status (string) --

          Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.

          Values: active, applying

      • ClusterSnapshotCopyStatus (dict) --

        A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

        • DestinationRegion (string) --

          The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

        • RetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

        • ManualSnapshotRetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely.

          The value must be either -1 or an integer between 1 and 3,653.

        • SnapshotCopyGrantName (string) --

          The name of the snapshot copy grant.

      • ClusterPublicKey (string) --

        The public key for the cluster.

      • ClusterNodes (list) --

        The nodes in the cluster.

        • (dict) --

          The identifier of a node in a cluster.

          • NodeRole (string) --

            Whether the node is a leader node or a compute node.

          • PrivateIPAddress (string) --

            The private IP address of a node within a cluster.

          • PublicIPAddress (string) --

            The public IP address of a node within a cluster.

      • ElasticIpStatus (dict) --

        The status of the elastic IP (EIP) address.

        • ElasticIp (string) --

          The elastic IP (EIP) address for the cluster.

        • Status (string) --

          The status of the elastic IP (EIP) address.

      • ClusterRevisionNumber (string) --

        The specific revision number of the database in the cluster.

      • Tags (list) --

        The list of tags for the cluster.

        • (dict) --

          A tag consisting of a name/value pair for a resource.

          • Key (string) --

            The key, or name, for the resource tag.

          • Value (string) --

            The value for the resource tag.

      • KmsKeyId (string) --

        The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.

      • EnhancedVpcRouting (boolean) --

        An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

        If this option is true , enhanced VPC routing is enabled.

        Default: false

      • IamRoles (list) --

        A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

        • (dict) --

          An Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other Amazon Web Services services.

          • IamRoleArn (string) --

            The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload .

          • ApplyStatus (string) --

            A value that describes the status of the IAM role's association with an Amazon Redshift cluster.

            The following are possible statuses and descriptions.

            • in-sync : The role is available for use by the cluster.

            • adding : The role is in the process of being associated with the cluster.

            • removing : The role is in the process of being disassociated with the cluster.

      • PendingActions (list) --

        Cluster operations that are waiting to be started.

        • (string) --

      • MaintenanceTrackName (string) --

        The name of the maintenance track for the cluster.

      • ElasticResizeNumberOfNodeOptions (string) --

        The number of nodes that you can resize the cluster to with the elastic resize method.

      • DeferredMaintenanceWindows (list) --

        Describes a group of DeferredMaintenanceWindow objects.

        • (dict) --

          Describes a deferred maintenance window

          • DeferMaintenanceIdentifier (string) --

            A unique identifier for the maintenance window.

          • DeferMaintenanceStartTime (datetime) --

            A timestamp for the beginning of the time period when we defer maintenance.

          • DeferMaintenanceEndTime (datetime) --

            A timestamp for the end of the time period when we defer maintenance.

      • SnapshotScheduleIdentifier (string) --

        A unique identifier for the cluster snapshot schedule.

      • SnapshotScheduleState (string) --

        The current state of the cluster snapshot schedule.

      • ExpectedNextSnapshotScheduleTime (datetime) --

        The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.

      • ExpectedNextSnapshotScheduleTimeStatus (string) --

        The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:

        • OnTrack - The next snapshot is expected to be taken on time.

        • Pending - The next snapshot is pending to be taken.

      • NextMaintenanceWindowStartTime (datetime) --

        The date and time in UTC when system maintenance can begin.

      • ResizeInfo (dict) --

        Returns the following:

        • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.

        • ResizeType: Returns ClassicResize

        • ResizeType (string) --

          Returns the value ClassicResize .

        • AllowCancelResize (boolean) --

          A boolean value indicating if the resize operation can be cancelled.

      • AvailabilityZoneRelocationStatus (string) --

        Describes the status of the Availability Zone relocation operation.

      • ClusterNamespaceArn (string) --

        The namespace Amazon Resource Name (ARN) of the cluster.

      • TotalStorageCapacityInMegaBytes (integer) --

        The total storage capacity of the cluster in megabytes.

      • AquaConfiguration (dict) --

        The AQUA (Advanced Query Accelerator) configuration of the cluster.

        • AquaStatus (string) --

          The value indicates the status of AQUA on the cluster. Possible values include the following.

          • enabled - AQUA is enabled.

          • disabled - AQUA is not enabled.

          • applying - AQUA status is being applied.

        • AquaConfigurationStatus (string) --

          The value represents how the cluster is configured to use AQUA. Possible values include the following.

          • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

          • disabled - Don't use AQUA.

          • auto - Amazon Redshift determines whether to use AQUA.

      • DefaultIamRoleArn (string) --

        The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.

      • ReservedNodeExchangeStatus (dict) --

        The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • ReservedNodeExchangeRequestId (string) --

          The identifier of the reserved-node exchange request.

        • Status (string) --

          The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • RequestTime (datetime) --

          A date and time that indicate when the reserved-node exchange was requested.

        • SourceReservedNodeId (string) --

          The identifier of the source reserved node.

        • SourceReservedNodeType (string) --

          The source reserved-node type, for example ds2.xlarge.

        • SourceReservedNodeCount (integer) --

          The source reserved-node count in the cluster.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

        • TargetReservedNodeType (string) --

          The node type of the target reserved node, for example ra3.4xlarge.

        • TargetReservedNodeCount (integer) --

          The count of target reserved nodes in the cluster.

ResumeCluster (updated) Link ¶
Changes (response)
{'Cluster': {'ReservedNodeExchangeStatus': {'RequestTime': 'timestamp',
                                            'ReservedNodeExchangeRequestId': 'string',
                                            'SourceReservedNodeCount': 'integer',
                                            'SourceReservedNodeId': 'string',
                                            'SourceReservedNodeType': 'string',
                                            'Status': 'REQUESTED | PENDING | '
                                                      'IN_PROGRESS | RETRYING '
                                                      '| SUCCEEDED | FAILED',
                                            'TargetReservedNodeCount': 'integer',
                                            'TargetReservedNodeOfferingId': 'string',
                                            'TargetReservedNodeType': 'string'}}}

Resumes a paused cluster.

See also: AWS API Documentation

Request Syntax

client.resume_cluster(
    ClusterIdentifier='string'
)
type ClusterIdentifier

string

param ClusterIdentifier

[REQUIRED]

The identifier of the cluster to be resumed.

rtype

dict

returns

Response Syntax

{
    'Cluster': {
        'ClusterIdentifier': 'string',
        'NodeType': 'string',
        'ClusterStatus': 'string',
        'ClusterAvailabilityStatus': 'string',
        'ModifyStatus': 'string',
        'MasterUsername': 'string',
        'DBName': 'string',
        'Endpoint': {
            'Address': 'string',
            'Port': 123,
            'VpcEndpoints': [
                {
                    'VpcEndpointId': 'string',
                    'VpcId': 'string',
                    'NetworkInterfaces': [
                        {
                            'NetworkInterfaceId': 'string',
                            'SubnetId': 'string',
                            'PrivateIpAddress': 'string',
                            'AvailabilityZone': 'string'
                        },
                    ]
                },
            ]
        },
        'ClusterCreateTime': datetime(2015, 1, 1),
        'AutomatedSnapshotRetentionPeriod': 123,
        'ManualSnapshotRetentionPeriod': 123,
        'ClusterSecurityGroups': [
            {
                'ClusterSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'VpcSecurityGroups': [
            {
                'VpcSecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ClusterParameterGroups': [
            {
                'ParameterGroupName': 'string',
                'ParameterApplyStatus': 'string',
                'ClusterParameterStatusList': [
                    {
                        'ParameterName': 'string',
                        'ParameterApplyStatus': 'string',
                        'ParameterApplyErrorDescription': 'string'
                    },
                ]
            },
        ],
        'ClusterSubnetGroupName': 'string',
        'VpcId': 'string',
        'AvailabilityZone': 'string',
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'MasterUserPassword': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'ClusterType': 'string',
            'ClusterVersion': 'string',
            'AutomatedSnapshotRetentionPeriod': 123,
            'ClusterIdentifier': 'string',
            'PubliclyAccessible': True|False,
            'EnhancedVpcRouting': True|False,
            'MaintenanceTrackName': 'string',
            'EncryptionType': 'string'
        },
        'ClusterVersion': 'string',
        'AllowVersionUpgrade': True|False,
        'NumberOfNodes': 123,
        'PubliclyAccessible': True|False,
        'Encrypted': True|False,
        'RestoreStatus': {
            'Status': 'string',
            'CurrentRestoreRateInMegaBytesPerSecond': 123.0,
            'SnapshotSizeInMegaBytes': 123,
            'ProgressInMegaBytes': 123,
            'ElapsedTimeInSeconds': 123,
            'EstimatedTimeToCompletionInSeconds': 123
        },
        'DataTransferProgress': {
            'Status': 'string',
            'CurrentRateInMegaBytesPerSecond': 123.0,
            'TotalDataInMegaBytes': 123,
            'DataTransferredInMegaBytes': 123,
            'EstimatedTimeToCompletionInSeconds': 123,
            'ElapsedTimeInSeconds': 123
        },
        'HsmStatus': {
            'HsmClientCertificateIdentifier': 'string',
            'HsmConfigurationIdentifier': 'string',
            'Status': 'string'
        },
        'ClusterSnapshotCopyStatus': {
            'DestinationRegion': 'string',
            'RetentionPeriod': 123,
            'ManualSnapshotRetentionPeriod': 123,
            'SnapshotCopyGrantName': 'string'
        },
        'ClusterPublicKey': 'string',
        'ClusterNodes': [
            {
                'NodeRole': 'string',
                'PrivateIPAddress': 'string',
                'PublicIPAddress': 'string'
            },
        ],
        'ElasticIpStatus': {
            'ElasticIp': 'string',
            'Status': 'string'
        },
        'ClusterRevisionNumber': 'string',
        'Tags': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        'KmsKeyId': 'string',
        'EnhancedVpcRouting': True|False,
        'IamRoles': [
            {
                'IamRoleArn': 'string',
                'ApplyStatus': 'string'
            },
        ],
        'PendingActions': [
            'string',
        ],
        'MaintenanceTrackName': 'string',
        'ElasticResizeNumberOfNodeOptions': 'string',
        'DeferredMaintenanceWindows': [
            {
                'DeferMaintenanceIdentifier': 'string',
                'DeferMaintenanceStartTime': datetime(2015, 1, 1),
                'DeferMaintenanceEndTime': datetime(2015, 1, 1)
            },
        ],
        'SnapshotScheduleIdentifier': 'string',
        'SnapshotScheduleState': 'MODIFYING'|'ACTIVE'|'FAILED',
        'ExpectedNextSnapshotScheduleTime': datetime(2015, 1, 1),
        'ExpectedNextSnapshotScheduleTimeStatus': 'string',
        'NextMaintenanceWindowStartTime': datetime(2015, 1, 1),
        'ResizeInfo': {
            'ResizeType': 'string',
            'AllowCancelResize': True|False
        },
        'AvailabilityZoneRelocationStatus': 'string',
        'ClusterNamespaceArn': 'string',
        'TotalStorageCapacityInMegaBytes': 123,
        'AquaConfiguration': {
            'AquaStatus': 'enabled'|'disabled'|'applying',
            'AquaConfigurationStatus': 'enabled'|'disabled'|'auto'
        },
        'DefaultIamRoleArn': 'string',
        'ReservedNodeExchangeStatus': {
            'ReservedNodeExchangeRequestId': 'string',
            'Status': 'REQUESTED'|'PENDING'|'IN_PROGRESS'|'RETRYING'|'SUCCEEDED'|'FAILED',
            'RequestTime': datetime(2015, 1, 1),
            'SourceReservedNodeId': 'string',
            'SourceReservedNodeType': 'string',
            'SourceReservedNodeCount': 123,
            'TargetReservedNodeOfferingId': 'string',
            'TargetReservedNodeType': 'string',
            'TargetReservedNodeCount': 123
        }
    }
}

Response Structure

  • (dict) --

    • Cluster (dict) --

      Describes a cluster.

      • ClusterIdentifier (string) --

        The unique identifier of the cluster.

      • NodeType (string) --

        The node type for the nodes in the cluster.

      • ClusterStatus (string) --

        The current state of the cluster. Possible values are the following:

        • available

        • available, prep-for-resize

        • available, resize-cleanup

        • cancelling-resize

        • creating

        • deleting

        • final-snapshot

        • hardware-failure

        • incompatible-hsm

        • incompatible-network

        • incompatible-parameters

        • incompatible-restore

        • modifying

        • paused

        • rebooting

        • renaming

        • resizing

        • rotating-keys

        • storage-full

        • updating-hsm

      • ClusterAvailabilityStatus (string) --

        The availability status of the cluster for queries. Possible values are the following:

        • Available - The cluster is available for queries.

        • Unavailable - The cluster is not available for queries.

        • Maintenance - The cluster is intermittently available for queries due to maintenance activities.

        • Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.

        • Failed - The cluster failed and is not available for queries.

      • ModifyStatus (string) --

        The status of a modify operation, if any, initiated for the cluster.

      • MasterUsername (string) --

        The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

      • DBName (string) --

        The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named dev dev was created by default.

      • Endpoint (dict) --

        The connection endpoint.

        • Address (string) --

          The DNS address of the Cluster.

        • Port (integer) --

          The port that the database engine is listening on.

        • VpcEndpoints (list) --

          Describes a connection endpoint.

          • (dict) --

            The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

            • VpcEndpointId (string) --

              The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.

            • VpcId (string) --

              The VPC identifier that the endpoint is associated.

            • NetworkInterfaces (list) --

              One or more network interfaces of the endpoint. Also known as an interface endpoint.

              • (dict) --

                Describes a network interface.

                • NetworkInterfaceId (string) --

                  The network interface identifier.

                • SubnetId (string) --

                  The subnet identifier.

                • PrivateIpAddress (string) --

                  The IPv4 address of the network interface within the subnet.

                • AvailabilityZone (string) --

                  The Availability Zone.

      • ClusterCreateTime (datetime) --

        The date and time that the cluster was created.

      • AutomatedSnapshotRetentionPeriod (integer) --

        The number of days that automatic cluster snapshots are retained.

      • ManualSnapshotRetentionPeriod (integer) --

        The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

        The value must be either -1 or an integer between 1 and 3,653.

      • ClusterSecurityGroups (list) --

        A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

        Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

        • (dict) --

          Describes a cluster security group.

          • ClusterSecurityGroupName (string) --

            The name of the cluster security group.

          • Status (string) --

            The status of the cluster security group.

      • VpcSecurityGroups (list) --

        A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

        • (dict) --

          Describes the members of a VPC security group.

          • VpcSecurityGroupId (string) --

            The identifier of the VPC security group.

          • Status (string) --

            The status of the VPC security group.

      • ClusterParameterGroups (list) --

        The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

        • (dict) --

          Describes the status of a parameter group.

          • ParameterGroupName (string) --

            The name of the cluster parameter group.

          • ParameterApplyStatus (string) --

            The status of parameter updates.

          • ClusterParameterStatusList (list) --

            The list of parameter statuses.

            For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide .

            • (dict) --

              Describes the status of a parameter group.

              • ParameterName (string) --

                The name of the parameter.

              • ParameterApplyStatus (string) --

                The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.

                The following are possible statuses and descriptions.

                • in-sync : The parameter value is in sync with the database.

                • pending-reboot : The parameter value will be applied after the cluster reboots.

                • applying : The parameter value is being applied to the database.

                • invalid-parameter : Cannot apply the parameter value because it has an invalid value or syntax.

                • apply-deferred : The parameter contains static property changes. The changes are deferred until the cluster reboots.

                • apply-error : Cannot connect to the cluster. The parameter change will be applied after the cluster reboots.

                • unknown-error : Cannot apply the parameter change right now. The change will be applied after the cluster reboots.

              • ParameterApplyErrorDescription (string) --

                The error that prevented the parameter from being applied to the database.

      • ClusterSubnetGroupName (string) --

        The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

      • VpcId (string) --

        The identifier of the VPC the cluster is in, if the cluster is in a VPC.

      • AvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located.

      • PreferredMaintenanceWindow (string) --

        The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

      • PendingModifiedValues (dict) --

        A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

        • MasterUserPassword (string) --

          The pending or in-progress change of the admin user password for the cluster.

        • NodeType (string) --

          The pending or in-progress change of the cluster's node type.

        • NumberOfNodes (integer) --

          The pending or in-progress change of the number of nodes in the cluster.

        • ClusterType (string) --

          The pending or in-progress change of the cluster type.

        • ClusterVersion (string) --

          The pending or in-progress change of the service version.

        • AutomatedSnapshotRetentionPeriod (integer) --

          The pending or in-progress change of the automated snapshot retention period.

        • ClusterIdentifier (string) --

          The pending or in-progress change of the new identifier for the cluster.

        • PubliclyAccessible (boolean) --

          The pending or in-progress change of the ability to connect to the cluster from the public network.

        • EnhancedVpcRouting (boolean) --

          An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

          If this option is true , enhanced VPC routing is enabled.

          Default: false

        • MaintenanceTrackName (string) --

          The name of the maintenance track that the cluster will change to during the next maintenance window.

        • EncryptionType (string) --

          The encryption type for a cluster. Possible values are: KMS and None.

      • ClusterVersion (string) --

        The version ID of the Amazon Redshift engine that is running on the cluster.

      • AllowVersionUpgrade (boolean) --

        A boolean value that, if true , indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

      • NumberOfNodes (integer) --

        The number of compute nodes in the cluster.

      • PubliclyAccessible (boolean) --

        A boolean value that, if true , indicates that the cluster can be accessed from a public network.

      • Encrypted (boolean) --

        A boolean value that, if true , indicates that data in the cluster is encrypted at rest.

      • RestoreStatus (dict) --

        A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

        • Status (string) --

          The status of the restore action. Returns starting, restoring, completed, or failed.

        • CurrentRestoreRateInMegaBytesPerSecond (float) --

          The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.

        • SnapshotSizeInMegaBytes (integer) --

          The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.

        • ProgressInMegaBytes (integer) --

          The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.

        • ElapsedTimeInSeconds (integer) --

          The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.

        • EstimatedTimeToCompletionInSeconds (integer) --

          The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.

      • DataTransferProgress (dict) --

        • Status (string) --

          Describes the status of the cluster. While the transfer is in progress the status is transferringdata .

        • CurrentRateInMegaBytesPerSecond (float) --

          Describes the data transfer rate in MB's per second.

        • TotalDataInMegaBytes (integer) --

          Describes the total amount of data to be transfered in megabytes.

        • DataTransferredInMegaBytes (integer) --

          Describes the total amount of data that has been transfered in MB's.

        • EstimatedTimeToCompletionInSeconds (integer) --

          Describes the estimated number of seconds remaining to complete the transfer.

        • ElapsedTimeInSeconds (integer) --

          Describes the number of seconds that have elapsed during the data transfer.

      • HsmStatus (dict) --

        A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

        Values: active, applying

        • HsmClientCertificateIdentifier (string) --

          Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

        • HsmConfigurationIdentifier (string) --

          Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

        • Status (string) --

          Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.

          Values: active, applying

      • ClusterSnapshotCopyStatus (dict) --

        A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

        • DestinationRegion (string) --

          The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

        • RetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

        • ManualSnapshotRetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely.

          The value must be either -1 or an integer between 1 and 3,653.

        • SnapshotCopyGrantName (string) --

          The name of the snapshot copy grant.

      • ClusterPublicKey (string) --

        The public key for the cluster.

      • ClusterNodes (list) --

        The nodes in the cluster.

        • (dict) --

          The identifier of a node in a cluster.

          • NodeRole (string) --

            Whether the node is a leader node or a compute node.

          • PrivateIPAddress (string) --

            The private IP address of a node within a cluster.

          • PublicIPAddress (string) --

            The public IP address of a node within a cluster.

      • ElasticIpStatus (dict) --

        The status of the elastic IP (EIP) address.

        • ElasticIp (string) --

          The elastic IP (EIP) address for the cluster.

        • Status (string) --

          The status of the elastic IP (EIP) address.

      • ClusterRevisionNumber (string) --

        The specific revision number of the database in the cluster.

      • Tags (list) --

        The list of tags for the cluster.

        • (dict) --

          A tag consisting of a name/value pair for a resource.

          • Key (string) --

            The key, or name, for the resource tag.

          • Value (string) --

            The value for the resource tag.

      • KmsKeyId (string) --

        The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.

      • EnhancedVpcRouting (boolean) --

        An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

        If this option is true , enhanced VPC routing is enabled.

        Default: false

      • IamRoles (list) --

        A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

        • (dict) --

          An Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other Amazon Web Services services.

          • IamRoleArn (string) --

            The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload .

          • ApplyStatus (string) --

            A value that describes the status of the IAM role's association with an Amazon Redshift cluster.

            The following are possible statuses and descriptions.

            • in-sync : The role is available for use by the cluster.

            • adding : The role is in the process of being associated with the cluster.

            • removing : The role is in the process of being disassociated with the cluster.

      • PendingActions (list) --

        Cluster operations that are waiting to be started.

        • (string) --

      • MaintenanceTrackName (string) --

        The name of the maintenance track for the cluster.

      • ElasticResizeNumberOfNodeOptions (string) --

        The number of nodes that you can resize the cluster to with the elastic resize method.

      • DeferredMaintenanceWindows (list) --

        Describes a group of DeferredMaintenanceWindow objects.

        • (dict) --

          Describes a deferred maintenance window

          • DeferMaintenanceIdentifier (string) --

            A unique identifier for the maintenance window.

          • DeferMaintenanceStartTime (datetime) --

            A timestamp for the beginning of the time period when we defer maintenance.

          • DeferMaintenanceEndTime (datetime) --

            A timestamp for the end of the time period when we defer maintenance.

      • SnapshotScheduleIdentifier (string) --

        A unique identifier for the cluster snapshot schedule.

      • SnapshotScheduleState (string) --

        The current state of the cluster snapshot schedule.

      • ExpectedNextSnapshotScheduleTime (datetime) --

        The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.

      • ExpectedNextSnapshotScheduleTimeStatus (string) --

        The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:

        • OnTrack - The next snapshot is expected to be taken on time.

        • Pending - The next snapshot is pending to be taken.

      • NextMaintenanceWindowStartTime (datetime) --

        The date and time in UTC when system maintenance can begin.

      • ResizeInfo (dict) --

        Returns the following:

        • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.

        • ResizeType: Returns ClassicResize

        • ResizeType (string) --

          Returns the value ClassicResize .

        • AllowCancelResize (boolean) --

          A boolean value indicating if the resize operation can be cancelled.

      • AvailabilityZoneRelocationStatus (string) --

        Describes the status of the Availability Zone relocation operation.

      • ClusterNamespaceArn (string) --

        The namespace Amazon Resource Name (ARN) of the cluster.

      • TotalStorageCapacityInMegaBytes (integer) --

        The total storage capacity of the cluster in megabytes.

      • AquaConfiguration (dict) --

        The AQUA (Advanced Query Accelerator) configuration of the cluster.

        • AquaStatus (string) --

          The value indicates the status of AQUA on the cluster. Possible values include the following.

          • enabled - AQUA is enabled.

          • disabled - AQUA is not enabled.

          • applying - AQUA status is being applied.

        • AquaConfigurationStatus (string) --

          The value represents how the cluster is configured to use AQUA. Possible values include the following.

          • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

          • disabled - Don't use AQUA.

          • auto - Amazon Redshift determines whether to use AQUA.

      • DefaultIamRoleArn (string) --

        The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.

      • ReservedNodeExchangeStatus (dict) --

        The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • ReservedNodeExchangeRequestId (string) --

          The identifier of the reserved-node exchange request.

        • Status (string) --

          The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • RequestTime (datetime) --

          A date and time that indicate when the reserved-node exchange was requested.

        • SourceReservedNodeId (string) --

          The identifier of the source reserved node.

        • SourceReservedNodeType (string) --

          The source reserved-node type, for example ds2.xlarge.

        • SourceReservedNodeCount (integer) --

          The source reserved-node count in the cluster.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

        • TargetReservedNodeType (string) --

          The node type of the target reserved node, for example ra3.4xlarge.

        • TargetReservedNodeCount (integer) --

          The count of target reserved nodes in the cluster.

RotateEncryptionKey (updated) Link ¶
Changes (response)
{'Cluster': {'ReservedNodeExchangeStatus': {'RequestTime': 'timestamp',
                                            'ReservedNodeExchangeRequestId': 'string',
                                            'SourceReservedNodeCount': 'integer',
                                            'SourceReservedNodeId': 'string',
                                            'SourceReservedNodeType': 'string',
                                            'Status': 'REQUESTED | PENDING | '
                                                      'IN_PROGRESS | RETRYING '
                                                      '| SUCCEEDED | FAILED',
                                            'TargetReservedNodeCount': 'integer',
                                            'TargetReservedNodeOfferingId': 'string',
                                            'TargetReservedNodeType': 'string'}}}

Rotates the encryption keys for a cluster.

See also: AWS API Documentation

Request Syntax

client.rotate_encryption_key(
    ClusterIdentifier='string'
)
type ClusterIdentifier

string

param ClusterIdentifier

[REQUIRED]

The unique identifier of the cluster that you want to rotate the encryption keys for.

Constraints: Must be the name of valid cluster that has encryption enabled.

rtype

dict

returns

Response Syntax

{
    'Cluster': {
        'ClusterIdentifier': 'string',
        'NodeType': 'string',
        'ClusterStatus': 'string',
        'ClusterAvailabilityStatus': 'string',
        'ModifyStatus': 'string',
        'MasterUsername': 'string',
        'DBName': 'string',
        'Endpoint': {
            'Address': 'string',
            'Port': 123,
            'VpcEndpoints': [
                {
                    'VpcEndpointId': 'string',
                    'VpcId': 'string',
                    'NetworkInterfaces': [
                        {
                            'NetworkInterfaceId': 'string',
                            'SubnetId': 'string',
                            'PrivateIpAddress': 'string',
                            'AvailabilityZone': 'string'
                        },
                    ]
                },
            ]
        },
        'ClusterCreateTime': datetime(2015, 1, 1),
        'AutomatedSnapshotRetentionPeriod': 123,
        'ManualSnapshotRetentionPeriod': 123,
        'ClusterSecurityGroups': [
            {
                'ClusterSecurityGroupName': 'string',
                'Status': 'string'
            },
        ],
        'VpcSecurityGroups': [
            {
                'VpcSecurityGroupId': 'string',
                'Status': 'string'
            },
        ],
        'ClusterParameterGroups': [
            {
                'ParameterGroupName': 'string',
                'ParameterApplyStatus': 'string',
                'ClusterParameterStatusList': [
                    {
                        'ParameterName': 'string',
                        'ParameterApplyStatus': 'string',
                        'ParameterApplyErrorDescription': 'string'
                    },
                ]
            },
        ],
        'ClusterSubnetGroupName': 'string',
        'VpcId': 'string',
        'AvailabilityZone': 'string',
        'PreferredMaintenanceWindow': 'string',
        'PendingModifiedValues': {
            'MasterUserPassword': 'string',
            'NodeType': 'string',
            'NumberOfNodes': 123,
            'ClusterType': 'string',
            'ClusterVersion': 'string',
            'AutomatedSnapshotRetentionPeriod': 123,
            'ClusterIdentifier': 'string',
            'PubliclyAccessible': True|False,
            'EnhancedVpcRouting': True|False,
            'MaintenanceTrackName': 'string',
            'EncryptionType': 'string'
        },
        'ClusterVersion': 'string',
        'AllowVersionUpgrade': True|False,
        'NumberOfNodes': 123,
        'PubliclyAccessible': True|False,
        'Encrypted': True|False,
        'RestoreStatus': {
            'Status': 'string',
            'CurrentRestoreRateInMegaBytesPerSecond': 123.0,
            'SnapshotSizeInMegaBytes': 123,
            'ProgressInMegaBytes': 123,
            'ElapsedTimeInSeconds': 123,
            'EstimatedTimeToCompletionInSeconds': 123
        },
        'DataTransferProgress': {
            'Status': 'string',
            'CurrentRateInMegaBytesPerSecond': 123.0,
            'TotalDataInMegaBytes': 123,
            'DataTransferredInMegaBytes': 123,
            'EstimatedTimeToCompletionInSeconds': 123,
            'ElapsedTimeInSeconds': 123
        },
        'HsmStatus': {
            'HsmClientCertificateIdentifier': 'string',
            'HsmConfigurationIdentifier': 'string',
            'Status': 'string'
        },
        'ClusterSnapshotCopyStatus': {
            'DestinationRegion': 'string',
            'RetentionPeriod': 123,
            'ManualSnapshotRetentionPeriod': 123,
            'SnapshotCopyGrantName': 'string'
        },
        'ClusterPublicKey': 'string',
        'ClusterNodes': [
            {
                'NodeRole': 'string',
                'PrivateIPAddress': 'string',
                'PublicIPAddress': 'string'
            },
        ],
        'ElasticIpStatus': {
            'ElasticIp': 'string',
            'Status': 'string'
        },
        'ClusterRevisionNumber': 'string',
        'Tags': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        'KmsKeyId': 'string',
        'EnhancedVpcRouting': True|False,
        'IamRoles': [
            {
                'IamRoleArn': 'string',
                'ApplyStatus': 'string'
            },
        ],
        'PendingActions': [
            'string',
        ],
        'MaintenanceTrackName': 'string',
        'ElasticResizeNumberOfNodeOptions': 'string',
        'DeferredMaintenanceWindows': [
            {
                'DeferMaintenanceIdentifier': 'string',
                'DeferMaintenanceStartTime': datetime(2015, 1, 1),
                'DeferMaintenanceEndTime': datetime(2015, 1, 1)
            },
        ],
        'SnapshotScheduleIdentifier': 'string',
        'SnapshotScheduleState': 'MODIFYING'|'ACTIVE'|'FAILED',
        'ExpectedNextSnapshotScheduleTime': datetime(2015, 1, 1),
        'ExpectedNextSnapshotScheduleTimeStatus': 'string',
        'NextMaintenanceWindowStartTime': datetime(2015, 1, 1),
        'ResizeInfo': {
            'ResizeType': 'string',
            'AllowCancelResize': True|False
        },
        'AvailabilityZoneRelocationStatus': 'string',
        'ClusterNamespaceArn': 'string',
        'TotalStorageCapacityInMegaBytes': 123,
        'AquaConfiguration': {
            'AquaStatus': 'enabled'|'disabled'|'applying',
            'AquaConfigurationStatus': 'enabled'|'disabled'|'auto'
        },
        'DefaultIamRoleArn': 'string',
        'ReservedNodeExchangeStatus': {
            'ReservedNodeExchangeRequestId': 'string',
            'Status': 'REQUESTED'|'PENDING'|'IN_PROGRESS'|'RETRYING'|'SUCCEEDED'|'FAILED',
            'RequestTime': datetime(2015, 1, 1),
            'SourceReservedNodeId': 'string',
            'SourceReservedNodeType': 'string',
            'SourceReservedNodeCount': 123,
            'TargetReservedNodeOfferingId': 'string',
            'TargetReservedNodeType': 'string',
            'TargetReservedNodeCount': 123
        }
    }
}

Response Structure

  • (dict) --

    • Cluster (dict) --

      Describes a cluster.

      • ClusterIdentifier (string) --

        The unique identifier of the cluster.

      • NodeType (string) --

        The node type for the nodes in the cluster.

      • ClusterStatus (string) --

        The current state of the cluster. Possible values are the following:

        • available

        • available, prep-for-resize

        • available, resize-cleanup

        • cancelling-resize

        • creating

        • deleting

        • final-snapshot

        • hardware-failure

        • incompatible-hsm

        • incompatible-network

        • incompatible-parameters

        • incompatible-restore

        • modifying

        • paused

        • rebooting

        • renaming

        • resizing

        • rotating-keys

        • storage-full

        • updating-hsm

      • ClusterAvailabilityStatus (string) --

        The availability status of the cluster for queries. Possible values are the following:

        • Available - The cluster is available for queries.

        • Unavailable - The cluster is not available for queries.

        • Maintenance - The cluster is intermittently available for queries due to maintenance activities.

        • Modifying - The cluster is intermittently available for queries due to changes that modify the cluster.

        • Failed - The cluster failed and is not available for queries.

      • ModifyStatus (string) --

        The status of a modify operation, if any, initiated for the cluster.

      • MasterUsername (string) --

        The admin user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter.

      • DBName (string) --

        The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named dev dev was created by default.

      • Endpoint (dict) --

        The connection endpoint.

        • Address (string) --

          The DNS address of the Cluster.

        • Port (integer) --

          The port that the database engine is listening on.

        • VpcEndpoints (list) --

          Describes a connection endpoint.

          • (dict) --

            The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

            • VpcEndpointId (string) --

              The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.

            • VpcId (string) --

              The VPC identifier that the endpoint is associated.

            • NetworkInterfaces (list) --

              One or more network interfaces of the endpoint. Also known as an interface endpoint.

              • (dict) --

                Describes a network interface.

                • NetworkInterfaceId (string) --

                  The network interface identifier.

                • SubnetId (string) --

                  The subnet identifier.

                • PrivateIpAddress (string) --

                  The IPv4 address of the network interface within the subnet.

                • AvailabilityZone (string) --

                  The Availability Zone.

      • ClusterCreateTime (datetime) --

        The date and time that the cluster was created.

      • AutomatedSnapshotRetentionPeriod (integer) --

        The number of days that automatic cluster snapshots are retained.

      • ManualSnapshotRetentionPeriod (integer) --

        The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots.

        The value must be either -1 or an integer between 1 and 3,653.

      • ClusterSecurityGroups (list) --

        A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains ClusterSecurityGroup.Name and ClusterSecurityGroup.Status subelements.

        Cluster security groups are used when the cluster is not created in an Amazon Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security groups, which are listed by the VpcSecurityGroups parameter.

        • (dict) --

          Describes a cluster security group.

          • ClusterSecurityGroupName (string) --

            The name of the cluster security group.

          • Status (string) --

            The status of the cluster security group.

      • VpcSecurityGroups (list) --

        A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC.

        • (dict) --

          Describes the members of a VPC security group.

          • VpcSecurityGroupId (string) --

            The identifier of the VPC security group.

          • Status (string) --

            The status of the VPC security group.

      • ClusterParameterGroups (list) --

        The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.

        • (dict) --

          Describes the status of a parameter group.

          • ParameterGroupName (string) --

            The name of the cluster parameter group.

          • ParameterApplyStatus (string) --

            The status of parameter updates.

          • ClusterParameterStatusList (list) --

            The list of parameter statuses.

            For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide .

            • (dict) --

              Describes the status of a parameter group.

              • ParameterName (string) --

                The name of the parameter.

              • ParameterApplyStatus (string) --

                The status of the parameter that indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when being applied.

                The following are possible statuses and descriptions.

                • in-sync : The parameter value is in sync with the database.

                • pending-reboot : The parameter value will be applied after the cluster reboots.

                • applying : The parameter value is being applied to the database.

                • invalid-parameter : Cannot apply the parameter value because it has an invalid value or syntax.

                • apply-deferred : The parameter contains static property changes. The changes are deferred until the cluster reboots.

                • apply-error : Cannot connect to the cluster. The parameter change will be applied after the cluster reboots.

                • unknown-error : Cannot apply the parameter change right now. The change will be applied after the cluster reboots.

              • ParameterApplyErrorDescription (string) --

                The error that prevented the parameter from being applied to the database.

      • ClusterSubnetGroupName (string) --

        The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.

      • VpcId (string) --

        The identifier of the VPC the cluster is in, if the cluster is in a VPC.

      • AvailabilityZone (string) --

        The name of the Availability Zone in which the cluster is located.

      • PreferredMaintenanceWindow (string) --

        The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.

      • PendingModifiedValues (dict) --

        A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.

        • MasterUserPassword (string) --

          The pending or in-progress change of the admin user password for the cluster.

        • NodeType (string) --

          The pending or in-progress change of the cluster's node type.

        • NumberOfNodes (integer) --

          The pending or in-progress change of the number of nodes in the cluster.

        • ClusterType (string) --

          The pending or in-progress change of the cluster type.

        • ClusterVersion (string) --

          The pending or in-progress change of the service version.

        • AutomatedSnapshotRetentionPeriod (integer) --

          The pending or in-progress change of the automated snapshot retention period.

        • ClusterIdentifier (string) --

          The pending or in-progress change of the new identifier for the cluster.

        • PubliclyAccessible (boolean) --

          The pending or in-progress change of the ability to connect to the cluster from the public network.

        • EnhancedVpcRouting (boolean) --

          An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

          If this option is true , enhanced VPC routing is enabled.

          Default: false

        • MaintenanceTrackName (string) --

          The name of the maintenance track that the cluster will change to during the next maintenance window.

        • EncryptionType (string) --

          The encryption type for a cluster. Possible values are: KMS and None.

      • ClusterVersion (string) --

        The version ID of the Amazon Redshift engine that is running on the cluster.

      • AllowVersionUpgrade (boolean) --

        A boolean value that, if true , indicates that major version upgrades will be applied automatically to the cluster during the maintenance window.

      • NumberOfNodes (integer) --

        The number of compute nodes in the cluster.

      • PubliclyAccessible (boolean) --

        A boolean value that, if true , indicates that the cluster can be accessed from a public network.

      • Encrypted (boolean) --

        A boolean value that, if true , indicates that data in the cluster is encrypted at rest.

      • RestoreStatus (dict) --

        A value that describes the status of a cluster restore action. This parameter returns null if the cluster was not created by restoring a snapshot.

        • Status (string) --

          The status of the restore action. Returns starting, restoring, completed, or failed.

        • CurrentRestoreRateInMegaBytesPerSecond (float) --

          The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.

        • SnapshotSizeInMegaBytes (integer) --

          The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.

        • ProgressInMegaBytes (integer) --

          The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.

        • ElapsedTimeInSeconds (integer) --

          The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.

        • EstimatedTimeToCompletionInSeconds (integer) --

          The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.

      • DataTransferProgress (dict) --

        • Status (string) --

          Describes the status of the cluster. While the transfer is in progress the status is transferringdata .

        • CurrentRateInMegaBytesPerSecond (float) --

          Describes the data transfer rate in MB's per second.

        • TotalDataInMegaBytes (integer) --

          Describes the total amount of data to be transfered in megabytes.

        • DataTransferredInMegaBytes (integer) --

          Describes the total amount of data that has been transfered in MB's.

        • EstimatedTimeToCompletionInSeconds (integer) --

          Describes the estimated number of seconds remaining to complete the transfer.

        • ElapsedTimeInSeconds (integer) --

          Describes the number of seconds that have elapsed during the data transfer.

      • HsmStatus (dict) --

        A value that reports whether the Amazon Redshift cluster has finished applying any hardware security module (HSM) settings changes specified in a modify cluster command.

        Values: active, applying

        • HsmClientCertificateIdentifier (string) --

          Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.

        • HsmConfigurationIdentifier (string) --

          Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.

        • Status (string) --

          Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.

          Values: active, applying

      • ClusterSnapshotCopyStatus (dict) --

        A value that returns the destination region and retention period that are configured for cross-region snapshot copy.

        • DestinationRegion (string) --

          The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

        • RetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

        • ManualSnapshotRetentionPeriod (integer) --

          The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely.

          The value must be either -1 or an integer between 1 and 3,653.

        • SnapshotCopyGrantName (string) --

          The name of the snapshot copy grant.

      • ClusterPublicKey (string) --

        The public key for the cluster.

      • ClusterNodes (list) --

        The nodes in the cluster.

        • (dict) --

          The identifier of a node in a cluster.

          • NodeRole (string) --

            Whether the node is a leader node or a compute node.

          • PrivateIPAddress (string) --

            The private IP address of a node within a cluster.

          • PublicIPAddress (string) --

            The public IP address of a node within a cluster.

      • ElasticIpStatus (dict) --

        The status of the elastic IP (EIP) address.

        • ElasticIp (string) --

          The elastic IP (EIP) address for the cluster.

        • Status (string) --

          The status of the elastic IP (EIP) address.

      • ClusterRevisionNumber (string) --

        The specific revision number of the database in the cluster.

      • Tags (list) --

        The list of tags for the cluster.

        • (dict) --

          A tag consisting of a name/value pair for a resource.

          • Key (string) --

            The key, or name, for the resource tag.

          • Value (string) --

            The value for the resource tag.

      • KmsKeyId (string) --

        The Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.

      • EnhancedVpcRouting (boolean) --

        An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.

        If this option is true , enhanced VPC routing is enabled.

        Default: false

      • IamRoles (list) --

        A list of Identity and Access Management (IAM) roles that can be used by the cluster to access other Amazon Web Services services.

        • (dict) --

          An Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other Amazon Web Services services.

          • IamRoleArn (string) --

            The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload .

          • ApplyStatus (string) --

            A value that describes the status of the IAM role's association with an Amazon Redshift cluster.

            The following are possible statuses and descriptions.

            • in-sync : The role is available for use by the cluster.

            • adding : The role is in the process of being associated with the cluster.

            • removing : The role is in the process of being disassociated with the cluster.

      • PendingActions (list) --

        Cluster operations that are waiting to be started.

        • (string) --

      • MaintenanceTrackName (string) --

        The name of the maintenance track for the cluster.

      • ElasticResizeNumberOfNodeOptions (string) --

        The number of nodes that you can resize the cluster to with the elastic resize method.

      • DeferredMaintenanceWindows (list) --

        Describes a group of DeferredMaintenanceWindow objects.

        • (dict) --

          Describes a deferred maintenance window

          • DeferMaintenanceIdentifier (string) --

            A unique identifier for the maintenance window.

          • DeferMaintenanceStartTime (datetime) --

            A timestamp for the beginning of the time period when we defer maintenance.

          • DeferMaintenanceEndTime (datetime) --

            A timestamp for the end of the time period when we defer maintenance.

      • SnapshotScheduleIdentifier (string) --

        A unique identifier for the cluster snapshot schedule.

      • SnapshotScheduleState (string) --

        The current state of the cluster snapshot schedule.

      • ExpectedNextSnapshotScheduleTime (datetime) --

        The date and time when the next snapshot is expected to be taken for clusters with a valid snapshot schedule and backups enabled.

      • ExpectedNextSnapshotScheduleTimeStatus (string) --

        The status of next expected snapshot for clusters having a valid snapshot schedule and backups enabled. Possible values are the following:

        • OnTrack - The next snapshot is expected to be taken on time.

        • Pending - The next snapshot is pending to be taken.

      • NextMaintenanceWindowStartTime (datetime) --

        The date and time in UTC when system maintenance can begin.

      • ResizeInfo (dict) --

        Returns the following:

        • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.

        • ResizeType: Returns ClassicResize

        • ResizeType (string) --

          Returns the value ClassicResize .

        • AllowCancelResize (boolean) --

          A boolean value indicating if the resize operation can be cancelled.

      • AvailabilityZoneRelocationStatus (string) --

        Describes the status of the Availability Zone relocation operation.

      • ClusterNamespaceArn (string) --

        The namespace Amazon Resource Name (ARN) of the cluster.

      • TotalStorageCapacityInMegaBytes (integer) --

        The total storage capacity of the cluster in megabytes.

      • AquaConfiguration (dict) --

        The AQUA (Advanced Query Accelerator) configuration of the cluster.

        • AquaStatus (string) --

          The value indicates the status of AQUA on the cluster. Possible values include the following.

          • enabled - AQUA is enabled.

          • disabled - AQUA is not enabled.

          • applying - AQUA status is being applied.

        • AquaConfigurationStatus (string) --

          The value represents how the cluster is configured to use AQUA. Possible values include the following.

          • enabled - Use AQUA if it is available for the current Amazon Web Services Region and Amazon Redshift node type.

          • disabled - Don't use AQUA.

          • auto - Amazon Redshift determines whether to use AQUA.

      • DefaultIamRoleArn (string) --

        The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.

      • ReservedNodeExchangeStatus (dict) --

        The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • ReservedNodeExchangeRequestId (string) --

          The identifier of the reserved-node exchange request.

        • Status (string) --

          The status of the reserved-node exchange request. Statuses include in-progress and requested.

        • RequestTime (datetime) --

          A date and time that indicate when the reserved-node exchange was requested.

        • SourceReservedNodeId (string) --

          The identifier of the source reserved node.

        • SourceReservedNodeType (string) --

          The source reserved-node type, for example ds2.xlarge.

        • SourceReservedNodeCount (integer) --

          The source reserved-node count in the cluster.

        • TargetReservedNodeOfferingId (string) --

          The identifier of the target reserved node offering.

        • TargetReservedNodeType (string) --

          The node type of the target reserved node, for example ra3.4xlarge.

        • TargetReservedNodeCount (integer) --

          The count of target reserved nodes in the cluster.