aws-sdk-core 2.0.48 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. checksums.yaml +4 -4
  2. data/apis/autoscaling/2011-01-01/api-2.json +636 -33
  3. data/apis/cloudhsm/2014-05-30/api-2.json +3 -6
  4. data/apis/ec2/2014-10-01/api-2.json +10267 -0
  5. data/apis/ec2/2014-10-01/paginators-1.json +125 -0
  6. data/apis/ec2/2014-10-01/resources-1.json +2289 -0
  7. data/apis/ec2/2014-10-01/waiters-2.json +453 -0
  8. data/apis/ec2/2015-03-01/api-2.json +11245 -0
  9. data/apis/ec2/2015-03-01/paginators-1.json +125 -0
  10. data/apis/ec2/2015-03-01/resources-1.json +2479 -0
  11. data/apis/ec2/2015-03-01/waiters-2.json +458 -0
  12. data/apis/ec2/2015-04-15/api-2.json +182 -2
  13. data/apis/ecs/2014-11-13/api-2.json +316 -7
  14. data/apis/ecs/2014-11-13/paginators-1.json +40 -0
  15. data/apis/ecs/2014-11-13/waiters-2.json +93 -0
  16. data/apis/redshift/2012-12-01/waiters-2.json +19 -0
  17. data/apis/s3/2006-03-01/api-2.json +1 -2
  18. data/apis/sqs/2012-11-05/api-2.json +5 -6
  19. data/ca-bundle.crt +3554 -0
  20. data/lib/aws-sdk-core.rb +127 -44
  21. data/lib/aws-sdk-core/api/builder.rb +95 -0
  22. data/lib/aws-sdk-core/api/customizations.rb +152 -0
  23. data/lib/aws-sdk-core/api/docs/builder.rb +220 -0
  24. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +109 -0
  25. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +66 -0
  26. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +107 -0
  27. data/lib/aws-sdk-core/api/docs/param_formatter.rb +163 -0
  28. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +22 -0
  29. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +91 -0
  30. data/lib/aws-sdk-core/api/docs/utils.rb +133 -0
  31. data/lib/aws-sdk-core/api/shape_map.rb +140 -0
  32. data/lib/aws-sdk-core/assume_role_credentials.rb +9 -6
  33. data/lib/aws-sdk-core/client.rb +9 -6
  34. data/lib/aws-sdk-core/client_stubs.rb +127 -133
  35. data/lib/aws-sdk-core/client_waiters.rb +1 -1
  36. data/lib/aws-sdk-core/credential_provider.rb +44 -0
  37. data/lib/aws-sdk-core/credential_provider_chain.rb +3 -2
  38. data/lib/aws-sdk-core/credentials.rb +5 -0
  39. data/lib/aws-sdk-core/deprecations.rb +69 -0
  40. data/lib/aws-sdk-core/dynamodb.rb +12 -0
  41. data/lib/aws-sdk-core/eager_loader.rb +31 -0
  42. data/lib/aws-sdk-core/ecs.rb +2 -0
  43. data/lib/aws-sdk-core/empty_structure.rb +1 -82
  44. data/lib/aws-sdk-core/endpoint_provider.rb +1 -1
  45. data/lib/aws-sdk-core/instance_profile_credentials.rb +9 -10
  46. data/lib/aws-sdk-core/json.rb +56 -0
  47. data/lib/aws-sdk-core/json/builder.rb +33 -34
  48. data/lib/aws-sdk-core/json/error_handler.rb +2 -2
  49. data/lib/aws-sdk-core/json/handler.rb +67 -0
  50. data/lib/aws-sdk-core/json/json_engine.rb +15 -0
  51. data/lib/aws-sdk-core/json/oj_engine.rb +15 -0
  52. data/lib/aws-sdk-core/json/parser.rb +30 -38
  53. data/lib/aws-sdk-core/pageable_response.rb +9 -12
  54. data/lib/aws-sdk-core/pager.rb +69 -0
  55. data/lib/aws-sdk-core/param_converter.rb +203 -0
  56. data/lib/aws-sdk-core/param_validator.rb +148 -0
  57. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +21 -18
  58. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +9 -1
  59. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +2 -3
  60. data/lib/aws-sdk-core/plugins/param_converter.rb +27 -0
  61. data/lib/aws-sdk-core/plugins/param_validator.rb +28 -0
  62. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +3 -7
  63. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +1 -2
  64. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -1
  65. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +1 -1
  66. data/lib/aws-sdk-core/plugins/request_signer.rb +5 -5
  67. data/lib/aws-sdk-core/plugins/response_paging.rb +20 -11
  68. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +1 -1
  69. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +1 -2
  70. data/lib/aws-sdk-core/plugins/stub_responses.rb +25 -27
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +29 -34
  72. data/lib/aws-sdk-core/query/handler.rb +32 -18
  73. data/lib/aws-sdk-core/query/param_builder.rb +45 -53
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +3 -15
  75. data/lib/aws-sdk-core/rest/handler.rb +22 -0
  76. data/lib/aws-sdk-core/rest/request/body.rb +58 -0
  77. data/lib/aws-sdk-core/rest/request/builder.rb +50 -0
  78. data/lib/aws-sdk-core/rest/request/endpoint.rb +70 -0
  79. data/lib/aws-sdk-core/rest/request/headers.rb +48 -0
  80. data/lib/aws-sdk-core/rest/response/body.rb +43 -0
  81. data/lib/aws-sdk-core/rest/response/headers.rb +60 -0
  82. data/lib/aws-sdk-core/rest/response/parser.rb +47 -0
  83. data/lib/aws-sdk-core/rest/response/status_code.rb +24 -0
  84. data/lib/aws-sdk-core/shared_credentials.rb +11 -6
  85. data/lib/aws-sdk-core/signers/base.rb +1 -1
  86. data/lib/aws-sdk-core/signers/s3.rb +2 -3
  87. data/lib/aws-sdk-core/signers/v2.rb +7 -4
  88. data/lib/aws-sdk-core/signers/v4.rb +11 -22
  89. data/lib/aws-sdk-core/structure.rb +26 -145
  90. data/lib/aws-sdk-core/stubbing/data_applicator.rb +46 -0
  91. data/lib/aws-sdk-core/stubbing/empty_stub.rb +53 -0
  92. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +49 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/json.rb +40 -0
  94. data/lib/aws-sdk-core/stubbing/protocols/query.rb +40 -0
  95. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +67 -0
  96. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +25 -0
  97. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +38 -0
  98. data/lib/aws-sdk-core/stubbing/stub_data.rb +34 -0
  99. data/lib/aws-sdk-core/version.rb +1 -1
  100. data/lib/aws-sdk-core/xml/builder.rb +58 -52
  101. data/lib/aws-sdk-core/xml/default_map.rb +10 -0
  102. data/lib/aws-sdk-core/xml/doc_builder.rb +86 -0
  103. data/lib/aws-sdk-core/xml/error_handler.rb +7 -2
  104. data/lib/aws-sdk-core/xml/parser.rb +4 -4
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +75 -70
  106. data/lib/aws-sdk-core/xml/parser/stack.rb +4 -4
  107. data/lib/seahorse.rb +0 -11
  108. data/lib/seahorse/client/base.rb +3 -12
  109. data/lib/seahorse/client/http/request.rb +9 -5
  110. data/lib/seahorse/client/plugins/endpoint.rb +5 -56
  111. data/lib/seahorse/client/plugins/restful_bindings.rb +38 -31
  112. data/lib/seahorse/client/request_context.rb +2 -2
  113. data/lib/seahorse/client/response.rb +6 -5
  114. data/lib/seahorse/model/api.rb +18 -61
  115. data/lib/seahorse/model/operation.rb +24 -54
  116. data/lib/seahorse/model/shapes.rb +120 -364
  117. data/lib/seahorse/util.rb +2 -6
  118. metadata +56 -109
  119. data/apis/autoscaling/2011-01-01/docs-2.json +0 -1246
  120. data/apis/cloudformation/2010-05-15/docs-2.json +0 -725
  121. data/apis/cloudfront/2014-11-06/docs-2.json +0 -1125
  122. data/apis/cloudhsm/2014-05-30/docs-2.json +0 -472
  123. data/apis/cloudsearch/2013-01-01/docs-2.json +0 -865
  124. data/apis/cloudsearchdomain/2013-01-01/docs-2.json +0 -311
  125. data/apis/cloudtrail/2013-11-01/docs-2.json +0 -328
  126. data/apis/codedeploy/2014-10-06/docs-2.json +0 -1261
  127. data/apis/cognito-identity/2014-06-30/docs-2.json +0 -506
  128. data/apis/cognito-sync/2014-06-30/docs-2.json +0 -582
  129. data/apis/config/2014-10-17/docs-2.json +0 -513
  130. data/apis/config/2014-11-12/docs-2.json +0 -514
  131. data/apis/datapipeline/2012-10-29/docs-2.json +0 -607
  132. data/apis/directconnect/2012-10-25/docs-2.json +0 -494
  133. data/apis/ds/2015-04-16/docs-2.json +0 -753
  134. data/apis/dynamodb/2011-12-05/api-2.json +0 -949
  135. data/apis/dynamodb/2011-12-05/docs-2.json +0 -606
  136. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  137. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  138. data/apis/dynamodb/2012-08-10/docs-2.json +0 -977
  139. data/apis/ec2/2015-04-15/docs-2.json +0 -5368
  140. data/apis/ecs/2014-11-13/docs-2.json +0 -791
  141. data/apis/elasticache/2015-02-02/docs-2.json +0 -1390
  142. data/apis/elasticbeanstalk/2010-12-01/docs-2.json +0 -1114
  143. data/apis/elasticfilesystem/2015-02-01/docs-2.json +0 -414
  144. data/apis/elasticloadbalancing/2012-06-01/docs-2.json +0 -1078
  145. data/apis/elasticmapreduce/2009-03-31/docs-2.json +0 -969
  146. data/apis/elastictranscoder/2012-09-25/docs-2.json +0 -1152
  147. data/apis/email/2010-12-01/docs-2.json +0 -441
  148. data/apis/glacier/2012-06-01/docs-2.json +0 -575
  149. data/apis/iam/2010-05-08/docs-2.json +0 -2138
  150. data/apis/importexport/2010-06-01/docs-2.json +0 -432
  151. data/apis/kinesis/2013-12-02/docs-2.json +0 -424
  152. data/apis/kms/2014-11-01/docs-2.json +0 -628
  153. data/apis/lambda/2014-11-11/docs-2.json +0 -303
  154. data/apis/lambda/2015-03-31/docs-2.json +0 -490
  155. data/apis/logs/2014-03-28/docs-2.json +0 -599
  156. data/apis/machinelearning/2014-12-12/docs-2.json +0 -1034
  157. data/apis/monitoring/2010-08-01/docs-2.json +0 -514
  158. data/apis/opsworks/2013-02-18/docs-2.json +0 -1592
  159. data/apis/rds/2014-10-31/docs-2.json +0 -2074
  160. data/apis/redshift/2012-12-01/docs-2.json +0 -1890
  161. data/apis/route53/2013-04-01/docs-2.json +0 -1159
  162. data/apis/route53domains/2014-05-15/docs-2.json +0 -620
  163. data/apis/s3/2006-03-01/docs-2.json +0 -2213
  164. data/apis/sdb/2009-04-15/docs-2.json +0 -339
  165. data/apis/sns/2010-03-31/docs-2.json +0 -564
  166. data/apis/sqs/2012-11-05/docs-2.json +0 -503
  167. data/apis/ssm/2014-11-06/docs-2.json +0 -440
  168. data/apis/storagegateway/2013-06-30/docs-2.json +0 -1331
  169. data/apis/sts/2011-06-15/docs-2.json +0 -351
  170. data/apis/support/2013-04-15/docs-2.json +0 -680
  171. data/apis/swf/2012-01-25/docs-2.json +0 -1569
  172. data/apis/workspaces/2015-04-08/docs-2.json +0 -457
  173. data/lib/aws-sdk-core/api/customizer.rb +0 -75
  174. data/lib/aws-sdk-core/api/docstrings.rb +0 -38
  175. data/lib/aws-sdk-core/api/documenter.rb +0 -241
  176. data/lib/aws-sdk-core/api/operation_documenter.rb +0 -173
  177. data/lib/aws-sdk-core/api/operation_example.rb +0 -133
  178. data/lib/aws-sdk-core/api/service_customizations.rb +0 -140
  179. data/lib/aws-sdk-core/client_paging.rb +0 -31
  180. data/lib/aws-sdk-core/json/rest_handler.rb +0 -20
  181. data/lib/aws-sdk-core/json/rpc_body_handler.rb +0 -38
  182. data/lib/aws-sdk-core/json/rpc_headers_handler.rb +0 -34
  183. data/lib/aws-sdk-core/json/simple_body_handler.rb +0 -34
  184. data/lib/aws-sdk-core/paging/null_pager.rb +0 -20
  185. data/lib/aws-sdk-core/paging/null_provider.rb +0 -13
  186. data/lib/aws-sdk-core/paging/pager.rb +0 -70
  187. data/lib/aws-sdk-core/paging/provider.rb +0 -22
  188. data/lib/aws-sdk-core/rest_body_handler.rb +0 -111
  189. data/lib/aws-sdk-core/signers/handler.rb +0 -18
  190. data/lib/aws-sdk-core/xml/rest_handler.rb +0 -20
  191. data/lib/seahorse/client/param_converter.rb +0 -207
  192. data/lib/seahorse/client/param_validator.rb +0 -139
  193. data/lib/seahorse/client/plugins/json_simple.rb +0 -33
  194. data/lib/seahorse/client/plugins/param_conversion.rb +0 -29
  195. data/lib/seahorse/client/plugins/param_validation.rb +0 -30
  196. data/lib/seahorse/client/xml/builder.rb +0 -91
  197. data/lib/seahorse/model/shape_map.rb +0 -47
@@ -1,1890 +0,0 @@
1
- {
2
- "operations": {
3
- "AuthorizeClusterSecurityGroupIngress": "<p> 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 EC2 instance, you can authorize inbound access to either a Classless Interdomain Routing (CIDR) IP address range or an EC2 security group. You can add as many as 20 ingress rules to an Amazon Redshift security group. </p> <note> The EC2 security group must be defined in the AWS region where the cluster resides. </note> <p>For an overview of CIDR blocks, see the Wikipedia article on <a href=\"http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing\">Classless Inter-Domain Routing</a>. </p> <p> 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 <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html\">Working with Security Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>.</p>",
4
- "AuthorizeSnapshotAccess": "<p> Authorizes the specified AWS customer account to restore the specified snapshot. </p> <p> For more information about working with snapshots, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html\">Amazon Redshift Snapshots</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
5
- "CopyClusterSnapshot": "<p> 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. </p> <p> 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. </p> <p> For more information about working with snapshots, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html\">Amazon Redshift Snapshots</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
6
- "CreateCluster": "<p> Creates a new cluster. To create the cluster in virtual private cloud (VPC), you must provide cluster subnet group name. If you don't provide a cluster subnet group name or the cluster security group parameter, Amazon Redshift creates a non-VPC cluster, it associates the default cluster security group with the cluster. For more information about managing clusters, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html\">Amazon Redshift Clusters</a> in the <i>Amazon Redshift Cluster Management Guide</i> . </p>",
7
- "CreateClusterParameterGroup": "<p> Creates an Amazon Redshift parameter group. </p> <p>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 <a>ModifyCluster</a>. </p> <p> Parameters in the parameter group define specific behavior that applies to the databases you create on the cluster. For more information about managing parameter groups, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html\">Amazon Redshift Parameter Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
8
- "CreateClusterSecurityGroup": "<p> Creates a new Amazon Redshift security group. You use security groups to control access to non-VPC clusters. </p> <p> For information about managing security groups, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html\">Amazon Redshift Cluster Security Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
9
- "CreateClusterSnapshot": "<p> Creates a manual snapshot of the specified cluster. The cluster must be in the <code>available</code> state. </p> <p> For more information about working with snapshots, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html\">Amazon Redshift Snapshots</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
10
- "CreateClusterSubnetGroup": "<p> 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. </p> <p> For information about subnet groups, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-cluster-subnet-groups.html\">Amazon Redshift Cluster Subnet Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
11
- "CreateEventSubscription": "<p> 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. </p> <p> 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. </p> <p> 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. </p>",
12
- "CreateHsmClientCertificate": "<p>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.</p> <p>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 <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-HSM.html\">Hardware Security Modules</a> in the Amazon Redshift Cluster Management Guide.</p>",
13
- "CreateHsmConfiguration": "<p>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.</p> <p>In addition to creating an HSM configuration, you must also create an HSM client certificate. For more information, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-HSM.html\">Hardware Security Modules</a> in the Amazon Redshift Cluster Management Guide.</p>",
14
- "CreateTags": "<p> Adds one or more tags to a specified resource. </p> <p> 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. </p> <p> If you specify a key that already exists for the resource, the value for that key will be updated with the new value. </p>",
15
- "DeleteCluster": "<p> Deletes a previously provisioned cluster. A successful response from the web service indicates that the request was received correctly. Use <a>DescribeClusters</a> 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 <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html\">Amazon Redshift Clusters</a> in the <i>Amazon Redshift Cluster Management Guide</i> . </p> <p> If you want to shut down the cluster and retain it for future use, set <i>SkipFinalClusterSnapshot</i> to <code>false</code> and specify a name for <i>FinalClusterSnapshotIdentifier</i>. 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. </p> <p> For more information about managing clusters, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html\">Amazon Redshift Clusters</a> in the <i>Amazon Redshift Cluster Management Guide</i> . </p>",
16
- "DeleteClusterParameterGroup": "<p> Deletes a specified Amazon Redshift parameter group. <note>You cannot delete a parameter group if it is associated with a cluster.</note> </p>",
17
- "DeleteClusterSecurityGroup": "<p> Deletes an Amazon Redshift security group. </p> <note>You cannot delete a security group that is associated with any clusters. You cannot delete the default security group.</note> <p> For information about managing security groups, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html\">Amazon Redshift Cluster Security Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
18
- "DeleteClusterSnapshot": "<p> Deletes the specified manual snapshot. The snapshot must be in the <code>available</code> state, with no other users authorized to access the snapshot. </p> <p> 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. </p>",
19
- "DeleteClusterSubnetGroup": "<p> Deletes the specified cluster subnet group. </p>",
20
- "DeleteEventSubscription": "<p> Deletes an Amazon Redshift event notification subscription. </p>",
21
- "DeleteHsmClientCertificate": "<p>Deletes the specified HSM client certificate.</p>",
22
- "DeleteHsmConfiguration": "<p>Deletes the specified Amazon Redshift HSM configuration.</p>",
23
- "DeleteTags": "<p> 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.</p>",
24
- "DescribeClusterParameterGroups": "<p> 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. </p> <p> For more information about managing parameter groups, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html\">Amazon Redshift Parameter Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p> <p>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 <code>owner</code> and <code>environment</code> for tag keys, and <code>admin</code> and <code>test</code> for tag values, all parameter groups that have any combination of those values are returned.</p> <p>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.</p>",
25
- "DescribeClusterParameters": "<p> 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. </p> <p>You can specify <i>source</i> filter to retrieve parameters of only specific type. For example, to retrieve parameters that were modified by a user action such as from <a>ModifyClusterParameterGroup</a>, you can specify <i>source</i> equal to <i>user</i>.</p> <p> For more information about managing parameter groups, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html\">Amazon Redshift Parameter Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
26
- "DescribeClusterSecurityGroups": "<p> 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. </p> <p> For information about managing security groups, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html\">Amazon Redshift Cluster Security Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p> <p>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 <code>owner</code> and <code>environment</code> for tag keys, and <code>admin</code> and <code>test</code> for tag values, all security groups that have any combination of those values are returned.</p> <p>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.</p>",
27
- "DescribeClusterSnapshots": "<p> 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. </p> <p>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 <code>owner</code> and <code>environment</code> for tag keys, and <code>admin</code> and <code>test</code> 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.</p> <p>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.</p>",
28
- "DescribeClusterSubnetGroups": "<p> 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. </p> <p>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 <code>owner</code> and <code>environment</code> for tag keys, and <code>admin</code> and <code>test</code> for tag values, all subnet groups that have any combination of those values are returned.</p> <p>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.</p>",
29
- "DescribeClusterVersions": "<p> 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 <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html\">Amazon Redshift Clusters</a> in the <i>Amazon Redshift Cluster Management Guide</i> </p>",
30
- "DescribeClusters": "<p> 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 <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html\">Amazon Redshift Clusters</a> in the <i>Amazon Redshift Cluster Management Guide</i> . </p> <p>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 <code>owner</code> and <code>environment</code> for tag keys, and <code>admin</code> and <code>test</code> for tag values, all clusters that have any combination of those values are returned.</p> <p>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.</p>",
31
- "DescribeDefaultClusterParameters": "<p> Returns a list of parameter settings for the specified parameter group family. </p> <p> For more information about managing parameter groups, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html\">Amazon Redshift Parameter Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
32
- "DescribeEventCategories": "<p>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 <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-event-notifications.html\">Amazon Redshift Event Notifications</a>.</p>",
33
- "DescribeEventSubscriptions": "<p> 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. </p>",
34
- "DescribeEvents": "<p> 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. </p>",
35
- "DescribeHsmClientCertificates": "<p>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.</p> <p>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 <code>owner</code> and <code>environment</code> for tag keys, and <code>admin</code> and <code>test</code> for tag values, all HSM client certificates that have any combination of those values are returned.</p> <p>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.</p>",
36
- "DescribeHsmConfigurations": "<p>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.</p> <p>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 <code>owner</code> and <code>environment</code> for tag keys, and <code>admin</code> and <code>test</code> for tag values, all HSM connections that have any combination of those values are returned.</p> <p>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.</p>",
37
- "DescribeLoggingStatus": "<p>Describes whether information, such as queries and connection attempts, is being logged for the specified Amazon Redshift cluster.</p>",
38
- "DescribeOrderableClusterOptions": "<p> 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 <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html\">Amazon Redshift Clusters</a> in the <i>Amazon Redshift Cluster Management Guide</i> </p>",
39
- "DescribeReservedNodeOfferings": "<p> 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 <a>PurchaseReservedNodeOffering</a> to reserve one or more nodes for your Amazon Redshift cluster. </p> <p> For more information about managing parameter groups, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/purchase-reserved-node-instance.html\">Purchasing Reserved Nodes</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
40
- "DescribeReservedNodes": "<p> Returns the descriptions of the reserved nodes. </p>",
41
- "DescribeResize": "<p> Returns information about the last resize operation for the specified cluster. If no resize operation has ever been initiated for the specified cluster, a <code>HTTP 404</code> error is returned. If a resize operation was initiated and completed, the status of the resize remains as <code>SUCCEEDED</code> until the next resize. </p> <p> A resize operation can be requested using <a>ModifyCluster</a> and specifying a different number or type of nodes for the cluster. </p>",
42
- "DescribeTags": "<p> 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.</p> <p> The following are limitations for <code>DescribeTags</code>: <ul> <li>You cannot specify an ARN and a resource-type value together in the same request.</li> <li>You cannot use the <code>MaxRecords</code> and <code>Marker</code> parameters together with the ARN parameter.</li> <li>The <code>MaxRecords</code> parameter can be a range from 10 to 50 results to return in a request.</li> </ul> </p> <p>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 <code>owner</code> and <code>environment</code> for tag keys, and <code>admin</code> and <code>test</code> for tag values, all resources that have any combination of those values are returned.</p> <p>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.</p>",
43
- "DisableLogging": "<p>Stops logging information, such as queries and connection attempts, for the specified Amazon Redshift cluster.</p>",
44
- "DisableSnapshotCopy": "<p>Disables the automatic copying of snapshots from one region to another region for a specified cluster.</p>",
45
- "EnableLogging": "<p>Starts logging information, such as queries and connection attempts, for the specified Amazon Redshift cluster.</p>",
46
- "EnableSnapshotCopy": "<p>Enables the automatic copy of snapshots from one region to another region for a specified cluster.</p>",
47
- "ModifyCluster": "<p> 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 <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html\">Amazon Redshift Clusters</a> in the <i>Amazon Redshift Cluster Management Guide</i> . </p> <p>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.</p>",
48
- "ModifyClusterParameterGroup": "<p> Modifies the parameters of a parameter group. </p> <p> For more information about managing parameter groups, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html\">Amazon Redshift Parameter Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
49
- "ModifyClusterSubnetGroup": "<p> 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. </p>",
50
- "ModifyEventSubscription": "<p> Modifies an existing Amazon Redshift event notification subscription. </p>",
51
- "ModifySnapshotCopyRetentionPeriod": "<p> Modifies the number of days to retain automated snapshots in the destination region after they are copied from the source region. </p>",
52
- "PurchaseReservedNodeOffering": "<p> Allows you to purchase reserved nodes. Amazon Redshift offers a predefined set of reserved node offerings. You can purchase one of the offerings. You can call the <a>DescribeReservedNodeOfferings</a> 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. </p> <p> For more information about managing parameter groups, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/purchase-reserved-node-instance.html\">Purchasing Reserved Nodes</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
53
- "RebootCluster": "<p> 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 <code>rebooting</code>. A cluster event is created when the reboot is completed. Any pending cluster modifications (see <a>ModifyCluster</a>) are applied at this reboot. For more information about managing clusters, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html\">Amazon Redshift Clusters</a> in the <i>Amazon Redshift Cluster Management Guide</i> </p>",
54
- "ResetClusterParameterGroup": "<p> 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 <i>ResetAllParameters</i> parameter. For parameter changes to take effect you must reboot any associated clusters. </p>",
55
- "RestoreFromClusterSnapshot": "<p> Creates a new cluster from a snapshot. 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 group. After Amazon Redshift creates the cluster you can use the <a>ModifyCluster</a> API to associate a different security group and different parameter group with the restored cluster. </p> <p> If you restore a cluster into a VPC, you must provide a cluster subnet group where you want the cluster restored. </p> <p> For more information about working with snapshots, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html\">Amazon Redshift Snapshots</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
56
- "RevokeClusterSecurityGroupIngress": "<p> 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 <a>AuthorizeClusterSecurityGroupIngress</a>. For information about managing security groups, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html\">Amazon Redshift Cluster Security Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
57
- "RevokeSnapshotAccess": "<p> 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. </p> <p> For more information about working with snapshots, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html\">Amazon Redshift Snapshots</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
58
- "RotateEncryptionKey": "<p> Rotates the encryption keys for a cluster. </p>"
59
- },
60
- "service": "<fullname>Amazon Redshift</fullname> <b>Overview</b> <p> This is an interface reference for Amazon Redshift. It contains documentation for one of the programming or command line interfaces you can use to manage Amazon Redshift clusters. Note that Amazon Redshift is asynchronous, which means that some interfaces may require techniques, such as polling or asynchronous callback handlers, to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a change is applied immediately, on the next instance reboot, or during the next maintenance window. For a summary of the Amazon Redshift cluster management interfaces, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/using-aws-sdk.html\">Using the Amazon Redshift Management Interfaces </a>.</p> <p> Amazon Redshift manages all the work of setting up, operating, and scaling a data warehouse: provisioning capacity, monitoring and backing up the cluster, and applying patches and upgrades to the Amazon Redshift engine. You can focus on using your data to acquire new insights for your business and customers. </p> <p>If you are a first-time user of Amazon Redshift, we recommend that you begin by reading the The <a href=\"http://docs.aws.amazon.com/redshift/latest/gsg/getting-started.html\">Amazon Redshift Getting Started Guide</a></p> <p>If you are a database developer, the <a href=\"http://docs.aws.amazon.com/redshift/latest/dg/welcome.html\">Amazon Redshift Database Developer Guide</a> explains how to design, build, query, and maintain the databases that make up your data warehouse. </p>",
61
- "shapes": {
62
- "AccessToSnapshotDeniedFault": {
63
- "base": "<p> The owner of the specified snapshot has not authorized your account to access the snapshot. </p>",
64
- "refs": {
65
- }
66
- },
67
- "AccountWithRestoreAccess": {
68
- "base": "<p> Describes an AWS customer account authorized to restore a snapshot. </p>",
69
- "refs": {
70
- "AccountsWithRestoreAccessList$member": null
71
- }
72
- },
73
- "AccountsWithRestoreAccessList": {
74
- "base": null,
75
- "refs": {
76
- "Snapshot$AccountsWithRestoreAccess": "<p> A list of the AWS customer accounts authorized to restore the snapshot. Returns <code>null</code> if no accounts are authorized. Visible only to the snapshot owner. </p>"
77
- }
78
- },
79
- "AuthorizationAlreadyExistsFault": {
80
- "base": "<p> The specified CIDR block or EC2 security group is already authorized for the specified cluster security group. </p>",
81
- "refs": {
82
- }
83
- },
84
- "AuthorizationNotFoundFault": {
85
- "base": "<p> The specified CIDR IP range or EC2 security group is not authorized for the specified cluster security group. </p>",
86
- "refs": {
87
- }
88
- },
89
- "AuthorizationQuotaExceededFault": {
90
- "base": "<p> The authorization quota for the cluster security group has been reached. </p>",
91
- "refs": {
92
- }
93
- },
94
- "AuthorizeClusterSecurityGroupIngressMessage": {
95
- "base": "<p> ??? </p>",
96
- "refs": {
97
- }
98
- },
99
- "AuthorizeSnapshotAccessMessage": {
100
- "base": "<p> </p>",
101
- "refs": {
102
- }
103
- },
104
- "AvailabilityZone": {
105
- "base": "<p> Describes an availability zone. </p>",
106
- "refs": {
107
- "AvailabilityZoneList$member": null,
108
- "Subnet$SubnetAvailabilityZone": null
109
- }
110
- },
111
- "AvailabilityZoneList": {
112
- "base": null,
113
- "refs": {
114
- "OrderableClusterOption$AvailabilityZones": "<p> A list of availability zones for the orderable cluster. </p>"
115
- }
116
- },
117
- "Boolean": {
118
- "base": null,
119
- "refs": {
120
- "Cluster$AllowVersionUpgrade": "<p> If <code>true</code>, major version upgrades will be applied automatically to the cluster during the maintenance window. </p>",
121
- "Cluster$PubliclyAccessible": "<p>If <code>true</code>, the cluster can be accessed from a public network.</p>",
122
- "Cluster$Encrypted": "<p>If <code>true</code>, data in the cluster is encrypted at rest.</p>",
123
- "DeleteClusterMessage$SkipFinalClusterSnapshot": "<p> Determines whether a final snapshot of the cluster is created before Amazon Redshift deletes the cluster. If <code>true</code>, a final cluster snapshot is not created. If <code>false</code>, a final cluster snapshot is created before the cluster is deleted. </p> <note>The <i>FinalClusterSnapshotIdentifier</i> parameter must be specified if <i>SkipFinalClusterSnapshot</i> is <code>false</code>.</note> <p>Default: <code>false</code></p>",
124
- "EventSubscription$Enabled": "<p>A Boolean value indicating whether the subscription is enabled. <code>true</code> indicates the subscription is enabled.</p>",
125
- "LoggingStatus$LoggingEnabled": "<p><code>true</code> if logging is on, <code>false</code> if logging is off.</p>",
126
- "Parameter$IsModifiable": "<p> If <code>true</code>, the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed. </p>",
127
- "ResetClusterParameterGroupMessage$ResetAllParameters": "<p> If <code>true</code>, all parameters in the specified parameter group will be reset to their default values. </p> <p>Default: <code>true</code></p>",
128
- "Snapshot$Encrypted": "<p>If <code>true</code>, the data in the snapshot is encrypted at rest.</p>",
129
- "Snapshot$EncryptedWithHSM": "<p>A boolean that indicates whether the snapshot data is encrypted using the HSM keys of the source cluster. <code>true</code> indicates that the data is encrypted using HSM keys.</p>"
130
- }
131
- },
132
- "BooleanOptional": {
133
- "base": null,
134
- "refs": {
135
- "CreateClusterMessage$AllowVersionUpgrade": "<p>If <code>true</code>, major version upgrades can be applied during the maintenance window to the Amazon Redshift engine that is running on the cluster.</p> <p> 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. </p> <p>Default: <code>true</code></p>",
136
- "CreateClusterMessage$PubliclyAccessible": "<p>If <code>true</code>, the cluster can be accessed from a public network. </p>",
137
- "CreateClusterMessage$Encrypted": "<p>If <code>true</code>, the data in the cluster is encrypted at rest. </p> <p>Default: false</p>",
138
- "CreateEventSubscriptionMessage$Enabled": "<p> A Boolean value; set to <code>true</code> to activate the subscription, set to <code>false</code> to create the subscription but not active it. </p>",
139
- "ModifyClusterMessage$AllowVersionUpgrade": "<p> If <code>true</code>, major version upgrades will be applied automatically to the cluster during the maintenance window. </p> <p>Default: <code>false</code></p>",
140
- "ModifyEventSubscriptionMessage$Enabled": "<p> A Boolean value indicating if the subscription is enabled. <code>true</code> indicates the subscription is enabled </p>",
141
- "RestoreFromClusterSnapshotMessage$AllowVersionUpgrade": "<p> If <code>true</code>, major version upgrades can be applied during the maintenance window to the Amazon Redshift engine that is running on the cluster. </p> <p>Default: <code>true</code></p>",
142
- "RestoreFromClusterSnapshotMessage$PubliclyAccessible": "<p> If <code>true</code>, the cluster can be accessed from a public network. </p>"
143
- }
144
- },
145
- "BucketNotFoundFault": {
146
- "base": "<p> Could not find the specified S3 bucket. </p>",
147
- "refs": {
148
- }
149
- },
150
- "Cluster": {
151
- "base": "<p>Describes a cluster.</p>",
152
- "refs": {
153
- "ClusterList$member": null,
154
- "CreateClusterResult$Cluster": null,
155
- "DeleteClusterResult$Cluster": null,
156
- "DisableSnapshotCopyResult$Cluster": null,
157
- "EnableSnapshotCopyResult$Cluster": null,
158
- "ModifyClusterResult$Cluster": null,
159
- "ModifySnapshotCopyRetentionPeriodResult$Cluster": null,
160
- "RebootClusterResult$Cluster": null,
161
- "RestoreFromClusterSnapshotResult$Cluster": null,
162
- "RotateEncryptionKeyResult$Cluster": null
163
- }
164
- },
165
- "ClusterAlreadyExistsFault": {
166
- "base": "<p> The account already has a cluster with the given identifier. </p>",
167
- "refs": {
168
- }
169
- },
170
- "ClusterList": {
171
- "base": null,
172
- "refs": {
173
- "ClustersMessage$Clusters": "<p> A list of <a>Cluster</a> objects, where each object describes one cluster. </p>"
174
- }
175
- },
176
- "ClusterNode": {
177
- "base": "<p>The identifier of a node in a cluster.</p>",
178
- "refs": {
179
- "ClusterNodesList$member": null
180
- }
181
- },
182
- "ClusterNodesList": {
183
- "base": null,
184
- "refs": {
185
- "Cluster$ClusterNodes": "<p>The nodes in a cluster.</p>"
186
- }
187
- },
188
- "ClusterNotFoundFault": {
189
- "base": "<p> The <i>ClusterIdentifier</i> parameter does not refer to an existing cluster. </p>",
190
- "refs": {
191
- }
192
- },
193
- "ClusterParameterGroup": {
194
- "base": "<p>Describes a parameter group.</p>",
195
- "refs": {
196
- "ParameterGroupList$member": null,
197
- "CreateClusterParameterGroupResult$ClusterParameterGroup": null
198
- }
199
- },
200
- "ClusterParameterGroupAlreadyExistsFault": {
201
- "base": "<p> A cluster parameter group with the same name already exists. </p>",
202
- "refs": {
203
- }
204
- },
205
- "ClusterParameterGroupDetails": {
206
- "base": "<p> Contains the output from the <a>DescribeClusterParameters</a> action. </p>",
207
- "refs": {
208
- }
209
- },
210
- "ClusterParameterGroupNameMessage": {
211
- "base": "<p> Contains the output from the <a>ModifyClusterParameterGroup</a> and <a>ResetClusterParameterGroup</a> actions and indicate the parameter group involved and the status of the operation on the parameter group. </p>",
212
- "refs": {
213
- }
214
- },
215
- "ClusterParameterGroupNotFoundFault": {
216
- "base": "<p> The parameter group name does not refer to an existing parameter group. </p>",
217
- "refs": {
218
- }
219
- },
220
- "ClusterParameterGroupQuotaExceededFault": {
221
- "base": "<p> The request would result in the user exceeding the allowed number of cluster parameter groups. For information about increasing your quota, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html\">Limits in Amazon Redshift</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
222
- "refs": {
223
- }
224
- },
225
- "ClusterParameterGroupStatus": {
226
- "base": "<p> Describes the status of a parameter group. </p>",
227
- "refs": {
228
- "ClusterParameterGroupStatusList$member": null
229
- }
230
- },
231
- "ClusterParameterGroupStatusList": {
232
- "base": null,
233
- "refs": {
234
- "Cluster$ClusterParameterGroups": "<p> The list of cluster parameter groups that are associated with this cluster. </p>"
235
- }
236
- },
237
- "ClusterParameterGroupsMessage": {
238
- "base": "<p> Contains the output from the <a>DescribeClusterParameterGroups</a> action. </p>",
239
- "refs": {
240
- }
241
- },
242
- "ClusterQuotaExceededFault": {
243
- "base": "<p> The request would exceed the allowed number of cluster instances for this account. For information about increasing your quota, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html\">Limits in Amazon Redshift</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
244
- "refs": {
245
- }
246
- },
247
- "ClusterSecurityGroup": {
248
- "base": "<p>Describes a security group.</p>",
249
- "refs": {
250
- "ClusterSecurityGroups$member": null,
251
- "AuthorizeClusterSecurityGroupIngressResult$ClusterSecurityGroup": null,
252
- "CreateClusterSecurityGroupResult$ClusterSecurityGroup": null,
253
- "RevokeClusterSecurityGroupIngressResult$ClusterSecurityGroup": null
254
- }
255
- },
256
- "ClusterSecurityGroupAlreadyExistsFault": {
257
- "base": "<p> A cluster security group with the same name already exists. </p>",
258
- "refs": {
259
- }
260
- },
261
- "ClusterSecurityGroupMembership": {
262
- "base": "<p>Describes a security group.</p>",
263
- "refs": {
264
- "ClusterSecurityGroupMembershipList$member": null
265
- }
266
- },
267
- "ClusterSecurityGroupMembershipList": {
268
- "base": null,
269
- "refs": {
270
- "Cluster$ClusterSecurityGroups": "<p> A list of cluster security group that are associated with the cluster. Each security group is represented by an element that contains <code>ClusterSecurityGroup.Name</code> and <code>ClusterSecurityGroup.Status</code> subelements. </p> <p>Cluster security groups are used when the cluster is not created in a VPC. Clusters that are created in a VPC use VPC security groups, which are listed by the <b>VpcSecurityGroups</b> parameter. </p>"
271
- }
272
- },
273
- "ClusterSecurityGroupMessage": {
274
- "base": "<p> Contains the output from the <a>DescribeClusterSecurityGroups</a> action. </p>",
275
- "refs": {
276
- }
277
- },
278
- "ClusterSecurityGroupNameList": {
279
- "base": null,
280
- "refs": {
281
- "CreateClusterMessage$ClusterSecurityGroups": "<p> A list of security groups to be associated with this cluster. </p> <p> Default: The default cluster security group for Amazon Redshift. </p>",
282
- "ModifyClusterMessage$ClusterSecurityGroups": "<p> A list of cluster security groups to be authorized on this cluster. This change is asynchronously applied as soon as possible. </p> <p>Security groups currently associated with the cluster, and not in the list of groups to apply, will be revoked from the cluster.</p> <p>Constraints:</p> <ul> <li>Must be 1 to 255 alphanumeric characters or hyphens</li> <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two consecutive hyphens</li> </ul>",
283
- "RestoreFromClusterSnapshotMessage$ClusterSecurityGroups": "<p> A list of security groups to be associated with this cluster. </p> <p> Default: The default cluster security group for Amazon Redshift. </p> <p>Cluster security groups only apply to clusters outside of VPCs.</p>"
284
- }
285
- },
286
- "ClusterSecurityGroupNotFoundFault": {
287
- "base": "<p> The cluster security group name does not refer to an existing cluster security group. </p>",
288
- "refs": {
289
- }
290
- },
291
- "ClusterSecurityGroupQuotaExceededFault": {
292
- "base": "<p> The request would result in the user exceeding the allowed number of cluster security groups. For information about increasing your quota, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html\">Limits in Amazon Redshift</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
293
- "refs": {
294
- }
295
- },
296
- "ClusterSecurityGroups": {
297
- "base": null,
298
- "refs": {
299
- "ClusterSecurityGroupMessage$ClusterSecurityGroups": "<p> A list of <a>ClusterSecurityGroup</a> instances. </p>"
300
- }
301
- },
302
- "ClusterSnapshotAlreadyExistsFault": {
303
- "base": "<p> The value specified as a snapshot identifier is already used by an existing snapshot. </p>",
304
- "refs": {
305
- }
306
- },
307
- "ClusterSnapshotCopyStatus": {
308
- "base": "<p> Returns the destination region and retention period that are configured for cross-region snapshot copy. </p>",
309
- "refs": {
310
- "Cluster$ClusterSnapshotCopyStatus": "<p> Returns the destination region and retention period that are configured for cross-region snapshot copy. </p>"
311
- }
312
- },
313
- "ClusterSnapshotNotFoundFault": {
314
- "base": "<p> The snapshot identifier does not refer to an existing cluster snapshot. </p>",
315
- "refs": {
316
- }
317
- },
318
- "ClusterSnapshotQuotaExceededFault": {
319
- "base": "<p> The request would result in the user exceeding the allowed number of cluster snapshots. </p>",
320
- "refs": {
321
- }
322
- },
323
- "ClusterSubnetGroup": {
324
- "base": "<p>Describes a subnet group.</p>",
325
- "refs": {
326
- "ClusterSubnetGroups$member": null,
327
- "CreateClusterSubnetGroupResult$ClusterSubnetGroup": null,
328
- "ModifyClusterSubnetGroupResult$ClusterSubnetGroup": null
329
- }
330
- },
331
- "ClusterSubnetGroupAlreadyExistsFault": {
332
- "base": "<p> A <i>ClusterSubnetGroupName</i> is already used by an existing cluster subnet group. </p>",
333
- "refs": {
334
- }
335
- },
336
- "ClusterSubnetGroupMessage": {
337
- "base": "<p> Contains the output from the <a>DescribeClusterSubnetGroups</a> action. </p>",
338
- "refs": {
339
- }
340
- },
341
- "ClusterSubnetGroupNotFoundFault": {
342
- "base": "<p> The cluster subnet group name does not refer to an existing cluster subnet group. </p>",
343
- "refs": {
344
- }
345
- },
346
- "ClusterSubnetGroupQuotaExceededFault": {
347
- "base": "<p> The request would result in user exceeding the allowed number of cluster subnet groups. For information about increasing your quota, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html\">Limits in Amazon Redshift</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
348
- "refs": {
349
- }
350
- },
351
- "ClusterSubnetGroups": {
352
- "base": null,
353
- "refs": {
354
- "ClusterSubnetGroupMessage$ClusterSubnetGroups": "<p> A list of <a>ClusterSubnetGroup</a> instances. </p>"
355
- }
356
- },
357
- "ClusterSubnetQuotaExceededFault": {
358
- "base": "<p> The request would result in user exceeding the allowed number of subnets in a cluster subnet groups. For information about increasing your quota, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html\">Limits in Amazon Redshift</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
359
- "refs": {
360
- }
361
- },
362
- "ClusterVersion": {
363
- "base": "<p>Describes a cluster version, including the parameter group family and description of the version.</p>",
364
- "refs": {
365
- "ClusterVersionList$member": null
366
- }
367
- },
368
- "ClusterVersionList": {
369
- "base": null,
370
- "refs": {
371
- "ClusterVersionsMessage$ClusterVersions": "<p> A list of <code>Version</code> elements. </p>"
372
- }
373
- },
374
- "ClusterVersionsMessage": {
375
- "base": "<p> Contains the output from the <a>DescribeClusterVersions</a> action. </p>",
376
- "refs": {
377
- }
378
- },
379
- "ClustersMessage": {
380
- "base": "<p> Contains the output from the <a>DescribeClusters</a> action. </p>",
381
- "refs": {
382
- }
383
- },
384
- "CopyClusterSnapshotMessage": {
385
- "base": "<p> </p>",
386
- "refs": {
387
- }
388
- },
389
- "CopyToRegionDisabledFault": {
390
- "base": "<p> Cross-region snapshot copy was temporarily disabled. Try your request again. </p>",
391
- "refs": {
392
- }
393
- },
394
- "CreateClusterMessage": {
395
- "base": "<p></p>",
396
- "refs": {
397
- }
398
- },
399
- "CreateClusterParameterGroupMessage": {
400
- "base": "<p> </p>",
401
- "refs": {
402
- }
403
- },
404
- "CreateClusterSecurityGroupMessage": {
405
- "base": "<p>???</p>",
406
- "refs": {
407
- }
408
- },
409
- "CreateClusterSnapshotMessage": {
410
- "base": "<p> </p>",
411
- "refs": {
412
- }
413
- },
414
- "CreateClusterSubnetGroupMessage": {
415
- "base": "<p> </p>",
416
- "refs": {
417
- }
418
- },
419
- "CreateEventSubscriptionMessage": {
420
- "base": "<p></p>",
421
- "refs": {
422
- }
423
- },
424
- "CreateHsmClientCertificateMessage": {
425
- "base": "<p></p>",
426
- "refs": {
427
- }
428
- },
429
- "CreateHsmConfigurationMessage": {
430
- "base": "<p></p>",
431
- "refs": {
432
- }
433
- },
434
- "CreateTagsMessage": {
435
- "base": "<p> Contains the output from the <code>CreateTags</code> action. </p>",
436
- "refs": {
437
- }
438
- },
439
- "DefaultClusterParameters": {
440
- "base": "<p>Describes the default cluster parameters for a parameter group family. </p>",
441
- "refs": {
442
- "DescribeDefaultClusterParametersResult$DefaultClusterParameters": null
443
- }
444
- },
445
- "DeleteClusterMessage": {
446
- "base": "<p> </p>",
447
- "refs": {
448
- }
449
- },
450
- "DeleteClusterParameterGroupMessage": {
451
- "base": "<p> </p>",
452
- "refs": {
453
- }
454
- },
455
- "DeleteClusterSecurityGroupMessage": {
456
- "base": "<p> </p>",
457
- "refs": {
458
- }
459
- },
460
- "DeleteClusterSnapshotMessage": {
461
- "base": "<p> </p>",
462
- "refs": {
463
- }
464
- },
465
- "DeleteClusterSubnetGroupMessage": {
466
- "base": null,
467
- "refs": {
468
- }
469
- },
470
- "DeleteEventSubscriptionMessage": {
471
- "base": "<p></p>",
472
- "refs": {
473
- }
474
- },
475
- "DeleteHsmClientCertificateMessage": {
476
- "base": "<p></p>",
477
- "refs": {
478
- }
479
- },
480
- "DeleteHsmConfigurationMessage": {
481
- "base": "<p></p>",
482
- "refs": {
483
- }
484
- },
485
- "DeleteTagsMessage": {
486
- "base": "<p> Contains the output from the <code>DeleteTags</code> action. </p>",
487
- "refs": {
488
- }
489
- },
490
- "DescribeClusterParameterGroupsMessage": {
491
- "base": "<p> </p>",
492
- "refs": {
493
- }
494
- },
495
- "DescribeClusterParametersMessage": {
496
- "base": null,
497
- "refs": {
498
- }
499
- },
500
- "DescribeClusterSecurityGroupsMessage": {
501
- "base": "<p>???</p>",
502
- "refs": {
503
- }
504
- },
505
- "DescribeClusterSnapshotsMessage": {
506
- "base": "<p> </p>",
507
- "refs": {
508
- }
509
- },
510
- "DescribeClusterSubnetGroupsMessage": {
511
- "base": "<p> </p>",
512
- "refs": {
513
- }
514
- },
515
- "DescribeClusterVersionsMessage": {
516
- "base": null,
517
- "refs": {
518
- }
519
- },
520
- "DescribeClustersMessage": {
521
- "base": "<p> </p>",
522
- "refs": {
523
- }
524
- },
525
- "DescribeDefaultClusterParametersMessage": {
526
- "base": "<p> </p>",
527
- "refs": {
528
- }
529
- },
530
- "DescribeEventCategoriesMessage": {
531
- "base": "<p> </p>",
532
- "refs": {
533
- }
534
- },
535
- "DescribeEventSubscriptionsMessage": {
536
- "base": "<p></p>",
537
- "refs": {
538
- }
539
- },
540
- "DescribeEventsMessage": {
541
- "base": "<p> </p>",
542
- "refs": {
543
- }
544
- },
545
- "DescribeHsmClientCertificatesMessage": {
546
- "base": "<p></p>",
547
- "refs": {
548
- }
549
- },
550
- "DescribeHsmConfigurationsMessage": {
551
- "base": "<p></p>",
552
- "refs": {
553
- }
554
- },
555
- "DescribeLoggingStatusMessage": {
556
- "base": "<p> </p>",
557
- "refs": {
558
- }
559
- },
560
- "DescribeOrderableClusterOptionsMessage": {
561
- "base": "<p> </p>",
562
- "refs": {
563
- }
564
- },
565
- "DescribeReservedNodeOfferingsMessage": {
566
- "base": "<p>to be provided.</p>",
567
- "refs": {
568
- }
569
- },
570
- "DescribeReservedNodesMessage": {
571
- "base": "<p> </p>",
572
- "refs": {
573
- }
574
- },
575
- "DescribeResizeMessage": {
576
- "base": "<p> </p>",
577
- "refs": {
578
- }
579
- },
580
- "DescribeTagsMessage": {
581
- "base": "<p> Contains the output from the <code>DescribeTags</code> action. </p>",
582
- "refs": {
583
- }
584
- },
585
- "DisableLoggingMessage": {
586
- "base": "<p> </p>",
587
- "refs": {
588
- }
589
- },
590
- "DisableSnapshotCopyMessage": {
591
- "base": "<p> </p>",
592
- "refs": {
593
- }
594
- },
595
- "Double": {
596
- "base": null,
597
- "refs": {
598
- "RecurringCharge$RecurringChargeAmount": "<p>The amount charged per the period of time specified by the recurring charge frequency. </p>",
599
- "ReservedNode$FixedPrice": "<p> The fixed cost Amazon Redshift charged you for this reserved node. </p>",
600
- "ReservedNode$UsagePrice": "<p> The hourly rate Amazon Redshift charge you for this reserved node. </p>",
601
- "ReservedNodeOffering$FixedPrice": "<p> The upfront fixed charge you will pay to purchase the specific reserved node offering. </p>",
602
- "ReservedNodeOffering$UsagePrice": "<p> The rate you are charged for each hour the cluster that is using the offering is running. </p>",
603
- "RestoreStatus$CurrentRestoreRateInMegaBytesPerSecond": "<p> The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. </p>",
604
- "Snapshot$TotalBackupSizeInMegaBytes": "<p> The size of the complete set of backup data that would be used to restore the cluster. </p>",
605
- "Snapshot$ActualIncrementalBackupSizeInMegaBytes": "<p> The size of the incremental backup. </p>",
606
- "Snapshot$BackupProgressInMegaBytes": "<p> The number of megabytes that have been transferred to the snapshot backup. </p>",
607
- "Snapshot$CurrentBackupRateInMegaBytesPerSecond": "<p> The number of megabytes per second being transferred to the snapshot backup. Returns <code>0</code> for a completed backup. </p>"
608
- }
609
- },
610
- "DoubleOptional": {
611
- "base": null,
612
- "refs": {
613
- "ResizeProgressMessage$AvgResizeRateInMegaBytesPerSecond": "<p>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.</p>"
614
- }
615
- },
616
- "EC2SecurityGroup": {
617
- "base": "<p>Describes an Amazon EC2 security group.</p>",
618
- "refs": {
619
- "EC2SecurityGroupList$member": null
620
- }
621
- },
622
- "EC2SecurityGroupList": {
623
- "base": null,
624
- "refs": {
625
- "ClusterSecurityGroup$EC2SecurityGroups": "<p> A list of EC2 security groups that are permitted to access clusters associated with this cluster security group. </p>"
626
- }
627
- },
628
- "ElasticIpStatus": {
629
- "base": "<p>Describes the status of the elastic IP (EIP) address.</p>",
630
- "refs": {
631
- "Cluster$ElasticIpStatus": "<p>Describes the status of the elastic IP (EIP) address.</p>"
632
- }
633
- },
634
- "EnableLoggingMessage": {
635
- "base": "<p> </p>",
636
- "refs": {
637
- }
638
- },
639
- "EnableSnapshotCopyMessage": {
640
- "base": "<p> </p>",
641
- "refs": {
642
- }
643
- },
644
- "Endpoint": {
645
- "base": "<p>Describes a connection endpoint.</p>",
646
- "refs": {
647
- "Cluster$Endpoint": "<p> The connection endpoint. </p>"
648
- }
649
- },
650
- "Event": {
651
- "base": "<p> Describes an event. </p>",
652
- "refs": {
653
- "EventList$member": null
654
- }
655
- },
656
- "EventCategoriesList": {
657
- "base": null,
658
- "refs": {
659
- "CreateEventSubscriptionMessage$EventCategories": "<p>Specifies the Amazon Redshift event categories to be published by the event notification subscription.</p> <p>Values: Configuration, Management, Monitoring, Security</p>",
660
- "Event$EventCategories": "<p> A list of the event categories. </p>",
661
- "EventInfoMap$EventCategories": "<p>The category of an Amazon Redshift event.</p>",
662
- "EventSubscription$EventCategoriesList": "<p>The list of Amazon Redshift event categories specified in the event notification subscription.</p> <p>Values: Configuration, Management, Monitoring, Security</p>",
663
- "ModifyEventSubscriptionMessage$EventCategories": "<p>Specifies the Amazon Redshift event categories to be published by the event notification subscription.</p> <p>Values: Configuration, Management, Monitoring, Security</p>"
664
- }
665
- },
666
- "EventCategoriesMap": {
667
- "base": null,
668
- "refs": {
669
- "EventCategoriesMapList$member": null
670
- }
671
- },
672
- "EventCategoriesMapList": {
673
- "base": null,
674
- "refs": {
675
- "EventCategoriesMessage$EventCategoriesMapList": "<p> A list of event categories descriptions. </p>"
676
- }
677
- },
678
- "EventCategoriesMessage": {
679
- "base": "<p> </p>",
680
- "refs": {
681
- }
682
- },
683
- "EventInfoMap": {
684
- "base": null,
685
- "refs": {
686
- "EventInfoMapList$member": null
687
- }
688
- },
689
- "EventInfoMapList": {
690
- "base": null,
691
- "refs": {
692
- "EventCategoriesMap$Events": "<p>The events in the event category.</p>"
693
- }
694
- },
695
- "EventList": {
696
- "base": null,
697
- "refs": {
698
- "EventsMessage$Events": "<p> A list of <a>Event</a> instances. </p>"
699
- }
700
- },
701
- "EventSubscription": {
702
- "base": null,
703
- "refs": {
704
- "EventSubscriptionsList$member": null,
705
- "CreateEventSubscriptionResult$EventSubscription": null,
706
- "ModifyEventSubscriptionResult$EventSubscription": null
707
- }
708
- },
709
- "EventSubscriptionQuotaExceededFault": {
710
- "base": "<p> The request would exceed the allowed number of event subscriptions for this account. For information about increasing your quota, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html\">Limits in Amazon Redshift</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
711
- "refs": {
712
- }
713
- },
714
- "EventSubscriptionsList": {
715
- "base": null,
716
- "refs": {
717
- "EventSubscriptionsMessage$EventSubscriptionsList": "<p>A list of event subscriptions.</p>"
718
- }
719
- },
720
- "EventSubscriptionsMessage": {
721
- "base": "<p></p>",
722
- "refs": {
723
- }
724
- },
725
- "EventsMessage": {
726
- "base": "<p> Contains the output from the <a>DescribeEvents</a> action. </p>",
727
- "refs": {
728
- }
729
- },
730
- "HsmClientCertificate": {
731
- "base": "<p>Returns information about an HSM client certificate. The certificate is stored in a secure Hardware Storage Module (HSM), and used by the Amazon Redshift cluster to encrypt data files.</p>",
732
- "refs": {
733
- "HsmClientCertificateList$member": null,
734
- "CreateHsmClientCertificateResult$HsmClientCertificate": null
735
- }
736
- },
737
- "HsmClientCertificateAlreadyExistsFault": {
738
- "base": "<p>There is already an existing Amazon Redshift HSM client certificate with the specified identifier.</p>",
739
- "refs": {
740
- }
741
- },
742
- "HsmClientCertificateList": {
743
- "base": null,
744
- "refs": {
745
- "HsmClientCertificateMessage$HsmClientCertificates": "<p>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.</p>"
746
- }
747
- },
748
- "HsmClientCertificateMessage": {
749
- "base": "<p></p>",
750
- "refs": {
751
- }
752
- },
753
- "HsmClientCertificateNotFoundFault": {
754
- "base": "<p>There is no Amazon Redshift HSM client certificate with the specified identifier.</p>",
755
- "refs": {
756
- }
757
- },
758
- "HsmClientCertificateQuotaExceededFault": {
759
- "base": "<p> The quota for HSM client certificates has been reached. For information about increasing your quota, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html\">Limits in Amazon Redshift</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
760
- "refs": {
761
- }
762
- },
763
- "HsmConfiguration": {
764
- "base": "<p>Returns information about an HSM configuration, which is an object that describes to Amazon Redshift clusters the information they require to connect to an HSM where they can store database encryption keys.</p>",
765
- "refs": {
766
- "HsmConfigurationList$member": null,
767
- "CreateHsmConfigurationResult$HsmConfiguration": null
768
- }
769
- },
770
- "HsmConfigurationAlreadyExistsFault": {
771
- "base": "<p>There is already an existing Amazon Redshift HSM configuration with the specified identifier.</p>",
772
- "refs": {
773
- }
774
- },
775
- "HsmConfigurationList": {
776
- "base": null,
777
- "refs": {
778
- "HsmConfigurationMessage$HsmConfigurations": "<p>A list of Amazon Redshift HSM configurations.</p>"
779
- }
780
- },
781
- "HsmConfigurationMessage": {
782
- "base": "<p></p>",
783
- "refs": {
784
- }
785
- },
786
- "HsmConfigurationNotFoundFault": {
787
- "base": "<p>There is no Amazon Redshift HSM configuration with the specified identifier.</p>",
788
- "refs": {
789
- }
790
- },
791
- "HsmConfigurationQuotaExceededFault": {
792
- "base": "<p> The quota for HSM configurations has been reached. For information about increasing your quota, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html\">Limits in Amazon Redshift</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
793
- "refs": {
794
- }
795
- },
796
- "HsmStatus": {
797
- "base": "<p></p>",
798
- "refs": {
799
- "Cluster$HsmStatus": "<p>Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.</p> <p>Values: active, applying</p>"
800
- }
801
- },
802
- "IPRange": {
803
- "base": "<p> Describes an IP range used in a security group. </p>",
804
- "refs": {
805
- "IPRangeList$member": null
806
- }
807
- },
808
- "IPRangeList": {
809
- "base": null,
810
- "refs": {
811
- "ClusterSecurityGroup$IPRanges": "<p> A list of IP ranges (CIDR blocks) that are permitted to access clusters associated with this cluster security group. </p>"
812
- }
813
- },
814
- "ImportTablesCompleted": {
815
- "base": null,
816
- "refs": {
817
- "ResizeProgressMessage$ImportTablesCompleted": "<p>The names of tables that have been completely imported .</p> <p>Valid Values: List of table names.</p>"
818
- }
819
- },
820
- "ImportTablesInProgress": {
821
- "base": null,
822
- "refs": {
823
- "ResizeProgressMessage$ImportTablesInProgress": "<p>The names of tables that are being currently imported.</p> <p>Valid Values: List of table names.</p>"
824
- }
825
- },
826
- "ImportTablesNotStarted": {
827
- "base": null,
828
- "refs": {
829
- "ResizeProgressMessage$ImportTablesNotStarted": "<p>The names of tables that have not been yet imported.</p> <p>Valid Values: List of table names</p>"
830
- }
831
- },
832
- "IncompatibleOrderableOptions": {
833
- "base": "<p> The specified options are incompatible. </p>",
834
- "refs": {
835
- }
836
- },
837
- "InsufficientClusterCapacityFault": {
838
- "base": "<p> The number of nodes specified exceeds the allotted capacity of the cluster. </p>",
839
- "refs": {
840
- }
841
- },
842
- "InsufficientS3BucketPolicyFault": {
843
- "base": "<p> The cluster does not have read bucket or put object permissions on the S3 bucket specified when enabling logging. </p>",
844
- "refs": {
845
- }
846
- },
847
- "Integer": {
848
- "base": null,
849
- "refs": {
850
- "Cluster$AutomatedSnapshotRetentionPeriod": "<p> The number of days that automatic cluster snapshots are retained. </p>",
851
- "Cluster$NumberOfNodes": "<p> The number of compute nodes in the cluster. </p>",
852
- "Endpoint$Port": "<p> The port that the database engine is listening on. </p>",
853
- "ModifySnapshotCopyRetentionPeriodMessage$RetentionPeriod": "<p> The number of days to retain automated snapshots in the destination region after they are copied from the source region. </p> <p> 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. </p> <p> Constraints: Must be at least 1 and no more than 35. </p>",
854
- "ReservedNode$Duration": "<p> The duration of the node reservation in seconds. </p>",
855
- "ReservedNode$NodeCount": "<p> The number of reserved compute nodes. </p>",
856
- "ReservedNodeOffering$Duration": "<p> The duration, in seconds, for which the offering will reserve the node. </p>",
857
- "Snapshot$Port": "<p> The port that the cluster is listening on. </p>",
858
- "Snapshot$NumberOfNodes": "<p>The number of nodes in the cluster.</p>"
859
- }
860
- },
861
- "IntegerOptional": {
862
- "base": null,
863
- "refs": {
864
- "CreateClusterMessage$AutomatedSnapshotRetentionPeriod": "<p> 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 <a>CreateClusterSnapshot</a>. </p> <p> Default: <code>1</code> </p> <p>Constraints: Must be a value from 0 to 35.</p>",
865
- "CreateClusterMessage$Port": "<p> The port number on which the cluster accepts incoming connections. </p> <p>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.</p> <p> Default: <code>5439</code> </p> <p> Valid Values: <code>1150-65535</code> </p>",
866
- "CreateClusterMessage$NumberOfNodes": "<p> The number of compute nodes in the cluster. This parameter is required when the <b>ClusterType</b> parameter is specified as <code>multi-node</code>. </p> <p>For information about determining how many nodes you need, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes\"> Working with Clusters</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p> <p>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.</p> <p>Default: <code>1</code></p> <p>Constraints: Value must be at least 1 and no more than 100.</p>",
867
- "DescribeClusterParameterGroupsMessage$MaxRecords": "<p> The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. </p> <p>Default: <code>100</code></p> <p>Constraints: minimum 20, maximum 100.</p>",
868
- "DescribeClusterParametersMessage$MaxRecords": "<p> The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. </p> <p>Default: <code>100</code></p> <p>Constraints: minimum 20, maximum 100.</p>",
869
- "DescribeClusterSecurityGroupsMessage$MaxRecords": "<p> The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. </p> <p>Default: <code>100</code></p> <p>Constraints: minimum 20, maximum 100.</p>",
870
- "DescribeClusterSnapshotsMessage$MaxRecords": "<p> The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. </p> <p>Default: <code>100</code></p> <p>Constraints: minimum 20, maximum 100.</p>",
871
- "DescribeClusterSubnetGroupsMessage$MaxRecords": "<p> The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. </p> <p>Default: <code>100</code></p> <p>Constraints: minimum 20, maximum 100.</p>",
872
- "DescribeClusterVersionsMessage$MaxRecords": "<p> The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. </p> <p>Default: <code>100</code></p> <p>Constraints: minimum 20, maximum 100.</p>",
873
- "DescribeClustersMessage$MaxRecords": "<p> The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. </p> <p>Default: <code>100</code></p> <p>Constraints: minimum 20, maximum 100.</p>",
874
- "DescribeDefaultClusterParametersMessage$MaxRecords": "<p> The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. </p> <p>Default: <code>100</code></p> <p>Constraints: minimum 20, maximum 100.</p>",
875
- "DescribeEventSubscriptionsMessage$MaxRecords": "<p> The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. </p> <p>Default: <code>100</code></p> <p>Constraints: minimum 20, maximum 100.</p>",
876
- "DescribeEventsMessage$Duration": "<p> 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. </p> <p>Default: <code>60</code></p>",
877
- "DescribeEventsMessage$MaxRecords": "<p> The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. </p> <p>Default: <code>100</code></p> <p>Constraints: minimum 20, maximum 100.</p>",
878
- "DescribeHsmClientCertificatesMessage$MaxRecords": "<p> The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. </p> <p>Default: <code>100</code></p> <p>Constraints: minimum 20, maximum 100.</p>",
879
- "DescribeHsmConfigurationsMessage$MaxRecords": "<p> The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. </p> <p>Default: <code>100</code></p> <p>Constraints: minimum 20, maximum 100.</p>",
880
- "DescribeOrderableClusterOptionsMessage$MaxRecords": "<p> The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. </p> <p>Default: <code>100</code></p> <p>Constraints: minimum 20, maximum 100.</p>",
881
- "DescribeReservedNodeOfferingsMessage$MaxRecords": "<p> The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. </p> <p>Default: <code>100</code></p> <p>Constraints: minimum 20, maximum 100.</p>",
882
- "DescribeReservedNodesMessage$MaxRecords": "<p> The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. </p> <p>Default: <code>100</code></p> <p>Constraints: minimum 20, maximum 100.</p>",
883
- "DescribeTagsMessage$MaxRecords": "<p> The maximum number or response records to return in each call. If the number of remaining response records exceeds the specified <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned <code>marker</code> value. </p>",
884
- "EnableSnapshotCopyMessage$RetentionPeriod": "<p> The number of days to retain automated snapshots in the destination region after they are copied from the source region. </p> <p> Default: 7. </p> <p> Constraints: Must be at least 1 and no more than 35. </p>",
885
- "ModifyClusterMessage$NumberOfNodes": "<p> The new number of nodes of the cluster. If you specify a new number of nodes, you must also specify the node type parameter. </p> <p> 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 <a>DescribeResize</a> to track the progress of the resize request. </p> <p>Valid Values: Integer greater than <code>0</code>.</p>",
886
- "ModifyClusterMessage$AutomatedSnapshotRetentionPeriod": "<p> 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 <a>CreateClusterSnapshot</a>. </p> <p> 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.</p> <p>Default: Uses existing setting.</p> <p>Constraints: Must be a value from 0 to 35.</p>",
887
- "PendingModifiedValues$NumberOfNodes": "<p> The pending or in-progress change of the number of nodes in the cluster. </p>",
888
- "PendingModifiedValues$AutomatedSnapshotRetentionPeriod": "<p> The pending or in-progress change of the automated snapshot retention period. </p>",
889
- "PurchaseReservedNodeOfferingMessage$NodeCount": "<p>The number of reserved nodes you want to purchase.</p> <p>Default: <code>1</code></p>",
890
- "ResizeProgressMessage$TargetNumberOfNodes": "<p>The number of nodes that the cluster will have after the resize operation is complete.</p>",
891
- "RestoreFromClusterSnapshotMessage$Port": "<p> The port number on which the cluster accepts connections. </p> <p>Default: The same port as the original cluster.</p> <p>Constraints: Must be between <code>1115</code> and <code>65535</code>.</p>",
892
- "RestoreFromClusterSnapshotMessage$AutomatedSnapshotRetentionPeriod": "<p> 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 <a>CreateClusterSnapshot</a>. </p> <p> Default: The value selected for the cluster from which the snapshot was taken. </p> <p>Constraints: Must be a value from 0 to 35.</p>"
893
- }
894
- },
895
- "InvalidClusterParameterGroupStateFault": {
896
- "base": "<p> The cluster parameter group action can not be completed because another task is in progress that involves the parameter group. Wait a few moments and try the operation again. </p>",
897
- "refs": {
898
- }
899
- },
900
- "InvalidClusterSecurityGroupStateFault": {
901
- "base": "<p> The state of the cluster security group is not <code>available</code>. </p>",
902
- "refs": {
903
- }
904
- },
905
- "InvalidClusterSnapshotStateFault": {
906
- "base": "<p> The state of the cluster snapshot is not <code>available</code>, or other accounts are authorized to access the snapshot. </p>",
907
- "refs": {
908
- }
909
- },
910
- "InvalidClusterStateFault": {
911
- "base": "<p> The specified cluster is not in the <code>available</code> state. </p>",
912
- "refs": {
913
- }
914
- },
915
- "InvalidClusterSubnetGroupStateFault": {
916
- "base": "<p> The cluster subnet group cannot be deleted because it is in use. </p>",
917
- "refs": {
918
- }
919
- },
920
- "InvalidClusterSubnetStateFault": {
921
- "base": "<p>The state of the subnet is invalid.</p>",
922
- "refs": {
923
- }
924
- },
925
- "InvalidElasticIpFault": {
926
- "base": "<p>The Elastic IP (EIP) is invalid or cannot be found.</p>",
927
- "refs": {
928
- }
929
- },
930
- "InvalidHsmClientCertificateStateFault": {
931
- "base": "<p>The specified HSM client certificate is not in the <code>available</code> state, or it is still in use by one or more Amazon Redshift clusters.</p>",
932
- "refs": {
933
- }
934
- },
935
- "InvalidHsmConfigurationStateFault": {
936
- "base": "<p>The specified HSM configuration is not in the <code>available</code> state, or it is still in use by one or more Amazon Redshift clusters.</p>",
937
- "refs": {
938
- }
939
- },
940
- "InvalidRestoreFault": {
941
- "base": "<p>The restore is invalid.</p>",
942
- "refs": {
943
- }
944
- },
945
- "InvalidS3BucketNameFault": {
946
- "base": "<p>The S3 bucket name is invalid. For more information about naming rules, go to <a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html\">Bucket Restrictions and Limitations</a> in the Amazon Simple Storage Service (S3) Developer Guide.</p>",
947
- "refs": {
948
- }
949
- },
950
- "InvalidS3KeyPrefixFault": {
951
- "base": "<p> The string specified for the logging S3 key prefix does not comply with the documented constraints. </p>",
952
- "refs": {
953
- }
954
- },
955
- "InvalidSubnet": {
956
- "base": "<p> The requested subnet is not valid, or not all of the subnets are in the same VPC. </p>",
957
- "refs": {
958
- }
959
- },
960
- "InvalidSubscriptionStateFault": {
961
- "base": "<p> The subscription request is invalid because it is a duplicate request. This subscription request is already in progress. </p>",
962
- "refs": {
963
- }
964
- },
965
- "InvalidTagFault": {
966
- "base": "<p> The tag is invalid. </p>",
967
- "refs": {
968
- }
969
- },
970
- "InvalidVPCNetworkStateFault": {
971
- "base": "<p> The cluster subnet group does not cover all Availability Zones. </p>",
972
- "refs": {
973
- }
974
- },
975
- "LoggingStatus": {
976
- "base": "<p>Describes the status of logging for a cluster.</p>",
977
- "refs": {
978
- }
979
- },
980
- "Long": {
981
- "base": null,
982
- "refs": {
983
- "ClusterSnapshotCopyStatus$RetentionPeriod": "<p>The number of days that automated snapshots are retained in the destination region after they are copied from a source region.</p>",
984
- "RestoreStatus$SnapshotSizeInMegaBytes": "<p> The size of the set of snapshot data used to restore the cluster. </p>",
985
- "RestoreStatus$ProgressInMegaBytes": "<p> The number of megabytes that have been transferred from snapshot storage. </p>",
986
- "RestoreStatus$ElapsedTimeInSeconds": "<p> The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. </p>",
987
- "RestoreStatus$EstimatedTimeToCompletionInSeconds": "<p> The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. </p>",
988
- "Snapshot$EstimatedSecondsToCompletion": "<p> The estimate of the time remaining before the snapshot backup will complete. Returns <code>0</code> for a completed backup. </p>",
989
- "Snapshot$ElapsedTimeInSeconds": "<p> The amount of time an in-progress snapshot backup has been running, or the amount of time it took a completed backup to finish. </p>"
990
- }
991
- },
992
- "LongOptional": {
993
- "base": null,
994
- "refs": {
995
- "ResizeProgressMessage$TotalResizeDataInMegaBytes": "<p>The estimated total amount of data, in megabytes, on the cluster before the resize operation began.</p>",
996
- "ResizeProgressMessage$ProgressInMegaBytes": "<p>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). </p>",
997
- "ResizeProgressMessage$ElapsedTimeInSeconds": "<p>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. </p>",
998
- "ResizeProgressMessage$EstimatedTimeToCompletionInSeconds": "<p>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. </p>"
999
- }
1000
- },
1001
- "ModifyClusterMessage": {
1002
- "base": "<p></p>",
1003
- "refs": {
1004
- }
1005
- },
1006
- "ModifyClusterParameterGroupMessage": {
1007
- "base": "<p> </p>",
1008
- "refs": {
1009
- }
1010
- },
1011
- "ModifyClusterSubnetGroupMessage": {
1012
- "base": "<p> </p>",
1013
- "refs": {
1014
- }
1015
- },
1016
- "ModifyEventSubscriptionMessage": {
1017
- "base": "<p></p>",
1018
- "refs": {
1019
- }
1020
- },
1021
- "ModifySnapshotCopyRetentionPeriodMessage": {
1022
- "base": "<p> </p>",
1023
- "refs": {
1024
- }
1025
- },
1026
- "NumberOfNodesPerClusterLimitExceededFault": {
1027
- "base": "<p>The operation would exceed the number of nodes allowed for a cluster.</p>",
1028
- "refs": {
1029
- }
1030
- },
1031
- "NumberOfNodesQuotaExceededFault": {
1032
- "base": "<p>The operation would exceed the number of nodes allotted to the account. For information about increasing your quota, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html\">Limits in Amazon Redshift</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
1033
- "refs": {
1034
- }
1035
- },
1036
- "OrderableClusterOption": {
1037
- "base": "<p> Describes an orderable cluster option. </p>",
1038
- "refs": {
1039
- "OrderableClusterOptionsList$member": null
1040
- }
1041
- },
1042
- "OrderableClusterOptionsList": {
1043
- "base": null,
1044
- "refs": {
1045
- "OrderableClusterOptionsMessage$OrderableClusterOptions": "<p>An <a>OrderableClusterOption</a> structure containing information about orderable options for the Cluster.</p>"
1046
- }
1047
- },
1048
- "OrderableClusterOptionsMessage": {
1049
- "base": "<p> Contains the output from the <a>DescribeOrderableClusterOptions</a> action. </p>",
1050
- "refs": {
1051
- }
1052
- },
1053
- "Parameter": {
1054
- "base": "<p> Describes a parameter in a cluster parameter group. </p>",
1055
- "refs": {
1056
- "ParametersList$member": null
1057
- }
1058
- },
1059
- "ParameterGroupList": {
1060
- "base": null,
1061
- "refs": {
1062
- "ClusterParameterGroupsMessage$ParameterGroups": "<p> A list of <a>ClusterParameterGroup</a> instances. Each instance describes one cluster parameter group. </p>"
1063
- }
1064
- },
1065
- "ParametersList": {
1066
- "base": null,
1067
- "refs": {
1068
- "ClusterParameterGroupDetails$Parameters": "<p> A list of <a>Parameter</a> instances. Each instance lists the parameters of one cluster parameter group. </p>",
1069
- "DefaultClusterParameters$Parameters": "<p> The list of cluster default parameters. </p>",
1070
- "ModifyClusterParameterGroupMessage$Parameters": "<p> An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request. </p> <p> 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. </p> <p> For the workload management (WLM) configuration, you must supply all the name-value pairs in the wlm_json_configuration parameter. </p>",
1071
- "ResetClusterParameterGroupMessage$Parameters": "<p> An array of names of parameters to be reset. If <i>ResetAllParameters</i> option is not used, then at least one parameter name must be supplied. </p> <p>Constraints: A maximum of 20 parameters can be reset in a single request.</p>"
1072
- }
1073
- },
1074
- "PendingModifiedValues": {
1075
- "base": "<p> Describes cluster attributes that are in a pending state. A change to one or more the attributes was requested and is in progress or will be applied. </p>",
1076
- "refs": {
1077
- "Cluster$PendingModifiedValues": "<p> If present, changes to the cluster are pending. Specific pending changes are identified by subelements. </p>"
1078
- }
1079
- },
1080
- "PurchaseReservedNodeOfferingMessage": {
1081
- "base": "<p></p>",
1082
- "refs": {
1083
- }
1084
- },
1085
- "RebootClusterMessage": {
1086
- "base": "<p> </p>",
1087
- "refs": {
1088
- }
1089
- },
1090
- "RecurringCharge": {
1091
- "base": "<p>Describes a recurring charge.</p>",
1092
- "refs": {
1093
- "RecurringChargeList$member": null
1094
- }
1095
- },
1096
- "RecurringChargeList": {
1097
- "base": null,
1098
- "refs": {
1099
- "ReservedNode$RecurringCharges": "<p>The recurring charges for the reserved node.</p>",
1100
- "ReservedNodeOffering$RecurringCharges": "<p>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. </p>"
1101
- }
1102
- },
1103
- "ReservedNode": {
1104
- "base": "<p> Describes a reserved node. </p>",
1105
- "refs": {
1106
- "ReservedNodeList$member": null,
1107
- "PurchaseReservedNodeOfferingResult$ReservedNode": null
1108
- }
1109
- },
1110
- "ReservedNodeAlreadyExistsFault": {
1111
- "base": "<p> User already has a reservation with the given identifier. </p>",
1112
- "refs": {
1113
- }
1114
- },
1115
- "ReservedNodeList": {
1116
- "base": null,
1117
- "refs": {
1118
- "ReservedNodesMessage$ReservedNodes": "<p>The list of reserved nodes.</p>"
1119
- }
1120
- },
1121
- "ReservedNodeNotFoundFault": {
1122
- "base": "<p> The specified reserved compute node not found. </p>",
1123
- "refs": {
1124
- }
1125
- },
1126
- "ReservedNodeOffering": {
1127
- "base": "<p>Describes a reserved node offering.</p>",
1128
- "refs": {
1129
- "ReservedNodeOfferingList$member": null
1130
- }
1131
- },
1132
- "ReservedNodeOfferingList": {
1133
- "base": null,
1134
- "refs": {
1135
- "ReservedNodeOfferingsMessage$ReservedNodeOfferings": "<p>A list of reserved node offerings.</p>"
1136
- }
1137
- },
1138
- "ReservedNodeOfferingNotFoundFault": {
1139
- "base": "<p> Specified offering does not exist. </p>",
1140
- "refs": {
1141
- }
1142
- },
1143
- "ReservedNodeOfferingsMessage": {
1144
- "base": "<p> Contains the output from the <a>DescribeReservedNodeOfferings</a> action. </p>",
1145
- "refs": {
1146
- }
1147
- },
1148
- "ReservedNodeQuotaExceededFault": {
1149
- "base": "<p> Request would exceed the user's compute node quota. For information about increasing your quota, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html\">Limits in Amazon Redshift</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>",
1150
- "refs": {
1151
- }
1152
- },
1153
- "ReservedNodesMessage": {
1154
- "base": "<p>Contains the output from the <a>DescribeReservedNodes</a> action.</p>",
1155
- "refs": {
1156
- }
1157
- },
1158
- "ResetClusterParameterGroupMessage": {
1159
- "base": "<p> </p>",
1160
- "refs": {
1161
- }
1162
- },
1163
- "ResizeNotFoundFault": {
1164
- "base": "<p>A resize operation for the specified cluster is not found.</p>",
1165
- "refs": {
1166
- }
1167
- },
1168
- "ResizeProgressMessage": {
1169
- "base": "<p>Describes the result of a cluster resize operation.</p>",
1170
- "refs": {
1171
- }
1172
- },
1173
- "ResourceNotFoundFault": {
1174
- "base": "<p> The resource could not be found. </p>",
1175
- "refs": {
1176
- }
1177
- },
1178
- "RestoreFromClusterSnapshotMessage": {
1179
- "base": "<p></p>",
1180
- "refs": {
1181
- }
1182
- },
1183
- "RestoreStatus": {
1184
- "base": "<p>Describes the status of a cluster restore action. Returns null if the cluster was not created by restoring a snapshot.</p>",
1185
- "refs": {
1186
- "Cluster$RestoreStatus": "<p> Describes the status of a cluster restore action. Returns null if the cluster was not created by restoring a snapshot. </p>"
1187
- }
1188
- },
1189
- "RevokeClusterSecurityGroupIngressMessage": {
1190
- "base": "<p> ??? </p>",
1191
- "refs": {
1192
- }
1193
- },
1194
- "RevokeSnapshotAccessMessage": {
1195
- "base": "<p> </p>",
1196
- "refs": {
1197
- }
1198
- },
1199
- "RotateEncryptionKeyMessage": {
1200
- "base": "<p> </p>",
1201
- "refs": {
1202
- }
1203
- },
1204
- "SNSInvalidTopicFault": {
1205
- "base": "<p>Amazon SNS has responded that there is a problem with the specified Amazon SNS topic.</p>",
1206
- "refs": {
1207
- }
1208
- },
1209
- "SNSNoAuthorizationFault": {
1210
- "base": "<p>You do not have permission to publish to the specified Amazon SNS topic.</p>",
1211
- "refs": {
1212
- }
1213
- },
1214
- "SNSTopicArnNotFoundFault": {
1215
- "base": "<p>An Amazon SNS topic with the specified Amazon Resource Name (ARN) does not exist.</p>",
1216
- "refs": {
1217
- }
1218
- },
1219
- "Snapshot": {
1220
- "base": "<p>Describes a snapshot.</p>",
1221
- "refs": {
1222
- "SnapshotList$member": null,
1223
- "AuthorizeSnapshotAccessResult$Snapshot": null,
1224
- "CopyClusterSnapshotResult$Snapshot": null,
1225
- "CreateClusterSnapshotResult$Snapshot": null,
1226
- "DeleteClusterSnapshotResult$Snapshot": null,
1227
- "RevokeSnapshotAccessResult$Snapshot": null
1228
- }
1229
- },
1230
- "SnapshotCopyAlreadyDisabledFault": {
1231
- "base": "<p> The cluster already has cross-region snapshot copy disabled. </p>",
1232
- "refs": {
1233
- }
1234
- },
1235
- "SnapshotCopyAlreadyEnabledFault": {
1236
- "base": "<p> The cluster already has cross-region snapshot copy enabled. </p>",
1237
- "refs": {
1238
- }
1239
- },
1240
- "SnapshotCopyDisabledFault": {
1241
- "base": "<p> Cross-region snapshot copy was temporarily disabled. Try your request again. </p>",
1242
- "refs": {
1243
- }
1244
- },
1245
- "SnapshotList": {
1246
- "base": null,
1247
- "refs": {
1248
- "SnapshotMessage$Snapshots": "<p> A list of <a>Snapshot</a> instances. </p>"
1249
- }
1250
- },
1251
- "SnapshotMessage": {
1252
- "base": "<p> Contains the output from the <a>DescribeClusterSnapshots</a> action. </p>",
1253
- "refs": {
1254
- }
1255
- },
1256
- "SourceIdsList": {
1257
- "base": null,
1258
- "refs": {
1259
- "CreateEventSubscriptionMessage$SourceIds": "<p> 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. </p> <p>Example: my-cluster-1, my-cluster-2</p> <p>Example: my-snapshot-20131010</p>",
1260
- "EventSubscription$SourceIdsList": "<p>A list of the sources that publish events to the Amazon Redshift event notification subscription.</p>",
1261
- "ModifyEventSubscriptionMessage$SourceIds": "<p> 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. </p> <p>Example: my-cluster-1, my-cluster-2</p> <p>Example: my-snapshot-20131010</p>"
1262
- }
1263
- },
1264
- "SourceNotFoundFault": {
1265
- "base": "<p>The specified Amazon Redshift event source could not be found.</p>",
1266
- "refs": {
1267
- }
1268
- },
1269
- "SourceType": {
1270
- "base": null,
1271
- "refs": {
1272
- "DescribeEventsMessage$SourceType": "<p> The event source to retrieve events for. If no value is specified, all events are returned. </p> <p>Constraints:</p> <p>If <i>SourceType</i> is supplied, <i>SourceIdentifier</i> must also be provided.</p> <ul> <li>Specify <code>cluster</code> when <i>SourceIdentifier</i> is a cluster identifier.</li> <li>Specify <code>cluster-security-group</code> when <i>SourceIdentifier</i> is a cluster security group name.</li> <li>Specify <code>cluster-parameter-group</code> when <i>SourceIdentifier</i> is a cluster parameter group name.</li> <li>Specify <code>cluster-snapshot</code> when <i>SourceIdentifier</i> is a cluster snapshot identifier.</li> </ul>",
1273
- "Event$SourceType": "<p> The source type for this event. </p>"
1274
- }
1275
- },
1276
- "String": {
1277
- "base": null,
1278
- "refs": {
1279
- "AccountWithRestoreAccess$AccountId": "<p> The identifier of an AWS customer account authorized to restore a snapshot. </p>",
1280
- "AuthorizeClusterSecurityGroupIngressMessage$ClusterSecurityGroupName": "<p> The name of the security group to which the ingress rule is added. </p>",
1281
- "AuthorizeClusterSecurityGroupIngressMessage$CIDRIP": "<p> The IP range to be added the Amazon Redshift security group. </p>",
1282
- "AuthorizeClusterSecurityGroupIngressMessage$EC2SecurityGroupName": "<p> The EC2 security group to be added the Amazon Redshift security group. </p>",
1283
- "AuthorizeClusterSecurityGroupIngressMessage$EC2SecurityGroupOwnerId": "<p> The AWS account number of the owner of the security group specified by the <i>EC2SecurityGroupName</i> parameter. The AWS Access Key ID is not an acceptable value. </p> <p> Example: <code>111122223333</code> </p>",
1284
- "AuthorizeSnapshotAccessMessage$SnapshotIdentifier": "<p> The identifier of the snapshot the account is authorized to restore. </p>",
1285
- "AuthorizeSnapshotAccessMessage$SnapshotClusterIdentifier": "<p> 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. </p>",
1286
- "AuthorizeSnapshotAccessMessage$AccountWithRestoreAccess": "<p> The identifier of the AWS customer account authorized to restore the specified snapshot. </p>",
1287
- "AvailabilityZone$Name": "<p> The name of the availability zone. </p>",
1288
- "Cluster$ClusterIdentifier": "<p> The unique identifier of the cluster. </p>",
1289
- "Cluster$NodeType": "<p> The node type for the nodes in the cluster. </p>",
1290
- "Cluster$ClusterStatus": "<p> The current state of this cluster. Possible values include <code>available</code>, <code>creating</code>, <code>deleting</code>, <code>rebooting</code>, <code>renaming</code>, and <code>resizing</code>. </p>",
1291
- "Cluster$ModifyStatus": "<p>The status of a modify operation, if any, initiated for the cluster.</p>",
1292
- "Cluster$MasterUsername": "<p> The master user name for the cluster. This name is used to connect to the database that is specified in <b>DBName</b>. </p>",
1293
- "Cluster$DBName": "<p> The name of the initial database that was created when the cluster was created. This same name is returned for the life of the cluster. If an initial database was not specified, a database named \"dev\" was created by default. </p>",
1294
- "Cluster$ClusterSubnetGroupName": "<p> The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC. </p>",
1295
- "Cluster$VpcId": "<p>The identifier of the VPC the cluster is in, if the cluster is in a VPC. </p>",
1296
- "Cluster$AvailabilityZone": "<p> The name of the Availability Zone in which the cluster is located. </p>",
1297
- "Cluster$PreferredMaintenanceWindow": "<p> The weekly time range (in UTC) during which system maintenance can occur. </p>",
1298
- "Cluster$ClusterVersion": "<p> The version ID of the Amazon Redshift engine that is running on the cluster. </p>",
1299
- "Cluster$ClusterPublicKey": "<p>The public key for the cluster.</p>",
1300
- "Cluster$ClusterRevisionNumber": "<p>The specific revision number of the database in the cluster.</p>",
1301
- "Cluster$KmsKeyId": "<p>The AWS Key Management Service (KMS) key ID of the encryption key used to encrypt data in the cluster.</p>",
1302
- "ClusterNode$NodeRole": "<p>Whether the node is a leader node or a compute node.</p>",
1303
- "ClusterNode$PrivateIPAddress": "<p>The private IP address of a node within a cluster.</p>",
1304
- "ClusterNode$PublicIPAddress": "<p>The public IP address of a node within a cluster.</p>",
1305
- "ClusterParameterGroup$ParameterGroupName": "<p> The name of the cluster parameter group. </p>",
1306
- "ClusterParameterGroup$ParameterGroupFamily": "<p> The name of the cluster parameter group family that this cluster parameter group is compatible with. </p>",
1307
- "ClusterParameterGroup$Description": "<p> The description of the parameter group. </p>",
1308
- "ClusterParameterGroupDetails$Marker": "<p> 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 <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request. </p>",
1309
- "ClusterParameterGroupNameMessage$ParameterGroupName": "<p> The name of the cluster parameter group. </p>",
1310
- "ClusterParameterGroupNameMessage$ParameterGroupStatus": "<p> 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. </p>",
1311
- "ClusterParameterGroupStatus$ParameterGroupName": "<p> The name of the cluster parameter group. </p>",
1312
- "ClusterParameterGroupStatus$ParameterApplyStatus": "<p> The status of parameter updates. </p>",
1313
- "ClusterParameterGroupsMessage$Marker": "<p> 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 <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request. </p>",
1314
- "ClusterSecurityGroup$ClusterSecurityGroupName": "<p> The name of the cluster security group to which the operation was applied. </p>",
1315
- "ClusterSecurityGroup$Description": "<p> A description of the security group. </p>",
1316
- "ClusterSecurityGroupMembership$ClusterSecurityGroupName": "<p> The name of the cluster security group. </p>",
1317
- "ClusterSecurityGroupMembership$Status": "<p> The status of the cluster security group. </p>",
1318
- "ClusterSecurityGroupMessage$Marker": "<p> 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 <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request. </p>",
1319
- "ClusterSecurityGroupNameList$member": null,
1320
- "ClusterSnapshotCopyStatus$DestinationRegion": "<p>The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.</p>",
1321
- "ClusterSubnetGroup$ClusterSubnetGroupName": "<p> The name of the cluster subnet group. </p>",
1322
- "ClusterSubnetGroup$Description": "<p> The description of the cluster subnet group. </p>",
1323
- "ClusterSubnetGroup$VpcId": "<p> The VPC ID of the cluster subnet group. </p>",
1324
- "ClusterSubnetGroup$SubnetGroupStatus": "<p> The status of the cluster subnet group. Possible values are <code>Complete</code>, <code>Incomplete</code> and <code>Invalid</code>. </p>",
1325
- "ClusterSubnetGroupMessage$Marker": "<p> 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 <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request. </p>",
1326
- "ClusterVersion$ClusterVersion": "<p> The version number used by the cluster. </p>",
1327
- "ClusterVersion$ClusterParameterGroupFamily": "<p> The name of the cluster parameter group family for the cluster. </p>",
1328
- "ClusterVersion$Description": "<p> The description of the cluster version. </p>",
1329
- "ClusterVersionsMessage$Marker": "<p> 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 <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request. </p>",
1330
- "ClustersMessage$Marker": "<p> 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 <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request. </p>",
1331
- "CopyClusterSnapshotMessage$SourceSnapshotIdentifier": "<p> The identifier for the source snapshot. </p> <p>Constraints:</p> <ul> <li>Must be the identifier for a valid automated snapshot whose state is <code>available</code>.</li> </ul>",
1332
- "CopyClusterSnapshotMessage$SourceSnapshotClusterIdentifier": "<p> 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. </p> <p>Constraints:</p> <ul> <li>Must be the identifier for a valid cluster.</li> </ul>",
1333
- "CopyClusterSnapshotMessage$TargetSnapshotIdentifier": "<p> The identifier given to the new manual snapshot. </p> <p>Constraints:</p> <ul> <li>Cannot be null, empty, or blank.</li> <li>Must contain from 1 to 255 alphanumeric characters or hyphens.</li> <li>First character must be a letter.</li> <li>Cannot end with a hyphen or contain two consecutive hyphens.</li> <li>Must be unique for the AWS account that is making the request.</li> </ul>",
1334
- "CreateClusterMessage$DBName": "<p>The name of the first database to be created when the cluster is created. </p> <p>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 <a href=\"http://docs.aws.amazon.com/redshift/latest/dg/t_creating_database.html\">Create a Database</a> in the Amazon Redshift Database Developer Guide. </p> <p>Default: <code>dev</code></p> <p>Constraints:</p> <ul> <li>Must contain 1 to 64 alphanumeric characters.</li> <li>Must contain only lowercase letters.</li> <li>Cannot be a word that is reserved by the service. A list of reserved words can be found in <a href=\"http://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html\">Reserved Words</a> in the Amazon Redshift Database Developer Guide. </li> </ul>",
1335
- "CreateClusterMessage$ClusterIdentifier": "<p> 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. </p> <p>Constraints:</p> <ul> <li>Must contain from 1 to 63 alphanumeric characters or hyphens.</li> <li>Alphabetic characters must be lowercase.</li> <li>First character must be a letter.</li> <li>Cannot end with a hyphen or contain two consecutive hyphens.</li> <li>Must be unique for all clusters within an AWS account.</li> </ul> <p>Example: <code>myexamplecluster</code></p>",
1336
- "CreateClusterMessage$ClusterType": "<p> The type of the cluster. When cluster type is specified as <ul> <li> <code>single-node</code>, the <b>NumberOfNodes</b> parameter is not required.</li> <li> <code>multi-node</code>, the <b>NumberOfNodes</b> parameter is required.</li> </ul> </p> <p> Valid Values: <code>multi-node</code> | <code>single-node</code> </p> <p>Default: <code>multi-node</code></p>",
1337
- "CreateClusterMessage$NodeType": "<p> The node type to be provisioned for the cluster. For information about node types, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes\"> Working with Clusters</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p> <p> Valid Values: <code>dw1.xlarge</code> | <code>dw1.8xlarge</code> | <code>dw2.large</code> | <code>dw2.8xlarge</code>. </p>",
1338
- "CreateClusterMessage$MasterUsername": "<p> The user name associated with the master user account for the cluster that is being created. </p> <p>Constraints:</p> <ul> <li>Must be 1 - 128 alphanumeric characters.</li> <li>First character must be a letter.</li> <li>Cannot be a reserved word. A list of reserved words can be found in <a href=\"http://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html\">Reserved Words</a> in the Amazon Redshift Database Developer Guide. </li> </ul>",
1339
- "CreateClusterMessage$MasterUserPassword": "<p> The password associated with the master user account for the cluster that is being created. </p> <p> Constraints: </p> <ul> <li>Must be between 8 and 64 characters in length.</li> <li>Must contain at least one uppercase letter.</li> <li>Must contain at least one lowercase letter.</li> <li>Must contain one number.</li> <li>Can be any printable ASCII character (ASCII code 33 to 126) except ' (single quote), \" (double quote), \\, /, @, or space.</li> </ul>",
1340
- "CreateClusterMessage$ClusterSubnetGroupName": "<p> The name of a cluster subnet group to be associated with this cluster. </p> <p> If this parameter is not provided the resulting cluster will be deployed outside virtual private cloud (VPC). </p>",
1341
- "CreateClusterMessage$AvailabilityZone": "<p> 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. </p> <p> Default: A random, system-chosen Availability Zone in the region that is specified by the endpoint. </p> <p> Example: <code>us-east-1d</code> </p> <p> Constraint: The specified Availability Zone must be in the same region as the current endpoint. </p>",
1342
- "CreateClusterMessage$PreferredMaintenanceWindow": "<p> The weekly time range (in UTC) during which automated cluster maintenance can occur. </p> <p> Format: <code>ddd:hh24:mi-ddd:hh24:mi</code> </p> <p> 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 <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#rs-maintenance-windows\">Maintenance Windows</a> in Amazon Redshift Cluster Management Guide.</p> <p>Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun</p> <p>Constraints: Minimum 30-minute window.</p>",
1343
- "CreateClusterMessage$ClusterParameterGroupName": "<p> The name of the parameter group to be associated with this cluster. </p> <p>Default: The default Amazon Redshift cluster parameter group. For information about the default parameter group, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html\">Working with Amazon Redshift Parameter Groups</a></p> <p> Constraints: </p> <ul> <li>Must be 1 to 255 alphanumeric characters or hyphens.</li> <li>First character must be a letter.</li> <li>Cannot end with a hyphen or contain two consecutive hyphens.</li> </ul>",
1344
- "CreateClusterMessage$ClusterVersion": "<p> The version of the Amazon Redshift engine software that you want to deploy on the cluster. </p> <p> The version selected runs on all the nodes in the cluster. </p> <p>Constraints: Only version 1.0 is currently available.</p> <p>Example: <code>1.0</code></p>",
1345
- "CreateClusterMessage$HsmClientCertificateIdentifier": "<p>Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.</p>",
1346
- "CreateClusterMessage$HsmConfigurationIdentifier": "<p>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.</p>",
1347
- "CreateClusterMessage$ElasticIp": "<p>The Elastic IP (EIP) address for the cluster.</p> <p>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 <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#cluster-platforms\">Supported Platforms to Launch Your Cluster</a> in the Amazon Redshift Cluster Management Guide.</p>",
1348
- "CreateClusterMessage$KmsKeyId": "<p>The AWS Key Management Service (KMS) key ID of the encryption key that you want to use to encrypt data in the cluster.</p>",
1349
- "CreateClusterParameterGroupMessage$ParameterGroupName": "<p> The name of the cluster parameter group. </p> <p> Constraints: </p> <ul> <li>Must be 1 to 255 alphanumeric characters or hyphens</li> <li>First character must be a letter.</li> <li>Cannot end with a hyphen or contain two consecutive hyphens.</li> <li>Must be unique withing your AWS account.</li> </ul> <note>This value is stored as a lower-case string.</note>",
1350
- "CreateClusterParameterGroupMessage$ParameterGroupFamily": "<p> The Amazon Redshift engine version to which the cluster parameter group applies. The cluster engine version determines the set of parameters. </p> <p>To get a list of valid parameter group family names, you can call <a>DescribeClusterParameterGroups</a>. 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\". </p>",
1351
- "CreateClusterParameterGroupMessage$Description": "<p> A description of the parameter group. </p>",
1352
- "CreateClusterSecurityGroupMessage$ClusterSecurityGroupName": "<p> The name for the security group. Amazon Redshift stores the value as a lowercase string. </p> <p>Constraints: </p> <ul> <li>Must contain no more than 255 alphanumeric characters or hyphens.</li> <li>Must not be \"Default\".</li> <li>Must be unique for all security groups that are created by your AWS account.</li> </ul> <p>Example: <code>examplesecuritygroup</code></p>",
1353
- "CreateClusterSecurityGroupMessage$Description": "<p> A description for the security group. </p>",
1354
- "CreateClusterSnapshotMessage$SnapshotIdentifier": "<p> A unique identifier for the snapshot that you are requesting. This identifier must be unique for all snapshots within the AWS account. </p> <p>Constraints:</p> <ul> <li>Cannot be null, empty, or blank</li> <li>Must contain from 1 to 255 alphanumeric characters or hyphens</li> <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two consecutive hyphens</li> </ul> <p>Example: <code>my-snapshot-id</code></p>",
1355
- "CreateClusterSnapshotMessage$ClusterIdentifier": "<p> The cluster identifier for which you want a snapshot. </p>",
1356
- "CreateClusterSubnetGroupMessage$ClusterSubnetGroupName": "<p> The name for the subnet group. Amazon Redshift stores the value as a lowercase string. </p> <p>Constraints: </p> <ul> <li>Must contain no more than 255 alphanumeric characters or hyphens.</li> <li>Must not be \"Default\".</li> <li>Must be unique for all subnet groups that are created by your AWS account.</li> </ul> <p>Example: <code>examplesubnetgroup</code></p>",
1357
- "CreateClusterSubnetGroupMessage$Description": "<p>A description for the subnet group.</p>",
1358
- "CreateEventSubscriptionMessage$SubscriptionName": "<p> The name of the event subscription to be created. </p> <p>Constraints:</p> <ul> <li>Cannot be null, empty, or blank.</li> <li>Must contain from 1 to 255 alphanumeric characters or hyphens.</li> <li>First character must be a letter.</li> <li>Cannot end with a hyphen or contain two consecutive hyphens.</li> </ul>",
1359
- "CreateEventSubscriptionMessage$SnsTopicArn": "<p> 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. </p>",
1360
- "CreateEventSubscriptionMessage$SourceType": "<p> 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. </p> <p>Valid values: cluster, cluster-parameter-group, cluster-security-group, and cluster-snapshot.</p>",
1361
- "CreateEventSubscriptionMessage$Severity": "<p>Specifies the Amazon Redshift event severity to be published by the event notification subscription.</p> <p>Values: ERROR, INFO</p>",
1362
- "CreateHsmClientCertificateMessage$HsmClientCertificateIdentifier": "<p>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.</p>",
1363
- "CreateHsmConfigurationMessage$HsmConfigurationIdentifier": "<p>The identifier to be assigned to the new Amazon Redshift HSM configuration.</p>",
1364
- "CreateHsmConfigurationMessage$Description": "<p>A text description of the HSM configuration to be created.</p>",
1365
- "CreateHsmConfigurationMessage$HsmIpAddress": "<p>The IP address that the Amazon Redshift cluster must use to access the HSM.</p>",
1366
- "CreateHsmConfigurationMessage$HsmPartitionName": "<p>The name of the partition in the HSM where the Amazon Redshift clusters will store their database encryption keys.</p>",
1367
- "CreateHsmConfigurationMessage$HsmPartitionPassword": "<p>The password required to access the HSM partition.</p>",
1368
- "CreateHsmConfigurationMessage$HsmServerPublicCertificate": "<p>The HSMs public certificate file. When using Cloud HSM, the file name is server.pem.</p>",
1369
- "CreateTagsMessage$ResourceName": "<p> The Amazon Resource Name (ARN) to which you want to add the tag or tags. For example, <code>arn:aws:redshift:us-east-1:123456789:cluster:t1</code>. </p>",
1370
- "DefaultClusterParameters$ParameterGroupFamily": "<p> The name of the cluster parameter group family to which the engine default parameters apply. </p>",
1371
- "DefaultClusterParameters$Marker": "<p> 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 <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request. </p>",
1372
- "DeleteClusterMessage$ClusterIdentifier": "<p> The identifier of the cluster to be deleted. </p> <p>Constraints:</p> <ul> <li>Must contain lowercase characters.</li> <li>Must contain from 1 to 63 alphanumeric characters or hyphens.</li> <li>First character must be a letter.</li> <li>Cannot end with a hyphen or contain two consecutive hyphens.</li> </ul>",
1373
- "DeleteClusterMessage$FinalClusterSnapshotIdentifier": "<p> The identifier of the final snapshot that is to be created immediately before deleting the cluster. If this parameter is provided, <i>SkipFinalClusterSnapshot</i> must be <code>false</code>. </p> <p>Constraints:</p> <ul> <li>Must be 1 to 255 alphanumeric characters.</li> <li>First character must be a letter.</li> <li>Cannot end with a hyphen or contain two consecutive hyphens.</li> </ul>",
1374
- "DeleteClusterParameterGroupMessage$ParameterGroupName": "<p> The name of the parameter group to be deleted. </p> <p>Constraints:</p> <ul> <li>Must be the name of an existing cluster parameter group.</li> <li>Cannot delete a default cluster parameter group.</li> </ul>",
1375
- "DeleteClusterSecurityGroupMessage$ClusterSecurityGroupName": "<p> The name of the cluster security group to be deleted. </p>",
1376
- "DeleteClusterSnapshotMessage$SnapshotIdentifier": "<p> The unique identifier of the manual snapshot to be deleted. </p> <p>Constraints: Must be the name of an existing snapshot that is in the <code>available</code> state.</p>",
1377
- "DeleteClusterSnapshotMessage$SnapshotClusterIdentifier": "<p> 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. </p> <p>Constraints: Must be the name of valid cluster.</p>",
1378
- "DeleteClusterSubnetGroupMessage$ClusterSubnetGroupName": "<p>The name of the cluster subnet group name to be deleted.</p>",
1379
- "DeleteEventSubscriptionMessage$SubscriptionName": "<p>The name of the Amazon Redshift event notification subscription to be deleted.</p>",
1380
- "DeleteHsmClientCertificateMessage$HsmClientCertificateIdentifier": "<p>The identifier of the HSM client certificate to be deleted.</p>",
1381
- "DeleteHsmConfigurationMessage$HsmConfigurationIdentifier": "<p>The identifier of the Amazon Redshift HSM configuration to be deleted.</p>",
1382
- "DeleteTagsMessage$ResourceName": "<p> The Amazon Resource Name (ARN) from which you want to remove the tag or tags. For example, <code>arn:aws:redshift:us-east-1:123456789:cluster:t1</code>. </p>",
1383
- "DescribeClusterParameterGroupsMessage$ParameterGroupName": "<p> 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. </p>",
1384
- "DescribeClusterParameterGroupsMessage$Marker": "<p> An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeClusterParameterGroups</a> request exceed the value specified in <code>MaxRecords</code>, AWS returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>",
1385
- "DescribeClusterParametersMessage$ParameterGroupName": "<p> The name of a cluster parameter group for which to return details. </p>",
1386
- "DescribeClusterParametersMessage$Source": "<p> The parameter types to return. Specify <code>user</code> to show parameters that are different form the default. Similarly, specify <code>engine-default</code> to show parameters that are the same as the default parameter group. </p> <p>Default: All parameter types returned.</p> <p>Valid Values: <code>user</code> | <code>engine-default</code></p>",
1387
- "DescribeClusterParametersMessage$Marker": "<p> An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeClusterParameters</a> request exceed the value specified in <code>MaxRecords</code>, AWS returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>",
1388
- "DescribeClusterSecurityGroupsMessage$ClusterSecurityGroupName": "<p> The name of a cluster security group for which you are requesting details. You can specify either the <b>Marker</b> parameter or a <b>ClusterSecurityGroupName</b> parameter, but not both. </p> <p> Example: <code>securitygroup1</code> </p>",
1389
- "DescribeClusterSecurityGroupsMessage$Marker": "<p> An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeClusterSecurityGroups</a> request exceed the value specified in <code>MaxRecords</code>, AWS returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p> <p> Constraints: You can specify either the <b>ClusterSecurityGroupName</b> parameter or the <b>Marker</b> parameter, but not both. </p>",
1390
- "DescribeClusterSnapshotsMessage$ClusterIdentifier": "<p> The identifier of the cluster for which information about snapshots is requested. </p>",
1391
- "DescribeClusterSnapshotsMessage$SnapshotIdentifier": "<p> The snapshot identifier of the snapshot about which to return information. </p>",
1392
- "DescribeClusterSnapshotsMessage$SnapshotType": "<p> The type of snapshots for which you are requesting information. By default, snapshots of all types are returned. </p> <p> Valid Values: <code>automated</code> | <code>manual</code> </p>",
1393
- "DescribeClusterSnapshotsMessage$Marker": "<p> An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeClusterSnapshots</a> request exceed the value specified in <code>MaxRecords</code>, AWS returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>",
1394
- "DescribeClusterSnapshotsMessage$OwnerAccount": "<p> 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. </p>",
1395
- "DescribeClusterSubnetGroupsMessage$ClusterSubnetGroupName": "<p>The name of the cluster subnet group for which information is requested. </p>",
1396
- "DescribeClusterSubnetGroupsMessage$Marker": "<p> An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeClusterSubnetGroups</a> request exceed the value specified in <code>MaxRecords</code>, AWS returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>",
1397
- "DescribeClusterVersionsMessage$ClusterVersion": "<p> The specific cluster version to return. </p> <p>Example: <code>1.0</code></p>",
1398
- "DescribeClusterVersionsMessage$ClusterParameterGroupFamily": "<p> The name of a specific cluster parameter group family to return details for. </p> <p>Constraints:</p> <ul> <li>Must be 1 to 255 alphanumeric characters</li> <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two consecutive hyphens</li> </ul>",
1399
- "DescribeClusterVersionsMessage$Marker": "<p> An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeClusterVersions</a> request exceed the value specified in <code>MaxRecords</code>, AWS returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>",
1400
- "DescribeClustersMessage$ClusterIdentifier": "<p> The unique identifier of a cluster whose properties you are requesting. This parameter is case sensitive. </p> <p>The default is that all clusters defined for an account are returned. </p>",
1401
- "DescribeClustersMessage$Marker": "<p> An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeClusters</a> request exceed the value specified in <code>MaxRecords</code>, AWS returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p> <p> Constraints: You can specify either the <b>ClusterIdentifier</b> parameter or the <b>Marker</b> parameter, but not both. </p>",
1402
- "DescribeDefaultClusterParametersMessage$ParameterGroupFamily": "<p> The name of the cluster parameter group family. </p>",
1403
- "DescribeDefaultClusterParametersMessage$Marker": "<p> An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeDefaultClusterParameters</a> request exceed the value specified in <code>MaxRecords</code>, AWS returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>",
1404
- "DescribeEventCategoriesMessage$SourceType": "<p> The source type, such as cluster or parameter group, to which the described event categories apply. </p> <p> Valid values: cluster, snapshot, parameter group, and security group. </p>",
1405
- "DescribeEventSubscriptionsMessage$SubscriptionName": "<p>The name of the Amazon Redshift event notification subscription to be described.</p>",
1406
- "DescribeEventSubscriptionsMessage$Marker": "<p> An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeEventSubscriptions</a> request exceed the value specified in <code>MaxRecords</code>, AWS returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>",
1407
- "DescribeEventsMessage$SourceIdentifier": "<p> 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. </p> <p>Constraints:</p> <p>If <i>SourceIdentifier</i> is supplied, <i>SourceType</i> must also be provided.</p> <ul> <li>Specify a cluster identifier when <i>SourceType</i> is <code>cluster</code>.</li> <li>Specify a cluster security group name when <i>SourceType</i> is <code>cluster-security-group</code>.</li> <li>Specify a cluster parameter group name when <i>SourceType</i> is <code>cluster-parameter-group</code>.</li> <li>Specify a cluster snapshot identifier when <i>SourceType</i> is <code>cluster-snapshot</code>.</li> </ul>",
1408
- "DescribeEventsMessage$Marker": "<p> An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeEvents</a> request exceed the value specified in <code>MaxRecords</code>, AWS returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>",
1409
- "DescribeHsmClientCertificatesMessage$HsmClientCertificateIdentifier": "<p>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.</p>",
1410
- "DescribeHsmClientCertificatesMessage$Marker": "<p> An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeHsmClientCertificates</a> request exceed the value specified in <code>MaxRecords</code>, AWS returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>",
1411
- "DescribeHsmConfigurationsMessage$HsmConfigurationIdentifier": "<p>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.</p>",
1412
- "DescribeHsmConfigurationsMessage$Marker": "<p> An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeHsmConfigurations</a> request exceed the value specified in <code>MaxRecords</code>, AWS returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>",
1413
- "DescribeLoggingStatusMessage$ClusterIdentifier": "<p> The identifier of the cluster to get the logging status from. </p> <p>Example: <code>examplecluster</code></p>",
1414
- "DescribeOrderableClusterOptionsMessage$ClusterVersion": "<p> The version filter value. Specify this parameter to show only the available offerings matching the specified version. </p> <p>Default: All versions.</p> <p>Constraints: Must be one of the version returned from <a>DescribeClusterVersions</a>.</p>",
1415
- "DescribeOrderableClusterOptionsMessage$NodeType": "<p> The node type filter value. Specify this parameter to show only the available offerings matching the specified node type. </p>",
1416
- "DescribeOrderableClusterOptionsMessage$Marker": "<p> An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeOrderableClusterOptions</a> request exceed the value specified in <code>MaxRecords</code>, AWS returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>",
1417
- "DescribeReservedNodeOfferingsMessage$ReservedNodeOfferingId": "<p>The unique identifier for the offering.</p>",
1418
- "DescribeReservedNodeOfferingsMessage$Marker": "<p> An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeReservedNodeOfferings</a> request exceed the value specified in <code>MaxRecords</code>, AWS returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>",
1419
- "DescribeReservedNodesMessage$ReservedNodeId": "<p>Identifier for the node reservation.</p>",
1420
- "DescribeReservedNodesMessage$Marker": "<p> An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeReservedNodes</a> request exceed the value specified in <code>MaxRecords</code>, AWS returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>",
1421
- "DescribeResizeMessage$ClusterIdentifier": "<p> The unique identifier of a cluster whose resize progress you are requesting. This parameter is case-sensitive. </p> <p>By default, resize operations for all clusters defined for an AWS account are returned. </p>",
1422
- "DescribeTagsMessage$ResourceName": "<p> The Amazon Resource Name (ARN) for which you want to describe the tag or tags. For example, <code>arn:aws:redshift:us-east-1:123456789:cluster:t1</code>. </p>",
1423
- "DescribeTagsMessage$ResourceType": "<p> The type of resource with which you want to view tags. Valid resource types are: <ul> <li>Cluster</li> <li>CIDR/IP</li> <li>EC2 security group</li> <li>Snapshot</li> <li>Cluster security group</li> <li>Subnet group</li> <li>HSM connection</li> <li>HSM certificate</li> <li>Parameter group</li> </ul> </p> <p> For more information about Amazon Redshift resource types and constructing ARNs, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/constructing-redshift-arn.html\">Constructing an Amazon Redshift Amazon Resource Name (ARN)</a> in the Amazon Redshift Cluster Management Guide. </p>",
1424
- "DescribeTagsMessage$Marker": "<p> 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 <code>marker</code> parameter and retrying the command. If the <code>marker</code> field is empty, all response records have been retrieved for the request. </p>",
1425
- "DisableLoggingMessage$ClusterIdentifier": "<p> The identifier of the cluster on which logging is to be stopped. </p> <p>Example: <code>examplecluster</code></p>",
1426
- "DisableSnapshotCopyMessage$ClusterIdentifier": "<p> The unique identifier of the source cluster that you want to disable copying of snapshots to a destination region. </p> <p> Constraints: Must be the valid name of an existing cluster that has cross-region snapshot copy enabled. </p>",
1427
- "EC2SecurityGroup$Status": "<p> The status of the EC2 security group. </p>",
1428
- "EC2SecurityGroup$EC2SecurityGroupName": "<p> The name of the EC2 Security Group. </p>",
1429
- "EC2SecurityGroup$EC2SecurityGroupOwnerId": "<p> The AWS ID of the owner of the EC2 security group specified in the <code>EC2SecurityGroupName</code> field. </p>",
1430
- "ElasticIpStatus$ElasticIp": "<p>The elastic IP (EIP) address for the cluster.</p>",
1431
- "ElasticIpStatus$Status": "<p>Describes the status of the elastic IP (EIP) address.</p>",
1432
- "EnableLoggingMessage$ClusterIdentifier": "<p> The identifier of the cluster on which logging is to be started. </p> <p>Example: <code>examplecluster</code></p>",
1433
- "EnableLoggingMessage$BucketName": "<p> The name of an existing S3 bucket where the log files are to be stored. </p> <p>Constraints:</p> <ul> <li>Must be in the same region as the cluster</li> <li>The cluster must have read bucket and put object permissions</li> </ul>",
1434
- "EnableLoggingMessage$S3KeyPrefix": "<p> The prefix applied to the log file names. </p> <p>Constraints:</p> <ul> <li>Cannot exceed 512 characters</li> <li>Cannot contain spaces( ), double quotes (\"), single quotes ('), a backslash (\\), or control characters. The hexadecimal codes for invalid characters are: <ul> <li>x00 to x20</li> <li>x22</li> <li>x27</li> <li>x5c</li> <li>x7f or larger</li> </ul> </li> </ul>",
1435
- "EnableSnapshotCopyMessage$ClusterIdentifier": "<p> The unique identifier of the source cluster to copy snapshots from. </p> <p> Constraints: Must be the valid name of an existing cluster that does not already have cross-region snapshot copy enabled. </p>",
1436
- "EnableSnapshotCopyMessage$DestinationRegion": "<p> The destination region that you want to copy snapshots to. </p> <p> Constraints: Must be the name of a valid region. For more information, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html#redshift_region\">Regions and Endpoints</a> in the Amazon Web Services General Reference. </p>",
1437
- "Endpoint$Address": "<p> The DNS address of the Cluster. </p>",
1438
- "Event$SourceIdentifier": "<p> The identifier for the source of the event. </p>",
1439
- "Event$Message": "<p> The text of this event. </p>",
1440
- "Event$Severity": "<p>The severity of the event.</p> <p>Values: ERROR, INFO</p>",
1441
- "Event$EventId": "<p> The identifier of the event. </p>",
1442
- "EventCategoriesList$member": null,
1443
- "EventCategoriesMap$SourceType": "<p>The Amazon Redshift source type, such as cluster or cluster-snapshot, that the returned categories belong to.</p>",
1444
- "EventInfoMap$EventId": "<p>The identifier of an Amazon Redshift event.</p>",
1445
- "EventInfoMap$EventDescription": "<p>The description of an Amazon Redshift event.</p>",
1446
- "EventInfoMap$Severity": "<p>The severity of the event.</p> <p>Values: ERROR, INFO</p>",
1447
- "EventSubscription$CustomerAwsId": "<p>The AWS customer account associated with the Amazon Redshift event notification subscription.</p>",
1448
- "EventSubscription$CustSubscriptionId": "<p>The name of the Amazon Redshift event notification subscription.</p>",
1449
- "EventSubscription$SnsTopicArn": "<p>The Amazon Resource Name (ARN) of the Amazon SNS topic used by the event notification subscription.</p>",
1450
- "EventSubscription$Status": "<p>The status of the Amazon Redshift event notification subscription.</p> <p>Constraints:</p> <ul> <li>Can be one of the following: active | no-permission | topic-not-exist</li> <li>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.</li> </ul>",
1451
- "EventSubscription$SourceType": "<p>The source type of the events returned the Amazon Redshift event notification, such as cluster, or cluster-snapshot.</p>",
1452
- "EventSubscription$Severity": "<p>The event severity specified in the Amazon Redshift event notification subscription.</p> <p>Values: ERROR, INFO</p>",
1453
- "EventSubscriptionsMessage$Marker": "<p> 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 <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request. </p>",
1454
- "EventsMessage$Marker": "<p> 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 <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request. </p>",
1455
- "HsmClientCertificate$HsmClientCertificateIdentifier": "<p>The identifier of the HSM client certificate.</p>",
1456
- "HsmClientCertificate$HsmClientCertificatePublicKey": "<p>The public key that the Amazon Redshift cluster will use to connect to the HSM. You must register the public key in the HSM.</p>",
1457
- "HsmClientCertificateMessage$Marker": "<p> 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 <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request. </p>",
1458
- "HsmConfiguration$HsmConfigurationIdentifier": "<p>The name of the Amazon Redshift HSM configuration.</p>",
1459
- "HsmConfiguration$Description": "<p>A text description of the HSM configuration.</p>",
1460
- "HsmConfiguration$HsmIpAddress": "<p>The IP address that the Amazon Redshift cluster must use to access the HSM.</p>",
1461
- "HsmConfiguration$HsmPartitionName": "<p>The name of the partition in the HSM where the Amazon Redshift clusters will store their database encryption keys.</p>",
1462
- "HsmConfigurationMessage$Marker": "<p> 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 <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request. </p>",
1463
- "HsmStatus$HsmClientCertificateIdentifier": "<p>Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.</p>",
1464
- "HsmStatus$HsmConfigurationIdentifier": "<p>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.</p>",
1465
- "HsmStatus$Status": "<p>Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.</p> <p>Values: active, applying</p>",
1466
- "IPRange$Status": "<p> The status of the IP range, for example, \"authorized\". </p>",
1467
- "IPRange$CIDRIP": "<p> The IP range in Classless Inter-Domain Routing (CIDR) notation. </p>",
1468
- "ImportTablesCompleted$member": null,
1469
- "ImportTablesInProgress$member": null,
1470
- "ImportTablesNotStarted$member": null,
1471
- "LoggingStatus$BucketName": "<p>The name of the S3 bucket where the log files are stored.</p>",
1472
- "LoggingStatus$S3KeyPrefix": "<p>The prefix applied to the log file names.</p>",
1473
- "LoggingStatus$LastFailureMessage": "<p> The message indicating that logs failed to be delivered. </p>",
1474
- "ModifyClusterMessage$ClusterIdentifier": "<p> The unique identifier of the cluster to be modified. </p> <p>Example: <code>examplecluster</code></p>",
1475
- "ModifyClusterMessage$ClusterType": "<p> The new cluster type. </p> <p> 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 <a>DescribeResize</a> to track the progress of the resize request. </p> <p>Valid Values: <code> multi-node | single-node </code></p>",
1476
- "ModifyClusterMessage$NodeType": "<p> The new node type of the cluster. If you specify a new node type, you must also specify the number of nodes parameter. </p> <p> 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 <a>DescribeResize</a> to track the progress of the resize request. </p> <p>Valid Values: <code> dw1.xlarge</code> | <code>dw1.8xlarge</code> | <code>dw2.large</code> | <code>dw2.8xlarge</code>.</p>",
1477
- "ModifyClusterMessage$MasterUserPassword": "<p> 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 <code>MasterUserPassword</code> element exists in the <code>PendingModifiedValues</code> element of the operation response. <note> 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. </note> </p> <p>Default: Uses existing setting.</p> <p> Constraints: </p> <ul> <li>Must be between 8 and 64 characters in length.</li> <li>Must contain at least one uppercase letter.</li> <li>Must contain at least one lowercase letter.</li> <li>Must contain one number.</li> <li>Can be any printable ASCII character (ASCII code 33 to 126) except ' (single quote), \" (double quote), \\, /, @, or space.</li> </ul>",
1478
- "ModifyClusterMessage$ClusterParameterGroupName": "<p> 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 <a>RebootCluster</a>. </p> <p>Default: Uses existing setting.</p> <p>Constraints: The cluster parameter group must be in the same parameter group family that matches the cluster version.</p>",
1479
- "ModifyClusterMessage$PreferredMaintenanceWindow": "<p> 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. </p> <p> 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. </p> <p>Default: Uses existing setting.</p> <p>Format: ddd:hh24:mi-ddd:hh24:mi, for example <code>wed:07:30-wed:08:00</code>.</p> <p>Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun</p> <p>Constraints: Must be at least 30 minutes.</p>",
1480
- "ModifyClusterMessage$ClusterVersion": "<p> The new version number of the Amazon Redshift engine to upgrade to. </p> <p> 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 managing parameter groups, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html\">Amazon Redshift Parameter Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p> <p>Example: <code>1.0</code></p>",
1481
- "ModifyClusterMessage$HsmClientCertificateIdentifier": "<p>Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.</p>",
1482
- "ModifyClusterMessage$HsmConfigurationIdentifier": "<p>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.</p>",
1483
- "ModifyClusterMessage$NewClusterIdentifier": "<p>The new identifier for the cluster.</p> <p>Constraints:</p> <ul> <li>Must contain from 1 to 63 alphanumeric characters or hyphens.</li> <li>Alphabetic characters must be lowercase.</li> <li>First character must be a letter.</li> <li>Cannot end with a hyphen or contain two consecutive hyphens.</li> <li>Must be unique for all clusters within an AWS account.</li> </ul> <p>Example: <code>examplecluster</code></p>",
1484
- "ModifyClusterParameterGroupMessage$ParameterGroupName": "<p> The name of the parameter group to be modified. </p>",
1485
- "ModifyClusterSubnetGroupMessage$ClusterSubnetGroupName": "<p>The name of the subnet group to be modified.</p>",
1486
- "ModifyClusterSubnetGroupMessage$Description": "<p>A text description of the subnet group to be modified.</p>",
1487
- "ModifyEventSubscriptionMessage$SubscriptionName": "<p> The name of the modified Amazon Redshift event notification subscription. </p>",
1488
- "ModifyEventSubscriptionMessage$SnsTopicArn": "<p> The Amazon Resource Name (ARN) of the SNS topic to be used by the event notification subscription. </p>",
1489
- "ModifyEventSubscriptionMessage$SourceType": "<p> 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. </p> <p>Valid values: cluster, cluster-parameter-group, cluster-security-group, and cluster-snapshot.</p>",
1490
- "ModifyEventSubscriptionMessage$Severity": "<p>Specifies the Amazon Redshift event severity to be published by the event notification subscription.</p> <p>Values: ERROR, INFO</p>",
1491
- "ModifySnapshotCopyRetentionPeriodMessage$ClusterIdentifier": "<p> 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. </p> <p> Constraints: Must be the valid name of an existing cluster that has cross-region snapshot copy enabled. </p>",
1492
- "OrderableClusterOption$ClusterVersion": "<p> The version of the orderable cluster. </p>",
1493
- "OrderableClusterOption$ClusterType": "<p> The cluster type, for example <code>multi-node</code>. </p>",
1494
- "OrderableClusterOption$NodeType": "<p> The node type for the orderable cluster. </p>",
1495
- "OrderableClusterOptionsMessage$Marker": "<p> 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 <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request. </p>",
1496
- "Parameter$ParameterName": "<p> The name of the parameter. </p>",
1497
- "Parameter$ParameterValue": "<p> The value of the parameter. </p>",
1498
- "Parameter$Description": "<p> A description of the parameter. </p>",
1499
- "Parameter$Source": "<p> The source of the parameter value, such as \"engine-default\" or \"user\". </p>",
1500
- "Parameter$DataType": "<p> The data type of the parameter. </p>",
1501
- "Parameter$AllowedValues": "<p> The valid range of values for the parameter. </p>",
1502
- "Parameter$MinimumEngineVersion": "<p> The earliest engine version to which the parameter can apply. </p>",
1503
- "PendingModifiedValues$MasterUserPassword": "<p> The pending or in-progress change of the master user password for the cluster. </p>",
1504
- "PendingModifiedValues$NodeType": "<p> The pending or in-progress change of the cluster's node type. </p>",
1505
- "PendingModifiedValues$ClusterType": "<p> The pending or in-progress change of the cluster type. </p>",
1506
- "PendingModifiedValues$ClusterVersion": "<p> The pending or in-progress change of the service version. </p>",
1507
- "PendingModifiedValues$ClusterIdentifier": "<p>The pending or in-progress change of the new identifier for the cluster.</p>",
1508
- "PurchaseReservedNodeOfferingMessage$ReservedNodeOfferingId": "<p>The unique identifier of the reserved node offering you want to purchase.</p>",
1509
- "RebootClusterMessage$ClusterIdentifier": "<p> The cluster identifier. </p>",
1510
- "RecurringCharge$RecurringChargeFrequency": "<p>The frequency at which the recurring charge amount is applied.</p>",
1511
- "ReservedNode$ReservedNodeId": "<p> The unique identifier for the reservation. </p>",
1512
- "ReservedNode$ReservedNodeOfferingId": "<p> The identifier for the reserved node offering. </p>",
1513
- "ReservedNode$NodeType": "<p> The node type of the reserved node. </p>",
1514
- "ReservedNode$CurrencyCode": "<p>The currency code for the reserved cluster.</p>",
1515
- "ReservedNode$State": "<p> The state of the reserved compute node. </p> <p>Possible Values:</p> <ul> <li>pending-payment-This reserved node has recently been purchased, and the sale has been approved, but payment has not yet been confirmed.</li> <li>active-This reserved node is owned by the caller and is available for use.</li> <li>payment-failed-Payment failed for the purchase attempt.</li> </ul>",
1516
- "ReservedNode$OfferingType": "<p>The anticipated utilization of the reserved node, as defined in the reserved node offering.</p>",
1517
- "ReservedNodeOffering$ReservedNodeOfferingId": "<p> The offering identifier. </p>",
1518
- "ReservedNodeOffering$NodeType": "<p> The node type offered by the reserved node offering. </p>",
1519
- "ReservedNodeOffering$CurrencyCode": "<p> The currency code for the compute nodes offering. </p>",
1520
- "ReservedNodeOffering$OfferingType": "<p>The anticipated utilization of the reserved node, as defined in the reserved node offering.</p>",
1521
- "ReservedNodeOfferingsMessage$Marker": "<p> 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 <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request. </p>",
1522
- "ReservedNodesMessage$Marker": "<p> 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 <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request. </p>",
1523
- "ResetClusterParameterGroupMessage$ParameterGroupName": "<p> The name of the cluster parameter group to be reset. </p>",
1524
- "ResizeProgressMessage$TargetNodeType": "<p>The node type that the cluster will have after the resize operation is complete.</p>",
1525
- "ResizeProgressMessage$TargetClusterType": "<p>The cluster type after the resize operation is complete.</p> <p>Valid Values: <code>multi-node</code> | <code>single-node</code></p>",
1526
- "ResizeProgressMessage$Status": "<p>The status of the resize operation.</p> <p>Valid Values: <code>NONE</code> | <code>IN_PROGRESS</code> | <code>FAILED</code> | <code>SUCCEEDED</code></p>",
1527
- "RestoreFromClusterSnapshotMessage$ClusterIdentifier": "<p> The identifier of the cluster that will be created from restoring the snapshot. </p> <p> <p>Constraints:</p> <ul> <li>Must contain from 1 to 63 alphanumeric characters or hyphens.</li> <li>Alphabetic characters must be lowercase.</li> <li>First character must be a letter.</li> <li>Cannot end with a hyphen or contain two consecutive hyphens.</li> <li>Must be unique for all clusters within an AWS account.</li> </ul> </p>",
1528
- "RestoreFromClusterSnapshotMessage$SnapshotIdentifier": "<p> The name of the snapshot from which to create the new cluster. This parameter isn't case sensitive. </p> <p>Example: <code>my-snapshot-id</code></p>",
1529
- "RestoreFromClusterSnapshotMessage$SnapshotClusterIdentifier": "<p> 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. </p>",
1530
- "RestoreFromClusterSnapshotMessage$AvailabilityZone": "<p> The Amazon EC2 Availability Zone in which to restore the cluster. </p> <p>Default: A random, system-chosen Availability Zone.</p> <p>Example: <code>us-east-1a</code></p>",
1531
- "RestoreFromClusterSnapshotMessage$ClusterSubnetGroupName": "<p> The name of the subnet group where you want to cluster restored. </p> <p> 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. </p>",
1532
- "RestoreFromClusterSnapshotMessage$OwnerAccount": "<p> 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. </p>",
1533
- "RestoreFromClusterSnapshotMessage$HsmClientCertificateIdentifier": "<p>Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.</p>",
1534
- "RestoreFromClusterSnapshotMessage$HsmConfigurationIdentifier": "<p>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.</p>",
1535
- "RestoreFromClusterSnapshotMessage$ElasticIp": "<p>The elastic IP (EIP) address for the cluster.</p>",
1536
- "RestoreFromClusterSnapshotMessage$ClusterParameterGroupName": "<p> The name of the parameter group to be associated with this cluster. </p> <p>Default: The default Amazon Redshift cluster parameter group. For information about the default parameter group, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html\">Working with Amazon Redshift Parameter Groups</a>.</p> <p> Constraints: </p> <ul> <li>Must be 1 to 255 alphanumeric characters or hyphens.</li> <li>First character must be a letter.</li> <li>Cannot end with a hyphen or contain two consecutive hyphens.</li> </ul>",
1537
- "RestoreFromClusterSnapshotMessage$PreferredMaintenanceWindow": "<p> The weekly time range (in UTC) during which automated cluster maintenance can occur. </p> <p> Format: <code>ddd:hh24:mi-ddd:hh24:mi</code> </p> <p> Default: The value selected for the cluster from which the snapshot was taken. For more information about the time blocks for each region, see <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#rs-maintenance-windows\">Maintenance Windows</a> in Amazon Redshift Cluster Management Guide. </p> <p>Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun</p> <p>Constraints: Minimum 30-minute window.</p>",
1538
- "RestoreFromClusterSnapshotMessage$KmsKeyId": "<p>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.</p>",
1539
- "RestoreStatus$Status": "<p> The status of the restore action. Returns starting, restoring, completed, or failed. </p>",
1540
- "RevokeClusterSecurityGroupIngressMessage$ClusterSecurityGroupName": "<p> The name of the security Group from which to revoke the ingress rule. </p>",
1541
- "RevokeClusterSecurityGroupIngressMessage$CIDRIP": "<p> The IP range for which to revoke access. This range must be a valid Classless Inter-Domain Routing (CIDR) block of IP addresses. If <code>CIDRIP</code> is specified, <code>EC2SecurityGroupName</code> and <code>EC2SecurityGroupOwnerId</code> cannot be provided. </p>",
1542
- "RevokeClusterSecurityGroupIngressMessage$EC2SecurityGroupName": "<p> The name of the EC2 Security Group whose access is to be revoked. If <code>EC2SecurityGroupName</code> is specified, <code>EC2SecurityGroupOwnerId</code> must also be provided and <code>CIDRIP</code> cannot be provided. </p>",
1543
- "RevokeClusterSecurityGroupIngressMessage$EC2SecurityGroupOwnerId": "<p> The AWS account number of the owner of the security group specified in the <code>EC2SecurityGroupName</code> parameter. The AWS access key ID is not an acceptable value. If <code>EC2SecurityGroupOwnerId</code> is specified, <code>EC2SecurityGroupName</code> must also be provided. and <code>CIDRIP</code> cannot be provided. </p> <p>Example: <code>111122223333</code></p>",
1544
- "RevokeSnapshotAccessMessage$SnapshotIdentifier": "<p> The identifier of the snapshot that the account can no longer access. </p>",
1545
- "RevokeSnapshotAccessMessage$SnapshotClusterIdentifier": "<p> 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. </p>",
1546
- "RevokeSnapshotAccessMessage$AccountWithRestoreAccess": "<p> The identifier of the AWS customer account that can no longer restore the specified snapshot. </p>",
1547
- "RotateEncryptionKeyMessage$ClusterIdentifier": "<p> The unique identifier of the cluster that you want to rotate the encryption keys for. </p> <p> Constraints: Must be the name of valid cluster that has encryption enabled. </p>",
1548
- "Snapshot$SnapshotIdentifier": "<p> The snapshot identifier that is provided in the request. </p>",
1549
- "Snapshot$ClusterIdentifier": "<p> The identifier of the cluster for which the snapshot was taken. </p>",
1550
- "Snapshot$Status": "<p> The snapshot status. The value of the status depends on the API operation used. <ul> <li> <a>CreateClusterSnapshot</a> and <a>CopyClusterSnapshot</a> returns status as \"creating\". </li> <li> <a>DescribeClusterSnapshots</a> returns status as \"creating\", \"available\", \"final snapshot\", or \"failed\".</li> <li> <a>DeleteClusterSnapshot</a> returns status as \"deleted\".</li> </ul> </p>",
1551
- "Snapshot$AvailabilityZone": "<p> The Availability Zone in which the cluster was created. </p>",
1552
- "Snapshot$MasterUsername": "<p> The master user name for the cluster. </p>",
1553
- "Snapshot$ClusterVersion": "<p> The version ID of the Amazon Redshift engine that is running on the cluster. </p>",
1554
- "Snapshot$SnapshotType": "<p> The snapshot type. Snapshots created using <a>CreateClusterSnapshot</a> and <a>CopyClusterSnapshot</a> will be of type \"manual\". </p>",
1555
- "Snapshot$NodeType": "<p>The node type of the nodes in the cluster.</p>",
1556
- "Snapshot$DBName": "<p>The name of the database that was created when the cluster was created. </p>",
1557
- "Snapshot$VpcId": "<p>The VPC identifier of the cluster if the snapshot is from a cluster in a VPC. Otherwise, this field is not in the output.</p>",
1558
- "Snapshot$KmsKeyId": "<p>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.</p>",
1559
- "Snapshot$OwnerAccount": "<p> 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. </p>",
1560
- "Snapshot$SourceRegion": "<p> The source region from which the snapshot was copied. </p>",
1561
- "SnapshotMessage$Marker": "<p> 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 <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request. </p>",
1562
- "SourceIdsList$member": null,
1563
- "Subnet$SubnetIdentifier": "<p> The identifier of the subnet. </p>",
1564
- "Subnet$SubnetStatus": "<p> The status of the subnet. </p>",
1565
- "SubnetIdentifierList$member": null,
1566
- "Tag$Key": "<p>The key, or name, for the resource tag.</p>",
1567
- "Tag$Value": "<p>The value for the resource tag.</p>",
1568
- "TagKeyList$member": null,
1569
- "TagValueList$member": null,
1570
- "TaggedResource$ResourceName": "<p>The Amazon Resource Name (ARN) with which the tag is associated. For example, <code>arn:aws:redshift:us-east-1:123456789:cluster:t1</code>.</p>",
1571
- "TaggedResource$ResourceType": "<p> The type of resource with which the tag is associated. Valid resource types are: <ul> <li>Cluster</li> <li>CIDR/IP</li> <li>EC2 security group</li> <li>Snapshot</li> <li>Cluster security group</li> <li>Subnet group</li> <li>HSM connection</li> <li>HSM certificate</li> <li>Parameter group</li> </ul> </p> <p> For more information about Amazon Redshift resource types and constructing ARNs, go to <a href=\"http://docs.aws.amazon.com/redshift/latest/mgmt/constructing-redshift-arn.html\">Constructing an Amazon Redshift Amazon Resource Name (ARN)</a> in the Amazon Redshift Cluster Management Guide. </p>",
1572
- "TaggedResourceListMessage$Marker": "<p> 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 <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request. </p>",
1573
- "VpcSecurityGroupIdList$member": null,
1574
- "VpcSecurityGroupMembership$VpcSecurityGroupId": null,
1575
- "VpcSecurityGroupMembership$Status": null
1576
- }
1577
- },
1578
- "Subnet": {
1579
- "base": "<p> Describes a subnet. </p>",
1580
- "refs": {
1581
- "SubnetList$member": null
1582
- }
1583
- },
1584
- "SubnetAlreadyInUse": {
1585
- "base": "<p> A specified subnet is already in use by another cluster. </p>",
1586
- "refs": {
1587
- }
1588
- },
1589
- "SubnetIdentifierList": {
1590
- "base": null,
1591
- "refs": {
1592
- "CreateClusterSubnetGroupMessage$SubnetIds": "<p> An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single request. </p>",
1593
- "ModifyClusterSubnetGroupMessage$SubnetIds": "<p> An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single request. </p>"
1594
- }
1595
- },
1596
- "SubnetList": {
1597
- "base": null,
1598
- "refs": {
1599
- "ClusterSubnetGroup$Subnets": "<p> A list of the VPC <a>Subnet</a> elements. </p>"
1600
- }
1601
- },
1602
- "SubscriptionAlreadyExistFault": {
1603
- "base": "<p>There is already an existing event notification subscription with the specified name.</p>",
1604
- "refs": {
1605
- }
1606
- },
1607
- "SubscriptionCategoryNotFoundFault": {
1608
- "base": "<p>The value specified for the event category was not one of the allowed values, or it specified a category that does not apply to the specified source type. The allowed values are Configuration, Management, Monitoring, and Security.</p>",
1609
- "refs": {
1610
- }
1611
- },
1612
- "SubscriptionEventIdNotFoundFault": {
1613
- "base": "<p>An Amazon Redshift event with the specified event ID does not exist.</p>",
1614
- "refs": {
1615
- }
1616
- },
1617
- "SubscriptionNotFoundFault": {
1618
- "base": "<p>An Amazon Redshift event notification subscription with the specified name does not exist.</p>",
1619
- "refs": {
1620
- }
1621
- },
1622
- "SubscriptionSeverityNotFoundFault": {
1623
- "base": "<p>The value specified for the event severity was not one of the allowed values, or it specified a severity that does not apply to the specified source type. The allowed values are ERROR and INFO.</p>",
1624
- "refs": {
1625
- }
1626
- },
1627
- "TStamp": {
1628
- "base": null,
1629
- "refs": {
1630
- "Cluster$ClusterCreateTime": "<p> The date and time that the cluster was created. </p>",
1631
- "DescribeClusterSnapshotsMessage$StartTime": "<p> 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 <a href=\"http://en.wikipedia.org/wiki/ISO_8601\">ISO8601 Wikipedia page.</a> </p> <p>Example: <code>2012-07-16T18:00:00Z</code></p>",
1632
- "DescribeClusterSnapshotsMessage$EndTime": "<p> 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 <a href=\"http://en.wikipedia.org/wiki/ISO_8601\">ISO8601 Wikipedia page.</a> </p> <p>Example: <code>2012-07-16T18:00:00Z</code></p>",
1633
- "DescribeEventsMessage$StartTime": "<p> The beginning of the time interval to retrieve events for, specified in ISO 8601 format. For more information about ISO 8601, go to the <a href=\"http://en.wikipedia.org/wiki/ISO_8601\">ISO8601 Wikipedia page.</a> </p> <p>Example: <code>2009-07-08T18:00Z</code></p>",
1634
- "DescribeEventsMessage$EndTime": "<p> 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 <a href=\"http://en.wikipedia.org/wiki/ISO_8601\">ISO8601 Wikipedia page.</a> </p> <p>Example: <code>2009-07-08T18:00Z</code></p>",
1635
- "Event$Date": "<p> The date and time of the event. </p>",
1636
- "EventSubscription$SubscriptionCreationTime": "<p>The date and time the Amazon Redshift event notification subscription was created.</p>",
1637
- "LoggingStatus$LastSuccessfulDeliveryTime": "<p> The last time when logs were delivered. </p>",
1638
- "LoggingStatus$LastFailureTime": "<p> The last time when logs failed to be delivered. </p>",
1639
- "ReservedNode$StartTime": "<p> The time the reservation started. You purchase a reserved node offering for a duration. This is the start time of that duration. </p>",
1640
- "Snapshot$SnapshotCreateTime": "<p> The time (UTC) when Amazon Redshift began the snapshot. A snapshot contains a copy of the cluster data as of this exact time. </p>",
1641
- "Snapshot$ClusterCreateTime": "<p> The time (UTC) when the cluster was originally created. </p>"
1642
- }
1643
- },
1644
- "Tag": {
1645
- "base": "<p>A tag consisting of a name/value pair for a resource.</p>",
1646
- "refs": {
1647
- "TagList$member": null,
1648
- "TaggedResource$Tag": "<p>The tag for the resource. </p>"
1649
- }
1650
- },
1651
- "TagKeyList": {
1652
- "base": null,
1653
- "refs": {
1654
- "DeleteTagsMessage$TagKeys": "<p>The tag key that you want to delete.</p>",
1655
- "DescribeClusterParameterGroupsMessage$TagKeys": "<p>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 <code>owner</code> and <code>environment</code>. 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.</p>",
1656
- "DescribeClusterSecurityGroupsMessage$TagKeys": "<p>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 <code>owner</code> and <code>environment</code>. 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.</p>",
1657
- "DescribeClusterSnapshotsMessage$TagKeys": "<p>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 <code>owner</code> and <code>environment</code>. 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.</p>",
1658
- "DescribeClusterSubnetGroupsMessage$TagKeys": "<p>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 <code>owner</code> and <code>environment</code>. 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.</p>",
1659
- "DescribeClustersMessage$TagKeys": "<p>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 <code>owner</code> and <code>environment</code>. 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.</p>",
1660
- "DescribeHsmClientCertificatesMessage$TagKeys": "<p>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 <code>owner</code> and <code>environment</code>. 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.</p>",
1661
- "DescribeHsmConfigurationsMessage$TagKeys": "<p>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 <code>owner</code> and <code>environment</code>. 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.</p>",
1662
- "DescribeTagsMessage$TagKeys": "<p>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 <code>owner</code> and <code>environment</code>. 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.</p>"
1663
- }
1664
- },
1665
- "TagLimitExceededFault": {
1666
- "base": "<p> The request exceeds the limit of 10 tags for the resource. </p>",
1667
- "refs": {
1668
- }
1669
- },
1670
- "TagList": {
1671
- "base": null,
1672
- "refs": {
1673
- "Cluster$Tags": "<p>The list of tags for the cluster.</p>",
1674
- "ClusterParameterGroup$Tags": "<p>The list of tags for the cluster parameter group.</p>",
1675
- "ClusterSecurityGroup$Tags": "<p>The list of tags for the cluster security group.</p>",
1676
- "ClusterSubnetGroup$Tags": "<p>The list of tags for the cluster subnet group.</p>",
1677
- "CreateClusterMessage$Tags": "<p>A list of tag instances.</p>",
1678
- "CreateClusterParameterGroupMessage$Tags": "<p>A list of tag instances.</p>",
1679
- "CreateClusterSecurityGroupMessage$Tags": "<p>A list of tag instances.</p>",
1680
- "CreateClusterSnapshotMessage$Tags": "<p>A list of tag instances.</p>",
1681
- "CreateClusterSubnetGroupMessage$Tags": "<p>A list of tag instances.</p>",
1682
- "CreateEventSubscriptionMessage$Tags": "<p>A list of tag instances.</p>",
1683
- "CreateHsmClientCertificateMessage$Tags": "<p>A list of tag instances.</p>",
1684
- "CreateHsmConfigurationMessage$Tags": "<p>A list of tag instances.</p>",
1685
- "CreateTagsMessage$Tags": "<p> One or more name/value pairs to add as tags to the specified resource. Each tag name is passed in with the parameter <code>tag-key</code> and the corresponding value is passed in with the parameter <code>tag-value</code>. The <code>tag-key</code> and <code>tag-value</code> parameters are separated by a colon (:). Separate multiple tags with a space. For example, <code>--tags \"tag-key\"=\"owner\":\"tag-value\"=\"admin\" \"tag-key\"=\"environment\":\"tag-value\"=\"test\" \"tag-key\"=\"version\":\"tag-value\"=\"1.0\"</code>. </p>",
1686
- "EC2SecurityGroup$Tags": "<p>The list of tags for the EC2 security group.</p>",
1687
- "EventSubscription$Tags": "<p>The list of tags for the event subscription.</p>",
1688
- "HsmClientCertificate$Tags": "<p>The list of tags for the HSM client certificate.</p>",
1689
- "HsmConfiguration$Tags": "<p>The list of tags for the HSM configuration.</p>",
1690
- "IPRange$Tags": "<p>The list of tags for the IP range.</p>",
1691
- "Snapshot$Tags": "<p>The list of tags for the cluster snapshot.</p>"
1692
- }
1693
- },
1694
- "TagValueList": {
1695
- "base": null,
1696
- "refs": {
1697
- "DescribeClusterParameterGroupsMessage$TagValues": "<p>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 <code>admin</code> and <code>test</code>. 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.</p>",
1698
- "DescribeClusterSecurityGroupsMessage$TagValues": "<p>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 <code>admin</code> and <code>test</code>. 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.</p>",
1699
- "DescribeClusterSnapshotsMessage$TagValues": "<p>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 <code>admin</code> and <code>test</code>. 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.</p>",
1700
- "DescribeClusterSubnetGroupsMessage$TagValues": "<p>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 <code>admin</code> and <code>test</code>. 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.</p>",
1701
- "DescribeClustersMessage$TagValues": "<p>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 <code>admin</code> and <code>test</code>. 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.</p>",
1702
- "DescribeHsmClientCertificatesMessage$TagValues": "<p>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 <code>admin</code> and <code>test</code>. 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.</p>",
1703
- "DescribeHsmConfigurationsMessage$TagValues": "<p>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 <code>admin</code> and <code>test</code>. 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.</p>",
1704
- "DescribeTagsMessage$TagValues": "<p>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 <code>admin</code> and <code>test</code>. 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.</p>"
1705
- }
1706
- },
1707
- "TaggedResource": {
1708
- "base": "<p>A tag and its associated resource. </p>",
1709
- "refs": {
1710
- "TaggedResourceList$member": null
1711
- }
1712
- },
1713
- "TaggedResourceList": {
1714
- "base": null,
1715
- "refs": {
1716
- "TaggedResourceListMessage$TaggedResources": "<p> A list of tags with their associated resources. </p>"
1717
- }
1718
- },
1719
- "TaggedResourceListMessage": {
1720
- "base": "<p> Contains the output from the <code>DescribeTags</code> action. </p>",
1721
- "refs": {
1722
- }
1723
- },
1724
- "UnauthorizedOperation": {
1725
- "base": "<p> Your account is not authorized to perform the requested operation. </p>",
1726
- "refs": {
1727
- }
1728
- },
1729
- "UnknownSnapshotCopyRegionFault": {
1730
- "base": "<p> The specified region is incorrect or does not exist. </p>",
1731
- "refs": {
1732
- }
1733
- },
1734
- "UnsupportedOptionFault": {
1735
- "base": "<p> A request option was specified that is not supported. </p>",
1736
- "refs": {
1737
- }
1738
- },
1739
- "VpcSecurityGroupIdList": {
1740
- "base": null,
1741
- "refs": {
1742
- "CreateClusterMessage$VpcSecurityGroupIds": "<p>A list of Virtual Private Cloud (VPC) security groups to be associated with the cluster.</p> <p>Default: The default VPC security group is associated with the cluster.</p>",
1743
- "ModifyClusterMessage$VpcSecurityGroupIds": "<p> A list of virtual private cloud (VPC) security groups to be associated with the cluster. </p>",
1744
- "RestoreFromClusterSnapshotMessage$VpcSecurityGroupIds": "<p> A list of Virtual Private Cloud (VPC) security groups to be associated with the cluster. </p> <p> Default: The default VPC security group is associated with the cluster. </p> <p> VPC security groups only apply to clusters in VPCs. </p>"
1745
- }
1746
- },
1747
- "VpcSecurityGroupMembership": {
1748
- "base": "<p>Describes the members of a VPC security group.</p>",
1749
- "refs": {
1750
- "VpcSecurityGroupMembershipList$member": null
1751
- }
1752
- },
1753
- "VpcSecurityGroupMembershipList": {
1754
- "base": null,
1755
- "refs": {
1756
- "Cluster$VpcSecurityGroups": "<p> A list of Virtual Private Cloud (VPC) security groups that are associated with the cluster. This parameter is returned only if the cluster is in a VPC. </p>"
1757
- }
1758
- },
1759
- "AuthorizeClusterSecurityGroupIngressResult": {
1760
- "base": null,
1761
- "refs": {
1762
- }
1763
- },
1764
- "AuthorizeSnapshotAccessResult": {
1765
- "base": null,
1766
- "refs": {
1767
- }
1768
- },
1769
- "CopyClusterSnapshotResult": {
1770
- "base": null,
1771
- "refs": {
1772
- }
1773
- },
1774
- "CreateClusterResult": {
1775
- "base": null,
1776
- "refs": {
1777
- }
1778
- },
1779
- "CreateClusterParameterGroupResult": {
1780
- "base": null,
1781
- "refs": {
1782
- }
1783
- },
1784
- "CreateClusterSecurityGroupResult": {
1785
- "base": null,
1786
- "refs": {
1787
- }
1788
- },
1789
- "CreateClusterSnapshotResult": {
1790
- "base": null,
1791
- "refs": {
1792
- }
1793
- },
1794
- "CreateClusterSubnetGroupResult": {
1795
- "base": null,
1796
- "refs": {
1797
- }
1798
- },
1799
- "CreateEventSubscriptionResult": {
1800
- "base": null,
1801
- "refs": {
1802
- }
1803
- },
1804
- "CreateHsmClientCertificateResult": {
1805
- "base": null,
1806
- "refs": {
1807
- }
1808
- },
1809
- "CreateHsmConfigurationResult": {
1810
- "base": null,
1811
- "refs": {
1812
- }
1813
- },
1814
- "DeleteClusterResult": {
1815
- "base": null,
1816
- "refs": {
1817
- }
1818
- },
1819
- "DeleteClusterSnapshotResult": {
1820
- "base": null,
1821
- "refs": {
1822
- }
1823
- },
1824
- "DescribeDefaultClusterParametersResult": {
1825
- "base": null,
1826
- "refs": {
1827
- }
1828
- },
1829
- "DisableSnapshotCopyResult": {
1830
- "base": null,
1831
- "refs": {
1832
- }
1833
- },
1834
- "EnableSnapshotCopyResult": {
1835
- "base": null,
1836
- "refs": {
1837
- }
1838
- },
1839
- "ModifyClusterResult": {
1840
- "base": null,
1841
- "refs": {
1842
- }
1843
- },
1844
- "ModifyClusterSubnetGroupResult": {
1845
- "base": null,
1846
- "refs": {
1847
- }
1848
- },
1849
- "ModifyEventSubscriptionResult": {
1850
- "base": null,
1851
- "refs": {
1852
- }
1853
- },
1854
- "ModifySnapshotCopyRetentionPeriodResult": {
1855
- "base": null,
1856
- "refs": {
1857
- }
1858
- },
1859
- "PurchaseReservedNodeOfferingResult": {
1860
- "base": null,
1861
- "refs": {
1862
- }
1863
- },
1864
- "RebootClusterResult": {
1865
- "base": null,
1866
- "refs": {
1867
- }
1868
- },
1869
- "RestoreFromClusterSnapshotResult": {
1870
- "base": null,
1871
- "refs": {
1872
- }
1873
- },
1874
- "RevokeClusterSecurityGroupIngressResult": {
1875
- "base": null,
1876
- "refs": {
1877
- }
1878
- },
1879
- "RevokeSnapshotAccessResult": {
1880
- "base": null,
1881
- "refs": {
1882
- }
1883
- },
1884
- "RotateEncryptionKeyResult": {
1885
- "base": null,
1886
- "refs": {
1887
- }
1888
- }
1889
- }
1890
- }