git-off

git off handles large files in git repos
git clone https://noulin.net/git/git-off.git
Log | Files | Refs | README

redshift.d.ts (215189B)


      1 import {Request} from '../lib/request';
      2 import {Response} from '../lib/response';
      3 import {AWSError} from '../lib/error';
      4 import {Service} from '../lib/service';
      5 import {ServiceConfigurationOptions} from '../lib/service';
      6 import {ConfigBase as Config} from '../lib/config';
      7 interface Blob {}
      8 declare class Redshift extends Service {
      9   /**
     10    * Constructs a service object. This object has one method for each API operation.
     11    */
     12   constructor(options?: Redshift.Types.ClientConfiguration)
     13   config: Config & Redshift.Types.ClientConfiguration;
     14   /**
     15    * Adds an inbound (ingress) rule to an Amazon Redshift security group. Depending on whether the application accessing your cluster is running on the Internet or an Amazon EC2 instance, you can authorize inbound access to either a Classless Interdomain Routing (CIDR)/Internet Protocol (IP) range or to an Amazon EC2 security group. You can add as many as 20 ingress rules to an Amazon Redshift security group. If you authorize access to an Amazon EC2 security group, specify EC2SecurityGroupName and EC2SecurityGroupOwnerId. The Amazon EC2 security group and Amazon Redshift cluster must be in the same AWS region.  If you authorize access to a CIDR/IP address range, specify CIDRIP. For an overview of CIDR blocks, see the Wikipedia article on Classless Inter-Domain Routing.  You must also associate the security group with a cluster so that clients running on these IP addresses or the EC2 instance are authorized to connect to the cluster. For information about managing security groups, go to Working with Security Groups in the Amazon Redshift Cluster Management Guide.
     16    */
     17   authorizeClusterSecurityGroupIngress(params: Redshift.Types.AuthorizeClusterSecurityGroupIngressMessage, callback?: (err: AWSError, data: Redshift.Types.AuthorizeClusterSecurityGroupIngressResult) => void): Request<Redshift.Types.AuthorizeClusterSecurityGroupIngressResult, AWSError>;
     18   /**
     19    * Adds an inbound (ingress) rule to an Amazon Redshift security group. Depending on whether the application accessing your cluster is running on the Internet or an Amazon EC2 instance, you can authorize inbound access to either a Classless Interdomain Routing (CIDR)/Internet Protocol (IP) range or to an Amazon EC2 security group. You can add as many as 20 ingress rules to an Amazon Redshift security group. If you authorize access to an Amazon EC2 security group, specify EC2SecurityGroupName and EC2SecurityGroupOwnerId. The Amazon EC2 security group and Amazon Redshift cluster must be in the same AWS region.  If you authorize access to a CIDR/IP address range, specify CIDRIP. For an overview of CIDR blocks, see the Wikipedia article on Classless Inter-Domain Routing.  You must also associate the security group with a cluster so that clients running on these IP addresses or the EC2 instance are authorized to connect to the cluster. For information about managing security groups, go to Working with Security Groups in the Amazon Redshift Cluster Management Guide.
     20    */
     21   authorizeClusterSecurityGroupIngress(callback?: (err: AWSError, data: Redshift.Types.AuthorizeClusterSecurityGroupIngressResult) => void): Request<Redshift.Types.AuthorizeClusterSecurityGroupIngressResult, AWSError>;
     22   /**
     23    * Authorizes the specified AWS customer account to restore the specified snapshot.  For more information about working with snapshots, go to Amazon Redshift Snapshots in the Amazon Redshift Cluster Management Guide.
     24    */
     25   authorizeSnapshotAccess(params: Redshift.Types.AuthorizeSnapshotAccessMessage, callback?: (err: AWSError, data: Redshift.Types.AuthorizeSnapshotAccessResult) => void): Request<Redshift.Types.AuthorizeSnapshotAccessResult, AWSError>;
     26   /**
     27    * Authorizes the specified AWS customer account to restore the specified snapshot.  For more information about working with snapshots, go to Amazon Redshift Snapshots in the Amazon Redshift Cluster Management Guide.
     28    */
     29   authorizeSnapshotAccess(callback?: (err: AWSError, data: Redshift.Types.AuthorizeSnapshotAccessResult) => void): Request<Redshift.Types.AuthorizeSnapshotAccessResult, AWSError>;
     30   /**
     31    * Copies the specified automated cluster snapshot to a new manual cluster snapshot. The source must be an automated snapshot and it must be in the available state. When you delete a cluster, Amazon Redshift deletes any automated snapshots of the cluster. Also, when the retention period of the snapshot expires, Amazon Redshift automatically deletes it. If you want to keep an automated snapshot for a longer period, you can make a manual copy of the snapshot. Manual snapshots are retained until you delete them.  For more information about working with snapshots, go to Amazon Redshift Snapshots in the Amazon Redshift Cluster Management Guide.
     32    */
     33   copyClusterSnapshot(params: Redshift.Types.CopyClusterSnapshotMessage, callback?: (err: AWSError, data: Redshift.Types.CopyClusterSnapshotResult) => void): Request<Redshift.Types.CopyClusterSnapshotResult, AWSError>;
     34   /**
     35    * Copies the specified automated cluster snapshot to a new manual cluster snapshot. The source must be an automated snapshot and it must be in the available state. When you delete a cluster, Amazon Redshift deletes any automated snapshots of the cluster. Also, when the retention period of the snapshot expires, Amazon Redshift automatically deletes it. If you want to keep an automated snapshot for a longer period, you can make a manual copy of the snapshot. Manual snapshots are retained until you delete them.  For more information about working with snapshots, go to Amazon Redshift Snapshots in the Amazon Redshift Cluster Management Guide.
     36    */
     37   copyClusterSnapshot(callback?: (err: AWSError, data: Redshift.Types.CopyClusterSnapshotResult) => void): Request<Redshift.Types.CopyClusterSnapshotResult, AWSError>;
     38   /**
     39    * Creates a new cluster. To create the 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.
     40    */
     41   createCluster(params: Redshift.Types.CreateClusterMessage, callback?: (err: AWSError, data: Redshift.Types.CreateClusterResult) => void): Request<Redshift.Types.CreateClusterResult, AWSError>;
     42   /**
     43    * Creates a new cluster. To create the 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.
     44    */
     45   createCluster(callback?: (err: AWSError, data: Redshift.Types.CreateClusterResult) => void): Request<Redshift.Types.CreateClusterResult, AWSError>;
     46   /**
     47    * Creates an Amazon Redshift parameter group. Creating parameter groups is independent of creating clusters. You can associate a cluster with a parameter group when you create the cluster. You can also associate an existing cluster with a parameter group after the cluster is created by using ModifyCluster.  Parameters in the parameter group define specific behavior that applies to the databases you create on the cluster. For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
     48    */
     49   createClusterParameterGroup(params: Redshift.Types.CreateClusterParameterGroupMessage, callback?: (err: AWSError, data: Redshift.Types.CreateClusterParameterGroupResult) => void): Request<Redshift.Types.CreateClusterParameterGroupResult, AWSError>;
     50   /**
     51    * Creates an Amazon Redshift parameter group. Creating parameter groups is independent of creating clusters. You can associate a cluster with a parameter group when you create the cluster. You can also associate an existing cluster with a parameter group after the cluster is created by using ModifyCluster.  Parameters in the parameter group define specific behavior that applies to the databases you create on the cluster. For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
     52    */
     53   createClusterParameterGroup(callback?: (err: AWSError, data: Redshift.Types.CreateClusterParameterGroupResult) => void): Request<Redshift.Types.CreateClusterParameterGroupResult, AWSError>;
     54   /**
     55    * Creates a new Amazon Redshift security group. You use security groups to control access to non-VPC clusters.  For information about managing security groups, go to Amazon Redshift Cluster Security Groups in the Amazon Redshift Cluster Management Guide.
     56    */
     57   createClusterSecurityGroup(params: Redshift.Types.CreateClusterSecurityGroupMessage, callback?: (err: AWSError, data: Redshift.Types.CreateClusterSecurityGroupResult) => void): Request<Redshift.Types.CreateClusterSecurityGroupResult, AWSError>;
     58   /**
     59    * Creates a new Amazon Redshift security group. You use security groups to control access to non-VPC clusters.  For information about managing security groups, go to Amazon Redshift Cluster Security Groups in the Amazon Redshift Cluster Management Guide.
     60    */
     61   createClusterSecurityGroup(callback?: (err: AWSError, data: Redshift.Types.CreateClusterSecurityGroupResult) => void): Request<Redshift.Types.CreateClusterSecurityGroupResult, AWSError>;
     62   /**
     63    * Creates a manual snapshot of the specified cluster. The cluster must be in the available state.   For more information about working with snapshots, go to Amazon Redshift Snapshots in the Amazon Redshift Cluster Management Guide.
     64    */
     65   createClusterSnapshot(params: Redshift.Types.CreateClusterSnapshotMessage, callback?: (err: AWSError, data: Redshift.Types.CreateClusterSnapshotResult) => void): Request<Redshift.Types.CreateClusterSnapshotResult, AWSError>;
     66   /**
     67    * Creates a manual snapshot of the specified cluster. The cluster must be in the available state.   For more information about working with snapshots, go to Amazon Redshift Snapshots in the Amazon Redshift Cluster Management Guide.
     68    */
     69   createClusterSnapshot(callback?: (err: AWSError, data: Redshift.Types.CreateClusterSnapshotResult) => void): Request<Redshift.Types.CreateClusterSnapshotResult, AWSError>;
     70   /**
     71    * Creates a new Amazon Redshift subnet group. You must provide a list of one or more subnets in your existing Amazon Virtual Private Cloud (Amazon VPC) when creating Amazon Redshift subnet group.  For information about subnet groups, go to Amazon Redshift Cluster Subnet Groups in the Amazon Redshift Cluster Management Guide.
     72    */
     73   createClusterSubnetGroup(params: Redshift.Types.CreateClusterSubnetGroupMessage, callback?: (err: AWSError, data: Redshift.Types.CreateClusterSubnetGroupResult) => void): Request<Redshift.Types.CreateClusterSubnetGroupResult, AWSError>;
     74   /**
     75    * Creates a new Amazon Redshift subnet group. You must provide a list of one or more subnets in your existing Amazon Virtual Private Cloud (Amazon VPC) when creating Amazon Redshift subnet group.  For information about subnet groups, go to Amazon Redshift Cluster Subnet Groups in the Amazon Redshift Cluster Management Guide.
     76    */
     77   createClusterSubnetGroup(callback?: (err: AWSError, data: Redshift.Types.CreateClusterSubnetGroupResult) => void): Request<Redshift.Types.CreateClusterSubnetGroupResult, AWSError>;
     78   /**
     79    * Creates an Amazon Redshift event notification subscription. This action requires an ARN (Amazon Resource Name) of an Amazon SNS topic created by either the Amazon Redshift console, the Amazon SNS console, or the Amazon SNS API. To obtain an ARN with Amazon SNS, you must create a topic in Amazon SNS and subscribe to the topic. The ARN is displayed in the SNS console. You can specify the source type, and lists of Amazon Redshift source IDs, event categories, and event severities. Notifications will be sent for all events you want that match those criteria. For example, you can specify source type = cluster, source ID = my-cluster-1 and mycluster2, event categories = Availability, Backup, and severity = ERROR. The subscription will only send notifications for those ERROR events in the Availability and Backup categories for the specified clusters. If you specify both the source type and source IDs, such as source type = cluster and source identifier = my-cluster-1, notifications will be sent for all the cluster events for my-cluster-1. If you specify a source type but do not specify a source identifier, you will receive notice of the events for the objects of that type in your AWS account. If you do not specify either the SourceType nor the SourceIdentifier, you will be notified of events generated from all Amazon Redshift sources belonging to your AWS account. You must specify a source type if you specify a source ID.
     80    */
     81   createEventSubscription(params: Redshift.Types.CreateEventSubscriptionMessage, callback?: (err: AWSError, data: Redshift.Types.CreateEventSubscriptionResult) => void): Request<Redshift.Types.CreateEventSubscriptionResult, AWSError>;
     82   /**
     83    * Creates an Amazon Redshift event notification subscription. This action requires an ARN (Amazon Resource Name) of an Amazon SNS topic created by either the Amazon Redshift console, the Amazon SNS console, or the Amazon SNS API. To obtain an ARN with Amazon SNS, you must create a topic in Amazon SNS and subscribe to the topic. The ARN is displayed in the SNS console. You can specify the source type, and lists of Amazon Redshift source IDs, event categories, and event severities. Notifications will be sent for all events you want that match those criteria. For example, you can specify source type = cluster, source ID = my-cluster-1 and mycluster2, event categories = Availability, Backup, and severity = ERROR. The subscription will only send notifications for those ERROR events in the Availability and Backup categories for the specified clusters. If you specify both the source type and source IDs, such as source type = cluster and source identifier = my-cluster-1, notifications will be sent for all the cluster events for my-cluster-1. If you specify a source type but do not specify a source identifier, you will receive notice of the events for the objects of that type in your AWS account. If you do not specify either the SourceType nor the SourceIdentifier, you will be notified of events generated from all Amazon Redshift sources belonging to your AWS account. You must specify a source type if you specify a source ID.
     84    */
     85   createEventSubscription(callback?: (err: AWSError, data: Redshift.Types.CreateEventSubscriptionResult) => void): Request<Redshift.Types.CreateEventSubscriptionResult, AWSError>;
     86   /**
     87    * Creates an HSM client certificate that an Amazon Redshift cluster will use to connect to the client's HSM in order to store and retrieve the keys used to encrypt the cluster databases. The command returns a public key, which you must store in the HSM. In addition to creating the HSM certificate, you must create an Amazon Redshift HSM configuration that provides a cluster the information needed to store and use encryption keys in the HSM. For more information, go to Hardware Security Modules in the Amazon Redshift Cluster Management Guide.
     88    */
     89   createHsmClientCertificate(params: Redshift.Types.CreateHsmClientCertificateMessage, callback?: (err: AWSError, data: Redshift.Types.CreateHsmClientCertificateResult) => void): Request<Redshift.Types.CreateHsmClientCertificateResult, AWSError>;
     90   /**
     91    * Creates an HSM client certificate that an Amazon Redshift cluster will use to connect to the client's HSM in order to store and retrieve the keys used to encrypt the cluster databases. The command returns a public key, which you must store in the HSM. In addition to creating the HSM certificate, you must create an Amazon Redshift HSM configuration that provides a cluster the information needed to store and use encryption keys in the HSM. For more information, go to Hardware Security Modules in the Amazon Redshift Cluster Management Guide.
     92    */
     93   createHsmClientCertificate(callback?: (err: AWSError, data: Redshift.Types.CreateHsmClientCertificateResult) => void): Request<Redshift.Types.CreateHsmClientCertificateResult, AWSError>;
     94   /**
     95    * Creates an HSM configuration that contains the information required by an Amazon Redshift cluster to store and use database encryption keys in a Hardware Security Module (HSM). After creating the HSM configuration, you can specify it as a parameter when creating a cluster. The cluster will then store its encryption keys in the HSM. In addition to creating an HSM configuration, you must also create an HSM client certificate. For more information, go to Hardware Security Modules in the Amazon Redshift Cluster Management Guide.
     96    */
     97   createHsmConfiguration(params: Redshift.Types.CreateHsmConfigurationMessage, callback?: (err: AWSError, data: Redshift.Types.CreateHsmConfigurationResult) => void): Request<Redshift.Types.CreateHsmConfigurationResult, AWSError>;
     98   /**
     99    * Creates an HSM configuration that contains the information required by an Amazon Redshift cluster to store and use database encryption keys in a Hardware Security Module (HSM). After creating the HSM configuration, you can specify it as a parameter when creating a cluster. The cluster will then store its encryption keys in the HSM. In addition to creating an HSM configuration, you must also create an HSM client certificate. For more information, go to Hardware Security Modules in the Amazon Redshift Cluster Management Guide.
    100    */
    101   createHsmConfiguration(callback?: (err: AWSError, data: Redshift.Types.CreateHsmConfigurationResult) => void): Request<Redshift.Types.CreateHsmConfigurationResult, AWSError>;
    102   /**
    103    * Creates a snapshot copy grant that permits Amazon Redshift to use a customer master key (CMK) from AWS Key Management Service (AWS KMS) to encrypt copied snapshots in a destination region.  For more information about managing snapshot copy grants, go to Amazon Redshift Database Encryption in the Amazon Redshift Cluster Management Guide. 
    104    */
    105   createSnapshotCopyGrant(params: Redshift.Types.CreateSnapshotCopyGrantMessage, callback?: (err: AWSError, data: Redshift.Types.CreateSnapshotCopyGrantResult) => void): Request<Redshift.Types.CreateSnapshotCopyGrantResult, AWSError>;
    106   /**
    107    * Creates a snapshot copy grant that permits Amazon Redshift to use a customer master key (CMK) from AWS Key Management Service (AWS KMS) to encrypt copied snapshots in a destination region.  For more information about managing snapshot copy grants, go to Amazon Redshift Database Encryption in the Amazon Redshift Cluster Management Guide. 
    108    */
    109   createSnapshotCopyGrant(callback?: (err: AWSError, data: Redshift.Types.CreateSnapshotCopyGrantResult) => void): Request<Redshift.Types.CreateSnapshotCopyGrantResult, AWSError>;
    110   /**
    111    * Adds one or more tags to a specified resource. A resource can have up to 10 tags. If you try to create more than 10 tags for a resource, you will receive an error and the attempt will fail. If you specify a key that already exists for the resource, the value for that key will be updated with the new value.
    112    */
    113   createTags(params: Redshift.Types.CreateTagsMessage, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    114   /**
    115    * Adds one or more tags to a specified resource. A resource can have up to 10 tags. If you try to create more than 10 tags for a resource, you will receive an error and the attempt will fail. If you specify a key that already exists for the resource, the value for that key will be updated with the new value.
    116    */
    117   createTags(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    118   /**
    119    * Deletes a previously provisioned cluster. 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.
    120    */
    121   deleteCluster(params: Redshift.Types.DeleteClusterMessage, callback?: (err: AWSError, data: Redshift.Types.DeleteClusterResult) => void): Request<Redshift.Types.DeleteClusterResult, AWSError>;
    122   /**
    123    * Deletes a previously provisioned cluster. 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.
    124    */
    125   deleteCluster(callback?: (err: AWSError, data: Redshift.Types.DeleteClusterResult) => void): Request<Redshift.Types.DeleteClusterResult, AWSError>;
    126   /**
    127    * Deletes a specified Amazon Redshift parameter group.  You cannot delete a parameter group if it is associated with a cluster. 
    128    */
    129   deleteClusterParameterGroup(params: Redshift.Types.DeleteClusterParameterGroupMessage, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    130   /**
    131    * Deletes a specified Amazon Redshift parameter group.  You cannot delete a parameter group if it is associated with a cluster. 
    132    */
    133   deleteClusterParameterGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    134   /**
    135    * Deletes an Amazon Redshift security group.  You cannot delete a security group that is associated with any clusters. You cannot delete the default security group.   For information about managing security groups, go to Amazon Redshift Cluster Security Groups in the Amazon Redshift Cluster Management Guide.
    136    */
    137   deleteClusterSecurityGroup(params: Redshift.Types.DeleteClusterSecurityGroupMessage, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    138   /**
    139    * Deletes an Amazon Redshift security group.  You cannot delete a security group that is associated with any clusters. You cannot delete the default security group.   For information about managing security groups, go to Amazon Redshift Cluster Security Groups in the Amazon Redshift Cluster Management Guide.
    140    */
    141   deleteClusterSecurityGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    142   /**
    143    * Deletes the specified manual snapshot. The snapshot must be in the available state, with no other users authorized to access the snapshot.  Unlike automated snapshots, manual snapshots are retained even after you delete your cluster. Amazon Redshift does not delete your manual snapshots. You must delete manual snapshot explicitly to avoid getting charged. If other accounts are authorized to access the snapshot, you must revoke all of the authorizations before you can delete the snapshot.
    144    */
    145   deleteClusterSnapshot(params: Redshift.Types.DeleteClusterSnapshotMessage, callback?: (err: AWSError, data: Redshift.Types.DeleteClusterSnapshotResult) => void): Request<Redshift.Types.DeleteClusterSnapshotResult, AWSError>;
    146   /**
    147    * Deletes the specified manual snapshot. The snapshot must be in the available state, with no other users authorized to access the snapshot.  Unlike automated snapshots, manual snapshots are retained even after you delete your cluster. Amazon Redshift does not delete your manual snapshots. You must delete manual snapshot explicitly to avoid getting charged. If other accounts are authorized to access the snapshot, you must revoke all of the authorizations before you can delete the snapshot.
    148    */
    149   deleteClusterSnapshot(callback?: (err: AWSError, data: Redshift.Types.DeleteClusterSnapshotResult) => void): Request<Redshift.Types.DeleteClusterSnapshotResult, AWSError>;
    150   /**
    151    * Deletes the specified cluster subnet group.
    152    */
    153   deleteClusterSubnetGroup(params: Redshift.Types.DeleteClusterSubnetGroupMessage, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    154   /**
    155    * Deletes the specified cluster subnet group.
    156    */
    157   deleteClusterSubnetGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    158   /**
    159    * Deletes an Amazon Redshift event notification subscription.
    160    */
    161   deleteEventSubscription(params: Redshift.Types.DeleteEventSubscriptionMessage, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    162   /**
    163    * Deletes an Amazon Redshift event notification subscription.
    164    */
    165   deleteEventSubscription(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    166   /**
    167    * Deletes the specified HSM client certificate.
    168    */
    169   deleteHsmClientCertificate(params: Redshift.Types.DeleteHsmClientCertificateMessage, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    170   /**
    171    * Deletes the specified HSM client certificate.
    172    */
    173   deleteHsmClientCertificate(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    174   /**
    175    * Deletes the specified Amazon Redshift HSM configuration.
    176    */
    177   deleteHsmConfiguration(params: Redshift.Types.DeleteHsmConfigurationMessage, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    178   /**
    179    * Deletes the specified Amazon Redshift HSM configuration.
    180    */
    181   deleteHsmConfiguration(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    182   /**
    183    * Deletes the specified snapshot copy grant.
    184    */
    185   deleteSnapshotCopyGrant(params: Redshift.Types.DeleteSnapshotCopyGrantMessage, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    186   /**
    187    * Deletes the specified snapshot copy grant.
    188    */
    189   deleteSnapshotCopyGrant(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    190   /**
    191    * Deletes a tag or tags from a resource. You must provide the ARN of the resource from which you want to delete the tag or tags.
    192    */
    193   deleteTags(params: Redshift.Types.DeleteTagsMessage, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    194   /**
    195    * Deletes a tag or tags from a resource. You must provide the ARN of the resource from which you want to delete the tag or tags.
    196    */
    197   deleteTags(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
    198   /**
    199    * Returns a list of Amazon Redshift parameter groups, including parameter groups you created and the default parameter group. For each parameter group, the response includes the parameter group name, description, and parameter group family name. You can optionally specify a name to retrieve the description of a specific parameter group.  For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide. If you specify both tag keys and tag values in the same request, Amazon Redshift returns all parameter groups 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 parameter groups that have any combination of those values are returned. If both tag keys and values are omitted from the request, parameter groups are returned regardless of whether they have tag keys or values associated with them.
    200    */
    201   describeClusterParameterGroups(params: Redshift.Types.DescribeClusterParameterGroupsMessage, callback?: (err: AWSError, data: Redshift.Types.ClusterParameterGroupsMessage) => void): Request<Redshift.Types.ClusterParameterGroupsMessage, AWSError>;
    202   /**
    203    * Returns a list of Amazon Redshift parameter groups, including parameter groups you created and the default parameter group. For each parameter group, the response includes the parameter group name, description, and parameter group family name. You can optionally specify a name to retrieve the description of a specific parameter group.  For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide. If you specify both tag keys and tag values in the same request, Amazon Redshift returns all parameter groups 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 parameter groups that have any combination of those values are returned. If both tag keys and values are omitted from the request, parameter groups are returned regardless of whether they have tag keys or values associated with them.
    204    */
    205   describeClusterParameterGroups(callback?: (err: AWSError, data: Redshift.Types.ClusterParameterGroupsMessage) => void): Request<Redshift.Types.ClusterParameterGroupsMessage, AWSError>;
    206   /**
    207    * Returns a detailed list of parameters contained within the specified Amazon Redshift parameter group. For each parameter the response includes information such as parameter name, description, data type, value, whether the parameter value is modifiable, and so on. You can specify source filter to retrieve parameters of only specific type. For example, to retrieve parameters that were modified by a user action such as from ModifyClusterParameterGroup, you can specify source equal to user.  For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
    208    */
    209   describeClusterParameters(params: Redshift.Types.DescribeClusterParametersMessage, callback?: (err: AWSError, data: Redshift.Types.ClusterParameterGroupDetails) => void): Request<Redshift.Types.ClusterParameterGroupDetails, AWSError>;
    210   /**
    211    * Returns a detailed list of parameters contained within the specified Amazon Redshift parameter group. For each parameter the response includes information such as parameter name, description, data type, value, whether the parameter value is modifiable, and so on. You can specify source filter to retrieve parameters of only specific type. For example, to retrieve parameters that were modified by a user action such as from ModifyClusterParameterGroup, you can specify source equal to user.  For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
    212    */
    213   describeClusterParameters(callback?: (err: AWSError, data: Redshift.Types.ClusterParameterGroupDetails) => void): Request<Redshift.Types.ClusterParameterGroupDetails, AWSError>;
    214   /**
    215    * Returns information about Amazon Redshift security groups. If the name of a security group is specified, the response will contain only information about only that security group.  For information about managing security groups, go to Amazon Redshift Cluster Security Groups in the Amazon Redshift Cluster Management Guide. If you specify both tag keys and tag values in the same request, Amazon Redshift returns all security groups 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 security groups that have any combination of those values are returned. If both tag keys and values are omitted from the request, security groups are returned regardless of whether they have tag keys or values associated with them.
    216    */
    217   describeClusterSecurityGroups(params: Redshift.Types.DescribeClusterSecurityGroupsMessage, callback?: (err: AWSError, data: Redshift.Types.ClusterSecurityGroupMessage) => void): Request<Redshift.Types.ClusterSecurityGroupMessage, AWSError>;
    218   /**
    219    * Returns information about Amazon Redshift security groups. If the name of a security group is specified, the response will contain only information about only that security group.  For information about managing security groups, go to Amazon Redshift Cluster Security Groups in the Amazon Redshift Cluster Management Guide. If you specify both tag keys and tag values in the same request, Amazon Redshift returns all security groups 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 security groups that have any combination of those values are returned. If both tag keys and values are omitted from the request, security groups are returned regardless of whether they have tag keys or values associated with them.
    220    */
    221   describeClusterSecurityGroups(callback?: (err: AWSError, data: Redshift.Types.ClusterSecurityGroupMessage) => void): Request<Redshift.Types.ClusterSecurityGroupMessage, AWSError>;
    222   /**
    223    * Returns one or more snapshot objects, which contain metadata about your cluster snapshots. By default, this operation returns information about all snapshots of all clusters that are owned by you AWS customer account. No information is returned for snapshots owned by inactive AWS customer accounts. If you specify both tag keys and tag values in the same request, Amazon Redshift returns all snapshots 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 snapshots that have any combination of those values are returned. Only snapshots that you own are returned in the response; shared snapshots are not returned with the tag key and tag value request parameters. If both tag keys and values are omitted from the request, snapshots are returned regardless of whether they have tag keys or values associated with them.
    224    */
    225   describeClusterSnapshots(params: Redshift.Types.DescribeClusterSnapshotsMessage, callback?: (err: AWSError, data: Redshift.Types.SnapshotMessage) => void): Request<Redshift.Types.SnapshotMessage, AWSError>;
    226   /**
    227    * Returns one or more snapshot objects, which contain metadata about your cluster snapshots. By default, this operation returns information about all snapshots of all clusters that are owned by you AWS customer account. No information is returned for snapshots owned by inactive AWS customer accounts. If you specify both tag keys and tag values in the same request, Amazon Redshift returns all snapshots 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 snapshots that have any combination of those values are returned. Only snapshots that you own are returned in the response; shared snapshots are not returned with the tag key and tag value request parameters. If both tag keys and values are omitted from the request, snapshots are returned regardless of whether they have tag keys or values associated with them.
    228    */
    229   describeClusterSnapshots(callback?: (err: AWSError, data: Redshift.Types.SnapshotMessage) => void): Request<Redshift.Types.SnapshotMessage, AWSError>;
    230   /**
    231    * Returns one or more cluster subnet group objects, which contain metadata about your cluster subnet groups. By default, this operation returns information about all cluster subnet groups that are defined in you AWS account. If you specify both tag keys and tag values in the same request, Amazon Redshift returns all subnet groups 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 subnet groups that have any combination of those values are returned. If both tag keys and values are omitted from the request, subnet groups are returned regardless of whether they have tag keys or values associated with them.
    232    */
    233   describeClusterSubnetGroups(params: Redshift.Types.DescribeClusterSubnetGroupsMessage, callback?: (err: AWSError, data: Redshift.Types.ClusterSubnetGroupMessage) => void): Request<Redshift.Types.ClusterSubnetGroupMessage, AWSError>;
    234   /**
    235    * Returns one or more cluster subnet group objects, which contain metadata about your cluster subnet groups. By default, this operation returns information about all cluster subnet groups that are defined in you AWS account. If you specify both tag keys and tag values in the same request, Amazon Redshift returns all subnet groups 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 subnet groups that have any combination of those values are returned. If both tag keys and values are omitted from the request, subnet groups are returned regardless of whether they have tag keys or values associated with them.
    236    */
    237   describeClusterSubnetGroups(callback?: (err: AWSError, data: Redshift.Types.ClusterSubnetGroupMessage) => void): Request<Redshift.Types.ClusterSubnetGroupMessage, AWSError>;
    238   /**
    239    * Returns descriptions of the available Amazon Redshift cluster versions. You can call this operation even before creating any clusters to learn more about the Amazon Redshift versions. For more information about managing clusters, go to Amazon Redshift Clusters in the Amazon Redshift Cluster Management Guide.
    240    */
    241   describeClusterVersions(params: Redshift.Types.DescribeClusterVersionsMessage, callback?: (err: AWSError, data: Redshift.Types.ClusterVersionsMessage) => void): Request<Redshift.Types.ClusterVersionsMessage, AWSError>;
    242   /**
    243    * Returns descriptions of the available Amazon Redshift cluster versions. You can call this operation even before creating any clusters to learn more about the Amazon Redshift versions. For more information about managing clusters, go to Amazon Redshift Clusters in the Amazon Redshift Cluster Management Guide.
    244    */
    245   describeClusterVersions(callback?: (err: AWSError, data: Redshift.Types.ClusterVersionsMessage) => void): Request<Redshift.Types.ClusterVersionsMessage, AWSError>;
    246   /**
    247    * 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.
    248    */
    249   describeClusters(params: Redshift.Types.DescribeClustersMessage, callback?: (err: AWSError, data: Redshift.Types.ClustersMessage) => void): Request<Redshift.Types.ClustersMessage, AWSError>;
    250   /**
    251    * 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.
    252    */
    253   describeClusters(callback?: (err: AWSError, data: Redshift.Types.ClustersMessage) => void): Request<Redshift.Types.ClustersMessage, AWSError>;
    254   /**
    255    * Returns a list of parameter settings for the specified parameter group family.  For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
    256    */
    257   describeDefaultClusterParameters(params: Redshift.Types.DescribeDefaultClusterParametersMessage, callback?: (err: AWSError, data: Redshift.Types.DescribeDefaultClusterParametersResult) => void): Request<Redshift.Types.DescribeDefaultClusterParametersResult, AWSError>;
    258   /**
    259    * Returns a list of parameter settings for the specified parameter group family.  For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
    260    */
    261   describeDefaultClusterParameters(callback?: (err: AWSError, data: Redshift.Types.DescribeDefaultClusterParametersResult) => void): Request<Redshift.Types.DescribeDefaultClusterParametersResult, AWSError>;
    262   /**
    263    * Displays a list of event categories for all event source types, or for a specified source type. For a list of the event categories and source types, go to Amazon Redshift Event Notifications.
    264    */
    265   describeEventCategories(params: Redshift.Types.DescribeEventCategoriesMessage, callback?: (err: AWSError, data: Redshift.Types.EventCategoriesMessage) => void): Request<Redshift.Types.EventCategoriesMessage, AWSError>;
    266   /**
    267    * Displays a list of event categories for all event source types, or for a specified source type. For a list of the event categories and source types, go to Amazon Redshift Event Notifications.
    268    */
    269   describeEventCategories(callback?: (err: AWSError, data: Redshift.Types.EventCategoriesMessage) => void): Request<Redshift.Types.EventCategoriesMessage, AWSError>;
    270   /**
    271    * Lists descriptions of all the Amazon Redshift event notifications subscription for a customer account. If you specify a subscription name, lists the description for that subscription.
    272    */
    273   describeEventSubscriptions(params: Redshift.Types.DescribeEventSubscriptionsMessage, callback?: (err: AWSError, data: Redshift.Types.EventSubscriptionsMessage) => void): Request<Redshift.Types.EventSubscriptionsMessage, AWSError>;
    274   /**
    275    * Lists descriptions of all the Amazon Redshift event notifications subscription for a customer account. If you specify a subscription name, lists the description for that subscription.
    276    */
    277   describeEventSubscriptions(callback?: (err: AWSError, data: Redshift.Types.EventSubscriptionsMessage) => void): Request<Redshift.Types.EventSubscriptionsMessage, AWSError>;
    278   /**
    279    * Returns events related to clusters, security groups, snapshots, and parameter groups for the past 14 days. Events specific to a particular cluster, security group, snapshot or parameter group can be obtained by providing the name as a parameter. By default, the past hour of events are returned.
    280    */
    281   describeEvents(params: Redshift.Types.DescribeEventsMessage, callback?: (err: AWSError, data: Redshift.Types.EventsMessage) => void): Request<Redshift.Types.EventsMessage, AWSError>;
    282   /**
    283    * Returns events related to clusters, security groups, snapshots, and parameter groups for the past 14 days. Events specific to a particular cluster, security group, snapshot or parameter group can be obtained by providing the name as a parameter. By default, the past hour of events are returned.
    284    */
    285   describeEvents(callback?: (err: AWSError, data: Redshift.Types.EventsMessage) => void): Request<Redshift.Types.EventsMessage, AWSError>;
    286   /**
    287    * Returns information about the specified HSM client certificate. If no certificate ID is specified, returns information about all the HSM certificates owned by your AWS customer account. If you specify both tag keys and tag values in the same request, Amazon Redshift returns all HSM client certificates 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 HSM client certificates that have any combination of those values are returned. If both tag keys and values are omitted from the request, HSM client certificates are returned regardless of whether they have tag keys or values associated with them.
    288    */
    289   describeHsmClientCertificates(params: Redshift.Types.DescribeHsmClientCertificatesMessage, callback?: (err: AWSError, data: Redshift.Types.HsmClientCertificateMessage) => void): Request<Redshift.Types.HsmClientCertificateMessage, AWSError>;
    290   /**
    291    * Returns information about the specified HSM client certificate. If no certificate ID is specified, returns information about all the HSM certificates owned by your AWS customer account. If you specify both tag keys and tag values in the same request, Amazon Redshift returns all HSM client certificates 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 HSM client certificates that have any combination of those values are returned. If both tag keys and values are omitted from the request, HSM client certificates are returned regardless of whether they have tag keys or values associated with them.
    292    */
    293   describeHsmClientCertificates(callback?: (err: AWSError, data: Redshift.Types.HsmClientCertificateMessage) => void): Request<Redshift.Types.HsmClientCertificateMessage, AWSError>;
    294   /**
    295    * Returns information about the specified Amazon Redshift HSM configuration. If no configuration ID is specified, returns information about all the HSM configurations owned by your AWS customer account. If you specify both tag keys and tag values in the same request, Amazon Redshift returns all HSM connections 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 HSM connections that have any combination of those values are returned. If both tag keys and values are omitted from the request, HSM connections are returned regardless of whether they have tag keys or values associated with them.
    296    */
    297   describeHsmConfigurations(params: Redshift.Types.DescribeHsmConfigurationsMessage, callback?: (err: AWSError, data: Redshift.Types.HsmConfigurationMessage) => void): Request<Redshift.Types.HsmConfigurationMessage, AWSError>;
    298   /**
    299    * Returns information about the specified Amazon Redshift HSM configuration. If no configuration ID is specified, returns information about all the HSM configurations owned by your AWS customer account. If you specify both tag keys and tag values in the same request, Amazon Redshift returns all HSM connections 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 HSM connections that have any combination of those values are returned. If both tag keys and values are omitted from the request, HSM connections are returned regardless of whether they have tag keys or values associated with them.
    300    */
    301   describeHsmConfigurations(callback?: (err: AWSError, data: Redshift.Types.HsmConfigurationMessage) => void): Request<Redshift.Types.HsmConfigurationMessage, AWSError>;
    302   /**
    303    * Describes whether information, such as queries and connection attempts, is being logged for the specified Amazon Redshift cluster.
    304    */
    305   describeLoggingStatus(params: Redshift.Types.DescribeLoggingStatusMessage, callback?: (err: AWSError, data: Redshift.Types.LoggingStatus) => void): Request<Redshift.Types.LoggingStatus, AWSError>;
    306   /**
    307    * Describes whether information, such as queries and connection attempts, is being logged for the specified Amazon Redshift cluster.
    308    */
    309   describeLoggingStatus(callback?: (err: AWSError, data: Redshift.Types.LoggingStatus) => void): Request<Redshift.Types.LoggingStatus, AWSError>;
    310   /**
    311    * Returns a list of orderable cluster options. Before you create a new cluster you can use this operation to find what options are available, such as the EC2 Availability Zones (AZ) in the specific AWS region that you can specify, and the node types you can request. The node types differ by available storage, memory, CPU and price. With the cost involved you might want to obtain a list of cluster options in the specific region and specify values when creating a cluster. For more information about managing clusters, go to Amazon Redshift Clusters in the Amazon Redshift Cluster Management Guide.
    312    */
    313   describeOrderableClusterOptions(params: Redshift.Types.DescribeOrderableClusterOptionsMessage, callback?: (err: AWSError, data: Redshift.Types.OrderableClusterOptionsMessage) => void): Request<Redshift.Types.OrderableClusterOptionsMessage, AWSError>;
    314   /**
    315    * Returns a list of orderable cluster options. Before you create a new cluster you can use this operation to find what options are available, such as the EC2 Availability Zones (AZ) in the specific AWS region that you can specify, and the node types you can request. The node types differ by available storage, memory, CPU and price. With the cost involved you might want to obtain a list of cluster options in the specific region and specify values when creating a cluster. For more information about managing clusters, go to Amazon Redshift Clusters in the Amazon Redshift Cluster Management Guide.
    316    */
    317   describeOrderableClusterOptions(callback?: (err: AWSError, data: Redshift.Types.OrderableClusterOptionsMessage) => void): Request<Redshift.Types.OrderableClusterOptionsMessage, AWSError>;
    318   /**
    319    * Returns a list of the available reserved node offerings by Amazon Redshift with their descriptions including the node type, the fixed and recurring costs of reserving the node and duration the node will be reserved for you. These descriptions help you determine which reserve node offering you want to purchase. You then use the unique offering ID in you call to PurchaseReservedNodeOffering to reserve one or more nodes for your Amazon Redshift cluster.   For more information about reserved node offerings, go to Purchasing Reserved Nodes in the Amazon Redshift Cluster Management Guide.
    320    */
    321   describeReservedNodeOfferings(params: Redshift.Types.DescribeReservedNodeOfferingsMessage, callback?: (err: AWSError, data: Redshift.Types.ReservedNodeOfferingsMessage) => void): Request<Redshift.Types.ReservedNodeOfferingsMessage, AWSError>;
    322   /**
    323    * Returns a list of the available reserved node offerings by Amazon Redshift with their descriptions including the node type, the fixed and recurring costs of reserving the node and duration the node will be reserved for you. These descriptions help you determine which reserve node offering you want to purchase. You then use the unique offering ID in you call to PurchaseReservedNodeOffering to reserve one or more nodes for your Amazon Redshift cluster.   For more information about reserved node offerings, go to Purchasing Reserved Nodes in the Amazon Redshift Cluster Management Guide.
    324    */
    325   describeReservedNodeOfferings(callback?: (err: AWSError, data: Redshift.Types.ReservedNodeOfferingsMessage) => void): Request<Redshift.Types.ReservedNodeOfferingsMessage, AWSError>;
    326   /**
    327    * Returns the descriptions of the reserved nodes.
    328    */
    329   describeReservedNodes(params: Redshift.Types.DescribeReservedNodesMessage, callback?: (err: AWSError, data: Redshift.Types.ReservedNodesMessage) => void): Request<Redshift.Types.ReservedNodesMessage, AWSError>;
    330   /**
    331    * Returns the descriptions of the reserved nodes.
    332    */
    333   describeReservedNodes(callback?: (err: AWSError, data: Redshift.Types.ReservedNodesMessage) => void): Request<Redshift.Types.ReservedNodesMessage, AWSError>;
    334   /**
    335    * Returns information about the last resize operation for the specified cluster. If no resize operation has ever been initiated for the specified cluster, a HTTP 404 error is returned. If a resize operation was initiated and completed, the status of the resize remains as SUCCEEDED until the next resize.  A resize operation can be requested using ModifyCluster and specifying a different number or type of nodes for the cluster. 
    336    */
    337   describeResize(params: Redshift.Types.DescribeResizeMessage, callback?: (err: AWSError, data: Redshift.Types.ResizeProgressMessage) => void): Request<Redshift.Types.ResizeProgressMessage, AWSError>;
    338   /**
    339    * Returns information about the last resize operation for the specified cluster. If no resize operation has ever been initiated for the specified cluster, a HTTP 404 error is returned. If a resize operation was initiated and completed, the status of the resize remains as SUCCEEDED until the next resize.  A resize operation can be requested using ModifyCluster and specifying a different number or type of nodes for the cluster. 
    340    */
    341   describeResize(callback?: (err: AWSError, data: Redshift.Types.ResizeProgressMessage) => void): Request<Redshift.Types.ResizeProgressMessage, AWSError>;
    342   /**
    343    * Returns a list of snapshot copy grants owned by the AWS account in the destination region.  For more information about managing snapshot copy grants, go to Amazon Redshift Database Encryption in the Amazon Redshift Cluster Management Guide. 
    344    */
    345   describeSnapshotCopyGrants(params: Redshift.Types.DescribeSnapshotCopyGrantsMessage, callback?: (err: AWSError, data: Redshift.Types.SnapshotCopyGrantMessage) => void): Request<Redshift.Types.SnapshotCopyGrantMessage, AWSError>;
    346   /**
    347    * Returns a list of snapshot copy grants owned by the AWS account in the destination region.  For more information about managing snapshot copy grants, go to Amazon Redshift Database Encryption in the Amazon Redshift Cluster Management Guide. 
    348    */
    349   describeSnapshotCopyGrants(callback?: (err: AWSError, data: Redshift.Types.SnapshotCopyGrantMessage) => void): Request<Redshift.Types.SnapshotCopyGrantMessage, AWSError>;
    350   /**
    351    * Lists the status of one or more table restore requests made using the RestoreTableFromClusterSnapshot API action. If you don't specify a value for the TableRestoreRequestId parameter, then DescribeTableRestoreStatus returns the status of all table restore requests ordered by the date and time of the request in ascending order. Otherwise DescribeTableRestoreStatus returns the status of the table specified by TableRestoreRequestId.
    352    */
    353   describeTableRestoreStatus(params: Redshift.Types.DescribeTableRestoreStatusMessage, callback?: (err: AWSError, data: Redshift.Types.TableRestoreStatusMessage) => void): Request<Redshift.Types.TableRestoreStatusMessage, AWSError>;
    354   /**
    355    * Lists the status of one or more table restore requests made using the RestoreTableFromClusterSnapshot API action. If you don't specify a value for the TableRestoreRequestId parameter, then DescribeTableRestoreStatus returns the status of all table restore requests ordered by the date and time of the request in ascending order. Otherwise DescribeTableRestoreStatus returns the status of the table specified by TableRestoreRequestId.
    356    */
    357   describeTableRestoreStatus(callback?: (err: AWSError, data: Redshift.Types.TableRestoreStatusMessage) => void): Request<Redshift.Types.TableRestoreStatusMessage, AWSError>;
    358   /**
    359    * Returns a list of tags. You can return tags from a specific resource by specifying an ARN, or you can return all tags for a given type of resource, such as clusters, snapshots, and so on. The following are limitations for DescribeTags:    You cannot specify an ARN and a resource-type value together in the same request.   You cannot use the MaxRecords and Marker parameters together with the ARN parameter.   The MaxRecords parameter can be a range from 10 to 50 results to return in a request.   If you specify both tag keys and tag values in the same request, Amazon Redshift returns all resources 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 resources that have any combination of those values are returned. If both tag keys and values are omitted from the request, resources are returned regardless of whether they have tag keys or values associated with them.
    360    */
    361   describeTags(params: Redshift.Types.DescribeTagsMessage, callback?: (err: AWSError, data: Redshift.Types.TaggedResourceListMessage) => void): Request<Redshift.Types.TaggedResourceListMessage, AWSError>;
    362   /**
    363    * Returns a list of tags. You can return tags from a specific resource by specifying an ARN, or you can return all tags for a given type of resource, such as clusters, snapshots, and so on. The following are limitations for DescribeTags:    You cannot specify an ARN and a resource-type value together in the same request.   You cannot use the MaxRecords and Marker parameters together with the ARN parameter.   The MaxRecords parameter can be a range from 10 to 50 results to return in a request.   If you specify both tag keys and tag values in the same request, Amazon Redshift returns all resources 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 resources that have any combination of those values are returned. If both tag keys and values are omitted from the request, resources are returned regardless of whether they have tag keys or values associated with them.
    364    */
    365   describeTags(callback?: (err: AWSError, data: Redshift.Types.TaggedResourceListMessage) => void): Request<Redshift.Types.TaggedResourceListMessage, AWSError>;
    366   /**
    367    * Stops logging information, such as queries and connection attempts, for the specified Amazon Redshift cluster.
    368    */
    369   disableLogging(params: Redshift.Types.DisableLoggingMessage, callback?: (err: AWSError, data: Redshift.Types.LoggingStatus) => void): Request<Redshift.Types.LoggingStatus, AWSError>;
    370   /**
    371    * Stops logging information, such as queries and connection attempts, for the specified Amazon Redshift cluster.
    372    */
    373   disableLogging(callback?: (err: AWSError, data: Redshift.Types.LoggingStatus) => void): Request<Redshift.Types.LoggingStatus, AWSError>;
    374   /**
    375    * 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 AWS KMS, use DeleteSnapshotCopyGrant to delete the grant that grants Amazon Redshift permission to the CMK in the destination region. 
    376    */
    377   disableSnapshotCopy(params: Redshift.Types.DisableSnapshotCopyMessage, callback?: (err: AWSError, data: Redshift.Types.DisableSnapshotCopyResult) => void): Request<Redshift.Types.DisableSnapshotCopyResult, AWSError>;
    378   /**
    379    * 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 AWS KMS, use DeleteSnapshotCopyGrant to delete the grant that grants Amazon Redshift permission to the CMK in the destination region. 
    380    */
    381   disableSnapshotCopy(callback?: (err: AWSError, data: Redshift.Types.DisableSnapshotCopyResult) => void): Request<Redshift.Types.DisableSnapshotCopyResult, AWSError>;
    382   /**
    383    * Starts logging information, such as queries and connection attempts, for the specified Amazon Redshift cluster.
    384    */
    385   enableLogging(params: Redshift.Types.EnableLoggingMessage, callback?: (err: AWSError, data: Redshift.Types.LoggingStatus) => void): Request<Redshift.Types.LoggingStatus, AWSError>;
    386   /**
    387    * Starts logging information, such as queries and connection attempts, for the specified Amazon Redshift cluster.
    388    */
    389   enableLogging(callback?: (err: AWSError, data: Redshift.Types.LoggingStatus) => void): Request<Redshift.Types.LoggingStatus, AWSError>;
    390   /**
    391    * Enables the automatic copy of snapshots from one region to another region for a specified cluster.
    392    */
    393   enableSnapshotCopy(params: Redshift.Types.EnableSnapshotCopyMessage, callback?: (err: AWSError, data: Redshift.Types.EnableSnapshotCopyResult) => void): Request<Redshift.Types.EnableSnapshotCopyResult, AWSError>;
    394   /**
    395    * Enables the automatic copy of snapshots from one region to another region for a specified cluster.
    396    */
    397   enableSnapshotCopy(callback?: (err: AWSError, data: Redshift.Types.EnableSnapshotCopyResult) => void): Request<Redshift.Types.EnableSnapshotCopyResult, AWSError>;
    398   /**
    399    * Modifies the settings for a cluster. For example, you can add another security or parameter group, update the preferred maintenance window, or change the master 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. 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.
    400    */
    401   modifyCluster(params: Redshift.Types.ModifyClusterMessage, callback?: (err: AWSError, data: Redshift.Types.ModifyClusterResult) => void): Request<Redshift.Types.ModifyClusterResult, AWSError>;
    402   /**
    403    * Modifies the settings for a cluster. For example, you can add another security or parameter group, update the preferred maintenance window, or change the master 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. 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.
    404    */
    405   modifyCluster(callback?: (err: AWSError, data: Redshift.Types.ModifyClusterResult) => void): Request<Redshift.Types.ModifyClusterResult, AWSError>;
    406   /**
    407    * Modifies the list of AWS Identity and Access Management (IAM) roles that can be used by the cluster to access other AWS services. A cluster can have up to 10 IAM roles associated at any time.
    408    */
    409   modifyClusterIamRoles(params: Redshift.Types.ModifyClusterIamRolesMessage, callback?: (err: AWSError, data: Redshift.Types.ModifyClusterIamRolesResult) => void): Request<Redshift.Types.ModifyClusterIamRolesResult, AWSError>;
    410   /**
    411    * Modifies the list of AWS Identity and Access Management (IAM) roles that can be used by the cluster to access other AWS services. A cluster can have up to 10 IAM roles associated at any time.
    412    */
    413   modifyClusterIamRoles(callback?: (err: AWSError, data: Redshift.Types.ModifyClusterIamRolesResult) => void): Request<Redshift.Types.ModifyClusterIamRolesResult, AWSError>;
    414   /**
    415    * Modifies the parameters of a parameter group.  For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
    416    */
    417   modifyClusterParameterGroup(params: Redshift.Types.ModifyClusterParameterGroupMessage, callback?: (err: AWSError, data: Redshift.Types.ClusterParameterGroupNameMessage) => void): Request<Redshift.Types.ClusterParameterGroupNameMessage, AWSError>;
    418   /**
    419    * Modifies the parameters of a parameter group.  For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
    420    */
    421   modifyClusterParameterGroup(callback?: (err: AWSError, data: Redshift.Types.ClusterParameterGroupNameMessage) => void): Request<Redshift.Types.ClusterParameterGroupNameMessage, AWSError>;
    422   /**
    423    * Modifies a cluster subnet group to include the specified list of VPC subnets. The operation replaces the existing list of subnets with the new list of subnets.
    424    */
    425   modifyClusterSubnetGroup(params: Redshift.Types.ModifyClusterSubnetGroupMessage, callback?: (err: AWSError, data: Redshift.Types.ModifyClusterSubnetGroupResult) => void): Request<Redshift.Types.ModifyClusterSubnetGroupResult, AWSError>;
    426   /**
    427    * Modifies a cluster subnet group to include the specified list of VPC subnets. The operation replaces the existing list of subnets with the new list of subnets.
    428    */
    429   modifyClusterSubnetGroup(callback?: (err: AWSError, data: Redshift.Types.ModifyClusterSubnetGroupResult) => void): Request<Redshift.Types.ModifyClusterSubnetGroupResult, AWSError>;
    430   /**
    431    * Modifies an existing Amazon Redshift event notification subscription.
    432    */
    433   modifyEventSubscription(params: Redshift.Types.ModifyEventSubscriptionMessage, callback?: (err: AWSError, data: Redshift.Types.ModifyEventSubscriptionResult) => void): Request<Redshift.Types.ModifyEventSubscriptionResult, AWSError>;
    434   /**
    435    * Modifies an existing Amazon Redshift event notification subscription.
    436    */
    437   modifyEventSubscription(callback?: (err: AWSError, data: Redshift.Types.ModifyEventSubscriptionResult) => void): Request<Redshift.Types.ModifyEventSubscriptionResult, AWSError>;
    438   /**
    439    * Modifies the number of days to retain automated snapshots in the destination region after they are copied from the source region.
    440    */
    441   modifySnapshotCopyRetentionPeriod(params: Redshift.Types.ModifySnapshotCopyRetentionPeriodMessage, callback?: (err: AWSError, data: Redshift.Types.ModifySnapshotCopyRetentionPeriodResult) => void): Request<Redshift.Types.ModifySnapshotCopyRetentionPeriodResult, AWSError>;
    442   /**
    443    * Modifies the number of days to retain automated snapshots in the destination region after they are copied from the source region.
    444    */
    445   modifySnapshotCopyRetentionPeriod(callback?: (err: AWSError, data: Redshift.Types.ModifySnapshotCopyRetentionPeriodResult) => void): Request<Redshift.Types.ModifySnapshotCopyRetentionPeriodResult, AWSError>;
    446   /**
    447    * Allows you to purchase reserved nodes. Amazon Redshift offers a predefined set of reserved node offerings. You can purchase one or more of the offerings. You can call the DescribeReservedNodeOfferings API to obtain the available reserved node offerings. You can call this API by providing a specific reserved node offering and the number of nodes you want to reserve.   For more information about reserved node offerings, go to Purchasing Reserved Nodes in the Amazon Redshift Cluster Management Guide.
    448    */
    449   purchaseReservedNodeOffering(params: Redshift.Types.PurchaseReservedNodeOfferingMessage, callback?: (err: AWSError, data: Redshift.Types.PurchaseReservedNodeOfferingResult) => void): Request<Redshift.Types.PurchaseReservedNodeOfferingResult, AWSError>;
    450   /**
    451    * Allows you to purchase reserved nodes. Amazon Redshift offers a predefined set of reserved node offerings. You can purchase one or more of the offerings. You can call the DescribeReservedNodeOfferings API to obtain the available reserved node offerings. You can call this API by providing a specific reserved node offering and the number of nodes you want to reserve.   For more information about reserved node offerings, go to Purchasing Reserved Nodes in the Amazon Redshift Cluster Management Guide.
    452    */
    453   purchaseReservedNodeOffering(callback?: (err: AWSError, data: Redshift.Types.PurchaseReservedNodeOfferingResult) => void): Request<Redshift.Types.PurchaseReservedNodeOfferingResult, AWSError>;
    454   /**
    455    * 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. 
    456    */
    457   rebootCluster(params: Redshift.Types.RebootClusterMessage, callback?: (err: AWSError, data: Redshift.Types.RebootClusterResult) => void): Request<Redshift.Types.RebootClusterResult, AWSError>;
    458   /**
    459    * 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. 
    460    */
    461   rebootCluster(callback?: (err: AWSError, data: Redshift.Types.RebootClusterResult) => void): Request<Redshift.Types.RebootClusterResult, AWSError>;
    462   /**
    463    * Sets one or more parameters of the specified parameter group to their default values and sets the source values of the parameters to "engine-default". To reset the entire parameter group specify the ResetAllParameters parameter. For parameter changes to take effect you must reboot any associated clusters. 
    464    */
    465   resetClusterParameterGroup(params: Redshift.Types.ResetClusterParameterGroupMessage, callback?: (err: AWSError, data: Redshift.Types.ClusterParameterGroupNameMessage) => void): Request<Redshift.Types.ClusterParameterGroupNameMessage, AWSError>;
    466   /**
    467    * Sets one or more parameters of the specified parameter group to their default values and sets the source values of the parameters to "engine-default". To reset the entire parameter group specify the ResetAllParameters parameter. For parameter changes to take effect you must reboot any associated clusters. 
    468    */
    469   resetClusterParameterGroup(callback?: (err: AWSError, data: Redshift.Types.ClusterParameterGroupNameMessage) => void): Request<Redshift.Types.ClusterParameterGroupNameMessage, AWSError>;
    470   /**
    471    * 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.
    472    */
    473   restoreFromClusterSnapshot(params: Redshift.Types.RestoreFromClusterSnapshotMessage, callback?: (err: AWSError, data: Redshift.Types.RestoreFromClusterSnapshotResult) => void): Request<Redshift.Types.RestoreFromClusterSnapshotResult, AWSError>;
    474   /**
    475    * 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.
    476    */
    477   restoreFromClusterSnapshot(callback?: (err: AWSError, data: Redshift.Types.RestoreFromClusterSnapshotResult) => void): Request<Redshift.Types.RestoreFromClusterSnapshotResult, AWSError>;
    478   /**
    479    * Creates a new table from a table in an Amazon Redshift cluster snapshot. You must create the new table within the Amazon Redshift cluster that the snapshot was taken from. You cannot use RestoreTableFromClusterSnapshot to restore a table with the same name as an existing table in an Amazon Redshift cluster. That is, you cannot overwrite an existing table in a cluster with a restored table. If you want to replace your original table with a new, restored table, then rename or drop your original table before you call RestoreTableFromClusterSnapshot. When you have renamed your original table, then you can pass the original name of the table as the NewTableName parameter value in the call to RestoreTableFromClusterSnapshot. This way, you can replace the original table with the table created from the snapshot.
    480    */
    481   restoreTableFromClusterSnapshot(params: Redshift.Types.RestoreTableFromClusterSnapshotMessage, callback?: (err: AWSError, data: Redshift.Types.RestoreTableFromClusterSnapshotResult) => void): Request<Redshift.Types.RestoreTableFromClusterSnapshotResult, AWSError>;
    482   /**
    483    * Creates a new table from a table in an Amazon Redshift cluster snapshot. You must create the new table within the Amazon Redshift cluster that the snapshot was taken from. You cannot use RestoreTableFromClusterSnapshot to restore a table with the same name as an existing table in an Amazon Redshift cluster. That is, you cannot overwrite an existing table in a cluster with a restored table. If you want to replace your original table with a new, restored table, then rename or drop your original table before you call RestoreTableFromClusterSnapshot. When you have renamed your original table, then you can pass the original name of the table as the NewTableName parameter value in the call to RestoreTableFromClusterSnapshot. This way, you can replace the original table with the table created from the snapshot.
    484    */
    485   restoreTableFromClusterSnapshot(callback?: (err: AWSError, data: Redshift.Types.RestoreTableFromClusterSnapshotResult) => void): Request<Redshift.Types.RestoreTableFromClusterSnapshotResult, AWSError>;
    486   /**
    487    * Revokes an ingress rule in an Amazon Redshift security group for a previously authorized IP range or Amazon EC2 security group. To add an ingress rule, see AuthorizeClusterSecurityGroupIngress. For information about managing security groups, go to Amazon Redshift Cluster Security Groups in the Amazon Redshift Cluster Management Guide. 
    488    */
    489   revokeClusterSecurityGroupIngress(params: Redshift.Types.RevokeClusterSecurityGroupIngressMessage, callback?: (err: AWSError, data: Redshift.Types.RevokeClusterSecurityGroupIngressResult) => void): Request<Redshift.Types.RevokeClusterSecurityGroupIngressResult, AWSError>;
    490   /**
    491    * Revokes an ingress rule in an Amazon Redshift security group for a previously authorized IP range or Amazon EC2 security group. To add an ingress rule, see AuthorizeClusterSecurityGroupIngress. For information about managing security groups, go to Amazon Redshift Cluster Security Groups in the Amazon Redshift Cluster Management Guide. 
    492    */
    493   revokeClusterSecurityGroupIngress(callback?: (err: AWSError, data: Redshift.Types.RevokeClusterSecurityGroupIngressResult) => void): Request<Redshift.Types.RevokeClusterSecurityGroupIngressResult, AWSError>;
    494   /**
    495    * Removes the ability of the specified AWS customer account to restore the specified snapshot. If the account is currently restoring the snapshot, the restore will run to completion.  For more information about working with snapshots, go to Amazon Redshift Snapshots in the Amazon Redshift Cluster Management Guide.
    496    */
    497   revokeSnapshotAccess(params: Redshift.Types.RevokeSnapshotAccessMessage, callback?: (err: AWSError, data: Redshift.Types.RevokeSnapshotAccessResult) => void): Request<Redshift.Types.RevokeSnapshotAccessResult, AWSError>;
    498   /**
    499    * Removes the ability of the specified AWS customer account to restore the specified snapshot. If the account is currently restoring the snapshot, the restore will run to completion.  For more information about working with snapshots, go to Amazon Redshift Snapshots in the Amazon Redshift Cluster Management Guide.
    500    */
    501   revokeSnapshotAccess(callback?: (err: AWSError, data: Redshift.Types.RevokeSnapshotAccessResult) => void): Request<Redshift.Types.RevokeSnapshotAccessResult, AWSError>;
    502   /**
    503    * Rotates the encryption keys for a cluster.
    504    */
    505   rotateEncryptionKey(params: Redshift.Types.RotateEncryptionKeyMessage, callback?: (err: AWSError, data: Redshift.Types.RotateEncryptionKeyResult) => void): Request<Redshift.Types.RotateEncryptionKeyResult, AWSError>;
    506   /**
    507    * Rotates the encryption keys for a cluster.
    508    */
    509   rotateEncryptionKey(callback?: (err: AWSError, data: Redshift.Types.RotateEncryptionKeyResult) => void): Request<Redshift.Types.RotateEncryptionKeyResult, AWSError>;
    510   /**
    511    * Waits for the clusterAvailable state by periodically calling the underlying Redshift.describeClustersoperation every 60 seconds (at most 30 times).
    512    */
    513   waitFor(state: "clusterAvailable", params: Redshift.Types.DescribeClustersMessage, callback?: (err: AWSError, data: Redshift.Types.ClustersMessage) => void): Request<Redshift.Types.ClustersMessage, AWSError>;
    514   /**
    515    * Waits for the clusterAvailable state by periodically calling the underlying Redshift.describeClustersoperation every 60 seconds (at most 30 times).
    516    */
    517   waitFor(state: "clusterAvailable", callback?: (err: AWSError, data: Redshift.Types.ClustersMessage) => void): Request<Redshift.Types.ClustersMessage, AWSError>;
    518   /**
    519    * Waits for the clusterDeleted state by periodically calling the underlying Redshift.describeClustersoperation every 60 seconds (at most 30 times).
    520    */
    521   waitFor(state: "clusterDeleted", params: Redshift.Types.DescribeClustersMessage, callback?: (err: AWSError, data: Redshift.Types.ClustersMessage) => void): Request<Redshift.Types.ClustersMessage, AWSError>;
    522   /**
    523    * Waits for the clusterDeleted state by periodically calling the underlying Redshift.describeClustersoperation every 60 seconds (at most 30 times).
    524    */
    525   waitFor(state: "clusterDeleted", callback?: (err: AWSError, data: Redshift.Types.ClustersMessage) => void): Request<Redshift.Types.ClustersMessage, AWSError>;
    526   /**
    527    * Waits for the clusterRestored state by periodically calling the underlying Redshift.describeClustersoperation every 60 seconds (at most 30 times).
    528    */
    529   waitFor(state: "clusterRestored", params: Redshift.Types.DescribeClustersMessage, callback?: (err: AWSError, data: Redshift.Types.ClustersMessage) => void): Request<Redshift.Types.ClustersMessage, AWSError>;
    530   /**
    531    * Waits for the clusterRestored state by periodically calling the underlying Redshift.describeClustersoperation every 60 seconds (at most 30 times).
    532    */
    533   waitFor(state: "clusterRestored", callback?: (err: AWSError, data: Redshift.Types.ClustersMessage) => void): Request<Redshift.Types.ClustersMessage, AWSError>;
    534   /**
    535    * Waits for the snapshotAvailable state by periodically calling the underlying Redshift.describeClusterSnapshotsoperation every 15 seconds (at most 20 times).
    536    */
    537   waitFor(state: "snapshotAvailable", params: Redshift.Types.DescribeClusterSnapshotsMessage, callback?: (err: AWSError, data: Redshift.Types.SnapshotMessage) => void): Request<Redshift.Types.SnapshotMessage, AWSError>;
    538   /**
    539    * Waits for the snapshotAvailable state by periodically calling the underlying Redshift.describeClusterSnapshotsoperation every 15 seconds (at most 20 times).
    540    */
    541   waitFor(state: "snapshotAvailable", callback?: (err: AWSError, data: Redshift.Types.SnapshotMessage) => void): Request<Redshift.Types.SnapshotMessage, AWSError>;
    542 }
    543 declare namespace Redshift.Types {
    544   export interface AccountWithRestoreAccess {
    545     /**
    546      * The identifier of an AWS customer account authorized to restore a snapshot.
    547      */
    548     AccountId?: String;
    549   }
    550   export type AccountsWithRestoreAccessList = AccountWithRestoreAccess[];
    551   export interface AuthorizeClusterSecurityGroupIngressMessage {
    552     /**
    553      * The name of the security group to which the ingress rule is added.
    554      */
    555     ClusterSecurityGroupName: String;
    556     /**
    557      * The IP range to be added the Amazon Redshift security group.
    558      */
    559     CIDRIP?: String;
    560     /**
    561      * The EC2 security group to be added the Amazon Redshift security group.
    562      */
    563     EC2SecurityGroupName?: String;
    564     /**
    565      * The AWS account number of the owner of the security group specified by the EC2SecurityGroupName parameter. The AWS Access Key ID is not an acceptable value.  Example: 111122223333 
    566      */
    567     EC2SecurityGroupOwnerId?: String;
    568   }
    569   export interface AuthorizeClusterSecurityGroupIngressResult {
    570     ClusterSecurityGroup?: ClusterSecurityGroup;
    571   }
    572   export interface AuthorizeSnapshotAccessMessage {
    573     /**
    574      * The identifier of the snapshot the account is authorized to restore.
    575      */
    576     SnapshotIdentifier: String;
    577     /**
    578      * The identifier of the cluster the 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.
    579      */
    580     SnapshotClusterIdentifier?: String;
    581     /**
    582      * The identifier of the AWS customer account authorized to restore the specified snapshot.
    583      */
    584     AccountWithRestoreAccess: String;
    585   }
    586   export interface AuthorizeSnapshotAccessResult {
    587     Snapshot?: Snapshot;
    588   }
    589   export interface AvailabilityZone {
    590     /**
    591      * The name of the availability zone.
    592      */
    593     Name?: String;
    594   }
    595   export type AvailabilityZoneList = AvailabilityZone[];
    596   export type Boolean = boolean;
    597   export type BooleanOptional = boolean;
    598   export interface Cluster {
    599     /**
    600      * The unique identifier of the cluster.
    601      */
    602     ClusterIdentifier?: String;
    603     /**
    604      * The node type for the nodes in the cluster.
    605      */
    606     NodeType?: String;
    607     /**
    608      *  The current state of the cluster. Possible values are the following:    available     creating     deleting     final-snapshot     hardware-failure     incompatible-hsm     incompatible-network     incompatible-parameters     incompatible-restore     modifying     rebooting     renaming     resizing     rotating-keys     storage-full     updating-hsm   
    609      */
    610     ClusterStatus?: String;
    611     /**
    612      * The status of a modify operation, if any, initiated for the cluster.
    613      */
    614     ModifyStatus?: String;
    615     /**
    616      * The master user name for the cluster. This name is used to connect to the database that is specified in the DBName parameter. 
    617      */
    618     MasterUsername?: String;
    619     /**
    620      * 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 devdev was created by default. 
    621      */
    622     DBName?: String;
    623     /**
    624      * The connection endpoint.
    625      */
    626     Endpoint?: Endpoint;
    627     /**
    628      * The date and time that the cluster was created.
    629      */
    630     ClusterCreateTime?: TStamp;
    631     /**
    632      * The number of days that automatic cluster snapshots are retained.
    633      */
    634     AutomatedSnapshotRetentionPeriod?: Integer;
    635     /**
    636      * 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. 
    637      */
    638     ClusterSecurityGroups?: ClusterSecurityGroupMembershipList;
    639     /**
    640      * 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.
    641      */
    642     VpcSecurityGroups?: VpcSecurityGroupMembershipList;
    643     /**
    644      * The list of cluster parameter groups that are associated with this cluster. Each parameter group in the list is returned with its status.
    645      */
    646     ClusterParameterGroups?: ClusterParameterGroupStatusList;
    647     /**
    648      * The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.
    649      */
    650     ClusterSubnetGroupName?: String;
    651     /**
    652      * The identifier of the VPC the cluster is in, if the cluster is in a VPC.
    653      */
    654     VpcId?: String;
    655     /**
    656      * The name of the Availability Zone in which the cluster is located.
    657      */
    658     AvailabilityZone?: String;
    659     /**
    660      * The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur.
    661      */
    662     PreferredMaintenanceWindow?: String;
    663     /**
    664      * A value that, if present, indicates that changes to the cluster are pending. Specific pending changes are identified by subelements.
    665      */
    666     PendingModifiedValues?: PendingModifiedValues;
    667     /**
    668      * The version ID of the Amazon Redshift engine that is running on the cluster.
    669      */
    670     ClusterVersion?: String;
    671     /**
    672      * A Boolean value that, if true, indicates that major version upgrades will be applied automatically to the cluster during the maintenance window. 
    673      */
    674     AllowVersionUpgrade?: Boolean;
    675     /**
    676      * The number of compute nodes in the cluster.
    677      */
    678     NumberOfNodes?: Integer;
    679     /**
    680      * A Boolean value that, if true, indicates that the cluster can be accessed from a public network.
    681      */
    682     PubliclyAccessible?: Boolean;
    683     /**
    684      * A Boolean value that, if true, indicates that data in the cluster is encrypted at rest.
    685      */
    686     Encrypted?: Boolean;
    687     /**
    688      * 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.
    689      */
    690     RestoreStatus?: RestoreStatus;
    691     /**
    692      * 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
    693      */
    694     HsmStatus?: HsmStatus;
    695     /**
    696      * A value that returns the destination region and retention period that are configured for cross-region snapshot copy.
    697      */
    698     ClusterSnapshotCopyStatus?: ClusterSnapshotCopyStatus;
    699     /**
    700      * The public key for the cluster.
    701      */
    702     ClusterPublicKey?: String;
    703     /**
    704      * The nodes in the cluster.
    705      */
    706     ClusterNodes?: ClusterNodesList;
    707     /**
    708      * The status of the elastic IP (EIP) address.
    709      */
    710     ElasticIpStatus?: ElasticIpStatus;
    711     /**
    712      * The specific revision number of the database in the cluster.
    713      */
    714     ClusterRevisionNumber?: String;
    715     /**
    716      * The list of tags for the cluster.
    717      */
    718     Tags?: TagList;
    719     /**
    720      * The AWS Key Management Service (AWS KMS) key ID of the encryption key used to encrypt data in the cluster.
    721      */
    722     KmsKeyId?: String;
    723     /**
    724      * 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
    725      */
    726     EnhancedVpcRouting?: Boolean;
    727     /**
    728      * A list of AWS Identity and Access Management (IAM) roles that can be used by the cluster to access other AWS services.
    729      */
    730     IamRoles?: ClusterIamRoleList;
    731   }
    732   export interface ClusterIamRole {
    733     /**
    734      * The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload. 
    735      */
    736     IamRoleArn?: String;
    737     /**
    738      * 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.  
    739      */
    740     ApplyStatus?: String;
    741   }
    742   export type ClusterIamRoleList = ClusterIamRole[];
    743   export type ClusterList = Cluster[];
    744   export interface ClusterNode {
    745     /**
    746      * Whether the node is a leader node or a compute node.
    747      */
    748     NodeRole?: String;
    749     /**
    750      * The private IP address of a node within a cluster.
    751      */
    752     PrivateIPAddress?: String;
    753     /**
    754      * The public IP address of a node within a cluster.
    755      */
    756     PublicIPAddress?: String;
    757   }
    758   export type ClusterNodesList = ClusterNode[];
    759   export interface ClusterParameterGroup {
    760     /**
    761      * The name of the cluster parameter group.
    762      */
    763     ParameterGroupName?: String;
    764     /**
    765      * The name of the cluster parameter group family that this cluster parameter group is compatible with.
    766      */
    767     ParameterGroupFamily?: String;
    768     /**
    769      * The description of the parameter group.
    770      */
    771     Description?: String;
    772     /**
    773      * The list of tags for the cluster parameter group.
    774      */
    775     Tags?: TagList;
    776   }
    777   export interface ClusterParameterGroupDetails {
    778     /**
    779      * A list of Parameter instances. Each instance lists the parameters of one cluster parameter group. 
    780      */
    781     Parameters?: ParametersList;
    782     /**
    783      * 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. 
    784      */
    785     Marker?: String;
    786   }
    787   export interface ClusterParameterGroupNameMessage {
    788     /**
    789      * The name of the cluster parameter group.
    790      */
    791     ParameterGroupName?: String;
    792     /**
    793      * The status of the parameter group. For example, if you made a change to a parameter group name-value pair, then the change could be pending a reboot of an associated cluster.
    794      */
    795     ParameterGroupStatus?: String;
    796   }
    797   export interface ClusterParameterGroupStatus {
    798     /**
    799      * The name of the cluster parameter group.
    800      */
    801     ParameterGroupName?: String;
    802     /**
    803      * The status of parameter updates.
    804      */
    805     ParameterApplyStatus?: String;
    806     /**
    807      * 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.
    808      */
    809     ClusterParameterStatusList?: ClusterParameterStatusList;
    810   }
    811   export type ClusterParameterGroupStatusList = ClusterParameterGroupStatus[];
    812   export interface ClusterParameterGroupsMessage {
    813     /**
    814      * 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. 
    815      */
    816     Marker?: String;
    817     /**
    818      * A list of ClusterParameterGroup instances. Each instance describes one cluster parameter group. 
    819      */
    820     ParameterGroups?: ParameterGroupList;
    821   }
    822   export interface ClusterParameterStatus {
    823     /**
    824      * The name of the parameter.
    825      */
    826     ParameterName?: String;
    827     /**
    828      * 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.  
    829      */
    830     ParameterApplyStatus?: String;
    831     /**
    832      * The error that prevented the parameter from being applied to the database.
    833      */
    834     ParameterApplyErrorDescription?: String;
    835   }
    836   export type ClusterParameterStatusList = ClusterParameterStatus[];
    837   export interface ClusterSecurityGroup {
    838     /**
    839      * The name of the cluster security group to which the operation was applied.
    840      */
    841     ClusterSecurityGroupName?: String;
    842     /**
    843      * A description of the security group.
    844      */
    845     Description?: String;
    846     /**
    847      * A list of EC2 security groups that are permitted to access clusters associated with this cluster security group.
    848      */
    849     EC2SecurityGroups?: EC2SecurityGroupList;
    850     /**
    851      * A list of IP ranges (CIDR blocks) that are permitted to access clusters associated with this cluster security group.
    852      */
    853     IPRanges?: IPRangeList;
    854     /**
    855      * The list of tags for the cluster security group.
    856      */
    857     Tags?: TagList;
    858   }
    859   export interface ClusterSecurityGroupMembership {
    860     /**
    861      * The name of the cluster security group.
    862      */
    863     ClusterSecurityGroupName?: String;
    864     /**
    865      * The status of the cluster security group.
    866      */
    867     Status?: String;
    868   }
    869   export type ClusterSecurityGroupMembershipList = ClusterSecurityGroupMembership[];
    870   export interface ClusterSecurityGroupMessage {
    871     /**
    872      * 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. 
    873      */
    874     Marker?: String;
    875     /**
    876      * A list of ClusterSecurityGroup instances. 
    877      */
    878     ClusterSecurityGroups?: ClusterSecurityGroups;
    879   }
    880   export type ClusterSecurityGroupNameList = String[];
    881   export type ClusterSecurityGroups = ClusterSecurityGroup[];
    882   export interface ClusterSnapshotCopyStatus {
    883     /**
    884      * The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.
    885      */
    886     DestinationRegion?: String;
    887     /**
    888      * The number of days that automated snapshots are retained in the destination region after they are copied from a source region.
    889      */
    890     RetentionPeriod?: Long;
    891     /**
    892      * The name of the snapshot copy grant.
    893      */
    894     SnapshotCopyGrantName?: String;
    895   }
    896   export interface ClusterSubnetGroup {
    897     /**
    898      * The name of the cluster subnet group.
    899      */
    900     ClusterSubnetGroupName?: String;
    901     /**
    902      * The description of the cluster subnet group.
    903      */
    904     Description?: String;
    905     /**
    906      * The VPC ID of the cluster subnet group.
    907      */
    908     VpcId?: String;
    909     /**
    910      * The status of the cluster subnet group. Possible values are Complete, Incomplete and Invalid. 
    911      */
    912     SubnetGroupStatus?: String;
    913     /**
    914      * A list of the VPC Subnet elements. 
    915      */
    916     Subnets?: SubnetList;
    917     /**
    918      * The list of tags for the cluster subnet group.
    919      */
    920     Tags?: TagList;
    921   }
    922   export interface ClusterSubnetGroupMessage {
    923     /**
    924      * 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. 
    925      */
    926     Marker?: String;
    927     /**
    928      * A list of ClusterSubnetGroup instances. 
    929      */
    930     ClusterSubnetGroups?: ClusterSubnetGroups;
    931   }
    932   export type ClusterSubnetGroups = ClusterSubnetGroup[];
    933   export interface ClusterVersion {
    934     /**
    935      * The version number used by the cluster.
    936      */
    937     ClusterVersion?: String;
    938     /**
    939      * The name of the cluster parameter group family for the cluster.
    940      */
    941     ClusterParameterGroupFamily?: String;
    942     /**
    943      * The description of the cluster version.
    944      */
    945     Description?: String;
    946   }
    947   export type ClusterVersionList = ClusterVersion[];
    948   export interface ClusterVersionsMessage {
    949     /**
    950      * 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. 
    951      */
    952     Marker?: String;
    953     /**
    954      * A list of Version elements. 
    955      */
    956     ClusterVersions?: ClusterVersionList;
    957   }
    958   export interface ClustersMessage {
    959     /**
    960      * 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. 
    961      */
    962     Marker?: String;
    963     /**
    964      * A list of Cluster objects, where each object describes one cluster. 
    965      */
    966     Clusters?: ClusterList;
    967   }
    968   export interface CopyClusterSnapshotMessage {
    969     /**
    970      * The identifier for the source snapshot. Constraints:   Must be the identifier for a valid automated snapshot whose state is available.  
    971      */
    972     SourceSnapshotIdentifier: String;
    973     /**
    974      * The identifier 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. Constraints:   Must be the identifier for a valid cluster.  
    975      */
    976     SourceSnapshotClusterIdentifier?: String;
    977     /**
    978      * The identifier given to the new manual snapshot. Constraints:   Cannot be null, empty, or blank.   Must contain from 1 to 255 alphanumeric characters or hyphens.   First character must be a letter.   Cannot end with a hyphen or contain two consecutive hyphens.   Must be unique for the AWS account that is making the request.  
    979      */
    980     TargetSnapshotIdentifier: String;
    981   }
    982   export interface CopyClusterSnapshotResult {
    983     Snapshot?: Snapshot;
    984   }
    985   export interface CreateClusterMessage {
    986     /**
    987      * 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.   
    988      */
    989     DBName?: String;
    990     /**
    991      * 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 AWS account.   Example: myexamplecluster 
    992      */
    993     ClusterIdentifier: String;
    994     /**
    995      * 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 
    996      */
    997     ClusterType?: String;
    998     /**
    999      * 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: ds1.xlarge | ds1.8xlarge | ds2.xlarge | ds2.8xlarge | dc1.large | dc1.8xlarge. 
   1000      */
   1001     NodeType: String;
   1002     /**
   1003      * The user name associated with the master user account for the cluster that is being created. Constraints:   Must be 1 - 128 alphanumeric characters.   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.   
   1004      */
   1005     MasterUsername: String;
   1006     /**
   1007      * The password associated with the master 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.  
   1008      */
   1009     MasterUserPassword: String;
   1010     /**
   1011      * A list of security groups to be associated with this cluster. Default: The default cluster security group for Amazon Redshift.
   1012      */
   1013     ClusterSecurityGroups?: ClusterSecurityGroupNameList;
   1014     /**
   1015      * 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.
   1016      */
   1017     VpcSecurityGroupIds?: VpcSecurityGroupIdList;
   1018     /**
   1019      * 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).
   1020      */
   1021     ClusterSubnetGroupName?: String;
   1022     /**
   1023      * 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-1d  Constraint: The specified Availability Zone must be in the same region as the current endpoint.
   1024      */
   1025     AvailabilityZone?: String;
   1026     /**
   1027      * 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.
   1028      */
   1029     PreferredMaintenanceWindow?: String;
   1030     /**
   1031      * 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.  
   1032      */
   1033     ClusterParameterGroupName?: String;
   1034     /**
   1035      * 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.  Default: 1  Constraints: Must be a value from 0 to 35.
   1036      */
   1037     AutomatedSnapshotRetentionPeriod?: IntegerOptional;
   1038     /**
   1039      * 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 
   1040      */
   1041     Port?: IntegerOptional;
   1042     /**
   1043      * 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 
   1044      */
   1045     ClusterVersion?: String;
   1046     /**
   1047      * 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 
   1048      */
   1049     AllowVersionUpgrade?: BooleanOptional;
   1050     /**
   1051      * 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.
   1052      */
   1053     NumberOfNodes?: IntegerOptional;
   1054     /**
   1055      * If true, the cluster can be accessed from a public network. 
   1056      */
   1057     PubliclyAccessible?: BooleanOptional;
   1058     /**
   1059      * If true, the data in the cluster is encrypted at rest.  Default: false
   1060      */
   1061     Encrypted?: BooleanOptional;
   1062     /**
   1063      * Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.
   1064      */
   1065     HsmClientCertificateIdentifier?: String;
   1066     /**
   1067      * 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.
   1068      */
   1069     HsmConfigurationIdentifier?: String;
   1070     /**
   1071      * 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.
   1072      */
   1073     ElasticIp?: String;
   1074     /**
   1075      * A list of tag instances.
   1076      */
   1077     Tags?: TagList;
   1078     /**
   1079      * The AWS Key Management Service (KMS) key ID of the encryption key that you want to use to encrypt data in the cluster.
   1080      */
   1081     KmsKeyId?: String;
   1082     /**
   1083      * 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
   1084      */
   1085     EnhancedVpcRouting?: BooleanOptional;
   1086     /**
   1087      * Reserved.
   1088      */
   1089     AdditionalInfo?: String;
   1090     /**
   1091      * A list of AWS Identity and Access Management (IAM) roles that can be used by the cluster to access other AWS 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.
   1092      */
   1093     IamRoles?: IamRoleArnList;
   1094   }
   1095   export interface CreateClusterParameterGroupMessage {
   1096     /**
   1097      * The name of the cluster parameter group. 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.   Must be unique withing your AWS account.    This value is stored as a lower-case string. 
   1098      */
   1099     ParameterGroupName: String;
   1100     /**
   1101      * The Amazon Redshift engine version to which the cluster parameter group applies. The cluster engine version determines the set of parameters. To get a list of valid parameter group family names, you can call DescribeClusterParameterGroups. By default, Amazon Redshift returns a list of all the parameter groups that are owned by your AWS account, including the default parameter groups for each Amazon Redshift engine version. The parameter group family names associated with the default parameter groups provide you the valid values. For example, a valid family name is "redshift-1.0". 
   1102      */
   1103     ParameterGroupFamily: String;
   1104     /**
   1105      * A description of the parameter group.
   1106      */
   1107     Description: String;
   1108     /**
   1109      * A list of tag instances.
   1110      */
   1111     Tags?: TagList;
   1112   }
   1113   export interface CreateClusterParameterGroupResult {
   1114     ClusterParameterGroup?: ClusterParameterGroup;
   1115   }
   1116   export interface CreateClusterResult {
   1117     Cluster?: Cluster;
   1118   }
   1119   export interface CreateClusterSecurityGroupMessage {
   1120     /**
   1121      * The name for the security group. Amazon Redshift stores the value as a lowercase string. Constraints:   Must contain no more than 255 alphanumeric characters or hyphens.   Must not be "Default".   Must be unique for all security groups that are created by your AWS account.   Example: examplesecuritygroup 
   1122      */
   1123     ClusterSecurityGroupName: String;
   1124     /**
   1125      * A description for the security group.
   1126      */
   1127     Description: String;
   1128     /**
   1129      * A list of tag instances.
   1130      */
   1131     Tags?: TagList;
   1132   }
   1133   export interface CreateClusterSecurityGroupResult {
   1134     ClusterSecurityGroup?: ClusterSecurityGroup;
   1135   }
   1136   export interface CreateClusterSnapshotMessage {
   1137     /**
   1138      * A unique identifier for the snapshot that you are requesting. This identifier must be unique for all snapshots within the AWS account. Constraints:   Cannot be null, empty, or blank   Must contain from 1 to 255 alphanumeric characters or hyphens   First character must be a letter   Cannot end with a hyphen or contain two consecutive hyphens   Example: my-snapshot-id 
   1139      */
   1140     SnapshotIdentifier: String;
   1141     /**
   1142      * The cluster identifier for which you want a snapshot.
   1143      */
   1144     ClusterIdentifier: String;
   1145     /**
   1146      * A list of tag instances.
   1147      */
   1148     Tags?: TagList;
   1149   }
   1150   export interface CreateClusterSnapshotResult {
   1151     Snapshot?: Snapshot;
   1152   }
   1153   export interface CreateClusterSubnetGroupMessage {
   1154     /**
   1155      * The name for the subnet group. Amazon Redshift stores the value as a lowercase string. Constraints:   Must contain no more than 255 alphanumeric characters or hyphens.   Must not be "Default".   Must be unique for all subnet groups that are created by your AWS account.   Example: examplesubnetgroup 
   1156      */
   1157     ClusterSubnetGroupName: String;
   1158     /**
   1159      * A description for the subnet group.
   1160      */
   1161     Description: String;
   1162     /**
   1163      * An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single request.
   1164      */
   1165     SubnetIds: SubnetIdentifierList;
   1166     /**
   1167      * A list of tag instances.
   1168      */
   1169     Tags?: TagList;
   1170   }
   1171   export interface CreateClusterSubnetGroupResult {
   1172     ClusterSubnetGroup?: ClusterSubnetGroup;
   1173   }
   1174   export interface CreateEventSubscriptionMessage {
   1175     /**
   1176      * The name of the event subscription to be created. Constraints:   Cannot be null, empty, or blank.   Must contain from 1 to 255 alphanumeric characters or hyphens.   First character must be a letter.   Cannot end with a hyphen or contain two consecutive hyphens.  
   1177      */
   1178     SubscriptionName: String;
   1179     /**
   1180      * The Amazon Resource Name (ARN) of the Amazon SNS topic used to transmit the event notifications. The ARN is created by Amazon SNS when you create a topic and subscribe to it.
   1181      */
   1182     SnsTopicArn: String;
   1183     /**
   1184      * The type of source that will be generating the events. For example, if you want to be notified of events generated by a cluster, you would set this parameter to cluster. If this value is not specified, events are returned for all Amazon Redshift objects in your AWS account. You must specify a source type in order to specify source IDs. Valid values: cluster, cluster-parameter-group, cluster-security-group, and cluster-snapshot.
   1185      */
   1186     SourceType?: String;
   1187     /**
   1188      * A list of one or more identifiers of Amazon Redshift source objects. All of the objects must be of the same type as was specified in the source type parameter. The event subscription will return only events generated by the specified objects. If not specified, then events are returned for all objects within the source type specified. Example: my-cluster-1, my-cluster-2 Example: my-snapshot-20131010
   1189      */
   1190     SourceIds?: SourceIdsList;
   1191     /**
   1192      * Specifies the Amazon Redshift event categories to be published by the event notification subscription. Values: Configuration, Management, Monitoring, Security
   1193      */
   1194     EventCategories?: EventCategoriesList;
   1195     /**
   1196      * Specifies the Amazon Redshift event severity to be published by the event notification subscription. Values: ERROR, INFO
   1197      */
   1198     Severity?: String;
   1199     /**
   1200      * A Boolean value; set to true to activate the subscription, set to false to create the subscription but not active it. 
   1201      */
   1202     Enabled?: BooleanOptional;
   1203     /**
   1204      * A list of tag instances.
   1205      */
   1206     Tags?: TagList;
   1207   }
   1208   export interface CreateEventSubscriptionResult {
   1209     EventSubscription?: EventSubscription;
   1210   }
   1211   export interface CreateHsmClientCertificateMessage {
   1212     /**
   1213      * The identifier to be assigned to the new HSM client certificate that the cluster will use to connect to the HSM to use the database encryption keys.
   1214      */
   1215     HsmClientCertificateIdentifier: String;
   1216     /**
   1217      * A list of tag instances.
   1218      */
   1219     Tags?: TagList;
   1220   }
   1221   export interface CreateHsmClientCertificateResult {
   1222     HsmClientCertificate?: HsmClientCertificate;
   1223   }
   1224   export interface CreateHsmConfigurationMessage {
   1225     /**
   1226      * The identifier to be assigned to the new Amazon Redshift HSM configuration.
   1227      */
   1228     HsmConfigurationIdentifier: String;
   1229     /**
   1230      * A text description of the HSM configuration to be created.
   1231      */
   1232     Description: String;
   1233     /**
   1234      * The IP address that the Amazon Redshift cluster must use to access the HSM.
   1235      */
   1236     HsmIpAddress: String;
   1237     /**
   1238      * The name of the partition in the HSM where the Amazon Redshift clusters will store their database encryption keys.
   1239      */
   1240     HsmPartitionName: String;
   1241     /**
   1242      * The password required to access the HSM partition.
   1243      */
   1244     HsmPartitionPassword: String;
   1245     /**
   1246      * The HSMs public certificate file. When using Cloud HSM, the file name is server.pem.
   1247      */
   1248     HsmServerPublicCertificate: String;
   1249     /**
   1250      * A list of tag instances.
   1251      */
   1252     Tags?: TagList;
   1253   }
   1254   export interface CreateHsmConfigurationResult {
   1255     HsmConfiguration?: HsmConfiguration;
   1256   }
   1257   export interface CreateSnapshotCopyGrantMessage {
   1258     /**
   1259      * The name of the snapshot copy grant. This name must be unique in the region for the AWS account. Constraints:   Must contain from 1 to 63 alphanumeric characters or hyphens.   Alphabetic characters must be lowercase.   First character must be a letter.   Cannot end with a hyphen or contain two consecutive hyphens.   Must be unique for all clusters within an AWS account.  
   1260      */
   1261     SnapshotCopyGrantName: String;
   1262     /**
   1263      * The unique identifier of the customer master key (CMK) to which to grant Amazon Redshift permission. If no key is specified, the default key is used.
   1264      */
   1265     KmsKeyId?: String;
   1266     /**
   1267      * A list of tag instances.
   1268      */
   1269     Tags?: TagList;
   1270   }
   1271   export interface CreateSnapshotCopyGrantResult {
   1272     SnapshotCopyGrant?: SnapshotCopyGrant;
   1273   }
   1274   export interface CreateTagsMessage {
   1275     /**
   1276      * The Amazon Resource Name (ARN) to which you want to add the tag or tags. For example, arn:aws:redshift:us-east-1:123456789:cluster:t1. 
   1277      */
   1278     ResourceName: String;
   1279     /**
   1280      * One or more name/value pairs to add as tags to the specified resource. Each tag name is passed in with the parameter Key and the corresponding value is passed in with the parameter Value. The Key and Value parameters are separated by a comma (,). Separate multiple tags with a space. For example, --tags "Key"="owner","Value"="admin" "Key"="environment","Value"="test" "Key"="version","Value"="1.0". 
   1281      */
   1282     Tags: TagList;
   1283   }
   1284   export interface DefaultClusterParameters {
   1285     /**
   1286      * The name of the cluster parameter group family to which the engine default parameters apply.
   1287      */
   1288     ParameterGroupFamily?: String;
   1289     /**
   1290      * 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. 
   1291      */
   1292     Marker?: String;
   1293     /**
   1294      * The list of cluster default parameters.
   1295      */
   1296     Parameters?: ParametersList;
   1297   }
   1298   export interface DeleteClusterMessage {
   1299     /**
   1300      * 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.  
   1301      */
   1302     ClusterIdentifier: String;
   1303     /**
   1304      * 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.   The FinalClusterSnapshotIdentifier parameter must be specified if SkipFinalClusterSnapshot is false.  Default: false 
   1305      */
   1306     SkipFinalClusterSnapshot?: Boolean;
   1307     /**
   1308      * 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.  
   1309      */
   1310     FinalClusterSnapshotIdentifier?: String;
   1311   }
   1312   export interface DeleteClusterParameterGroupMessage {
   1313     /**
   1314      * The name of the parameter group to be deleted. Constraints:   Must be the name of an existing cluster parameter group.   Cannot delete a default cluster parameter group.  
   1315      */
   1316     ParameterGroupName: String;
   1317   }
   1318   export interface DeleteClusterResult {
   1319     Cluster?: Cluster;
   1320   }
   1321   export interface DeleteClusterSecurityGroupMessage {
   1322     /**
   1323      * The name of the cluster security group to be deleted.
   1324      */
   1325     ClusterSecurityGroupName: String;
   1326   }
   1327   export interface DeleteClusterSnapshotMessage {
   1328     /**
   1329      * The unique identifier of the manual snapshot to be deleted. Constraints: Must be the name of an existing snapshot that is in the available state.
   1330      */
   1331     SnapshotIdentifier: String;
   1332     /**
   1333      * The unique identifier of the cluster the 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. Constraints: Must be the name of valid cluster.
   1334      */
   1335     SnapshotClusterIdentifier?: String;
   1336   }
   1337   export interface DeleteClusterSnapshotResult {
   1338     Snapshot?: Snapshot;
   1339   }
   1340   export interface DeleteClusterSubnetGroupMessage {
   1341     /**
   1342      * The name of the cluster subnet group name to be deleted.
   1343      */
   1344     ClusterSubnetGroupName: String;
   1345   }
   1346   export interface DeleteEventSubscriptionMessage {
   1347     /**
   1348      * The name of the Amazon Redshift event notification subscription to be deleted.
   1349      */
   1350     SubscriptionName: String;
   1351   }
   1352   export interface DeleteHsmClientCertificateMessage {
   1353     /**
   1354      * The identifier of the HSM client certificate to be deleted.
   1355      */
   1356     HsmClientCertificateIdentifier: String;
   1357   }
   1358   export interface DeleteHsmConfigurationMessage {
   1359     /**
   1360      * The identifier of the Amazon Redshift HSM configuration to be deleted.
   1361      */
   1362     HsmConfigurationIdentifier: String;
   1363   }
   1364   export interface DeleteSnapshotCopyGrantMessage {
   1365     /**
   1366      * The name of the snapshot copy grant to delete.
   1367      */
   1368     SnapshotCopyGrantName: String;
   1369   }
   1370   export interface DeleteTagsMessage {
   1371     /**
   1372      * The Amazon Resource Name (ARN) from which you want to remove the tag or tags. For example, arn:aws:redshift:us-east-1:123456789:cluster:t1. 
   1373      */
   1374     ResourceName: String;
   1375     /**
   1376      * The tag key that you want to delete.
   1377      */
   1378     TagKeys: TagKeyList;
   1379   }
   1380   export interface DescribeClusterParameterGroupsMessage {
   1381     /**
   1382      * The name of a specific parameter group for which to return details. By default, details about all parameter groups and the default parameter group are returned.
   1383      */
   1384     ParameterGroupName?: String;
   1385     /**
   1386      * 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.
   1387      */
   1388     MaxRecords?: IntegerOptional;
   1389     /**
   1390      * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusterParameterGroups request exceed the value specified in MaxRecords, AWS 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. 
   1391      */
   1392     Marker?: String;
   1393     /**
   1394      * A tag key or keys for which you want to return all matching cluster parameter groups that are associated with the specified key or keys. For example, suppose that you have parameter groups 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 parameter groups that have either or both of these tag keys associated with them.
   1395      */
   1396     TagKeys?: TagKeyList;
   1397     /**
   1398      * A tag value or values for which you want to return all matching cluster parameter groups that are associated with the specified tag value or values. For example, suppose that you have parameter groups 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 parameter groups that have either or both of these tag values associated with them.
   1399      */
   1400     TagValues?: TagValueList;
   1401   }
   1402   export interface DescribeClusterParametersMessage {
   1403     /**
   1404      * The name of a cluster parameter group for which to return details.
   1405      */
   1406     ParameterGroupName: String;
   1407     /**
   1408      * The parameter types to return. Specify user to show parameters that are different form the default. Similarly, specify engine-default to show parameters that are the same as the default parameter group.  Default: All parameter types returned. Valid Values: user | engine-default 
   1409      */
   1410     Source?: String;
   1411     /**
   1412      * 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.
   1413      */
   1414     MaxRecords?: IntegerOptional;
   1415     /**
   1416      * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusterParameters request exceed the value specified in MaxRecords, AWS 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. 
   1417      */
   1418     Marker?: String;
   1419   }
   1420   export interface DescribeClusterSecurityGroupsMessage {
   1421     /**
   1422      * The name of a cluster security group for which you are requesting details. You can specify either the Marker parameter or a ClusterSecurityGroupName parameter, but not both.   Example: securitygroup1 
   1423      */
   1424     ClusterSecurityGroupName?: String;
   1425     /**
   1426      * 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.
   1427      */
   1428     MaxRecords?: IntegerOptional;
   1429     /**
   1430      * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusterSecurityGroups request exceed the value specified in MaxRecords, AWS 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 ClusterSecurityGroupName parameter or the Marker parameter, but not both. 
   1431      */
   1432     Marker?: String;
   1433     /**
   1434      * A tag key or keys for which you want to return all matching cluster security groups that are associated with the specified key or keys. For example, suppose that you have security groups 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 security groups that have either or both of these tag keys associated with them.
   1435      */
   1436     TagKeys?: TagKeyList;
   1437     /**
   1438      * A tag value or values for which you want to return all matching cluster security groups that are associated with the specified tag value or values. For example, suppose that you have security groups 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 security groups that have either or both of these tag values associated with them.
   1439      */
   1440     TagValues?: TagValueList;
   1441   }
   1442   export interface DescribeClusterSnapshotsMessage {
   1443     /**
   1444      * The identifier of the cluster for which information about snapshots is requested.
   1445      */
   1446     ClusterIdentifier?: String;
   1447     /**
   1448      * The snapshot identifier of the snapshot about which to return information.
   1449      */
   1450     SnapshotIdentifier?: String;
   1451     /**
   1452      * The type of snapshots for which you are requesting information. By default, snapshots of all types are returned. Valid Values: automated | manual 
   1453      */
   1454     SnapshotType?: String;
   1455     /**
   1456      * A value that requests only snapshots created at or after the specified time. The time value is specified in ISO 8601 format. For more information about ISO 8601, go to the ISO8601 Wikipedia page.  Example: 2012-07-16T18:00:00Z 
   1457      */
   1458     StartTime?: TStamp;
   1459     /**
   1460      * A time value that requests only snapshots created at or before the specified time. The time value is specified in ISO 8601 format. For more information about ISO 8601, go to the ISO8601 Wikipedia page.  Example: 2012-07-16T18:00:00Z 
   1461      */
   1462     EndTime?: TStamp;
   1463     /**
   1464      * 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.
   1465      */
   1466     MaxRecords?: IntegerOptional;
   1467     /**
   1468      * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusterSnapshots request exceed the value specified in MaxRecords, AWS 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. 
   1469      */
   1470     Marker?: String;
   1471     /**
   1472      * The AWS customer account used to create or copy the snapshot. Use this field to filter the results to snapshots owned by a particular account. To describe snapshots you own, either specify your AWS customer account, or do not specify the parameter.
   1473      */
   1474     OwnerAccount?: String;
   1475     /**
   1476      * A tag key or keys for which you want to return all matching cluster snapshots that are associated with the specified key or keys. For example, suppose that you have snapshots 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 snapshots that have either or both of these tag keys associated with them.
   1477      */
   1478     TagKeys?: TagKeyList;
   1479     /**
   1480      * A tag value or values for which you want to return all matching cluster snapshots that are associated with the specified tag value or values. For example, suppose that you have snapshots 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 snapshots that have either or both of these tag values associated with them.
   1481      */
   1482     TagValues?: TagValueList;
   1483   }
   1484   export interface DescribeClusterSubnetGroupsMessage {
   1485     /**
   1486      * The name of the cluster subnet group for which information is requested.
   1487      */
   1488     ClusterSubnetGroupName?: String;
   1489     /**
   1490      * 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.
   1491      */
   1492     MaxRecords?: IntegerOptional;
   1493     /**
   1494      * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusterSubnetGroups request exceed the value specified in MaxRecords, AWS 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. 
   1495      */
   1496     Marker?: String;
   1497     /**
   1498      * A tag key or keys for which you want to return all matching cluster subnet groups that are associated with the specified key or keys. For example, suppose that you have subnet groups 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 subnet groups that have either or both of these tag keys associated with them.
   1499      */
   1500     TagKeys?: TagKeyList;
   1501     /**
   1502      * A tag value or values for which you want to return all matching cluster subnet groups that are associated with the specified tag value or values. For example, suppose that you have subnet groups 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 subnet groups that have either or both of these tag values associated with them.
   1503      */
   1504     TagValues?: TagValueList;
   1505   }
   1506   export interface DescribeClusterVersionsMessage {
   1507     /**
   1508      * The specific cluster version to return. Example: 1.0 
   1509      */
   1510     ClusterVersion?: String;
   1511     /**
   1512      * The name of a specific cluster parameter group family to return details for. Constraints:   Must be 1 to 255 alphanumeric characters   First character must be a letter   Cannot end with a hyphen or contain two consecutive hyphens  
   1513      */
   1514     ClusterParameterGroupFamily?: String;
   1515     /**
   1516      * 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.
   1517      */
   1518     MaxRecords?: IntegerOptional;
   1519     /**
   1520      * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusterVersions request exceed the value specified in MaxRecords, AWS 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. 
   1521      */
   1522     Marker?: String;
   1523   }
   1524   export interface DescribeClustersMessage {
   1525     /**
   1526      * 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.
   1527      */
   1528     ClusterIdentifier?: String;
   1529     /**
   1530      * 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.
   1531      */
   1532     MaxRecords?: IntegerOptional;
   1533     /**
   1534      * 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, AWS 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. 
   1535      */
   1536     Marker?: String;
   1537     /**
   1538      * 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.
   1539      */
   1540     TagKeys?: TagKeyList;
   1541     /**
   1542      * 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.
   1543      */
   1544     TagValues?: TagValueList;
   1545   }
   1546   export interface DescribeDefaultClusterParametersMessage {
   1547     /**
   1548      * The name of the cluster parameter group family.
   1549      */
   1550     ParameterGroupFamily: String;
   1551     /**
   1552      * 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.
   1553      */
   1554     MaxRecords?: IntegerOptional;
   1555     /**
   1556      * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeDefaultClusterParameters request exceed the value specified in MaxRecords, AWS 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. 
   1557      */
   1558     Marker?: String;
   1559   }
   1560   export interface DescribeDefaultClusterParametersResult {
   1561     DefaultClusterParameters?: DefaultClusterParameters;
   1562   }
   1563   export interface DescribeEventCategoriesMessage {
   1564     /**
   1565      * The source type, such as cluster or parameter group, to which the described event categories apply. Valid values: cluster, cluster-snapshot, cluster-parameter-group, and cluster-security-group.
   1566      */
   1567     SourceType?: String;
   1568   }
   1569   export interface DescribeEventSubscriptionsMessage {
   1570     /**
   1571      * The name of the Amazon Redshift event notification subscription to be described.
   1572      */
   1573     SubscriptionName?: String;
   1574     /**
   1575      * 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.
   1576      */
   1577     MaxRecords?: IntegerOptional;
   1578     /**
   1579      * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeEventSubscriptions request exceed the value specified in MaxRecords, AWS 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. 
   1580      */
   1581     Marker?: String;
   1582   }
   1583   export interface DescribeEventsMessage {
   1584     /**
   1585      * The identifier of the event source for which events will be returned. If this parameter is not specified, then all sources are included in the response. Constraints: If SourceIdentifier is supplied, SourceType must also be provided.   Specify a cluster identifier when SourceType is cluster.   Specify a cluster security group name when SourceType is cluster-security-group.   Specify a cluster parameter group name when SourceType is cluster-parameter-group.   Specify a cluster snapshot identifier when SourceType is cluster-snapshot.  
   1586      */
   1587     SourceIdentifier?: String;
   1588     /**
   1589      * The event source to retrieve events for. If no value is specified, all events are returned. Constraints: If SourceType is supplied, SourceIdentifier must also be provided.   Specify cluster when SourceIdentifier is a cluster identifier.   Specify cluster-security-group when SourceIdentifier is a cluster security group name.   Specify cluster-parameter-group when SourceIdentifier is a cluster parameter group name.   Specify cluster-snapshot when SourceIdentifier is a cluster snapshot identifier.  
   1590      */
   1591     SourceType?: SourceType;
   1592     /**
   1593      * The beginning of the time interval to retrieve events for, specified in ISO 8601 format. For more information about ISO 8601, go to the ISO8601 Wikipedia page.  Example: 2009-07-08T18:00Z 
   1594      */
   1595     StartTime?: TStamp;
   1596     /**
   1597      * The end of the time interval for which to retrieve events, specified in ISO 8601 format. For more information about ISO 8601, go to the ISO8601 Wikipedia page.  Example: 2009-07-08T18:00Z 
   1598      */
   1599     EndTime?: TStamp;
   1600     /**
   1601      * The number of minutes prior to the time of the request for which to retrieve events. For example, if the request is sent at 18:00 and you specify a duration of 60, then only events which have occurred after 17:00 will be returned. Default: 60 
   1602      */
   1603     Duration?: IntegerOptional;
   1604     /**
   1605      * 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.
   1606      */
   1607     MaxRecords?: IntegerOptional;
   1608     /**
   1609      * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeEvents request exceed the value specified in MaxRecords, AWS 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. 
   1610      */
   1611     Marker?: String;
   1612   }
   1613   export interface DescribeHsmClientCertificatesMessage {
   1614     /**
   1615      * The identifier of a specific HSM client certificate for which you want information. If no identifier is specified, information is returned for all HSM client certificates owned by your AWS customer account.
   1616      */
   1617     HsmClientCertificateIdentifier?: String;
   1618     /**
   1619      * 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.
   1620      */
   1621     MaxRecords?: IntegerOptional;
   1622     /**
   1623      * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeHsmClientCertificates request exceed the value specified in MaxRecords, AWS 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. 
   1624      */
   1625     Marker?: String;
   1626     /**
   1627      * A tag key or keys for which you want to return all matching HSM client certificates that are associated with the specified key or keys. For example, suppose that you have HSM client certificates 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 HSM client certificates that have either or both of these tag keys associated with them.
   1628      */
   1629     TagKeys?: TagKeyList;
   1630     /**
   1631      * A tag value or values for which you want to return all matching HSM client certificates that are associated with the specified tag value or values. For example, suppose that you have HSM client certificates 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 HSM client certificates that have either or both of these tag values associated with them.
   1632      */
   1633     TagValues?: TagValueList;
   1634   }
   1635   export interface DescribeHsmConfigurationsMessage {
   1636     /**
   1637      * The identifier of a specific Amazon Redshift HSM configuration to be described. If no identifier is specified, information is returned for all HSM configurations owned by your AWS customer account.
   1638      */
   1639     HsmConfigurationIdentifier?: String;
   1640     /**
   1641      * 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.
   1642      */
   1643     MaxRecords?: IntegerOptional;
   1644     /**
   1645      * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeHsmConfigurations request exceed the value specified in MaxRecords, AWS 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. 
   1646      */
   1647     Marker?: String;
   1648     /**
   1649      * A tag key or keys for which you want to return all matching HSM configurations that are associated with the specified key or keys. For example, suppose that you have HSM configurations 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 HSM configurations that have either or both of these tag keys associated with them.
   1650      */
   1651     TagKeys?: TagKeyList;
   1652     /**
   1653      * A tag value or values for which you want to return all matching HSM configurations that are associated with the specified tag value or values. For example, suppose that you have HSM configurations 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 HSM configurations that have either or both of these tag values associated with them.
   1654      */
   1655     TagValues?: TagValueList;
   1656   }
   1657   export interface DescribeLoggingStatusMessage {
   1658     /**
   1659      * The identifier of the cluster from which to get the logging status. Example: examplecluster 
   1660      */
   1661     ClusterIdentifier: String;
   1662   }
   1663   export interface DescribeOrderableClusterOptionsMessage {
   1664     /**
   1665      * The version filter value. Specify this parameter to show only the available offerings matching the specified version. Default: All versions. Constraints: Must be one of the version returned from DescribeClusterVersions.
   1666      */
   1667     ClusterVersion?: String;
   1668     /**
   1669      * The node type filter value. Specify this parameter to show only the available offerings matching the specified node type.
   1670      */
   1671     NodeType?: String;
   1672     /**
   1673      * 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.
   1674      */
   1675     MaxRecords?: IntegerOptional;
   1676     /**
   1677      * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeOrderableClusterOptions request exceed the value specified in MaxRecords, AWS 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. 
   1678      */
   1679     Marker?: String;
   1680   }
   1681   export interface DescribeReservedNodeOfferingsMessage {
   1682     /**
   1683      * The unique identifier for the offering.
   1684      */
   1685     ReservedNodeOfferingId?: String;
   1686     /**
   1687      * 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.
   1688      */
   1689     MaxRecords?: IntegerOptional;
   1690     /**
   1691      * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeReservedNodeOfferings request exceed the value specified in MaxRecords, AWS 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. 
   1692      */
   1693     Marker?: String;
   1694   }
   1695   export interface DescribeReservedNodesMessage {
   1696     /**
   1697      * Identifier for the node reservation.
   1698      */
   1699     ReservedNodeId?: String;
   1700     /**
   1701      * 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.
   1702      */
   1703     MaxRecords?: IntegerOptional;
   1704     /**
   1705      * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeReservedNodes request exceed the value specified in MaxRecords, AWS 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. 
   1706      */
   1707     Marker?: String;
   1708   }
   1709   export interface DescribeResizeMessage {
   1710     /**
   1711      * The unique identifier of a cluster whose resize progress you are requesting. This parameter is case-sensitive. By default, resize operations for all clusters defined for an AWS account are returned.
   1712      */
   1713     ClusterIdentifier: String;
   1714   }
   1715   export interface DescribeSnapshotCopyGrantsMessage {
   1716     /**
   1717      * The name of the snapshot copy grant.
   1718      */
   1719     SnapshotCopyGrantName?: String;
   1720     /**
   1721      * 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.
   1722      */
   1723     MaxRecords?: IntegerOptional;
   1724     /**
   1725      * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeSnapshotCopyGrant request exceed the value specified in MaxRecords, AWS 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 SnapshotCopyGrantName parameter or the Marker parameter, but not both. 
   1726      */
   1727     Marker?: String;
   1728     /**
   1729      * A tag key or keys for which you want to return all matching resources that are associated with the specified key or keys. For example, suppose that you have resources tagged with keys called owner and environment. If you specify both of these tag keys in the request, Amazon Redshift returns a response with all resources that have either or both of these tag keys associated with them.
   1730      */
   1731     TagKeys?: TagKeyList;
   1732     /**
   1733      * A tag value or values for which you want to return all matching resources that are associated with the specified value or values. For example, suppose that you have resources tagged with values called admin and test. If you specify both of these tag values in the request, Amazon Redshift returns a response with all resources that have either or both of these tag values associated with them.
   1734      */
   1735     TagValues?: TagValueList;
   1736   }
   1737   export interface DescribeTableRestoreStatusMessage {
   1738     /**
   1739      * The Amazon Redshift cluster that the table is being restored to.
   1740      */
   1741     ClusterIdentifier?: String;
   1742     /**
   1743      * The identifier of the table restore request to return status for. If you don't specify a TableRestoreRequestId value, then DescribeTableRestoreStatus returns the status of all in-progress table restore requests.
   1744      */
   1745     TableRestoreRequestId?: String;
   1746     /**
   1747      * The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.
   1748      */
   1749     MaxRecords?: IntegerOptional;
   1750     /**
   1751      * An optional pagination token provided by a previous DescribeTableRestoreStatus request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by the MaxRecords parameter.
   1752      */
   1753     Marker?: String;
   1754   }
   1755   export interface DescribeTagsMessage {
   1756     /**
   1757      * The Amazon Resource Name (ARN) for which you want to describe the tag or tags. For example, arn:aws:redshift:us-east-1:123456789:cluster:t1. 
   1758      */
   1759     ResourceName?: String;
   1760     /**
   1761      * The type of resource with which you want to view tags. Valid resource types are:    Cluster   CIDR/IP   EC2 security group   Snapshot   Cluster security group   Subnet group   HSM connection   HSM certificate   Parameter group   Snapshot copy grant   For more information about Amazon Redshift resource types and constructing ARNs, go to Constructing an Amazon Redshift Amazon Resource Name (ARN) in the Amazon Redshift Cluster Management Guide. 
   1762      */
   1763     ResourceType?: String;
   1764     /**
   1765      * The maximum number or 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. 
   1766      */
   1767     MaxRecords?: IntegerOptional;
   1768     /**
   1769      * 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. 
   1770      */
   1771     Marker?: String;
   1772     /**
   1773      * A tag key or keys for which you want to return all matching resources that are associated with the specified key or keys. For example, suppose that you have resources tagged with keys called owner and environment. If you specify both of these tag keys in the request, Amazon Redshift returns a response with all resources that have either or both of these tag keys associated with them.
   1774      */
   1775     TagKeys?: TagKeyList;
   1776     /**
   1777      * A tag value or values for which you want to return all matching resources that are associated with the specified value or values. For example, suppose that you have resources tagged with values called admin and test. If you specify both of these tag values in the request, Amazon Redshift returns a response with all resources that have either or both of these tag values associated with them.
   1778      */
   1779     TagValues?: TagValueList;
   1780   }
   1781   export interface DisableLoggingMessage {
   1782     /**
   1783      * The identifier of the cluster on which logging is to be stopped. Example: examplecluster 
   1784      */
   1785     ClusterIdentifier: String;
   1786   }
   1787   export interface DisableSnapshotCopyMessage {
   1788     /**
   1789      * 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.
   1790      */
   1791     ClusterIdentifier: String;
   1792   }
   1793   export interface DisableSnapshotCopyResult {
   1794     Cluster?: Cluster;
   1795   }
   1796   export type Double = number;
   1797   export type DoubleOptional = number;
   1798   export interface EC2SecurityGroup {
   1799     /**
   1800      * The status of the EC2 security group.
   1801      */
   1802     Status?: String;
   1803     /**
   1804      * The name of the EC2 Security Group.
   1805      */
   1806     EC2SecurityGroupName?: String;
   1807     /**
   1808      * The AWS ID of the owner of the EC2 security group specified in the EC2SecurityGroupName field. 
   1809      */
   1810     EC2SecurityGroupOwnerId?: String;
   1811     /**
   1812      * The list of tags for the EC2 security group.
   1813      */
   1814     Tags?: TagList;
   1815   }
   1816   export type EC2SecurityGroupList = EC2SecurityGroup[];
   1817   export interface ElasticIpStatus {
   1818     /**
   1819      * The elastic IP (EIP) address for the cluster.
   1820      */
   1821     ElasticIp?: String;
   1822     /**
   1823      * The status of the elastic IP (EIP) address.
   1824      */
   1825     Status?: String;
   1826   }
   1827   export interface EnableLoggingMessage {
   1828     /**
   1829      * The identifier of the cluster on which logging is to be started. Example: examplecluster 
   1830      */
   1831     ClusterIdentifier: String;
   1832     /**
   1833      * The name of an existing S3 bucket where the log files are to be stored. Constraints:   Must be in the same region as the cluster   The cluster must have read bucket and put object permissions  
   1834      */
   1835     BucketName: String;
   1836     /**
   1837      * The prefix applied to the log file names. Constraints:   Cannot exceed 512 characters   Cannot contain spaces( ), double quotes ("), single quotes ('), a backslash (\), or control characters. The hexadecimal codes for invalid characters are:    x00 to x20   x22   x27   x5c   x7f or larger    
   1838      */
   1839     S3KeyPrefix?: String;
   1840   }
   1841   export interface EnableSnapshotCopyMessage {
   1842     /**
   1843      * 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.
   1844      */
   1845     ClusterIdentifier: String;
   1846     /**
   1847      * The destination region that you want to copy snapshots to. Constraints: Must be the name of a valid region. For more information, see Regions and Endpoints in the Amazon Web Services General Reference. 
   1848      */
   1849     DestinationRegion: String;
   1850     /**
   1851      * 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.
   1852      */
   1853     RetentionPeriod?: IntegerOptional;
   1854     /**
   1855      * The name of the snapshot copy grant to use when snapshots of an AWS KMS-encrypted cluster are copied to the destination region.
   1856      */
   1857     SnapshotCopyGrantName?: String;
   1858   }
   1859   export interface EnableSnapshotCopyResult {
   1860     Cluster?: Cluster;
   1861   }
   1862   export interface Endpoint {
   1863     /**
   1864      * The DNS address of the Cluster.
   1865      */
   1866     Address?: String;
   1867     /**
   1868      * The port that the database engine is listening on.
   1869      */
   1870     Port?: Integer;
   1871   }
   1872   export interface Event {
   1873     /**
   1874      * The identifier for the source of the event.
   1875      */
   1876     SourceIdentifier?: String;
   1877     /**
   1878      * The source type for this event.
   1879      */
   1880     SourceType?: SourceType;
   1881     /**
   1882      * The text of this event.
   1883      */
   1884     Message?: String;
   1885     /**
   1886      * A list of the event categories. Values: Configuration, Management, Monitoring, Security
   1887      */
   1888     EventCategories?: EventCategoriesList;
   1889     /**
   1890      * The severity of the event. Values: ERROR, INFO
   1891      */
   1892     Severity?: String;
   1893     /**
   1894      * The date and time of the event.
   1895      */
   1896     Date?: TStamp;
   1897     /**
   1898      * The identifier of the event.
   1899      */
   1900     EventId?: String;
   1901   }
   1902   export type EventCategoriesList = String[];
   1903   export interface EventCategoriesMap {
   1904     /**
   1905      * The source type, such as cluster or cluster-snapshot, that the returned categories belong to.
   1906      */
   1907     SourceType?: String;
   1908     /**
   1909      * The events in the event category.
   1910      */
   1911     Events?: EventInfoMapList;
   1912   }
   1913   export type EventCategoriesMapList = EventCategoriesMap[];
   1914   export interface EventCategoriesMessage {
   1915     /**
   1916      * A list of event categories descriptions.
   1917      */
   1918     EventCategoriesMapList?: EventCategoriesMapList;
   1919   }
   1920   export interface EventInfoMap {
   1921     /**
   1922      * The identifier of an Amazon Redshift event.
   1923      */
   1924     EventId?: String;
   1925     /**
   1926      * The category of an Amazon Redshift event.
   1927      */
   1928     EventCategories?: EventCategoriesList;
   1929     /**
   1930      * The description of an Amazon Redshift event.
   1931      */
   1932     EventDescription?: String;
   1933     /**
   1934      * The severity of the event. Values: ERROR, INFO
   1935      */
   1936     Severity?: String;
   1937   }
   1938   export type EventInfoMapList = EventInfoMap[];
   1939   export type EventList = Event[];
   1940   export interface EventSubscription {
   1941     /**
   1942      * The AWS customer account associated with the Amazon Redshift event notification subscription.
   1943      */
   1944     CustomerAwsId?: String;
   1945     /**
   1946      * The name of the Amazon Redshift event notification subscription.
   1947      */
   1948     CustSubscriptionId?: String;
   1949     /**
   1950      * The Amazon Resource Name (ARN) of the Amazon SNS topic used by the event notification subscription.
   1951      */
   1952     SnsTopicArn?: String;
   1953     /**
   1954      * The status of the Amazon Redshift event notification subscription. Constraints:   Can be one of the following: active | no-permission | topic-not-exist   The status "no-permission" indicates that Amazon Redshift no longer has permission to post to the Amazon SNS topic. The status "topic-not-exist" indicates that the topic was deleted after the subscription was created.  
   1955      */
   1956     Status?: String;
   1957     /**
   1958      * The date and time the Amazon Redshift event notification subscription was created.
   1959      */
   1960     SubscriptionCreationTime?: TStamp;
   1961     /**
   1962      * The source type of the events returned the Amazon Redshift event notification, such as cluster, or cluster-snapshot.
   1963      */
   1964     SourceType?: String;
   1965     /**
   1966      * A list of the sources that publish events to the Amazon Redshift event notification subscription.
   1967      */
   1968     SourceIdsList?: SourceIdsList;
   1969     /**
   1970      * The list of Amazon Redshift event categories specified in the event notification subscription. Values: Configuration, Management, Monitoring, Security
   1971      */
   1972     EventCategoriesList?: EventCategoriesList;
   1973     /**
   1974      * The event severity specified in the Amazon Redshift event notification subscription. Values: ERROR, INFO
   1975      */
   1976     Severity?: String;
   1977     /**
   1978      * A Boolean value indicating whether the subscription is enabled. true indicates the subscription is enabled.
   1979      */
   1980     Enabled?: Boolean;
   1981     /**
   1982      * The list of tags for the event subscription.
   1983      */
   1984     Tags?: TagList;
   1985   }
   1986   export type EventSubscriptionsList = EventSubscription[];
   1987   export interface EventSubscriptionsMessage {
   1988     /**
   1989      * 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. 
   1990      */
   1991     Marker?: String;
   1992     /**
   1993      * A list of event subscriptions.
   1994      */
   1995     EventSubscriptionsList?: EventSubscriptionsList;
   1996   }
   1997   export interface EventsMessage {
   1998     /**
   1999      * 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. 
   2000      */
   2001     Marker?: String;
   2002     /**
   2003      * A list of Event instances. 
   2004      */
   2005     Events?: EventList;
   2006   }
   2007   export interface HsmClientCertificate {
   2008     /**
   2009      * The identifier of the HSM client certificate.
   2010      */
   2011     HsmClientCertificateIdentifier?: String;
   2012     /**
   2013      * The public key that the Amazon Redshift cluster will use to connect to the HSM. You must register the public key in the HSM.
   2014      */
   2015     HsmClientCertificatePublicKey?: String;
   2016     /**
   2017      * The list of tags for the HSM client certificate.
   2018      */
   2019     Tags?: TagList;
   2020   }
   2021   export type HsmClientCertificateList = HsmClientCertificate[];
   2022   export interface HsmClientCertificateMessage {
   2023     /**
   2024      * 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. 
   2025      */
   2026     Marker?: String;
   2027     /**
   2028      * A list of the identifiers for one or more HSM client certificates used by Amazon Redshift clusters to store and retrieve database encryption keys in an HSM.
   2029      */
   2030     HsmClientCertificates?: HsmClientCertificateList;
   2031   }
   2032   export interface HsmConfiguration {
   2033     /**
   2034      * The name of the Amazon Redshift HSM configuration.
   2035      */
   2036     HsmConfigurationIdentifier?: String;
   2037     /**
   2038      * A text description of the HSM configuration.
   2039      */
   2040     Description?: String;
   2041     /**
   2042      * The IP address that the Amazon Redshift cluster must use to access the HSM.
   2043      */
   2044     HsmIpAddress?: String;
   2045     /**
   2046      * The name of the partition in the HSM where the Amazon Redshift clusters will store their database encryption keys.
   2047      */
   2048     HsmPartitionName?: String;
   2049     /**
   2050      * The list of tags for the HSM configuration.
   2051      */
   2052     Tags?: TagList;
   2053   }
   2054   export type HsmConfigurationList = HsmConfiguration[];
   2055   export interface HsmConfigurationMessage {
   2056     /**
   2057      * 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. 
   2058      */
   2059     Marker?: String;
   2060     /**
   2061      * A list of HsmConfiguration objects.
   2062      */
   2063     HsmConfigurations?: HsmConfigurationList;
   2064   }
   2065   export interface HsmStatus {
   2066     /**
   2067      * Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.
   2068      */
   2069     HsmClientCertificateIdentifier?: String;
   2070     /**
   2071      * 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.
   2072      */
   2073     HsmConfigurationIdentifier?: String;
   2074     /**
   2075      * Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command. Values: active, applying
   2076      */
   2077     Status?: String;
   2078   }
   2079   export interface IPRange {
   2080     /**
   2081      * The status of the IP range, for example, "authorized".
   2082      */
   2083     Status?: String;
   2084     /**
   2085      * The IP range in Classless Inter-Domain Routing (CIDR) notation.
   2086      */
   2087     CIDRIP?: String;
   2088     /**
   2089      * The list of tags for the IP range.
   2090      */
   2091     Tags?: TagList;
   2092   }
   2093   export type IPRangeList = IPRange[];
   2094   export type IamRoleArnList = String[];
   2095   export type ImportTablesCompleted = String[];
   2096   export type ImportTablesInProgress = String[];
   2097   export type ImportTablesNotStarted = String[];
   2098   export type Integer = number;
   2099   export type IntegerOptional = number;
   2100   export interface LoggingStatus {
   2101     /**
   2102      *  true if logging is on, false if logging is off.
   2103      */
   2104     LoggingEnabled?: Boolean;
   2105     /**
   2106      * The name of the S3 bucket where the log files are stored.
   2107      */
   2108     BucketName?: String;
   2109     /**
   2110      * The prefix applied to the log file names.
   2111      */
   2112     S3KeyPrefix?: String;
   2113     /**
   2114      * The last time that logs were delivered.
   2115      */
   2116     LastSuccessfulDeliveryTime?: TStamp;
   2117     /**
   2118      * The last time when logs failed to be delivered.
   2119      */
   2120     LastFailureTime?: TStamp;
   2121     /**
   2122      * The message indicating that logs failed to be delivered.
   2123      */
   2124     LastFailureMessage?: String;
   2125   }
   2126   export type Long = number;
   2127   export type LongOptional = number;
   2128   export interface ModifyClusterIamRolesMessage {
   2129     /**
   2130      * The unique identifier of the cluster for which you want to associate or disassociate IAM roles.
   2131      */
   2132     ClusterIdentifier: String;
   2133     /**
   2134      * 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.
   2135      */
   2136     AddIamRoles?: IamRoleArnList;
   2137     /**
   2138      * 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.
   2139      */
   2140     RemoveIamRoles?: IamRoleArnList;
   2141   }
   2142   export interface ModifyClusterIamRolesResult {
   2143     Cluster?: Cluster;
   2144   }
   2145   export interface ModifyClusterMessage {
   2146     /**
   2147      * The unique identifier of the cluster to be modified. Example: examplecluster 
   2148      */
   2149     ClusterIdentifier: String;
   2150     /**
   2151      * 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  
   2152      */
   2153     ClusterType?: String;
   2154     /**
   2155      * The new node type of the cluster. If you specify a new node type, you must also specify the number of nodes parameter. When you submit your request to resize a cluster, Amazon Redshift sets access permissions for the cluster to read-only. After Amazon Redshift provisions a new cluster according to your resize requirements, there will be a temporary outage while the old cluster is deleted and your connection is switched to the new cluster. When the new connection is complete, the original access permissions for the cluster are restored. You can use DescribeResize to track the progress of the resize request.  Valid Values:  ds1.xlarge | ds1.8xlarge |  ds2.xlarge | ds2.8xlarge | dc1.large | dc1.8xlarge.
   2156      */
   2157     NodeType?: String;
   2158     /**
   2159      * The new number of nodes of the cluster. If you specify a new number of nodes, you must also specify the node type parameter. When you submit your request to resize a cluster, Amazon Redshift sets access permissions for the cluster to read-only. After Amazon Redshift provisions a new cluster according to your resize requirements, there will be a temporary outage while the old cluster is deleted and your connection is switched to the new cluster. When the new connection is complete, the original access permissions for the cluster are restored. You can use DescribeResize to track the progress of the resize request.  Valid Values: Integer greater than 0.
   2160      */
   2161     NumberOfNodes?: IntegerOptional;
   2162     /**
   2163      * 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  
   2164      */
   2165     ClusterSecurityGroups?: ClusterSecurityGroupNameList;
   2166     /**
   2167      * A list of virtual private cloud (VPC) security groups to be associated with the cluster.
   2168      */
   2169     VpcSecurityGroupIds?: VpcSecurityGroupIdList;
   2170     /**
   2171      * The new password for the cluster master 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.   Operations never return the password, so this operation provides a way to regain access to the master 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.  
   2172      */
   2173     MasterUserPassword?: String;
   2174     /**
   2175      * 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.
   2176      */
   2177     ClusterParameterGroupName?: String;
   2178     /**
   2179      * 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. Default: Uses existing setting. Constraints: Must be a value from 0 to 35.
   2180      */
   2181     AutomatedSnapshotRetentionPeriod?: IntegerOptional;
   2182     /**
   2183      * 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.
   2184      */
   2185     PreferredMaintenanceWindow?: String;
   2186     /**
   2187      * 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 
   2188      */
   2189     ClusterVersion?: String;
   2190     /**
   2191      * If true, major version upgrades will be applied automatically to the cluster during the maintenance window.  Default: false 
   2192      */
   2193     AllowVersionUpgrade?: BooleanOptional;
   2194     /**
   2195      * Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.
   2196      */
   2197     HsmClientCertificateIdentifier?: String;
   2198     /**
   2199      * 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.
   2200      */
   2201     HsmConfigurationIdentifier?: String;
   2202     /**
   2203      * 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 AWS account.   Example: examplecluster 
   2204      */
   2205     NewClusterIdentifier?: String;
   2206     /**
   2207      * If true, the cluster can be accessed from a public network. Only clusters in VPCs can be set to be publicly available.
   2208      */
   2209     PubliclyAccessible?: BooleanOptional;
   2210     /**
   2211      * 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.
   2212      */
   2213     ElasticIp?: String;
   2214     /**
   2215      * 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
   2216      */
   2217     EnhancedVpcRouting?: BooleanOptional;
   2218   }
   2219   export interface ModifyClusterParameterGroupMessage {
   2220     /**
   2221      * The name of the parameter group to be modified.
   2222      */
   2223     ParameterGroupName: String;
   2224     /**
   2225      * An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request. For each parameter to be modified, you must supply at least the parameter name and parameter value; other name-value pairs of the parameter are optional. For the workload management (WLM) configuration, you must supply all the name-value pairs in the wlm_json_configuration parameter.
   2226      */
   2227     Parameters: ParametersList;
   2228   }
   2229   export interface ModifyClusterResult {
   2230     Cluster?: Cluster;
   2231   }
   2232   export interface ModifyClusterSubnetGroupMessage {
   2233     /**
   2234      * The name of the subnet group to be modified.
   2235      */
   2236     ClusterSubnetGroupName: String;
   2237     /**
   2238      * A text description of the subnet group to be modified.
   2239      */
   2240     Description?: String;
   2241     /**
   2242      * An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single request.
   2243      */
   2244     SubnetIds: SubnetIdentifierList;
   2245   }
   2246   export interface ModifyClusterSubnetGroupResult {
   2247     ClusterSubnetGroup?: ClusterSubnetGroup;
   2248   }
   2249   export interface ModifyEventSubscriptionMessage {
   2250     /**
   2251      * The name of the modified Amazon Redshift event notification subscription.
   2252      */
   2253     SubscriptionName: String;
   2254     /**
   2255      * The Amazon Resource Name (ARN) of the SNS topic to be used by the event notification subscription.
   2256      */
   2257     SnsTopicArn?: String;
   2258     /**
   2259      * The type of source that will be generating the events. For example, if you want to be notified of events generated by a cluster, you would set this parameter to cluster. If this value is not specified, events are returned for all Amazon Redshift objects in your AWS account. You must specify a source type in order to specify source IDs. Valid values: cluster, cluster-parameter-group, cluster-security-group, and cluster-snapshot.
   2260      */
   2261     SourceType?: String;
   2262     /**
   2263      * A list of one or more identifiers of Amazon Redshift source objects. All of the objects must be of the same type as was specified in the source type parameter. The event subscription will return only events generated by the specified objects. If not specified, then events are returned for all objects within the source type specified. Example: my-cluster-1, my-cluster-2 Example: my-snapshot-20131010
   2264      */
   2265     SourceIds?: SourceIdsList;
   2266     /**
   2267      * Specifies the Amazon Redshift event categories to be published by the event notification subscription. Values: Configuration, Management, Monitoring, Security
   2268      */
   2269     EventCategories?: EventCategoriesList;
   2270     /**
   2271      * Specifies the Amazon Redshift event severity to be published by the event notification subscription. Values: ERROR, INFO
   2272      */
   2273     Severity?: String;
   2274     /**
   2275      * A Boolean value indicating if the subscription is enabled. true indicates the subscription is enabled 
   2276      */
   2277     Enabled?: BooleanOptional;
   2278   }
   2279   export interface ModifyEventSubscriptionResult {
   2280     EventSubscription?: EventSubscription;
   2281   }
   2282   export interface ModifySnapshotCopyRetentionPeriodMessage {
   2283     /**
   2284      * The unique identifier of the cluster for which you want to change the retention period for automated snapshots that are copied to a destination region. Constraints: Must be the valid name of an existing cluster that has cross-region snapshot copy enabled.
   2285      */
   2286     ClusterIdentifier: String;
   2287     /**
   2288      * The number of days to retain automated snapshots in the destination region after they are copied from the source region. If you decrease the retention period for automated snapshots that are copied to a destination region, Amazon Redshift will delete any existing automated snapshots that were copied to the destination region and that fall outside of the new retention period. Constraints: Must be at least 1 and no more than 35.
   2289      */
   2290     RetentionPeriod: Integer;
   2291   }
   2292   export interface ModifySnapshotCopyRetentionPeriodResult {
   2293     Cluster?: Cluster;
   2294   }
   2295   export interface OrderableClusterOption {
   2296     /**
   2297      * The version of the orderable cluster.
   2298      */
   2299     ClusterVersion?: String;
   2300     /**
   2301      * The cluster type, for example multi-node. 
   2302      */
   2303     ClusterType?: String;
   2304     /**
   2305      * The node type for the orderable cluster.
   2306      */
   2307     NodeType?: String;
   2308     /**
   2309      * A list of availability zones for the orderable cluster.
   2310      */
   2311     AvailabilityZones?: AvailabilityZoneList;
   2312   }
   2313   export type OrderableClusterOptionsList = OrderableClusterOption[];
   2314   export interface OrderableClusterOptionsMessage {
   2315     /**
   2316      * An OrderableClusterOption structure containing information about orderable options for the cluster.
   2317      */
   2318     OrderableClusterOptions?: OrderableClusterOptionsList;
   2319     /**
   2320      * 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. 
   2321      */
   2322     Marker?: String;
   2323   }
   2324   export interface Parameter {
   2325     /**
   2326      * The name of the parameter.
   2327      */
   2328     ParameterName?: String;
   2329     /**
   2330      * The value of the parameter.
   2331      */
   2332     ParameterValue?: String;
   2333     /**
   2334      * A description of the parameter.
   2335      */
   2336     Description?: String;
   2337     /**
   2338      * The source of the parameter value, such as "engine-default" or "user".
   2339      */
   2340     Source?: String;
   2341     /**
   2342      * The data type of the parameter.
   2343      */
   2344     DataType?: String;
   2345     /**
   2346      * The valid range of values for the parameter.
   2347      */
   2348     AllowedValues?: String;
   2349     /**
   2350      * Specifies how to apply the WLM configuration parameter. Some properties can be applied dynamically, while other properties require that any associated clusters be rebooted for the configuration changes to be applied. For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
   2351      */
   2352     ApplyType?: ParameterApplyType;
   2353     /**
   2354      * If true, the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed. 
   2355      */
   2356     IsModifiable?: Boolean;
   2357     /**
   2358      * The earliest engine version to which the parameter can apply.
   2359      */
   2360     MinimumEngineVersion?: String;
   2361   }
   2362   export type ParameterApplyType = "static"|"dynamic"|string;
   2363   export type ParameterGroupList = ClusterParameterGroup[];
   2364   export type ParametersList = Parameter[];
   2365   export interface PendingModifiedValues {
   2366     /**
   2367      * The pending or in-progress change of the master user password for the cluster.
   2368      */
   2369     MasterUserPassword?: String;
   2370     /**
   2371      * The pending or in-progress change of the cluster's node type.
   2372      */
   2373     NodeType?: String;
   2374     /**
   2375      * The pending or in-progress change of the number of nodes in the cluster.
   2376      */
   2377     NumberOfNodes?: IntegerOptional;
   2378     /**
   2379      * The pending or in-progress change of the cluster type.
   2380      */
   2381     ClusterType?: String;
   2382     /**
   2383      * The pending or in-progress change of the service version.
   2384      */
   2385     ClusterVersion?: String;
   2386     /**
   2387      * The pending or in-progress change of the automated snapshot retention period.
   2388      */
   2389     AutomatedSnapshotRetentionPeriod?: IntegerOptional;
   2390     /**
   2391      * The pending or in-progress change of the new identifier for the cluster.
   2392      */
   2393     ClusterIdentifier?: String;
   2394     /**
   2395      * The pending or in-progress change of the ability to connect to the cluster from the public network.
   2396      */
   2397     PubliclyAccessible?: BooleanOptional;
   2398     /**
   2399      * 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
   2400      */
   2401     EnhancedVpcRouting?: BooleanOptional;
   2402   }
   2403   export interface PurchaseReservedNodeOfferingMessage {
   2404     /**
   2405      * The unique identifier of the reserved node offering you want to purchase.
   2406      */
   2407     ReservedNodeOfferingId: String;
   2408     /**
   2409      * The number of reserved nodes that you want to purchase. Default: 1 
   2410      */
   2411     NodeCount?: IntegerOptional;
   2412   }
   2413   export interface PurchaseReservedNodeOfferingResult {
   2414     ReservedNode?: ReservedNode;
   2415   }
   2416   export interface RebootClusterMessage {
   2417     /**
   2418      * The cluster identifier.
   2419      */
   2420     ClusterIdentifier: String;
   2421   }
   2422   export interface RebootClusterResult {
   2423     Cluster?: Cluster;
   2424   }
   2425   export interface RecurringCharge {
   2426     /**
   2427      * The amount charged per the period of time specified by the recurring charge frequency.
   2428      */
   2429     RecurringChargeAmount?: Double;
   2430     /**
   2431      * The frequency at which the recurring charge amount is applied.
   2432      */
   2433     RecurringChargeFrequency?: String;
   2434   }
   2435   export type RecurringChargeList = RecurringCharge[];
   2436   export interface ReservedNode {
   2437     /**
   2438      * The unique identifier for the reservation.
   2439      */
   2440     ReservedNodeId?: String;
   2441     /**
   2442      * The identifier for the reserved node offering.
   2443      */
   2444     ReservedNodeOfferingId?: String;
   2445     /**
   2446      * The node type of the reserved node.
   2447      */
   2448     NodeType?: String;
   2449     /**
   2450      * The time the reservation started. You purchase a reserved node offering for a duration. This is the start time of that duration.
   2451      */
   2452     StartTime?: TStamp;
   2453     /**
   2454      * The duration of the node reservation in seconds.
   2455      */
   2456     Duration?: Integer;
   2457     /**
   2458      * The fixed cost Amazon Redshift charges you for this reserved node.
   2459      */
   2460     FixedPrice?: Double;
   2461     /**
   2462      * The hourly rate Amazon Redshift charges you for this reserved node.
   2463      */
   2464     UsagePrice?: Double;
   2465     /**
   2466      * The currency code for the reserved cluster.
   2467      */
   2468     CurrencyCode?: String;
   2469     /**
   2470      * The number of reserved compute nodes.
   2471      */
   2472     NodeCount?: Integer;
   2473     /**
   2474      * 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.  
   2475      */
   2476     State?: String;
   2477     /**
   2478      * The anticipated utilization of the reserved node, as defined in the reserved node offering.
   2479      */
   2480     OfferingType?: String;
   2481     /**
   2482      * The recurring charges for the reserved node.
   2483      */
   2484     RecurringCharges?: RecurringChargeList;
   2485   }
   2486   export type ReservedNodeList = ReservedNode[];
   2487   export interface ReservedNodeOffering {
   2488     /**
   2489      * The offering identifier.
   2490      */
   2491     ReservedNodeOfferingId?: String;
   2492     /**
   2493      * The node type offered by the reserved node offering.
   2494      */
   2495     NodeType?: String;
   2496     /**
   2497      * The duration, in seconds, for which the offering will reserve the node.
   2498      */
   2499     Duration?: Integer;
   2500     /**
   2501      * The upfront fixed charge you will pay to purchase the specific reserved node offering.
   2502      */
   2503     FixedPrice?: Double;
   2504     /**
   2505      * The rate you are charged for each hour the cluster that is using the offering is running.
   2506      */
   2507     UsagePrice?: Double;
   2508     /**
   2509      * The currency code for the compute nodes offering.
   2510      */
   2511     CurrencyCode?: String;
   2512     /**
   2513      * The anticipated utilization of the reserved node, as defined in the reserved node offering.
   2514      */
   2515     OfferingType?: String;
   2516     /**
   2517      * 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.
   2518      */
   2519     RecurringCharges?: RecurringChargeList;
   2520   }
   2521   export type ReservedNodeOfferingList = ReservedNodeOffering[];
   2522   export interface ReservedNodeOfferingsMessage {
   2523     /**
   2524      * 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. 
   2525      */
   2526     Marker?: String;
   2527     /**
   2528      * A list of ReservedNodeOffering objects.
   2529      */
   2530     ReservedNodeOfferings?: ReservedNodeOfferingList;
   2531   }
   2532   export interface ReservedNodesMessage {
   2533     /**
   2534      * 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. 
   2535      */
   2536     Marker?: String;
   2537     /**
   2538      * The list of ReservedNode objects.
   2539      */
   2540     ReservedNodes?: ReservedNodeList;
   2541   }
   2542   export interface ResetClusterParameterGroupMessage {
   2543     /**
   2544      * The name of the cluster parameter group to be reset.
   2545      */
   2546     ParameterGroupName: String;
   2547     /**
   2548      * If true, all parameters in the specified parameter group will be reset to their default values.  Default: true 
   2549      */
   2550     ResetAllParameters?: Boolean;
   2551     /**
   2552      * An array of names of parameters to be reset. If ResetAllParameters option is not used, then at least one parameter name must be supplied.  Constraints: A maximum of 20 parameters can be reset in a single request.
   2553      */
   2554     Parameters?: ParametersList;
   2555   }
   2556   export interface ResizeProgressMessage {
   2557     /**
   2558      * The node type that the cluster will have after the resize operation is complete.
   2559      */
   2560     TargetNodeType?: String;
   2561     /**
   2562      * The number of nodes that the cluster will have after the resize operation is complete.
   2563      */
   2564     TargetNumberOfNodes?: IntegerOptional;
   2565     /**
   2566      * The cluster type after the resize operation is complete. Valid Values: multi-node | single-node 
   2567      */
   2568     TargetClusterType?: String;
   2569     /**
   2570      * The status of the resize operation. Valid Values: NONE | IN_PROGRESS | FAILED | SUCCEEDED 
   2571      */
   2572     Status?: String;
   2573     /**
   2574      * The names of tables that have been completely imported . Valid Values: List of table names.
   2575      */
   2576     ImportTablesCompleted?: ImportTablesCompleted;
   2577     /**
   2578      * The names of tables that are being currently imported. Valid Values: List of table names.
   2579      */
   2580     ImportTablesInProgress?: ImportTablesInProgress;
   2581     /**
   2582      * The names of tables that have not been yet imported. Valid Values: List of table names
   2583      */
   2584     ImportTablesNotStarted?: ImportTablesNotStarted;
   2585     /**
   2586      * The average rate of the resize operation over the last few minutes, measured in megabytes per second. After the resize operation completes, this value shows the average rate of the entire resize operation.
   2587      */
   2588     AvgResizeRateInMegaBytesPerSecond?: DoubleOptional;
   2589     /**
   2590      * The estimated total amount of data, in megabytes, on the cluster before the resize operation began.
   2591      */
   2592     TotalResizeDataInMegaBytes?: LongOptional;
   2593     /**
   2594      * While the resize operation is in progress, this value shows the current amount of data, in megabytes, that has been processed so far. When the resize operation is complete, this value shows the total amount of data, in megabytes, on the cluster, which may be more or less than TotalResizeDataInMegaBytes (the estimated total amount of data before resize).
   2595      */
   2596     ProgressInMegaBytes?: LongOptional;
   2597     /**
   2598      * The amount of seconds that have elapsed since the resize operation began. After the resize operation completes, this value shows the total actual time, in seconds, for the resize operation.
   2599      */
   2600     ElapsedTimeInSeconds?: LongOptional;
   2601     /**
   2602      * The estimated time remaining, in seconds, until the resize operation is complete. This value is calculated based on the average resize rate and the estimated amount of data remaining to be processed. Once the resize operation is complete, this value will be 0.
   2603      */
   2604     EstimatedTimeToCompletionInSeconds?: LongOptional;
   2605   }
   2606   export type RestorableNodeTypeList = String[];
   2607   export interface RestoreFromClusterSnapshotMessage {
   2608     /**
   2609      * 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 AWS account.  
   2610      */
   2611     ClusterIdentifier: String;
   2612     /**
   2613      * The name of the snapshot from which to create the new cluster. This parameter isn't case sensitive. Example: my-snapshot-id 
   2614      */
   2615     SnapshotIdentifier: String;
   2616     /**
   2617      * 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.
   2618      */
   2619     SnapshotClusterIdentifier?: String;
   2620     /**
   2621      * The port number on which the cluster accepts connections. Default: The same port as the original cluster. Constraints: Must be between 1115 and 65535.
   2622      */
   2623     Port?: IntegerOptional;
   2624     /**
   2625      * The Amazon EC2 Availability Zone in which to restore the cluster. Default: A random, system-chosen Availability Zone. Example: us-east-1a 
   2626      */
   2627     AvailabilityZone?: String;
   2628     /**
   2629      * 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 
   2630      */
   2631     AllowVersionUpgrade?: BooleanOptional;
   2632     /**
   2633      * 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.
   2634      */
   2635     ClusterSubnetGroupName?: String;
   2636     /**
   2637      * If true, the cluster can be accessed from a public network. 
   2638      */
   2639     PubliclyAccessible?: BooleanOptional;
   2640     /**
   2641      * The AWS customer 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.
   2642      */
   2643     OwnerAccount?: String;
   2644     /**
   2645      * Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.
   2646      */
   2647     HsmClientCertificateIdentifier?: String;
   2648     /**
   2649      * 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.
   2650      */
   2651     HsmConfigurationIdentifier?: String;
   2652     /**
   2653      * The elastic IP (EIP) address for the cluster.
   2654      */
   2655     ElasticIp?: String;
   2656     /**
   2657      * 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.  
   2658      */
   2659     ClusterParameterGroupName?: String;
   2660     /**
   2661      * 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.
   2662      */
   2663     ClusterSecurityGroups?: ClusterSecurityGroupNameList;
   2664     /**
   2665      * 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.
   2666      */
   2667     VpcSecurityGroupIds?: VpcSecurityGroupIdList;
   2668     /**
   2669      * 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.
   2670      */
   2671     PreferredMaintenanceWindow?: String;
   2672     /**
   2673      * 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.  Default: The value selected for the cluster from which the snapshot was taken. Constraints: Must be a value from 0 to 35.
   2674      */
   2675     AutomatedSnapshotRetentionPeriod?: IntegerOptional;
   2676     /**
   2677      * The AWS 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.
   2678      */
   2679     KmsKeyId?: String;
   2680     /**
   2681      * 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 ds2.xlarge into ds1.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. For more information about node types, see  About Clusters and Nodes in the Amazon Redshift Cluster Management Guide 
   2682      */
   2683     NodeType?: String;
   2684     /**
   2685      * 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
   2686      */
   2687     EnhancedVpcRouting?: BooleanOptional;
   2688     /**
   2689      * Reserved.
   2690      */
   2691     AdditionalInfo?: String;
   2692     /**
   2693      * A list of AWS Identity and Access Management (IAM) roles that can be used by the cluster to access other AWS 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.
   2694      */
   2695     IamRoles?: IamRoleArnList;
   2696   }
   2697   export interface RestoreFromClusterSnapshotResult {
   2698     Cluster?: Cluster;
   2699   }
   2700   export interface RestoreStatus {
   2701     /**
   2702      * The status of the restore action. Returns starting, restoring, completed, or failed.
   2703      */
   2704     Status?: String;
   2705     /**
   2706      * The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup.
   2707      */
   2708     CurrentRestoreRateInMegaBytesPerSecond?: Double;
   2709     /**
   2710      * The size of the set of snapshot data used to restore the cluster.
   2711      */
   2712     SnapshotSizeInMegaBytes?: Long;
   2713     /**
   2714      * The number of megabytes that have been transferred from snapshot storage.
   2715      */
   2716     ProgressInMegaBytes?: Long;
   2717     /**
   2718      * The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish.
   2719      */
   2720     ElapsedTimeInSeconds?: Long;
   2721     /**
   2722      * The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore.
   2723      */
   2724     EstimatedTimeToCompletionInSeconds?: Long;
   2725   }
   2726   export interface RestoreTableFromClusterSnapshotMessage {
   2727     /**
   2728      * The identifier of the Amazon Redshift cluster to restore the table to.
   2729      */
   2730     ClusterIdentifier: String;
   2731     /**
   2732      * The identifier of the snapshot to restore the table from. This snapshot must have been created from the Amazon Redshift cluster specified by the ClusterIdentifier parameter.
   2733      */
   2734     SnapshotIdentifier: String;
   2735     /**
   2736      * The name of the source database that contains the table to restore from.
   2737      */
   2738     SourceDatabaseName: String;
   2739     /**
   2740      * The name of the source schema that contains the table to restore from. If you do not specify a SourceSchemaName value, the default is public.
   2741      */
   2742     SourceSchemaName?: String;
   2743     /**
   2744      * The name of the source table to restore from.
   2745      */
   2746     SourceTableName: String;
   2747     /**
   2748      * The name of the database to restore the table to.
   2749      */
   2750     TargetDatabaseName?: String;
   2751     /**
   2752      * The name of the schema to restore the table to.
   2753      */
   2754     TargetSchemaName?: String;
   2755     /**
   2756      * The name of the table to create as a result of the current request.
   2757      */
   2758     NewTableName: String;
   2759   }
   2760   export interface RestoreTableFromClusterSnapshotResult {
   2761     TableRestoreStatus?: TableRestoreStatus;
   2762   }
   2763   export interface RevokeClusterSecurityGroupIngressMessage {
   2764     /**
   2765      * The name of the security Group from which to revoke the ingress rule.
   2766      */
   2767     ClusterSecurityGroupName: String;
   2768     /**
   2769      * The IP range for which to revoke access. This range must be a valid Classless Inter-Domain Routing (CIDR) block of IP addresses. If CIDRIP is specified, EC2SecurityGroupName and EC2SecurityGroupOwnerId cannot be provided. 
   2770      */
   2771     CIDRIP?: String;
   2772     /**
   2773      * The name of the EC2 Security Group whose access is to be revoked. If EC2SecurityGroupName is specified, EC2SecurityGroupOwnerId must also be provided and CIDRIP cannot be provided. 
   2774      */
   2775     EC2SecurityGroupName?: String;
   2776     /**
   2777      * The AWS account number of the owner of the security group specified in the EC2SecurityGroupName parameter. The AWS access key ID is not an acceptable value. If EC2SecurityGroupOwnerId is specified, EC2SecurityGroupName must also be provided. and CIDRIP cannot be provided.  Example: 111122223333 
   2778      */
   2779     EC2SecurityGroupOwnerId?: String;
   2780   }
   2781   export interface RevokeClusterSecurityGroupIngressResult {
   2782     ClusterSecurityGroup?: ClusterSecurityGroup;
   2783   }
   2784   export interface RevokeSnapshotAccessMessage {
   2785     /**
   2786      * The identifier of the snapshot that the account can no longer access.
   2787      */
   2788     SnapshotIdentifier: String;
   2789     /**
   2790      * The identifier of the cluster the 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.
   2791      */
   2792     SnapshotClusterIdentifier?: String;
   2793     /**
   2794      * The identifier of the AWS customer account that can no longer restore the specified snapshot.
   2795      */
   2796     AccountWithRestoreAccess: String;
   2797   }
   2798   export interface RevokeSnapshotAccessResult {
   2799     Snapshot?: Snapshot;
   2800   }
   2801   export interface RotateEncryptionKeyMessage {
   2802     /**
   2803      * 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.
   2804      */
   2805     ClusterIdentifier: String;
   2806   }
   2807   export interface RotateEncryptionKeyResult {
   2808     Cluster?: Cluster;
   2809   }
   2810   export interface Snapshot {
   2811     /**
   2812      * The snapshot identifier that is provided in the request.
   2813      */
   2814     SnapshotIdentifier?: String;
   2815     /**
   2816      * The identifier of the cluster for which the snapshot was taken.
   2817      */
   2818     ClusterIdentifier?: String;
   2819     /**
   2820      * The time (UTC) when Amazon Redshift began the snapshot. A snapshot contains a copy of the cluster data as of this exact time.
   2821      */
   2822     SnapshotCreateTime?: TStamp;
   2823     /**
   2824      * The snapshot status. The value of the status depends on the API operation used.     CreateClusterSnapshot and CopyClusterSnapshot returns status as "creating".     DescribeClusterSnapshots returns status as "creating", "available", "final snapshot", or "failed".    DeleteClusterSnapshot returns status as "deleted".  
   2825      */
   2826     Status?: String;
   2827     /**
   2828      * The port that the cluster is listening on.
   2829      */
   2830     Port?: Integer;
   2831     /**
   2832      * The Availability Zone in which the cluster was created.
   2833      */
   2834     AvailabilityZone?: String;
   2835     /**
   2836      * The time (UTC) when the cluster was originally created.
   2837      */
   2838     ClusterCreateTime?: TStamp;
   2839     /**
   2840      * The master user name for the cluster.
   2841      */
   2842     MasterUsername?: String;
   2843     /**
   2844      * The version ID of the Amazon Redshift engine that is running on the cluster.
   2845      */
   2846     ClusterVersion?: String;
   2847     /**
   2848      * The snapshot type. Snapshots created using CreateClusterSnapshot and CopyClusterSnapshot will be of type "manual". 
   2849      */
   2850     SnapshotType?: String;
   2851     /**
   2852      * The node type of the nodes in the cluster.
   2853      */
   2854     NodeType?: String;
   2855     /**
   2856      * The number of nodes in the cluster.
   2857      */
   2858     NumberOfNodes?: Integer;
   2859     /**
   2860      * The name of the database that was created when the cluster was created.
   2861      */
   2862     DBName?: String;
   2863     /**
   2864      * The VPC identifier of the cluster if the snapshot is from a cluster in a VPC. Otherwise, this field is not in the output.
   2865      */
   2866     VpcId?: String;
   2867     /**
   2868      * If true, the data in the snapshot is encrypted at rest.
   2869      */
   2870     Encrypted?: Boolean;
   2871     /**
   2872      * The AWS Key Management Service (KMS) key ID of the encryption key that was used to encrypt data in the cluster from which the snapshot was taken.
   2873      */
   2874     KmsKeyId?: String;
   2875     /**
   2876      * A boolean that indicates whether the snapshot data is encrypted using the HSM keys of the source cluster. true indicates that the data is encrypted using HSM keys.
   2877      */
   2878     EncryptedWithHSM?: Boolean;
   2879     /**
   2880      * A list of the AWS customer accounts authorized to restore the snapshot. Returns null if no accounts are authorized. Visible only to the snapshot owner. 
   2881      */
   2882     AccountsWithRestoreAccess?: AccountsWithRestoreAccessList;
   2883     /**
   2884      * For manual snapshots, the AWS customer account used to create or copy the snapshot. For automatic snapshots, the owner of the cluster. The owner can perform all snapshot actions, such as sharing a manual snapshot.
   2885      */
   2886     OwnerAccount?: String;
   2887     /**
   2888      * The size of the complete set of backup data that would be used to restore the cluster.
   2889      */
   2890     TotalBackupSizeInMegaBytes?: Double;
   2891     /**
   2892      * The size of the incremental backup.
   2893      */
   2894     ActualIncrementalBackupSizeInMegaBytes?: Double;
   2895     /**
   2896      * The number of megabytes that have been transferred to the snapshot backup.
   2897      */
   2898     BackupProgressInMegaBytes?: Double;
   2899     /**
   2900      * The number of megabytes per second being transferred to the snapshot backup. Returns 0 for a completed backup. 
   2901      */
   2902     CurrentBackupRateInMegaBytesPerSecond?: Double;
   2903     /**
   2904      * The estimate of the time remaining before the snapshot backup will complete. Returns 0 for a completed backup. 
   2905      */
   2906     EstimatedSecondsToCompletion?: Long;
   2907     /**
   2908      * The amount of time an in-progress snapshot backup has been running, or the amount of time it took a completed backup to finish.
   2909      */
   2910     ElapsedTimeInSeconds?: Long;
   2911     /**
   2912      * The source region from which the snapshot was copied.
   2913      */
   2914     SourceRegion?: String;
   2915     /**
   2916      * The list of tags for the cluster snapshot.
   2917      */
   2918     Tags?: TagList;
   2919     /**
   2920      * The list of node types that this cluster snapshot is able to restore into.
   2921      */
   2922     RestorableNodeTypes?: RestorableNodeTypeList;
   2923     /**
   2924      * 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
   2925      */
   2926     EnhancedVpcRouting?: Boolean;
   2927   }
   2928   export interface SnapshotCopyGrant {
   2929     /**
   2930      * The name of the snapshot copy grant.
   2931      */
   2932     SnapshotCopyGrantName?: String;
   2933     /**
   2934      * The unique identifier of the customer master key (CMK) in AWS KMS to which Amazon Redshift is granted permission.
   2935      */
   2936     KmsKeyId?: String;
   2937     /**
   2938      * A list of tag instances.
   2939      */
   2940     Tags?: TagList;
   2941   }
   2942   export type SnapshotCopyGrantList = SnapshotCopyGrant[];
   2943   export interface SnapshotCopyGrantMessage {
   2944     /**
   2945      * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeSnapshotCopyGrant request exceed the value specified in MaxRecords, AWS 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 SnapshotCopyGrantName parameter or the Marker parameter, but not both. 
   2946      */
   2947     Marker?: String;
   2948     /**
   2949      * The list of SnapshotCopyGrant objects.
   2950      */
   2951     SnapshotCopyGrants?: SnapshotCopyGrantList;
   2952   }
   2953   export type SnapshotList = Snapshot[];
   2954   export interface SnapshotMessage {
   2955     /**
   2956      * 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. 
   2957      */
   2958     Marker?: String;
   2959     /**
   2960      * A list of Snapshot instances. 
   2961      */
   2962     Snapshots?: SnapshotList;
   2963   }
   2964   export type SourceIdsList = String[];
   2965   export type SourceType = "cluster"|"cluster-parameter-group"|"cluster-security-group"|"cluster-snapshot"|string;
   2966   export type String = string;
   2967   export interface Subnet {
   2968     /**
   2969      * The identifier of the subnet.
   2970      */
   2971     SubnetIdentifier?: String;
   2972     SubnetAvailabilityZone?: AvailabilityZone;
   2973     /**
   2974      * The status of the subnet.
   2975      */
   2976     SubnetStatus?: String;
   2977   }
   2978   export type SubnetIdentifierList = String[];
   2979   export type SubnetList = Subnet[];
   2980   export type TStamp = Date;
   2981   export interface TableRestoreStatus {
   2982     /**
   2983      * The unique identifier for the table restore request.
   2984      */
   2985     TableRestoreRequestId?: String;
   2986     /**
   2987      * A value that describes the current state of the table restore request. Valid Values: SUCCEEDED, FAILED, CANCELED, PENDING, IN_PROGRESS 
   2988      */
   2989     Status?: TableRestoreStatusType;
   2990     /**
   2991      * A description of the status of the table restore request. Status values include SUCCEEDED, FAILED, CANCELED, PENDING, IN_PROGRESS.
   2992      */
   2993     Message?: String;
   2994     /**
   2995      * The time that the table restore request was made, in Universal Coordinated Time (UTC).
   2996      */
   2997     RequestTime?: TStamp;
   2998     /**
   2999      * The amount of data restored to the new table so far, in megabytes (MB).
   3000      */
   3001     ProgressInMegaBytes?: LongOptional;
   3002     /**
   3003      * The total amount of data to restore to the new table, in megabytes (MB).
   3004      */
   3005     TotalDataInMegaBytes?: LongOptional;
   3006     /**
   3007      * The identifier of the Amazon Redshift cluster that the table is being restored to.
   3008      */
   3009     ClusterIdentifier?: String;
   3010     /**
   3011      * The identifier of the snapshot that the table is being restored from.
   3012      */
   3013     SnapshotIdentifier?: String;
   3014     /**
   3015      * The name of the source database that contains the table being restored.
   3016      */
   3017     SourceDatabaseName?: String;
   3018     /**
   3019      * The name of the source schema that contains the table being restored.
   3020      */
   3021     SourceSchemaName?: String;
   3022     /**
   3023      * The name of the source table being restored.
   3024      */
   3025     SourceTableName?: String;
   3026     /**
   3027      * The name of the database to restore the table to.
   3028      */
   3029     TargetDatabaseName?: String;
   3030     /**
   3031      * The name of the schema to restore the table to.
   3032      */
   3033     TargetSchemaName?: String;
   3034     /**
   3035      * The name of the table to create as a result of the table restore request.
   3036      */
   3037     NewTableName?: String;
   3038   }
   3039   export type TableRestoreStatusList = TableRestoreStatus[];
   3040   export interface TableRestoreStatusMessage {
   3041     /**
   3042      * A list of status details for one or more table restore requests.
   3043      */
   3044     TableRestoreStatusDetails?: TableRestoreStatusList;
   3045     /**
   3046      * A pagination token that can be used in a subsequent DescribeTableRestoreStatus request.
   3047      */
   3048     Marker?: String;
   3049   }
   3050   export type TableRestoreStatusType = "PENDING"|"IN_PROGRESS"|"SUCCEEDED"|"FAILED"|"CANCELED"|string;
   3051   export interface Tag {
   3052     /**
   3053      * The key, or name, for the resource tag.
   3054      */
   3055     Key?: String;
   3056     /**
   3057      * The value for the resource tag.
   3058      */
   3059     Value?: String;
   3060   }
   3061   export type TagKeyList = String[];
   3062   export type TagList = Tag[];
   3063   export type TagValueList = String[];
   3064   export interface TaggedResource {
   3065     /**
   3066      * The tag for the resource.
   3067      */
   3068     Tag?: Tag;
   3069     /**
   3070      * The Amazon Resource Name (ARN) with which the tag is associated. For example, arn:aws:redshift:us-east-1:123456789:cluster:t1.
   3071      */
   3072     ResourceName?: String;
   3073     /**
   3074      * The type of resource with which the tag is associated. Valid resource types are:    Cluster   CIDR/IP   EC2 security group   Snapshot   Cluster security group   Subnet group   HSM connection   HSM certificate   Parameter group   For more information about Amazon Redshift resource types and constructing ARNs, go to Constructing an Amazon Redshift Amazon Resource Name (ARN) in the Amazon Redshift Cluster Management Guide. 
   3075      */
   3076     ResourceType?: String;
   3077   }
   3078   export type TaggedResourceList = TaggedResource[];
   3079   export interface TaggedResourceListMessage {
   3080     /**
   3081      * A list of tags with their associated resources.
   3082      */
   3083     TaggedResources?: TaggedResourceList;
   3084     /**
   3085      * 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. 
   3086      */
   3087     Marker?: String;
   3088   }
   3089   export type VpcSecurityGroupIdList = String[];
   3090   export interface VpcSecurityGroupMembership {
   3091     /**
   3092      * The identifier of the VPC security group.
   3093      */
   3094     VpcSecurityGroupId?: String;
   3095     /**
   3096      * The status of the VPC security group.
   3097      */
   3098     Status?: String;
   3099   }
   3100   export type VpcSecurityGroupMembershipList = VpcSecurityGroupMembership[];
   3101   /**
   3102    * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
   3103    */
   3104   export type apiVersion = "2012-12-01"|"latest"|string;
   3105   export interface ClientApiVersions {
   3106     /**
   3107      * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
   3108      */
   3109     apiVersion?: apiVersion;
   3110   }
   3111   export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
   3112 }
   3113 export = Redshift;