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,2074 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "AddSourceIdentifierToSubscription": "<p>Adds a source identifier to an existing RDS event notification subscription.</p>",
5
- "AddTagsToResource": "<p> Adds metadata tags to an Amazon RDS resource. These tags can also be used with cost allocation reporting to track cost associated with Amazon RDS resources, or used in Condition statement in IAM policy for Amazon RDS.</p> <p>For an overview on tagging Amazon RDS resources, see <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.Tagging.html\">Tagging Amazon RDS Resources</a>.</p>",
6
- "ApplyPendingMaintenanceAction": "<p>Applies a pending maintenance action to a resource (for example, a DB instance).</p>",
7
- "AuthorizeDBSecurityGroupIngress": "<p> Enables ingress to a DBSecurityGroup using one of two forms of authorization. First, EC2 or VPC security groups can be added to the DBSecurityGroup if the application using the database is running on EC2 or VPC instances. Second, IP ranges are available if the application accessing your database is running on the Internet. Required parameters for this API are one of CIDR range, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId for non-VPC). </p> <note> You cannot authorize ingress from an EC2 security group in one Region to an Amazon RDS DB instance in another. You cannot authorize ingress from a VPC security group in one VPC to an Amazon RDS DB instance in another. </note> <p>For an overview of CIDR ranges, go to the <a href=\"http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing\">Wikipedia Tutorial</a>. </p>",
8
- "CopyDBParameterGroup": "<p> Copies the specified DB parameter group. </p>",
9
- "CopyDBSnapshot": "<p> Copies the specified DBSnapshot. The source DBSnapshot must be in the \"available\" state. </p>",
10
- "CopyOptionGroup": "<p>Copies the specified option group. </p>",
11
- "CreateDBInstance": "<p> Creates a new DB instance. </p>",
12
- "CreateDBInstanceReadReplica": "<p> Creates a DB instance that acts as a Read Replica of a source DB instance. </p> <p> All Read Replica DB instances are created as Single-AZ deployments with backups disabled. All other DB instance attributes (including DB security groups and DB parameter groups) are inherited from the source DB instance, except as specified below. </p> <important> <p> The source DB instance must have backup retention enabled. </p> </important>",
13
- "CreateDBParameterGroup": "<p> Creates a new DB parameter group. </p> <p> A DB parameter group is initially created with the default parameters for the database engine used by the DB instance. To provide custom values for any of the parameters, you must modify the group after creating it using <i>ModifyDBParameterGroup</i>. Once you've created a DB parameter group, you need to associate it with your DB instance using <i>ModifyDBInstance</i>. When you associate a new DB parameter group with a running DB instance, you need to reboot the DB instance without failover for the new DB parameter group and associated settings to take effect. </p> <important> <p>After you create a DB parameter group, you should wait at least 5 minutes before creating your first DB instance that uses that DB parameter group as the default parameter group. This allows Amazon RDS to fully complete the create action before the parameter group is used as the default for a new DB instance. This is especially important for parameters that are critical when creating the default database for a DB instance, such as the character set for the default database defined by the <code>character_set_database</code> parameter. You can use the <i>Parameter Groups</i> option of the <a href=\"https://console.aws.amazon.com/rds/\">Amazon RDS console</a> or the <i>DescribeDBParameters</i> command to verify that your DB parameter group has been created or modified.</p> </important>",
14
- "CreateDBSecurityGroup": "<p> Creates a new DB security group. DB security groups control access to a DB instance. </p>",
15
- "CreateDBSnapshot": "<p> Creates a DBSnapshot. The source DBInstance must be in \"available\" state. </p>",
16
- "CreateDBSubnetGroup": "<p> Creates a new DB subnet group. DB subnet groups must contain at least one subnet in at least two AZs in the region. </p>",
17
- "CreateEventSubscription": "<p>Creates an RDS event notification subscription. This action requires a topic ARN (Amazon Resource Name) created by either the RDS console, the SNS console, or the SNS API. To obtain an ARN with 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 type of source (SourceType) you want to be notified of, provide a list of RDS sources (SourceIds) that triggers the events, and provide a list of event categories (EventCategories) for events you want to be notified of. For example, you can specify SourceType = db-instance, SourceIds = mydbinstance1, mydbinstance2 and EventCategories = Availability, Backup.</p> <p>If you specify both the SourceType and SourceIds, such as SourceType = db-instance and SourceIdentifier = myDBInstance1, you will be notified of all the db-instance events for the specified source. If you specify a SourceType but do not specify a SourceIdentifier, you will receive notice of the events for that source type for all your RDS sources. If you do not specify either the SourceType nor the SourceIdentifier, you will be notified of events generated from all RDS sources belonging to your customer account.</p>",
18
- "CreateOptionGroup": "<p> Creates a new option group. You can create up to 20 option groups. </p>",
19
- "DeleteDBInstance": "<p> The DeleteDBInstance action deletes a previously provisioned DB instance. A successful response from the web service indicates the request was received correctly. When you delete a DB instance, all automated backups for that instance are deleted and cannot be recovered. Manual DB snapshots of the DB instance to be deleted are not deleted. </p> <p> If a final DB snapshot is requested the status of the RDS instance will be \"deleting\" until the DB snapshot is created. The API action <code>DescribeDBInstance</code> is used to monitor the status of this operation. The action cannot be canceled or reverted once submitted. </p>",
20
- "DeleteDBParameterGroup": "<p> Deletes a specified DBParameterGroup. The DBParameterGroup to be deleted cannot be associated with any DB instances. </p>",
21
- "DeleteDBSecurityGroup": "<p> Deletes a DB security group. </p> <note>The specified DB security group must not be associated with any DB instances.</note>",
22
- "DeleteDBSnapshot": "<p> Deletes a DBSnapshot. If the snapshot is being copied, the copy operation is terminated. </p> <note>The DBSnapshot must be in the <code>available</code> state to be deleted.</note>",
23
- "DeleteDBSubnetGroup": "<p> Deletes a DB subnet group. </p> <note>The specified database subnet group must not be associated with any DB instances.</note>",
24
- "DeleteEventSubscription": "<p>Deletes an RDS event notification subscription.</p>",
25
- "DeleteOptionGroup": "<p> Deletes an existing option group. </p>",
26
- "DescribeAccountAttributes": "<p>Lists all of the attributes for a customer account. The attributes include Amazon RDS quotas for the account, such as the number of DB instances allowed. The description for a quota includes the quota name, current usage toward that quota, and the quota's maximum value. </p> <p>This command does not take any parameters.</p>",
27
- "DescribeCertificates": "<p> Lists the set of CA certificates provided by Amazon RDS for this AWS account. </p>",
28
- "DescribeDBEngineVersions": "<p> Returns a list of the available DB engines. </p>",
29
- "DescribeDBInstances": "<p> Returns information about provisioned RDS instances. This API supports pagination. </p>",
30
- "DescribeDBLogFiles": "<p> Returns a list of DB log files for the DB instance. </p>",
31
- "DescribeDBParameterGroups": "<p> Returns a list of <code>DBParameterGroup</code> descriptions. If a <code>DBParameterGroupName</code> is specified, the list will contain only the description of the specified DB parameter group. </p>",
32
- "DescribeDBParameters": "<p> Returns the detailed parameter list for a particular DB parameter group. </p>",
33
- "DescribeDBSecurityGroups": "<p> Returns a list of <code>DBSecurityGroup</code> descriptions. If a <code>DBSecurityGroupName</code> is specified, the list will contain only the descriptions of the specified DB security group. </p>",
34
- "DescribeDBSnapshots": "<p> Returns information about DB snapshots. This API supports pagination. </p>",
35
- "DescribeDBSubnetGroups": "<p> Returns a list of DBSubnetGroup descriptions. If a DBSubnetGroupName is specified, the list will contain only the descriptions of the specified DBSubnetGroup. </p> <p>For an overview of CIDR ranges, go to the <a href=\"http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing\">Wikipedia Tutorial</a>. </p>",
36
- "DescribeEngineDefaultParameters": "<p> Returns the default engine and system parameter information for the specified database engine. </p>",
37
- "DescribeEventCategories": "<p>Displays a list of categories for all event source types, or, if specified, for a specified source type. You can see a list of the event categories and source types in the <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html\"> Events</a> topic in the Amazon RDS User Guide.</p>",
38
- "DescribeEventSubscriptions": "<p>Lists all the subscription descriptions for a customer account. The description for a subscription includes SubscriptionName, SNSTopicARN, CustomerID, SourceType, SourceID, CreationTime, and Status. </p> <p>If you specify a SubscriptionName, lists the description for that subscription.</p>",
39
- "DescribeEvents": "<p> Returns events related to DB instances, DB security groups, DB snapshots, and DB parameter groups for the past 14 days. Events specific to a particular DB instance, DB security group, database snapshot, or DB parameter group can be obtained by providing the name as a parameter. By default, the past hour of events are returned. </p>",
40
- "DescribeOptionGroupOptions": "<p> Describes all available options. </p>",
41
- "DescribeOptionGroups": "<p> Describes the available option groups. </p>",
42
- "DescribeOrderableDBInstanceOptions": "<p> Returns a list of orderable DB instance options for the specified engine. </p>",
43
- "DescribePendingMaintenanceActions": "<p>Returns a list of resources (for example, DB instances) that have at least one pending maintenance action.</p>",
44
- "DescribeReservedDBInstances": "<p> Returns information about reserved DB instances for this account, or about a specified reserved DB instance. </p>",
45
- "DescribeReservedDBInstancesOfferings": "<p> Lists available reserved DB instance offerings. </p>",
46
- "DownloadDBLogFilePortion": "<p> Downloads all or a portion of the specified log file. </p>",
47
- "ListTagsForResource": "<p> Lists all tags on an Amazon RDS resource.</p> <p>For an overview on tagging an Amazon RDS resource, see <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.Tagging.html\">Tagging Amazon RDS Resources</a>.</p>",
48
- "ModifyDBInstance": "<p> Modify settings for a DB instance. You can change one or more database configuration parameters by specifying these parameters and the new values in the request. </p>",
49
- "ModifyDBParameterGroup": "<p> Modifies the parameters of a DB parameter group. To modify more than one parameter, submit a list of the following: <code>ParameterName</code>, <code>ParameterValue</code>, and <code>ApplyMethod</code>. A maximum of 20 parameters can be modified in a single request. </p> <note> <p> Changes to dynamic parameters are applied immediately. Changes to static parameters require a reboot without failover to the DB instance associated with the parameter group before the change can take effect. </p> </note> <important> <p>After you modify a DB parameter group, you should wait at least 5 minutes before creating your first DB instance that uses that DB parameter group as the default parameter group. This allows Amazon RDS to fully complete the modify action before the parameter group is used as the default for a new DB instance. This is especially important for parameters that are critical when creating the default database for a DB instance, such as the character set for the default database defined by the <code>character_set_database</code> parameter. You can use the <i>Parameter Groups</i> option of the <a href=\"https://console.aws.amazon.com/rds/\">Amazon RDS console</a> or the <i>DescribeDBParameters</i> command to verify that your DB parameter group has been created or modified.</p> </important>",
50
- "ModifyDBSubnetGroup": "<p> Modifies an existing DB subnet group. DB subnet groups must contain at least one subnet in at least two AZs in the region. </p>",
51
- "ModifyEventSubscription": "<p>Modifies an existing RDS event notification subscription. Note that you cannot modify the source identifiers using this call; to change source identifiers for a subscription, use the <a>AddSourceIdentifierToSubscription</a> and <a>RemoveSourceIdentifierFromSubscription</a> calls.</p> <p>You can see a list of the event categories for a given SourceType in the <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html\">Events</a> topic in the Amazon RDS User Guide or by using the <b>DescribeEventCategories</b> action.</p>",
52
- "ModifyOptionGroup": "<p> Modifies an existing option group. </p>",
53
- "PromoteReadReplica": "<p> Promotes a Read Replica DB instance to a standalone DB instance. </p> <note> <p>We recommend that you enable automated backups on your Read Replica before promoting the Read Replica. This ensures that no backup is taken during the promotion process. Once the instance is promoted to a primary instance, backups are taken based on your backup settings.</p> </note>",
54
- "PurchaseReservedDBInstancesOffering": "<p> Purchases a reserved DB instance offering. </p>",
55
- "RebootDBInstance": "<p> Rebooting a DB instance restarts the database engine service. A reboot also applies to the DB instance any modifications to the associated DB parameter group that were pending. Rebooting a DB instance results in a momentary outage of the instance, during which the DB instance status is set to rebooting. If the RDS instance is configured for MultiAZ, it is possible that the reboot will be conducted through a failover. An Amazon RDS event is created when the reboot is completed. </p> <p> If your DB instance is deployed in multiple Availability Zones, you can force a failover from one AZ to the other during the reboot. You might force a failover to test the availability of your DB instance deployment or to restore operations to the original AZ after a failover occurs. </p> <p> The time required to reboot is a function of the specific database engine's crash recovery process. To improve the reboot time, we recommend that you reduce database activities as much as possible during the reboot process to reduce rollback activity for in-transit transactions. </p>",
56
- "RemoveSourceIdentifierFromSubscription": "<p>Removes a source identifier from an existing RDS event notification subscription.</p>",
57
- "RemoveTagsFromResource": "<p> Removes metadata tags from an Amazon RDS resource.</p> <p>For an overview on tagging an Amazon RDS resource, see <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.Tagging.html\">Tagging Amazon RDS Resources</a>.</p>",
58
- "ResetDBParameterGroup": "<p> Modifies the parameters of a DB parameter group to the engine/system default value. To reset specific parameters submit a list of the following: <code>ParameterName</code> and <code>ApplyMethod</code>. To reset the entire DB parameter group, specify the <code>DBParameterGroup</code> name and <code>ResetAllParameters</code> parameters. When resetting the entire group, dynamic parameters are updated immediately and static parameters are set to <code>pending-reboot</code> to take effect on the next DB instance restart or <code>RebootDBInstance</code> request. </p>",
59
- "RestoreDBInstanceFromDBSnapshot": "<p>Creates a new DB instance from a DB snapshot. The target database is created from the source database restore point with the same configuration as the original source database, except that the new RDS instance is created with the default security group. </p> <p>If your intent is to replace your original DB instance with the new, restored DB instance, then rename your original DB instance before you call the RestoreDBInstanceFromDBSnapshot action. RDS does not allow two DB instances with the same name. Once you have renamed your original DB instance with a different identifier, then you can pass the original name of the DB instance as the DBInstanceIdentifier in the call to the RestoreDBInstanceFromDBSnapshot action. The result is that you will replace the original DB instance with the DB instance created from the snapshot.</p>",
60
- "RestoreDBInstanceToPointInTime": "<p> Restores a DB instance to an arbitrary point-in-time. Users can restore to any point in time before the LatestRestorableTime for up to BackupRetentionPeriod days. The target database is created from the source database with the same configuration as the original database except that the DB instance is created with the default DB security group. </p>",
61
- "RevokeDBSecurityGroupIngress": "<p> Revokes ingress from a DBSecurityGroup for previously authorized IP ranges or EC2 or VPC Security Groups. Required parameters for this API are one of CIDRIP, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId). </p>"
62
- },
63
- "service": "<fullname>Amazon Relational Database Service</fullname> <p> Amazon Relational Database Service (Amazon RDS) is a web service that makes it easier to set up, operate, and scale a relational database in the cloud. It provides cost-efficient, resizable capacity for an industry-standard relational database and manages common database administration tasks, freeing up developers to focus on what makes their applications and businesses unique. </p> <p> Amazon RDS gives you access to the capabilities of a MySQL, PostgreSQL, Microsoft SQL Server, Oracle, or Aurora database server. This means the code, applications, and tools you already use today with your existing databases work with Amazon RDS without modification. Amazon RDS automatically backs up your database and maintains the database software that powers your DB instance. Amazon RDS is flexible: you can scale your database instance's compute resources and storage capacity to meet your application's demand. As with all Amazon Web Services, there are no up-front investments, and you pay only for the resources you use. </p> <p> This is an interface reference for Amazon RDS. It contains documentation for a programming or command line interface you can use to manage Amazon RDS. Note that Amazon RDS is asynchronous, which means that some interfaces may require techniques such as polling or callback functions to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a command is applied immediately, on the next instance reboot, or during the maintenance window. For a summary of the Amazon RDS interfaces, go to <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Welcome.html#Welcome.Interfaces\">Available RDS Interfaces</a>. </p>",
64
- "shapes": {
65
- "AccountAttributesMessage": {
66
- "base": "<p>Data returned by the <b>DescribeAccountAttributes</b> action.</p>",
67
- "refs": {
68
- }
69
- },
70
- "AccountQuota": {
71
- "base": "<p>Describes a quota for an AWS account, for example, the number of DB instances allowed.</p>",
72
- "refs": {
73
- "AccountQuotaList$member": null
74
- }
75
- },
76
- "AccountQuotaList": {
77
- "base": null,
78
- "refs": {
79
- "AccountAttributesMessage$AccountQuotas": "<p>A list of <a>AccountQuota</a> objects. Within this list, each quota has a name, a count of usage toward the quota maximum, and a maximum value for the quota.</p>"
80
- }
81
- },
82
- "AddSourceIdentifierToSubscriptionMessage": {
83
- "base": "<p></p>",
84
- "refs": {
85
- }
86
- },
87
- "AddTagsToResourceMessage": {
88
- "base": "<p></p>",
89
- "refs": {
90
- }
91
- },
92
- "ApplyMethod": {
93
- "base": null,
94
- "refs": {
95
- "Parameter$ApplyMethod": "<p> Indicates when to apply parameter updates. </p>"
96
- }
97
- },
98
- "ApplyPendingMaintenanceActionMessage": {
99
- "base": "<p></p>",
100
- "refs": {
101
- }
102
- },
103
- "AuthorizationAlreadyExistsFault": {
104
- "base": "<p> The specified CIDRIP or EC2 security group is already authorized for the specified DB security group. </p>",
105
- "refs": {
106
- }
107
- },
108
- "AuthorizationNotFoundFault": {
109
- "base": "<p> Specified CIDRIP or EC2 security group is not authorized for the specified DB security group. </p> <p>RDS may not also be authorized via IAM to perform necessary actions on your behalf.</p>",
110
- "refs": {
111
- }
112
- },
113
- "AuthorizationQuotaExceededFault": {
114
- "base": "<p> DB security group authorization quota has been reached. </p>",
115
- "refs": {
116
- }
117
- },
118
- "AuthorizeDBSecurityGroupIngressMessage": {
119
- "base": "<p></p>",
120
- "refs": {
121
- }
122
- },
123
- "AvailabilityZone": {
124
- "base": "<p> Contains Availability Zone information. </p> <p> This data type is used as an element in the following data type: <ul><li><a>OrderableDBInstanceOption</a></li></ul></p>",
125
- "refs": {
126
- "AvailabilityZoneList$member": null,
127
- "Subnet$SubnetAvailabilityZone": null
128
- }
129
- },
130
- "AvailabilityZoneList": {
131
- "base": null,
132
- "refs": {
133
- "OrderableDBInstanceOption$AvailabilityZones": "<p> A list of availability zones for the orderable DB instance. </p>"
134
- }
135
- },
136
- "Boolean": {
137
- "base": null,
138
- "refs": {
139
- "DBInstance$MultiAZ": "<p> Specifies if the DB instance is a Multi-AZ deployment. </p>",
140
- "DBInstance$AutoMinorVersionUpgrade": "<p> Indicates that minor version patches are applied automatically. </p>",
141
- "DBInstance$PubliclyAccessible": "<p> Specifies the accessibility options for the DB instance. A value of true specifies an Internet-facing instance with a publicly resolvable DNS name, which resolves to a public IP address. A value of false specifies an internal instance with a DNS name that resolves to a private IP address. </p> <p> Default: The default behavior varies depending on whether a VPC has been requested or not. The following list shows the default behavior in each case. </p> <ul> <li> <b>Default VPC:</b>true</li> <li> <b>VPC:</b>false</li> </ul> <p> If no DB subnet group has been specified as part of the request and the PubliclyAccessible value has not been set, the DB instance will be publicly accessible. If a specific DB subnet group has been specified as part of the request and the PubliclyAccessible value has not been set, the DB instance will be private. </p>",
142
- "DBInstance$StorageEncrypted": "<p> Specifies whether the DB instance is encrypted. </p>",
143
- "DBInstanceStatusInfo$Normal": "<p> Boolean value that is true if the instance is operating normally, or false if the instance is in an error state. </p>",
144
- "DBSnapshot$Encrypted": "<p> Specifies whether the DB snapshot is encrypted. </p>",
145
- "DeleteDBInstanceMessage$SkipFinalSnapshot": "<p> Determines whether a final DB snapshot is created before the DB instance is deleted. If <code>true</code> is specified, no DBSnapshot is created. If <code>false</code> is specified, a DB snapshot is created before the DB instance is deleted. </p> <p>Specify <code>true</code> when deleting a Read Replica.</p> <note>The FinalDBSnapshotIdentifier parameter must be specified if SkipFinalSnapshot is <code>false</code>.</note> <p>Default: <code>false</code></p>",
146
- "DescribeDBEngineVersionsMessage$DefaultOnly": "<p> Indicates that only the default version of the specified engine or engine and major version combination is returned. </p>",
147
- "DownloadDBLogFilePortionDetails$AdditionalDataPending": "<p> Boolean value that if true, indicates there is more data to be downloaded. </p>",
148
- "EventSubscription$Enabled": "<p>A Boolean value indicating if the subscription is enabled. True indicates the subscription is enabled.</p>",
149
- "ModifyDBInstanceMessage$ApplyImmediately": "<p>Specifies whether the modifications in this request and any pending modifications are asynchronously applied as soon as possible, regardless of the <code>PreferredMaintenanceWindow</code> setting for the DB instance. </p> <p> If this parameter is set to <code>false</code>, changes to the DB instance are applied during the next maintenance window. Some parameter changes can cause an outage and will be applied on the next call to <a>RebootDBInstance</a>, or the next failure reboot. Review the table of parameters in <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.html#Overview.DBInstance.Modifying\">Modifying a DB Instance and Using the Apply Immediately Parameter</a> to see the impact that setting <code>ApplyImmediately</code> to <code>true</code> or <code>false</code> has for each modified parameter and to determine when the changes will be applied. </p> <p>Default: <code>false</code></p>",
150
- "ModifyDBInstanceMessage$AllowMajorVersionUpgrade": "<p> Indicates that major version upgrades are allowed. Changing this parameter does not result in an outage and the change is asynchronously applied as soon as possible. </p> <p>Constraints: This parameter must be set to true when specifying a value for the EngineVersion parameter that is a different major version than the DB instance's current version.</p>",
151
- "ModifyOptionGroupMessage$ApplyImmediately": "<p> Indicates whether the changes should be applied immediately, or during the next maintenance window for each instance associated with the option group. </p>",
152
- "Option$Persistent": "<p> Indicate if this option is persistent. </p>",
153
- "Option$Permanent": "<p>Indicate if this option is permanent.</p>",
154
- "OptionGroup$AllowsVpcAndNonVpcInstanceMemberships": "<p>Indicates whether this option group can be applied to both VPC and non-VPC instances. The value <code>true</code> indicates the option group can be applied to both VPC and non-VPC instances. </p>",
155
- "OptionGroupOption$PortRequired": "<p> Specifies whether the option requires a port. </p>",
156
- "OptionGroupOption$Persistent": "<p> A persistent option cannot be removed from the option group once the option group is used, but this option can be removed from the db instance while modifying the related data and assigning another option group without this option. </p>",
157
- "OptionGroupOption$Permanent": "<p> A permanent option cannot be removed from the option group once the option group is used, and it cannot be removed from the db instance after assigning an option group with this permanent option. </p>",
158
- "OptionGroupOptionSetting$IsModifiable": "<p> Boolean value where true indicates that this option group option can be changed from the default value. </p>",
159
- "OptionSetting$IsModifiable": "<p> A Boolean value that, when true, indicates the option setting can be modified from the default. </p>",
160
- "OptionSetting$IsCollection": "<p> Indicates if the option setting is part of a collection. </p>",
161
- "OrderableDBInstanceOption$MultiAZCapable": "<p> Indicates whether this orderable DB instance is multi-AZ capable. </p>",
162
- "OrderableDBInstanceOption$ReadReplicaCapable": "<p> Indicates whether this orderable DB instance can have a Read Replica. </p>",
163
- "OrderableDBInstanceOption$Vpc": "<p> Indicates whether this is a VPC orderable DB instance. </p>",
164
- "OrderableDBInstanceOption$SupportsStorageEncryption": "<p> Indicates whether this orderable DB instance supports encrypted storage. </p>",
165
- "OrderableDBInstanceOption$SupportsIops": "<p> Indicates whether this orderable DB instance supports provisioned IOPS. </p>",
166
- "Parameter$IsModifiable": "<p> Indicates whether (<code>true</code>) or not (<code>false</code>) the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed. </p>",
167
- "ReservedDBInstance$MultiAZ": "<p> Indicates if the reservation applies to Multi-AZ deployments. </p>",
168
- "ReservedDBInstancesOffering$MultiAZ": "<p> Indicates if the offering applies to Multi-AZ deployments. </p>",
169
- "ResetDBParameterGroupMessage$ResetAllParameters": "<p> Specifies whether (<code>true</code>) or not (<code>false</code>) to reset all parameters in the DB parameter group to default values. </p> <p>Default: <code>true</code></p>",
170
- "RestoreDBInstanceToPointInTimeMessage$UseLatestRestorableTime": "<p> Specifies whether (<code>true</code>) or not (<code>false</code>) the DB instance is restored from the latest backup time. </p> <p>Default: <code>false</code></p> <p>Constraints: Cannot be specified if RestoreTime parameter is provided.</p>"
171
- }
172
- },
173
- "BooleanOptional": {
174
- "base": null,
175
- "refs": {
176
- "CreateDBInstanceMessage$MultiAZ": "<p> Specifies if the DB instance is a Multi-AZ deployment. You cannot set the AvailabilityZone parameter if the MultiAZ parameter is set to true. </p>",
177
- "CreateDBInstanceMessage$AutoMinorVersionUpgrade": "<p> Indicates that minor engine upgrades will be applied automatically to the DB instance during the maintenance window. </p> <p>Default: <code>true</code></p>",
178
- "CreateDBInstanceMessage$PubliclyAccessible": "<p> Specifies the accessibility options for the DB instance. A value of true specifies an Internet-facing instance with a publicly resolvable DNS name, which resolves to a public IP address. A value of false specifies an internal instance with a DNS name that resolves to a private IP address. </p> <p> Default: The default behavior varies depending on whether a VPC has been requested or not. The following list shows the default behavior in each case. </p> <ul> <li> <b>Default VPC:</b> true</li> <li> <b>VPC:</b> false</li> </ul> <p> If no DB subnet group has been specified as part of the request and the PubliclyAccessible value has not been set, the DB instance will be publicly accessible. If a specific DB subnet group has been specified as part of the request and the PubliclyAccessible value has not been set, the DB instance will be private. </p>",
179
- "CreateDBInstanceMessage$StorageEncrypted": "<p> Specifies whether the DB instance is encrypted. </p> <p> Default: false </p>",
180
- "CreateDBInstanceReadReplicaMessage$AutoMinorVersionUpgrade": "<p> Indicates that minor engine upgrades will be applied automatically to the Read Replica during the maintenance window. </p> <p>Default: Inherits from the source DB instance</p>",
181
- "CreateDBInstanceReadReplicaMessage$PubliclyAccessible": "<p> Specifies the accessibility options for the DB instance. A value of true specifies an Internet-facing instance with a publicly resolvable DNS name, which resolves to a public IP address. A value of false specifies an internal instance with a DNS name that resolves to a private IP address. </p> <p> Default: The default behavior varies depending on whether a VPC has been requested or not. The following list shows the default behavior in each case. </p> <ul> <li> <b>Default VPC:</b>true</li> <li> <b>VPC:</b>false</li> </ul> <p> If no DB subnet group has been specified as part of the request and the PubliclyAccessible value has not been set, the DB instance will be publicly accessible. If a specific DB subnet group has been specified as part of the request and the PubliclyAccessible value has not been set, the DB instance will be private. </p>",
182
- "CreateEventSubscriptionMessage$Enabled": "<p> A Boolean value; set to <b>true</b> to activate the subscription, set to <b>false</b> to create the subscription but not active it. </p>",
183
- "DescribeDBEngineVersionsMessage$ListSupportedCharacterSets": "<p> If this parameter is specified, and if the requested engine supports the CharacterSetName parameter for CreateDBInstance, the response includes a list of supported character sets for each engine version. </p>",
184
- "DescribeOrderableDBInstanceOptionsMessage$Vpc": "<p> The VPC filter value. Specify this parameter to show only the available VPC or non-VPC offerings. </p>",
185
- "DescribeReservedDBInstancesMessage$MultiAZ": "<p> The Multi-AZ filter value. Specify this parameter to show only those reservations matching the specified Multi-AZ parameter. </p>",
186
- "DescribeReservedDBInstancesOfferingsMessage$MultiAZ": "<p> The Multi-AZ filter value. Specify this parameter to show only the available offerings matching the specified Multi-AZ parameter. </p>",
187
- "ModifyDBInstanceMessage$MultiAZ": "<p> Specifies if the DB instance is a Multi-AZ deployment. Changing this parameter does not result in an outage and the change is applied during the next maintenance window unless the <code>ApplyImmediately</code> parameter is set to <code>true</code> for this request. </p> <p>Constraints: Cannot be specified if the DB instance is a Read Replica.</p>",
188
- "ModifyDBInstanceMessage$AutoMinorVersionUpgrade": "<p> Indicates that minor version upgrades will be applied automatically to the DB instance during the maintenance window. Changing this parameter does not result in an outage except in the following case and the change is asynchronously applied as soon as possible. An outage will result if this parameter is set to <code>true</code> during the maintenance window, and a newer minor version is available, and RDS has enabled auto patching for that engine version. </p>",
189
- "ModifyEventSubscriptionMessage$Enabled": "<p> A Boolean value; set to <b>true</b> to activate the subscription. </p>",
190
- "PendingModifiedValues$MultiAZ": "<p> Indicates that the Single-AZ DB instance is to change to a Multi-AZ deployment. </p>",
191
- "RebootDBInstanceMessage$ForceFailover": "<p> When <code>true</code>, the reboot will be conducted through a MultiAZ failover. </p> <p>Constraint: You cannot specify <code>true</code> if the instance is not configured for MultiAZ.</p>",
192
- "RestoreDBInstanceFromDBSnapshotMessage$MultiAZ": "<p> Specifies if the DB instance is a Multi-AZ deployment. </p> <p>Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to <code>true</code>.</p>",
193
- "RestoreDBInstanceFromDBSnapshotMessage$PubliclyAccessible": "<p> Specifies the accessibility options for the DB instance. A value of true specifies an Internet-facing instance with a publicly resolvable DNS name, which resolves to a public IP address. A value of false specifies an internal instance with a DNS name that resolves to a private IP address. </p> <p> Default: The default behavior varies depending on whether a VPC has been requested or not. The following list shows the default behavior in each case. </p> <ul> <li> <b>Default VPC:</b> true</li> <li> <b>VPC:</b> false</li> </ul> <p> If no DB subnet group has been specified as part of the request and the PubliclyAccessible value has not been set, the DB instance will be publicly accessible. If a specific DB subnet group has been specified as part of the request and the PubliclyAccessible value has not been set, the DB instance will be private. </p>",
194
- "RestoreDBInstanceFromDBSnapshotMessage$AutoMinorVersionUpgrade": "<p> Indicates that minor version upgrades will be applied automatically to the DB instance during the maintenance window. </p>",
195
- "RestoreDBInstanceToPointInTimeMessage$MultiAZ": "<p> Specifies if the DB instance is a Multi-AZ deployment. </p> <p>Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to <code>true</code>.</p>",
196
- "RestoreDBInstanceToPointInTimeMessage$PubliclyAccessible": "<p> Specifies the accessibility options for the DB instance. A value of true specifies an Internet-facing instance with a publicly resolvable DNS name, which resolves to a public IP address. A value of false specifies an internal instance with a DNS name that resolves to a private IP address. </p> <p> Default: The default behavior varies depending on whether a VPC has been requested or not. The following list shows the default behavior in each case. </p> <ul> <li> <b>Default VPC:</b>true</li> <li> <b>VPC:</b>false</li> </ul> <p> If no DB subnet group has been specified as part of the request and the PubliclyAccessible value has not been set, the DB instance will be publicly accessible. If a specific DB subnet group has been specified as part of the request and the PubliclyAccessible value has not been set, the DB instance will be private. </p>",
197
- "RestoreDBInstanceToPointInTimeMessage$AutoMinorVersionUpgrade": "<p> Indicates that minor version upgrades will be applied automatically to the DB instance during the maintenance window. </p>"
198
- }
199
- },
200
- "Certificate": {
201
- "base": "<p>A CA certificate for an AWS account. </p>",
202
- "refs": {
203
- "CertificateList$member": null
204
- }
205
- },
206
- "CertificateList": {
207
- "base": null,
208
- "refs": {
209
- "CertificateMessage$Certificates": "<p>The list of <a>Certificate</a> objects for the AWS account.</p>"
210
- }
211
- },
212
- "CertificateMessage": {
213
- "base": "<p>Data returned by the <b>DescribeCertificates</b> action.</p>",
214
- "refs": {
215
- }
216
- },
217
- "CertificateNotFoundFault": {
218
- "base": "<p><i>CertificateIdentifier</i> does not refer to an existing certificate. </p>",
219
- "refs": {
220
- }
221
- },
222
- "CharacterSet": {
223
- "base": "<p> This data type is used as a response element in the action <a>DescribeDBEngineVersions</a>. </p>",
224
- "refs": {
225
- "DBEngineVersion$DefaultCharacterSet": "<p> The default character set for new instances of this engine version, if the <code>CharacterSetName</code> parameter of the CreateDBInstance API is not specified. </p>",
226
- "SupportedCharacterSetsList$member": null
227
- }
228
- },
229
- "CopyDBParameterGroupMessage": {
230
- "base": "<p></p>",
231
- "refs": {
232
- }
233
- },
234
- "CopyDBSnapshotMessage": {
235
- "base": "<p></p>",
236
- "refs": {
237
- }
238
- },
239
- "CopyOptionGroupMessage": {
240
- "base": "<p></p>",
241
- "refs": {
242
- }
243
- },
244
- "CreateDBInstanceMessage": {
245
- "base": "<p></p>",
246
- "refs": {
247
- }
248
- },
249
- "CreateDBInstanceReadReplicaMessage": {
250
- "base": null,
251
- "refs": {
252
- }
253
- },
254
- "CreateDBParameterGroupMessage": {
255
- "base": "<p></p>",
256
- "refs": {
257
- }
258
- },
259
- "CreateDBSecurityGroupMessage": {
260
- "base": "<p></p>",
261
- "refs": {
262
- }
263
- },
264
- "CreateDBSnapshotMessage": {
265
- "base": "<p></p>",
266
- "refs": {
267
- }
268
- },
269
- "CreateDBSubnetGroupMessage": {
270
- "base": "<p></p>",
271
- "refs": {
272
- }
273
- },
274
- "CreateEventSubscriptionMessage": {
275
- "base": "<p></p>",
276
- "refs": {
277
- }
278
- },
279
- "CreateOptionGroupMessage": {
280
- "base": "<p></p>",
281
- "refs": {
282
- }
283
- },
284
- "DBEngineVersion": {
285
- "base": "<p> This data type is used as a response element in the action <a>DescribeDBEngineVersions</a>. </p>",
286
- "refs": {
287
- "DBEngineVersionList$member": null
288
- }
289
- },
290
- "DBEngineVersionList": {
291
- "base": null,
292
- "refs": {
293
- "DBEngineVersionMessage$DBEngineVersions": "<p> A list of <code>DBEngineVersion</code> elements. </p>"
294
- }
295
- },
296
- "DBEngineVersionMessage": {
297
- "base": "<p> Contains the result of a successful invocation of the <a>DescribeDBEngineVersions</a> action. </p>",
298
- "refs": {
299
- }
300
- },
301
- "DBInstance": {
302
- "base": "<p> Contains the result of a successful invocation of the following actions: </p> <ul> <li> <a>CreateDBInstance</a> </li> <li> <a>DeleteDBInstance</a> </li> <li> <a>ModifyDBInstance</a> </li> </ul> <p>This data type is used as a response element in the <a>DescribeDBInstances</a> action.</p>",
303
- "refs": {
304
- "DBInstanceList$member": null,
305
- "CreateDBInstanceResult$DBInstance": null,
306
- "CreateDBInstanceReadReplicaResult$DBInstance": null,
307
- "DeleteDBInstanceResult$DBInstance": null,
308
- "ModifyDBInstanceResult$DBInstance": null,
309
- "PromoteReadReplicaResult$DBInstance": null,
310
- "RebootDBInstanceResult$DBInstance": null,
311
- "RestoreDBInstanceFromDBSnapshotResult$DBInstance": null,
312
- "RestoreDBInstanceToPointInTimeResult$DBInstance": null
313
- }
314
- },
315
- "DBInstanceAlreadyExistsFault": {
316
- "base": "<p> User already has a DB instance with the given identifier. </p>",
317
- "refs": {
318
- }
319
- },
320
- "DBInstanceList": {
321
- "base": null,
322
- "refs": {
323
- "DBInstanceMessage$DBInstances": "<p> A list of <a>DBInstance</a> instances. </p>"
324
- }
325
- },
326
- "DBInstanceMessage": {
327
- "base": "<p> Contains the result of a successful invocation of the <a>DescribeDBInstances</a> action. </p>",
328
- "refs": {
329
- }
330
- },
331
- "DBInstanceNotFoundFault": {
332
- "base": "<p> <i>DBInstanceIdentifier</i> does not refer to an existing DB instance. </p>",
333
- "refs": {
334
- }
335
- },
336
- "DBInstanceStatusInfo": {
337
- "base": "<p>Provides a list of status information for a DB instance.</p>",
338
- "refs": {
339
- "DBInstanceStatusInfoList$member": null
340
- }
341
- },
342
- "DBInstanceStatusInfoList": {
343
- "base": null,
344
- "refs": {
345
- "DBInstance$StatusInfos": "<p> The status of a Read Replica. If the instance is not a Read Replica, this will be blank. </p>"
346
- }
347
- },
348
- "DBParameterGroup": {
349
- "base": "<p>Contains the result of a successful invocation of the <a>CreateDBParameterGroup</a> action. </p> <p>This data type is used as a request parameter in the <a>DeleteDBParameterGroup</a> action, and as a response element in the <a>DescribeDBParameterGroups</a> action. </p>",
350
- "refs": {
351
- "DBParameterGroupList$member": null,
352
- "CopyDBParameterGroupResult$DBParameterGroup": null,
353
- "CreateDBParameterGroupResult$DBParameterGroup": null
354
- }
355
- },
356
- "DBParameterGroupAlreadyExistsFault": {
357
- "base": "<p> A DB parameter group with the same name exists. </p>",
358
- "refs": {
359
- }
360
- },
361
- "DBParameterGroupDetails": {
362
- "base": "<p> Contains the result of a successful invocation of the <a>DescribeDBParameters</a> action. </p>",
363
- "refs": {
364
- }
365
- },
366
- "DBParameterGroupList": {
367
- "base": null,
368
- "refs": {
369
- "DBParameterGroupsMessage$DBParameterGroups": "<p> A list of <a>DBParameterGroup</a> instances. </p>"
370
- }
371
- },
372
- "DBParameterGroupNameMessage": {
373
- "base": "<p> Contains the result of a successful invocation of the <a>ModifyDBParameterGroup</a> or <a>ResetDBParameterGroup</a> action. </p>",
374
- "refs": {
375
- }
376
- },
377
- "DBParameterGroupNotFoundFault": {
378
- "base": "<p> <i>DBParameterGroupName</i> does not refer to an existing DB parameter group. </p>",
379
- "refs": {
380
- }
381
- },
382
- "DBParameterGroupQuotaExceededFault": {
383
- "base": "<p> Request would result in user exceeding the allowed number of DB parameter groups. </p>",
384
- "refs": {
385
- }
386
- },
387
- "DBParameterGroupStatus": {
388
- "base": "<p> The status of the DB parameter group. </p> <p>This data type is used as a response element in the following actions:</p> <ul> <li> <a>CreateDBInstance</a> </li> <li> <a>CreateDBInstanceReadReplica</a> </li> <li> <a>DeleteDBInstance</a> </li> <li> <a>ModifyDBInstance</a> </li> <li> <a>RebootDBInstance</a> </li> <li> <a>RestoreDBInstanceFromDBSnapshot</a> </li> </ul>",
389
- "refs": {
390
- "DBParameterGroupStatusList$member": null
391
- }
392
- },
393
- "DBParameterGroupStatusList": {
394
- "base": null,
395
- "refs": {
396
- "DBInstance$DBParameterGroups": "<p> Provides the list of DB parameter groups applied to this DB instance. </p>"
397
- }
398
- },
399
- "DBParameterGroupsMessage": {
400
- "base": "<p> Contains the result of a successful invocation of the <a>DescribeDBParameterGroups</a> action. </p>",
401
- "refs": {
402
- }
403
- },
404
- "DBSecurityGroup": {
405
- "base": "<p> Contains the result of a successful invocation of the following actions: </p> <ul> <li> <a>DescribeDBSecurityGroups</a> </li> <li> <a>AuthorizeDBSecurityGroupIngress</a> </li> <li> <a>CreateDBSecurityGroup</a> </li> <li> <a>RevokeDBSecurityGroupIngress</a> </li> </ul> <p>This data type is used as a response element in the <a>DescribeDBSecurityGroups</a> action.</p>",
406
- "refs": {
407
- "DBSecurityGroups$member": null,
408
- "AuthorizeDBSecurityGroupIngressResult$DBSecurityGroup": null,
409
- "CreateDBSecurityGroupResult$DBSecurityGroup": null,
410
- "RevokeDBSecurityGroupIngressResult$DBSecurityGroup": null
411
- }
412
- },
413
- "DBSecurityGroupAlreadyExistsFault": {
414
- "base": "<p> A DB security group with the name specified in <i>DBSecurityGroupName</i> already exists. </p>",
415
- "refs": {
416
- }
417
- },
418
- "DBSecurityGroupMembership": {
419
- "base": "<p> This data type is used as a response element in the following actions: </p> <ul> <li> <a>ModifyDBInstance</a> </li> <li> <a>RebootDBInstance</a> </li> <li> <a>RestoreDBInstanceFromDBSnapshot</a> </li> <li> <a>RestoreDBInstanceToPointInTime</a> </li> </ul>",
420
- "refs": {
421
- "DBSecurityGroupMembershipList$member": null
422
- }
423
- },
424
- "DBSecurityGroupMembershipList": {
425
- "base": null,
426
- "refs": {
427
- "DBInstance$DBSecurityGroups": "<p> Provides List of DB security group elements containing only <code>DBSecurityGroup.Name</code> and <code>DBSecurityGroup.Status</code> subelements. </p>",
428
- "Option$DBSecurityGroupMemberships": "<p> If the option requires access to a port, then this DB security group allows access to the port. </p>"
429
- }
430
- },
431
- "DBSecurityGroupMessage": {
432
- "base": "<p> Contains the result of a successful invocation of the <a>DescribeDBSecurityGroups</a> action. </p>",
433
- "refs": {
434
- }
435
- },
436
- "DBSecurityGroupNameList": {
437
- "base": null,
438
- "refs": {
439
- "CreateDBInstanceMessage$DBSecurityGroups": "<p> A list of DB security groups to associate with this DB instance. </p> <p> Default: The default DB security group for the database engine. </p>",
440
- "ModifyDBInstanceMessage$DBSecurityGroups": "<p> A list of DB security groups to authorize on this DB instance. Changing this setting does not result in an outage and the change is asynchronously applied as soon as possible. </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>",
441
- "OptionConfiguration$DBSecurityGroupMemberships": "<p> A list of DBSecurityGroupMemebrship name strings used for this option. </p>"
442
- }
443
- },
444
- "DBSecurityGroupNotFoundFault": {
445
- "base": "<p> <i>DBSecurityGroupName</i> does not refer to an existing DB security group. </p>",
446
- "refs": {
447
- }
448
- },
449
- "DBSecurityGroupNotSupportedFault": {
450
- "base": "<p> A DB security group is not allowed for this action. </p>",
451
- "refs": {
452
- }
453
- },
454
- "DBSecurityGroupQuotaExceededFault": {
455
- "base": "<p> Request would result in user exceeding the allowed number of DB security groups. </p>",
456
- "refs": {
457
- }
458
- },
459
- "DBSecurityGroups": {
460
- "base": null,
461
- "refs": {
462
- "DBSecurityGroupMessage$DBSecurityGroups": "<p> A list of <a>DBSecurityGroup</a> instances. </p>"
463
- }
464
- },
465
- "DBSnapshot": {
466
- "base": "<p> Contains the result of a successful invocation of the following actions: </p> <ul> <li> <a>CreateDBSnapshot</a> </li> <li> <a>DeleteDBSnapshot</a> </li> </ul> <p>This data type is used as a response element in the <a>DescribeDBSnapshots</a> action.</p>",
467
- "refs": {
468
- "DBSnapshotList$member": null,
469
- "CopyDBSnapshotResult$DBSnapshot": null,
470
- "CreateDBSnapshotResult$DBSnapshot": null,
471
- "DeleteDBSnapshotResult$DBSnapshot": null
472
- }
473
- },
474
- "DBSnapshotAlreadyExistsFault": {
475
- "base": "<p> <i>DBSnapshotIdentifier</i> is already used by an existing snapshot. </p>",
476
- "refs": {
477
- }
478
- },
479
- "DBSnapshotList": {
480
- "base": null,
481
- "refs": {
482
- "DBSnapshotMessage$DBSnapshots": "<p> A list of <a>DBSnapshot</a> instances. </p>"
483
- }
484
- },
485
- "DBSnapshotMessage": {
486
- "base": "<p> Contains the result of a successful invocation of the <a>DescribeDBSnapshots</a> action. </p>",
487
- "refs": {
488
- }
489
- },
490
- "DBSnapshotNotFoundFault": {
491
- "base": "<p> <i>DBSnapshotIdentifier</i> does not refer to an existing DB snapshot. </p>",
492
- "refs": {
493
- }
494
- },
495
- "DBSubnetGroup": {
496
- "base": "<p> Contains the result of a successful invocation of the following actions: </p> <ul> <li> <a>CreateDBSubnetGroup</a> </li> <li> <a>ModifyDBSubnetGroup</a> </li> <li> <a>DescribeDBSubnetGroups</a> </li> <li> <a>DeleteDBSubnetGroup</a> </li> </ul> <p>This data type is used as a response element in the <a>DescribeDBSubnetGroups</a> action.</p>",
497
- "refs": {
498
- "DBInstance$DBSubnetGroup": "<p> Specifies information on the subnet group associated with the DB instance, including the name, description, and subnets in the subnet group. </p>",
499
- "DBSubnetGroups$member": null,
500
- "CreateDBSubnetGroupResult$DBSubnetGroup": null,
501
- "ModifyDBSubnetGroupResult$DBSubnetGroup": null
502
- }
503
- },
504
- "DBSubnetGroupAlreadyExistsFault": {
505
- "base": "<p> <i>DBSubnetGroupName</i> is already used by an existing DB subnet group. </p>",
506
- "refs": {
507
- }
508
- },
509
- "DBSubnetGroupDoesNotCoverEnoughAZs": {
510
- "base": "<p> Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone. </p>",
511
- "refs": {
512
- }
513
- },
514
- "DBSubnetGroupMessage": {
515
- "base": "<p> Contains the result of a successful invocation of the <a>DescribeDBSubnetGroups</a> action. </p>",
516
- "refs": {
517
- }
518
- },
519
- "DBSubnetGroupNotAllowedFault": {
520
- "base": "<p> Indicates that the DBSubnetGroup should not be specified while creating read replicas that lie in the same region as the source instance. </p>",
521
- "refs": {
522
- }
523
- },
524
- "DBSubnetGroupNotFoundFault": {
525
- "base": "<p> <i>DBSubnetGroupName</i> does not refer to an existing DB subnet group. </p>",
526
- "refs": {
527
- }
528
- },
529
- "DBSubnetGroupQuotaExceededFault": {
530
- "base": "<p> Request would result in user exceeding the allowed number of DB subnet groups. </p>",
531
- "refs": {
532
- }
533
- },
534
- "DBSubnetGroups": {
535
- "base": null,
536
- "refs": {
537
- "DBSubnetGroupMessage$DBSubnetGroups": "<p> A list of <a>DBSubnetGroup</a> instances. </p>"
538
- }
539
- },
540
- "DBSubnetQuotaExceededFault": {
541
- "base": "<p> Request would result in user exceeding the allowed number of subnets in a DB subnet groups. </p>",
542
- "refs": {
543
- }
544
- },
545
- "DBUpgradeDependencyFailureFault": {
546
- "base": "<p> The DB upgrade failed because a resource the DB depends on could not be modified. </p>",
547
- "refs": {
548
- }
549
- },
550
- "DeleteDBInstanceMessage": {
551
- "base": "<p></p>",
552
- "refs": {
553
- }
554
- },
555
- "DeleteDBParameterGroupMessage": {
556
- "base": "<p></p>",
557
- "refs": {
558
- }
559
- },
560
- "DeleteDBSecurityGroupMessage": {
561
- "base": "<p></p>",
562
- "refs": {
563
- }
564
- },
565
- "DeleteDBSnapshotMessage": {
566
- "base": "<p></p>",
567
- "refs": {
568
- }
569
- },
570
- "DeleteDBSubnetGroupMessage": {
571
- "base": "<p></p>",
572
- "refs": {
573
- }
574
- },
575
- "DeleteEventSubscriptionMessage": {
576
- "base": "<p></p>",
577
- "refs": {
578
- }
579
- },
580
- "DeleteOptionGroupMessage": {
581
- "base": "<p></p>",
582
- "refs": {
583
- }
584
- },
585
- "DescribeAccountAttributesMessage": {
586
- "base": "<p></p>",
587
- "refs": {
588
- }
589
- },
590
- "DescribeCertificatesMessage": {
591
- "base": "<p></p>",
592
- "refs": {
593
- }
594
- },
595
- "DescribeDBEngineVersionsMessage": {
596
- "base": null,
597
- "refs": {
598
- }
599
- },
600
- "DescribeDBInstancesMessage": {
601
- "base": "<p></p>",
602
- "refs": {
603
- }
604
- },
605
- "DescribeDBLogFilesDetails": {
606
- "base": "<p>This data type is used as a response element to <a>DescribeDBLogFiles</a>.</p>",
607
- "refs": {
608
- "DescribeDBLogFilesList$member": null
609
- }
610
- },
611
- "DescribeDBLogFilesList": {
612
- "base": null,
613
- "refs": {
614
- "DescribeDBLogFilesResponse$DescribeDBLogFiles": "<p> The DB log files returned. </p>"
615
- }
616
- },
617
- "DescribeDBLogFilesMessage": {
618
- "base": "<p></p>",
619
- "refs": {
620
- }
621
- },
622
- "DescribeDBLogFilesResponse": {
623
- "base": "<p> The response from a call to <a>DescribeDBLogFiles</a>. </p>",
624
- "refs": {
625
- }
626
- },
627
- "DescribeDBParameterGroupsMessage": {
628
- "base": "<p></p>",
629
- "refs": {
630
- }
631
- },
632
- "DescribeDBParametersMessage": {
633
- "base": null,
634
- "refs": {
635
- }
636
- },
637
- "DescribeDBSecurityGroupsMessage": {
638
- "base": "<p></p>",
639
- "refs": {
640
- }
641
- },
642
- "DescribeDBSnapshotsMessage": {
643
- "base": "<p></p>",
644
- "refs": {
645
- }
646
- },
647
- "DescribeDBSubnetGroupsMessage": {
648
- "base": "<p></p>",
649
- "refs": {
650
- }
651
- },
652
- "DescribeEngineDefaultParametersMessage": {
653
- "base": "<p></p>",
654
- "refs": {
655
- }
656
- },
657
- "DescribeEventCategoriesMessage": {
658
- "base": "<p></p>",
659
- "refs": {
660
- }
661
- },
662
- "DescribeEventSubscriptionsMessage": {
663
- "base": "<p></p>",
664
- "refs": {
665
- }
666
- },
667
- "DescribeEventsMessage": {
668
- "base": "<p></p>",
669
- "refs": {
670
- }
671
- },
672
- "DescribeOptionGroupOptionsMessage": {
673
- "base": "<p></p>",
674
- "refs": {
675
- }
676
- },
677
- "DescribeOptionGroupsMessage": {
678
- "base": "<p></p>",
679
- "refs": {
680
- }
681
- },
682
- "DescribeOrderableDBInstanceOptionsMessage": {
683
- "base": "<p></p>",
684
- "refs": {
685
- }
686
- },
687
- "DescribePendingMaintenanceActionsMessage": {
688
- "base": "<p></p>",
689
- "refs": {
690
- }
691
- },
692
- "DescribeReservedDBInstancesMessage": {
693
- "base": "<p></p>",
694
- "refs": {
695
- }
696
- },
697
- "DescribeReservedDBInstancesOfferingsMessage": {
698
- "base": "<p></p>",
699
- "refs": {
700
- }
701
- },
702
- "Double": {
703
- "base": null,
704
- "refs": {
705
- "RecurringCharge$RecurringChargeAmount": "<p> The amount of the recurring charge. </p>",
706
- "ReservedDBInstance$FixedPrice": "<p> The fixed price charged for this reserved DB instance. </p>",
707
- "ReservedDBInstance$UsagePrice": "<p> The hourly price charged for this reserved DB instance. </p>",
708
- "ReservedDBInstancesOffering$FixedPrice": "<p> The fixed price charged for this offering. </p>",
709
- "ReservedDBInstancesOffering$UsagePrice": "<p> The hourly price charged for this offering. </p>"
710
- }
711
- },
712
- "DownloadDBLogFilePortionDetails": {
713
- "base": "<p>This data type is used as a response element to <a>DownloadDBLogFilePortion</a>.</p>",
714
- "refs": {
715
- }
716
- },
717
- "DownloadDBLogFilePortionMessage": {
718
- "base": "<p></p>",
719
- "refs": {
720
- }
721
- },
722
- "EC2SecurityGroup": {
723
- "base": "<p> This data type is used as a response element in the following actions: </p> <ul> <li> <a>AuthorizeDBSecurityGroupIngress</a> </li> <li> <a>DescribeDBSecurityGroups</a> </li> <li> <a>RevokeDBSecurityGroupIngress</a> </li> </ul>",
724
- "refs": {
725
- "EC2SecurityGroupList$member": null
726
- }
727
- },
728
- "EC2SecurityGroupList": {
729
- "base": null,
730
- "refs": {
731
- "DBSecurityGroup$EC2SecurityGroups": "<p> Contains a list of <a>EC2SecurityGroup</a> elements. </p>"
732
- }
733
- },
734
- "Endpoint": {
735
- "base": "<p> This data type is used as a response element in the following actions: </p> <ul> <li> <a>CreateDBInstance</a> </li> <li> <a>DescribeDBInstances</a> </li> <li> <a>DeleteDBInstance</a> </li> </ul>",
736
- "refs": {
737
- "DBInstance$Endpoint": "<p> Specifies the connection endpoint. </p>"
738
- }
739
- },
740
- "EngineDefaults": {
741
- "base": "<p> Contains the result of a successful invocation of the <a>DescribeEngineDefaultParameters</a> action. </p>",
742
- "refs": {
743
- "DescribeEngineDefaultParametersResult$EngineDefaults": null
744
- }
745
- },
746
- "Event": {
747
- "base": "<p> This data type is used as a response element in the <a>DescribeEvents</a> action. </p>",
748
- "refs": {
749
- "EventList$member": null
750
- }
751
- },
752
- "EventCategoriesList": {
753
- "base": null,
754
- "refs": {
755
- "CreateEventSubscriptionMessage$EventCategories": "<p> A list of event categories for a SourceType that you want to subscribe to. You can see a list of the categories for a given SourceType in the <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html\">Events</a> topic in the Amazon RDS User Guide or by using the <b>DescribeEventCategories</b> action. </p>",
756
- "DescribeEventsMessage$EventCategories": "<p> A list of event categories that trigger notifications for a event notification subscription. </p>",
757
- "Event$EventCategories": "<p> Specifies the category for the event. </p>",
758
- "EventCategoriesMap$EventCategories": "<p>The event categories for the specified source type</p>",
759
- "EventSubscription$EventCategoriesList": "<p>A list of event categories for the RDS event notification subscription.</p>",
760
- "ModifyEventSubscriptionMessage$EventCategories": "<p> A list of event categories for a SourceType that you want to subscribe to. You can see a list of the categories for a given SourceType in the <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html\">Events</a> topic in the Amazon RDS User Guide or by using the <b>DescribeEventCategories</b> action. </p>"
761
- }
762
- },
763
- "EventCategoriesMap": {
764
- "base": "<p>Contains the results of a successful invocation of the <a>DescribeEventCategories</a> action.</p>",
765
- "refs": {
766
- "EventCategoriesMapList$member": null
767
- }
768
- },
769
- "EventCategoriesMapList": {
770
- "base": null,
771
- "refs": {
772
- "EventCategoriesMessage$EventCategoriesMapList": "<p>A list of EventCategoriesMap data types.</p>"
773
- }
774
- },
775
- "EventCategoriesMessage": {
776
- "base": "<p>Data returned from the <b>DescribeEventCategories</b> action.</p>",
777
- "refs": {
778
- }
779
- },
780
- "EventList": {
781
- "base": null,
782
- "refs": {
783
- "EventsMessage$Events": "<p> A list of <a>Event</a> instances. </p>"
784
- }
785
- },
786
- "EventSubscription": {
787
- "base": "<p>Contains the results of a successful invocation of the <a>DescribeEventSubscriptions</a> action.</p>",
788
- "refs": {
789
- "EventSubscriptionsList$member": null,
790
- "AddSourceIdentifierToSubscriptionResult$EventSubscription": null,
791
- "CreateEventSubscriptionResult$EventSubscription": null,
792
- "DeleteEventSubscriptionResult$EventSubscription": null,
793
- "ModifyEventSubscriptionResult$EventSubscription": null,
794
- "RemoveSourceIdentifierFromSubscriptionResult$EventSubscription": null
795
- }
796
- },
797
- "EventSubscriptionQuotaExceededFault": {
798
- "base": "<p>You have reached the maximum number of event subscriptions.</p>",
799
- "refs": {
800
- }
801
- },
802
- "EventSubscriptionsList": {
803
- "base": null,
804
- "refs": {
805
- "EventSubscriptionsMessage$EventSubscriptionsList": "<p>A list of EventSubscriptions data types.</p>"
806
- }
807
- },
808
- "EventSubscriptionsMessage": {
809
- "base": "<p>Data returned by the <b>DescribeEventSubscriptions</b> action.</p>",
810
- "refs": {
811
- }
812
- },
813
- "EventsMessage": {
814
- "base": "<p> Contains the result of a successful invocation of the <a>DescribeEvents</a> action. </p>",
815
- "refs": {
816
- }
817
- },
818
- "Filter": {
819
- "base": null,
820
- "refs": {
821
- "FilterList$member": null
822
- }
823
- },
824
- "FilterList": {
825
- "base": null,
826
- "refs": {
827
- "DescribeCertificatesMessage$Filters": "<p>This parameter is not currently supported.</p>",
828
- "DescribeDBEngineVersionsMessage$Filters": "<p> Not currently supported. </p>",
829
- "DescribeDBInstancesMessage$Filters": "<p>This parameter is not currently supported.</p>",
830
- "DescribeDBLogFilesMessage$Filters": "<p>This parameter is not currently supported.</p>",
831
- "DescribeDBParameterGroupsMessage$Filters": "<p>This parameter is not currently supported.</p>",
832
- "DescribeDBParametersMessage$Filters": "<p>This parameter is not currently supported.</p>",
833
- "DescribeDBSecurityGroupsMessage$Filters": "<p>This parameter is not currently supported.</p>",
834
- "DescribeDBSnapshotsMessage$Filters": "<p>This parameter is not currently supported.</p>",
835
- "DescribeDBSubnetGroupsMessage$Filters": "<p>This parameter is not currently supported.</p>",
836
- "DescribeEngineDefaultParametersMessage$Filters": "<p> Not currently supported. </p>",
837
- "DescribeEventCategoriesMessage$Filters": "<p>This parameter is not currently supported.</p>",
838
- "DescribeEventSubscriptionsMessage$Filters": "<p>This parameter is not currently supported.</p>",
839
- "DescribeEventsMessage$Filters": "<p>This parameter is not currently supported.</p>",
840
- "DescribeOptionGroupOptionsMessage$Filters": "<p>This parameter is not currently supported.</p>",
841
- "DescribeOptionGroupsMessage$Filters": "<p>This parameter is not currently supported.</p>",
842
- "DescribeOrderableDBInstanceOptionsMessage$Filters": "<p>This parameter is not currently supported.</p>",
843
- "DescribePendingMaintenanceActionsMessage$Filters": "<p>A filter that specifies one or more resources to return pending maintenance actions for.</p> <p>Supported filters:</p> <ul> <li> <code>db-instance-id</code> - Accepts DB instance identifiers and DB instance Amazon Resource Names (ARNs). The results list will only include pending maintenance actions for the DB instances identified by these ARNs.</li> </ul>",
844
- "DescribeReservedDBInstancesMessage$Filters": "<p>This parameter is not currently supported.</p>",
845
- "DescribeReservedDBInstancesOfferingsMessage$Filters": "<p>This parameter is not currently supported.</p>",
846
- "ListTagsForResourceMessage$Filters": "<p>This parameter is not currently supported.</p>"
847
- }
848
- },
849
- "FilterValueList": {
850
- "base": null,
851
- "refs": {
852
- "Filter$Values": "<p>This parameter is not currently supported.</p>"
853
- }
854
- },
855
- "IPRange": {
856
- "base": "<p> This data type is used as a response element in the <a>DescribeDBSecurityGroups</a> action. </p>",
857
- "refs": {
858
- "IPRangeList$member": null
859
- }
860
- },
861
- "IPRangeList": {
862
- "base": null,
863
- "refs": {
864
- "DBSecurityGroup$IPRanges": "<p> Contains a list of <a>IPRange</a> elements. </p>"
865
- }
866
- },
867
- "InstanceQuotaExceededFault": {
868
- "base": "<p> Request would result in user exceeding the allowed number of DB instances. </p>",
869
- "refs": {
870
- }
871
- },
872
- "InsufficientDBInstanceCapacityFault": {
873
- "base": "<p> Specified DB instance class is not available in the specified Availability Zone. </p>",
874
- "refs": {
875
- }
876
- },
877
- "Integer": {
878
- "base": null,
879
- "refs": {
880
- "DBInstance$AllocatedStorage": "<p> Specifies the allocated storage size specified in gigabytes. </p>",
881
- "DBInstance$BackupRetentionPeriod": "<p> Specifies the number of days for which automatic DB snapshots are retained. </p>",
882
- "DBSnapshot$AllocatedStorage": "<p> Specifies the allocated storage size in gigabytes (GB). </p>",
883
- "DBSnapshot$Port": "<p> Specifies the port that the database engine was listening on at the time of the snapshot. </p>",
884
- "DBSnapshot$PercentProgress": "<p> The percentage of the estimated data that has been transferred. </p>",
885
- "DownloadDBLogFilePortionMessage$NumberOfLines": "<p> The number of lines to download. </p> <p>If the NumberOfLines parameter is specified, then the block of lines returned can be from the beginning or the end of the log file, depending on the value of the Marker parameter. <ul> <li><p>If neither Marker or NumberOfLines are specified, the entire log file is returned.</p></li> <li><p>If NumberOfLines is specified and Marker is not specified, then the most recent lines from the end of the log file are returned.</p></li> <li><p>If Marker is specified as \"0\", then the specified number of lines from the beginning of the log file are returned.</p></li> <li><p>You can download the log file in blocks of lines by specifying the size of the block using the NumberOfLines parameter, and by specifying a value of \"0\" for the Marker parameter in your first request. Include the Marker value returned in the response as the Marker value for the next request, continuing until the AdditionalDataPending response element returns false.</p></li> </ul></p>",
886
- "Endpoint$Port": "<p> Specifies the port that the database engine is listening on. </p>",
887
- "ReservedDBInstance$Duration": "<p> The duration of the reservation in seconds. </p>",
888
- "ReservedDBInstance$DBInstanceCount": "<p> The number of reserved DB instances. </p>",
889
- "ReservedDBInstancesOffering$Duration": "<p> The duration of the offering in seconds. </p>"
890
- }
891
- },
892
- "IntegerOptional": {
893
- "base": null,
894
- "refs": {
895
- "CreateDBInstanceMessage$AllocatedStorage": "<p> The amount of storage (in gigabytes) to be initially allocated for the database instance. </p> <p> Type: Integer</p> <p> <b>MySQL</b> </p> <p> Constraints: Must be an integer from 5 to 3072.</p> <p> <b>PostgreSQL</b> </p> <p> Constraints: Must be an integer from 5 to 3072.</p> <p> <b>Oracle</b> </p> <p> Constraints: Must be an integer from 10 to 3072.</p> <p> <b>SQL Server</b> </p> <p> Constraints: Must be an integer from 200 to 1024 (Standard Edition and Enterprise Edition) or from 20 to 1024 (Express Edition and Web Edition)</p>",
896
- "CreateDBInstanceMessage$BackupRetentionPeriod": "<p> The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups. </p> <p> Default: 1 </p> <p>Constraints:</p> <ul> <li>Must be a value from 0 to 35</li> <li>Cannot be set to 0 if the DB instance is a source to Read Replicas</li> </ul>",
897
- "CreateDBInstanceMessage$Port": "<p> The port number on which the database accepts connections. </p> <p> <b>MySQL</b> </p> <p> Default: <code>3306</code></p> <p> Valid Values: <code>1150-65535</code></p> <p>Type: Integer </p> <p> <b>PostgreSQL</b> </p> <p> Default: <code>5432</code></p> <p> Valid Values: <code>1150-65535</code></p> <p>Type: Integer </p> <p> <b>Oracle</b> </p> <p> Default: <code>1521</code></p> <p> Valid Values: <code>1150-65535</code></p> <p> <b>SQL Server</b> </p> <p> Default: <code>1433</code></p> <p> Valid Values: <code>1150-65535</code> except for <code>1434</code>, <code>3389</code>, <code>47001</code>, <code>49152</code>, and <code>49152</code> through <code>49156</code>. </p>",
898
- "CreateDBInstanceMessage$Iops": "<p> The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for the DB instance. </p> <p> Constraints: To use PIOPS, this value must be an integer greater than 1000.</p>",
899
- "CreateDBInstanceReadReplicaMessage$Port": "<p> The port number that the DB instance uses for connections. </p> <p>Default: Inherits from the source DB instance</p> <p>Valid Values: <code>1150-65535</code></p>",
900
- "CreateDBInstanceReadReplicaMessage$Iops": "<p> The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for the DB instance. </p>",
901
- "DBInstance$Iops": "<p> Specifies the Provisioned IOPS (I/O operations per second) value. </p>",
902
- "DBSnapshot$Iops": "<p> Specifies the Provisioned IOPS (I/O operations per second) value of the DB instance at the time of the snapshot. </p>",
903
- "DescribeCertificatesMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results can be retrieved. </p> <p>Default: 100</p> <p>Constraints: Minimum 20, maximum 100</p>",
904
- "DescribeDBEngineVersionsMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more than the <code>MaxRecords</code> value is available, a pagination token called a marker is included in the response so that the following results can be retrieved. </p> <p>Default: 100</p> <p>Constraints: minimum 20, maximum 100</p>",
905
- "DescribeDBInstancesMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results may be retrieved. </p> <p>Default: 100</p> <p>Constraints: minimum 20, maximum 100</p>",
906
- "DescribeDBLogFilesMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved. </p>",
907
- "DescribeDBParameterGroupsMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results may be retrieved. </p> <p>Default: 100</p> <p>Constraints: minimum 20, maximum 100</p>",
908
- "DescribeDBParametersMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results may be retrieved. </p> <p>Default: 100</p> <p>Constraints: minimum 20, maximum 100</p>",
909
- "DescribeDBSecurityGroupsMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results may be retrieved. </p> <p>Default: 100</p> <p>Constraints: minimum 20, maximum 100</p>",
910
- "DescribeDBSnapshotsMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results may be retrieved. </p> <p>Default: 100</p> <p>Constraints: minimum 20, maximum 100</p>",
911
- "DescribeDBSubnetGroupsMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results may be retrieved. </p> <p>Default: 100</p> <p>Constraints: minimum 20, maximum 100</p>",
912
- "DescribeEngineDefaultParametersMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results may be retrieved. </p> <p>Default: 100</p> <p>Constraints: minimum 20, maximum 100</p>",
913
- "DescribeEventSubscriptionsMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results can be retrieved. </p> <p>Default: 100</p> <p>Constraints: minimum 20, maximum 100</p>",
914
- "DescribeEventsMessage$Duration": "<p> The number of minutes to retrieve events for. </p> <p>Default: 60</p>",
915
- "DescribeEventsMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results may be retrieved. </p> <p>Default: 100</p> <p>Constraints: minimum 20, maximum 100</p>",
916
- "DescribeOptionGroupOptionsMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results can be retrieved. </p> <p>Default: 100</p> <p>Constraints: minimum 20, maximum 100</p>",
917
- "DescribeOptionGroupsMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results can be retrieved. </p> <p>Default: 100</p> <p>Constraints: minimum 20, maximum 100</p>",
918
- "DescribeOrderableDBInstanceOptionsMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results can be retrieved. </p> <p>Default: 100</p> <p>Constraints: minimum 20, maximum 100</p>",
919
- "DescribePendingMaintenanceActionsMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results can be retrieved. </p> <p>Default: 100</p> <p>Constraints: minimum 20, maximum 100</p>",
920
- "DescribeReservedDBInstancesMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more than the <code>MaxRecords</code> value is available, a pagination token called a marker is included in the response so that the following results can be retrieved. </p> <p>Default: 100</p> <p>Constraints: minimum 20, maximum 100</p>",
921
- "DescribeReservedDBInstancesOfferingsMessage$MaxRecords": "<p> The maximum number of records to include in the response. If more than the <code>MaxRecords</code> value is available, a pagination token called a marker is included in the response so that the following results can be retrieved. </p> <p>Default: 100</p> <p>Constraints: minimum 20, maximum 100</p>",
922
- "ModifyDBInstanceMessage$AllocatedStorage": "<p> The new storage capacity of the RDS instance. Changing this setting does not result in an outage and the change is applied during the next maintenance window unless <code>ApplyImmediately</code> is set to <code>true</code> for this request. </p> <p> <b>MySQL</b> </p> <p>Default: Uses existing setting</p> <p>Valid Values: 5-3072</p> <p>Constraints: Value supplied must be at least 10% greater than the current value. Values that are not at least 10% greater than the existing value are rounded up so that they are 10% greater than the current value.</p> <p>Type: Integer</p> <p> <b>PostgreSQL</b> </p> <p>Default: Uses existing setting</p> <p>Valid Values: 5-3072</p> <p>Constraints: Value supplied must be at least 10% greater than the current value. Values that are not at least 10% greater than the existing value are rounded up so that they are 10% greater than the current value.</p> <p>Type: Integer</p> <p> <b>Oracle</b> </p> <p>Default: Uses existing setting</p> <p>Valid Values: 10-3072</p> <p>Constraints: Value supplied must be at least 10% greater than the current value. Values that are not at least 10% greater than the existing value are rounded up so that they are 10% greater than the current value.</p> <p> <b>SQL Server</b> </p> <p>Cannot be modified.</p> <p> If you choose to migrate your DB instance from using standard storage to using Provisioned IOPS, or from using Provisioned IOPS to using standard storage, the process can take time. The duration of the migration depends on several factors such as database load, storage size, storage type (standard or Provisioned IOPS), amount of IOPS provisioned (if any), and the number of prior scale storage operations. Typical migration times are under 24 hours, but the process can take up to several days in some cases. During the migration, the DB instance will be available for use, but may experience performance degradation. While the migration takes place, nightly backups for the instance will be suspended. No other Amazon RDS operations can take place for the instance, including modifying the instance, rebooting the instance, deleting the instance, creating a Read Replica for the instance, and creating a DB snapshot of the instance. </p>",
923
- "ModifyDBInstanceMessage$BackupRetentionPeriod": "<p> The number of days to retain automated backups. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups. </p> <p>Changing this parameter can result in an outage if you change from 0 to a non-zero value or from a non-zero value to 0. These changes are applied during the next maintenance window unless the <code>ApplyImmediately</code> parameter is set to <code>true</code> for this request. If you change the parameter from one non-zero value to another non-zero value, the change is asynchronously applied as soon as possible.</p> <p>Default: Uses existing setting</p> <p>Constraints:</p> <ul> <li>Must be a value from 0 to 35</li> <li>Can be specified for a MySQL Read Replica only if the source is running MySQL 5.6</li> <li>Can be specified for a PostgreSQL Read Replica only if the source is running PostgreSQL 9.3.5</li> <li>Cannot be set to 0 if the DB instance is a source to Read Replicas</li> </ul>",
924
- "ModifyDBInstanceMessage$Iops": "<p> The new Provisioned IOPS (I/O operations per second) value for the RDS instance. Changing this setting does not result in an outage and the change is applied during the next maintenance window unless the <code>ApplyImmediately</code> parameter is set to <code>true</code> for this request. </p> <p>Default: Uses existing setting</p> <p>Constraints: Value supplied must be at least 10% greater than the current value. Values that are not at least 10% greater than the existing value are rounded up so that they are 10% greater than the current value. If you are migrating from Provisioned IOPS to standard storage, set this value to 0. The DB instance will require a reboot for the change in storage type to take effect.</p> <p> <b>SQL Server</b> </p> <p>Setting the IOPS value for the SQL Server database engine is not supported.</p> <p>Type: Integer</p> <p> If you choose to migrate your DB instance from using standard storage to using Provisioned IOPS, or from using Provisioned IOPS to using standard storage, the process can take time. The duration of the migration depends on several factors such as database load, storage size, storage type (standard or Provisioned IOPS), amount of IOPS provisioned (if any), and the number of prior scale storage operations. Typical migration times are under 24 hours, but the process can take up to several days in some cases. During the migration, the DB instance will be available for use, but may experience performance degradation. While the migration takes place, nightly backups for the instance will be suspended. No other Amazon RDS operations can take place for the instance, including modifying the instance, rebooting the instance, deleting the instance, creating a Read Replica for the instance, and creating a DB snapshot of the instance. </p>",
925
- "Option$Port": "<p> If required, the port configured for this option to use. </p>",
926
- "OptionConfiguration$Port": "<p> The optional port for the option. </p>",
927
- "OptionGroupOption$DefaultPort": "<p> If the option requires a port, specifies the default port for the option. </p>",
928
- "PendingModifiedValues$AllocatedStorage": "<p> Contains the new <code>AllocatedStorage</code> size for the DB instance that will be applied or is in progress. </p>",
929
- "PendingModifiedValues$Port": "<p> Specifies the pending port for the DB instance. </p>",
930
- "PendingModifiedValues$BackupRetentionPeriod": "<p> Specifies the pending number of days for which automated backups are retained. </p>",
931
- "PendingModifiedValues$Iops": "<p> Specifies the new Provisioned IOPS value for the DB instance that will be applied or is being applied. </p>",
932
- "PromoteReadReplicaMessage$BackupRetentionPeriod": "<p> The number of days to retain automated backups. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups. </p> <p> Default: 1 </p> <p>Constraints:</p> <ul> <li>Must be a value from 0 to 8</li> </ul>",
933
- "PurchaseReservedDBInstancesOfferingMessage$DBInstanceCount": "<p> The number of instances to reserve. </p> <p>Default: <code>1</code></p>",
934
- "RestoreDBInstanceFromDBSnapshotMessage$Port": "<p> The port number on which the database accepts connections. </p> <p>Default: The same port as the original DB instance</p> <p>Constraints: Value must be <code>1150-65535</code></p>",
935
- "RestoreDBInstanceFromDBSnapshotMessage$Iops": "<p> Specifies the amount of provisioned IOPS for the DB instance, expressed in I/O operations per second. If this parameter is not specified, the IOPS value will be taken from the backup. If this parameter is set to 0, the new instance will be converted to a non-PIOPS instance, which will take additional time, though your DB instance will be available for connections before the conversion starts. </p> <p> Constraints: Must be an integer greater than 1000.</p> <p> <b>SQL Server</b> </p> <p>Setting the IOPS value for the SQL Server database engine is not supported.</p>",
936
- "RestoreDBInstanceToPointInTimeMessage$Port": "<p> The port number on which the database accepts connections. </p> <p>Constraints: Value must be <code>1150-65535</code></p> <p>Default: The same port as the original DB instance.</p>",
937
- "RestoreDBInstanceToPointInTimeMessage$Iops": "<p> The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for the DB instance. </p> <p> Constraints: Must be an integer greater than 1000.</p> <p> <b>SQL Server</b> </p> <p>Setting the IOPS value for the SQL Server database engine is not supported.</p>"
938
- }
939
- },
940
- "InvalidDBInstanceStateFault": {
941
- "base": "<p> The specified DB instance is not in the <i>available</i> state. </p>",
942
- "refs": {
943
- }
944
- },
945
- "InvalidDBParameterGroupStateFault": {
946
- "base": "<p> The DB parameter group cannot be deleted because it is in use. </p>",
947
- "refs": {
948
- }
949
- },
950
- "InvalidDBSecurityGroupStateFault": {
951
- "base": "<p> The state of the DB security group does not allow deletion. </p>",
952
- "refs": {
953
- }
954
- },
955
- "InvalidDBSnapshotStateFault": {
956
- "base": "<p> The state of the DB snapshot does not allow deletion. </p>",
957
- "refs": {
958
- }
959
- },
960
- "InvalidDBSubnetGroupFault": {
961
- "base": "<p> Indicates the DBSubnetGroup does not belong to the same VPC as that of an existing cross region read replica of the same source instance. </p>",
962
- "refs": {
963
- }
964
- },
965
- "InvalidDBSubnetGroupStateFault": {
966
- "base": "<p> The DB subnet group cannot be deleted because it is in use. </p>",
967
- "refs": {
968
- }
969
- },
970
- "InvalidDBSubnetStateFault": {
971
- "base": "<p> The DB subnet is not in the <i>available</i> state. </p>",
972
- "refs": {
973
- }
974
- },
975
- "InvalidEventSubscriptionStateFault": {
976
- "base": "<p>This error can occur if someone else is modifying a subscription. You should retry the action.</p>",
977
- "refs": {
978
- }
979
- },
980
- "InvalidOptionGroupStateFault": {
981
- "base": "<p> The option group is not in the <i>available</i> state. </p>",
982
- "refs": {
983
- }
984
- },
985
- "InvalidRestoreFault": {
986
- "base": "<p> Cannot restore from vpc backup to non-vpc DB instance. </p>",
987
- "refs": {
988
- }
989
- },
990
- "InvalidSubnet": {
991
- "base": "<p> The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC. </p>",
992
- "refs": {
993
- }
994
- },
995
- "InvalidVPCNetworkStateFault": {
996
- "base": "<p> DB subnet group does not cover all Availability Zones after it is created because users' change. </p>",
997
- "refs": {
998
- }
999
- },
1000
- "KMSKeyNotAccessibleFault": {
1001
- "base": "<p> Error accessing KMS key. </p>",
1002
- "refs": {
1003
- }
1004
- },
1005
- "KeyList": {
1006
- "base": null,
1007
- "refs": {
1008
- "RemoveTagsFromResourceMessage$TagKeys": "<p>The tag key (name) of the tag to be removed.</p>"
1009
- }
1010
- },
1011
- "ListTagsForResourceMessage": {
1012
- "base": "<p></p>",
1013
- "refs": {
1014
- }
1015
- },
1016
- "Long": {
1017
- "base": null,
1018
- "refs": {
1019
- "AccountQuota$Used": "<p>The amount currently used toward the quota maximum.</p>",
1020
- "AccountQuota$Max": "<p>The maximum allowed value for the quota.</p>",
1021
- "DescribeDBLogFilesDetails$LastWritten": "<p> A POSIX timestamp when the last log entry was written. </p>",
1022
- "DescribeDBLogFilesDetails$Size": "<p> The size, in bytes, of the log file for the specified DB instance. </p>",
1023
- "DescribeDBLogFilesMessage$FileLastWritten": "<p> Filters the available log files for files written since the specified date, in POSIX timestamp format. </p>",
1024
- "DescribeDBLogFilesMessage$FileSize": "<p> Filters the available log files for files larger than the specified size. </p>"
1025
- }
1026
- },
1027
- "ModifyDBInstanceMessage": {
1028
- "base": "<p></p>",
1029
- "refs": {
1030
- }
1031
- },
1032
- "ModifyDBParameterGroupMessage": {
1033
- "base": "<p></p>",
1034
- "refs": {
1035
- }
1036
- },
1037
- "ModifyDBSubnetGroupMessage": {
1038
- "base": "<p></p>",
1039
- "refs": {
1040
- }
1041
- },
1042
- "ModifyEventSubscriptionMessage": {
1043
- "base": "<p></p>",
1044
- "refs": {
1045
- }
1046
- },
1047
- "ModifyOptionGroupMessage": {
1048
- "base": "<p></p>",
1049
- "refs": {
1050
- }
1051
- },
1052
- "Option": {
1053
- "base": "<p> Option details. </p>",
1054
- "refs": {
1055
- "OptionsList$member": null
1056
- }
1057
- },
1058
- "OptionConfiguration": {
1059
- "base": "<p> A list of all available options </p>",
1060
- "refs": {
1061
- "OptionConfigurationList$member": null
1062
- }
1063
- },
1064
- "OptionConfigurationList": {
1065
- "base": null,
1066
- "refs": {
1067
- "ModifyOptionGroupMessage$OptionsToInclude": "<p> Options in this list are added to the option group or, if already present, the specified configuration is used to update the existing configuration. </p>"
1068
- }
1069
- },
1070
- "OptionGroup": {
1071
- "base": "<p></p>",
1072
- "refs": {
1073
- "OptionGroupsList$member": null,
1074
- "CopyOptionGroupResult$OptionGroup": null,
1075
- "CreateOptionGroupResult$OptionGroup": null,
1076
- "ModifyOptionGroupResult$OptionGroup": null
1077
- }
1078
- },
1079
- "OptionGroupAlreadyExistsFault": {
1080
- "base": "<p> The option group you are trying to create already exists. </p>",
1081
- "refs": {
1082
- }
1083
- },
1084
- "OptionGroupMembership": {
1085
- "base": "<p> Provides information on the option groups the DB instance is a member of. </p>",
1086
- "refs": {
1087
- "OptionGroupMembershipList$member": null
1088
- }
1089
- },
1090
- "OptionGroupMembershipList": {
1091
- "base": null,
1092
- "refs": {
1093
- "DBInstance$OptionGroupMemberships": "<p> Provides the list of option group memberships for this DB instance. </p>"
1094
- }
1095
- },
1096
- "OptionGroupNotFoundFault": {
1097
- "base": "<p> The specified option group could not be found. </p>",
1098
- "refs": {
1099
- }
1100
- },
1101
- "OptionGroupOption": {
1102
- "base": "<p> Available option. </p>",
1103
- "refs": {
1104
- "OptionGroupOptionsList$member": null
1105
- }
1106
- },
1107
- "OptionGroupOptionSetting": {
1108
- "base": "<p>Option group option settings are used to display settings available for each option with their default values and other information. These values are used with the DescribeOptionGroupOptions action. </p>",
1109
- "refs": {
1110
- "OptionGroupOptionSettingsList$member": null
1111
- }
1112
- },
1113
- "OptionGroupOptionSettingsList": {
1114
- "base": null,
1115
- "refs": {
1116
- "OptionGroupOption$OptionGroupOptionSettings": "<p> Specifies the option settings that are available (and the default value) for each option in an option group. </p>"
1117
- }
1118
- },
1119
- "OptionGroupOptionsList": {
1120
- "base": "<p> List of available option group options. </p>",
1121
- "refs": {
1122
- "OptionGroupOptionsMessage$OptionGroupOptions": null
1123
- }
1124
- },
1125
- "OptionGroupOptionsMessage": {
1126
- "base": "<p></p>",
1127
- "refs": {
1128
- }
1129
- },
1130
- "OptionGroupQuotaExceededFault": {
1131
- "base": "<p> The quota of 20 option groups was exceeded for this AWS account. </p>",
1132
- "refs": {
1133
- }
1134
- },
1135
- "OptionGroups": {
1136
- "base": "<p> List of option groups. </p>",
1137
- "refs": {
1138
- }
1139
- },
1140
- "OptionGroupsList": {
1141
- "base": null,
1142
- "refs": {
1143
- "OptionGroups$OptionGroupsList": "<p> List of option groups. </p>"
1144
- }
1145
- },
1146
- "OptionNamesList": {
1147
- "base": null,
1148
- "refs": {
1149
- "ModifyOptionGroupMessage$OptionsToRemove": "<p> Options in this list are removed from the option group. </p>"
1150
- }
1151
- },
1152
- "OptionSetting": {
1153
- "base": "<p> Option settings are the actual settings being applied or configured for that option. It is used when you modify an option group or describe option groups. For example, the NATIVE_NETWORK_ENCRYPTION option has a setting called SQLNET.ENCRYPTION_SERVER that can have several different values. </p>",
1154
- "refs": {
1155
- "OptionSettingConfigurationList$member": null,
1156
- "OptionSettingsList$member": null
1157
- }
1158
- },
1159
- "OptionSettingConfigurationList": {
1160
- "base": null,
1161
- "refs": {
1162
- "Option$OptionSettings": "<p> The option settings for this option. </p>"
1163
- }
1164
- },
1165
- "OptionSettingsList": {
1166
- "base": null,
1167
- "refs": {
1168
- "OptionConfiguration$OptionSettings": "<p> The option settings to include in an option group. </p>"
1169
- }
1170
- },
1171
- "OptionsDependedOn": {
1172
- "base": null,
1173
- "refs": {
1174
- "OptionGroupOption$OptionsDependedOn": "<p> List of all options that are prerequisites for this option. </p>"
1175
- }
1176
- },
1177
- "OptionsList": {
1178
- "base": null,
1179
- "refs": {
1180
- "OptionGroup$Options": "<p> Indicates what options are available in the option group. </p>"
1181
- }
1182
- },
1183
- "OrderableDBInstanceOption": {
1184
- "base": "<p> Contains a list of available options for a DB instance </p> <p> This data type is used as a response element in the <a>DescribeOrderableDBInstanceOptions</a> action. </p>",
1185
- "refs": {
1186
- "OrderableDBInstanceOptionsList$member": null
1187
- }
1188
- },
1189
- "OrderableDBInstanceOptionsList": {
1190
- "base": null,
1191
- "refs": {
1192
- "OrderableDBInstanceOptionsMessage$OrderableDBInstanceOptions": "<p>An <a>OrderableDBInstanceOption</a> structure containing information about orderable options for the DB instance.</p>"
1193
- }
1194
- },
1195
- "OrderableDBInstanceOptionsMessage": {
1196
- "base": "<p> Contains the result of a successful invocation of the <a>DescribeOrderableDBInstanceOptions</a> action. </p>",
1197
- "refs": {
1198
- }
1199
- },
1200
- "Parameter": {
1201
- "base": "<p> This data type is used as a request parameter in the <a>ModifyDBParameterGroup</a> and <a>ResetDBParameterGroup</a> actions. </p> <p>This data type is used as a response element in the <a>DescribeEngineDefaultParameters</a> and <a>DescribeDBParameters</a> actions.</p>",
1202
- "refs": {
1203
- "ParametersList$member": null
1204
- }
1205
- },
1206
- "ParametersList": {
1207
- "base": null,
1208
- "refs": {
1209
- "DBParameterGroupDetails$Parameters": "<p> A list of <a>Parameter</a> values. </p>",
1210
- "EngineDefaults$Parameters": "<p> Contains a list of engine default parameters. </p>",
1211
- "ModifyDBParameterGroupMessage$Parameters": "<p> An array of parameter names, values, and the apply method for the parameter update. At least one parameter name, value, and apply method must be supplied; subsequent arguments are optional. A maximum of 20 parameters may be modified in a single request. </p> <p>Valid Values (for the application method): <code>immediate | pending-reboot</code></p> <note>You can use the immediate value with dynamic parameters only. You can use the pending-reboot value for both dynamic and static parameters, and changes are applied when you reboot the DB instance without failover. </note>",
1212
- "ResetDBParameterGroupMessage$Parameters": "<p> An array of parameter names, values, and the apply method for the parameter update. At least one parameter name, value, and apply method must be supplied; subsequent arguments are optional. A maximum of 20 parameters may be modified in a single request. </p> <p> <b>MySQL</b> </p> <p>Valid Values (for Apply method): <code>immediate</code> | <code>pending-reboot</code></p> <p>You can use the immediate value with dynamic parameters only. You can use the <code>pending-reboot</code> value for both dynamic and static parameters, and changes are applied when DB instance reboots.</p> <p> <b>Oracle</b> </p> <p>Valid Values (for Apply method): <code>pending-reboot</code></p>"
1213
- }
1214
- },
1215
- "PendingMaintenanceAction": {
1216
- "base": "<p>Provides information about a pending maintenance action for a resource.</p>",
1217
- "refs": {
1218
- "PendingMaintenanceActionDetails$member": null
1219
- }
1220
- },
1221
- "PendingMaintenanceActionDetails": {
1222
- "base": null,
1223
- "refs": {
1224
- "ResourcePendingMaintenanceActions$PendingMaintenanceActionDetails": "<p>A list that provides details about the pending maintenance actions for the resource.</p>"
1225
- }
1226
- },
1227
- "PendingMaintenanceActions": {
1228
- "base": null,
1229
- "refs": {
1230
- "PendingMaintenanceActionsMessage$PendingMaintenanceActions": "<p>A list of the pending maintenance actions for the resource.</p>"
1231
- }
1232
- },
1233
- "PendingMaintenanceActionsMessage": {
1234
- "base": "<p>Data returned from the <b>DescribePendingMaintenanceActions</b> action.</p>",
1235
- "refs": {
1236
- }
1237
- },
1238
- "PendingModifiedValues": {
1239
- "base": "<p> This data type is used as a response element in the <a>ModifyDBInstance</a> action. </p>",
1240
- "refs": {
1241
- "DBInstance$PendingModifiedValues": "<p> Specifies that changes to the DB instance are pending. This element is only included when changes are pending. Specific changes are identified by subelements. </p>"
1242
- }
1243
- },
1244
- "PointInTimeRestoreNotEnabledFault": {
1245
- "base": "<p> <i>SourceDBInstanceIdentifier</i> refers to a DB instance with <i>BackupRetentionPeriod</i> equal to 0. </p>",
1246
- "refs": {
1247
- }
1248
- },
1249
- "PromoteReadReplicaMessage": {
1250
- "base": "<p></p>",
1251
- "refs": {
1252
- }
1253
- },
1254
- "ProvisionedIopsNotAvailableInAZFault": {
1255
- "base": "<p> Provisioned IOPS not available in the specified Availability Zone. </p>",
1256
- "refs": {
1257
- }
1258
- },
1259
- "PurchaseReservedDBInstancesOfferingMessage": {
1260
- "base": "<p></p>",
1261
- "refs": {
1262
- }
1263
- },
1264
- "ReadReplicaDBInstanceIdentifierList": {
1265
- "base": null,
1266
- "refs": {
1267
- "DBInstance$ReadReplicaDBInstanceIdentifiers": "<p> Contains one or more identifiers of the Read Replicas associated with this DB instance. </p>"
1268
- }
1269
- },
1270
- "RebootDBInstanceMessage": {
1271
- "base": "<p></p>",
1272
- "refs": {
1273
- }
1274
- },
1275
- "RecurringCharge": {
1276
- "base": "<p> This data type is used as a response element in the <a>DescribeReservedDBInstances</a> and <a>DescribeReservedDBInstancesOfferings</a> actions. </p>",
1277
- "refs": {
1278
- "RecurringChargeList$member": null
1279
- }
1280
- },
1281
- "RecurringChargeList": {
1282
- "base": null,
1283
- "refs": {
1284
- "ReservedDBInstance$RecurringCharges": "<p> The recurring price charged to run this reserved DB instance. </p>",
1285
- "ReservedDBInstancesOffering$RecurringCharges": "<p> The recurring price charged to run this reserved DB instance. </p>"
1286
- }
1287
- },
1288
- "RemoveSourceIdentifierFromSubscriptionMessage": {
1289
- "base": "<p></p>",
1290
- "refs": {
1291
- }
1292
- },
1293
- "RemoveTagsFromResourceMessage": {
1294
- "base": "<p></p>",
1295
- "refs": {
1296
- }
1297
- },
1298
- "ReservedDBInstance": {
1299
- "base": "<p> This data type is used as a response element in the <a>DescribeReservedDBInstances</a> and <a>PurchaseReservedDBInstancesOffering</a> actions. </p>",
1300
- "refs": {
1301
- "ReservedDBInstanceList$member": null,
1302
- "PurchaseReservedDBInstancesOfferingResult$ReservedDBInstance": null
1303
- }
1304
- },
1305
- "ReservedDBInstanceAlreadyExistsFault": {
1306
- "base": "<p> User already has a reservation with the given identifier. </p>",
1307
- "refs": {
1308
- }
1309
- },
1310
- "ReservedDBInstanceList": {
1311
- "base": null,
1312
- "refs": {
1313
- "ReservedDBInstanceMessage$ReservedDBInstances": "<p> A list of reserved DB instances. </p>"
1314
- }
1315
- },
1316
- "ReservedDBInstanceMessage": {
1317
- "base": "<p> Contains the result of a successful invocation of the <a>DescribeReservedDBInstances</a> action. </p>",
1318
- "refs": {
1319
- }
1320
- },
1321
- "ReservedDBInstanceNotFoundFault": {
1322
- "base": "<p> The specified reserved DB Instance not found. </p>",
1323
- "refs": {
1324
- }
1325
- },
1326
- "ReservedDBInstanceQuotaExceededFault": {
1327
- "base": "<p> Request would exceed the user's DB Instance quota. </p>",
1328
- "refs": {
1329
- }
1330
- },
1331
- "ReservedDBInstancesOffering": {
1332
- "base": "<p> This data type is used as a response element in the <a>DescribeReservedDBInstancesOfferings</a> action. </p>",
1333
- "refs": {
1334
- "ReservedDBInstancesOfferingList$member": null
1335
- }
1336
- },
1337
- "ReservedDBInstancesOfferingList": {
1338
- "base": null,
1339
- "refs": {
1340
- "ReservedDBInstancesOfferingMessage$ReservedDBInstancesOfferings": "<p> A list of reserved DB instance offerings. </p>"
1341
- }
1342
- },
1343
- "ReservedDBInstancesOfferingMessage": {
1344
- "base": "<p> Contains the result of a successful invocation of the <a>DescribeReservedDBInstancesOfferings</a> action. </p>",
1345
- "refs": {
1346
- }
1347
- },
1348
- "ReservedDBInstancesOfferingNotFoundFault": {
1349
- "base": "<p> Specified offering does not exist. </p>",
1350
- "refs": {
1351
- }
1352
- },
1353
- "ResetDBParameterGroupMessage": {
1354
- "base": "<p></p>",
1355
- "refs": {
1356
- }
1357
- },
1358
- "ResourceNotFoundFault": {
1359
- "base": "<p>The specified resource ID was not found. </p>",
1360
- "refs": {
1361
- }
1362
- },
1363
- "ResourcePendingMaintenanceActions": {
1364
- "base": "<p>Describes the pending maintenance actions for a resource.</p>",
1365
- "refs": {
1366
- "PendingMaintenanceActions$member": null,
1367
- "ApplyPendingMaintenanceActionResult$ResourcePendingMaintenanceActions": null
1368
- }
1369
- },
1370
- "RestoreDBInstanceFromDBSnapshotMessage": {
1371
- "base": "<p></p>",
1372
- "refs": {
1373
- }
1374
- },
1375
- "RestoreDBInstanceToPointInTimeMessage": {
1376
- "base": "<p></p>",
1377
- "refs": {
1378
- }
1379
- },
1380
- "RevokeDBSecurityGroupIngressMessage": {
1381
- "base": "<p></p>",
1382
- "refs": {
1383
- }
1384
- },
1385
- "SNSInvalidTopicFault": {
1386
- "base": "<p>SNS has responded that there is a problem with the SND topic specified.</p>",
1387
- "refs": {
1388
- }
1389
- },
1390
- "SNSNoAuthorizationFault": {
1391
- "base": "<p>You do not have permission to publish to the SNS topic ARN.</p>",
1392
- "refs": {
1393
- }
1394
- },
1395
- "SNSTopicArnNotFoundFault": {
1396
- "base": "<p>The SNS topic ARN does not exist.</p>",
1397
- "refs": {
1398
- }
1399
- },
1400
- "SnapshotQuotaExceededFault": {
1401
- "base": "<p> Request would result in user exceeding the allowed number of DB snapshots. </p>",
1402
- "refs": {
1403
- }
1404
- },
1405
- "SourceIdsList": {
1406
- "base": null,
1407
- "refs": {
1408
- "CreateEventSubscriptionMessage$SourceIds": "<p> The list of identifiers of the event sources for which events will be returned. If not specified, then all sources are included in the response. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it cannot end with a hyphen or contain two consecutive hyphens. </p> <p>Constraints:</p> <ul> <li>If SourceIds are supplied, SourceType must also be provided.</li> <li>If the source type is a DB instance, then a <code>DBInstanceIdentifier</code> must be supplied.</li> <li>If the source type is a DB security group, a <code>DBSecurityGroupName</code> must be supplied.</li> <li>If the source type is a DB parameter group, a <code>DBParameterGroupName</code> must be supplied.</li> <li>If the source type is a DB snapshot, a <code>DBSnapshotIdentifier</code> must be supplied.</li> </ul>",
1409
- "EventSubscription$SourceIdsList": "<p>A list of source IDs for the RDS event notification subscription.</p>"
1410
- }
1411
- },
1412
- "SourceNotFoundFault": {
1413
- "base": "<p>The requested source could not be found.</p>",
1414
- "refs": {
1415
- }
1416
- },
1417
- "SourceType": {
1418
- "base": null,
1419
- "refs": {
1420
- "DescribeEventsMessage$SourceType": "<p> The event source to retrieve events for. If no value is specified, all events are returned. </p>",
1421
- "Event$SourceType": "<p> Specifies the source type for this event. </p>"
1422
- }
1423
- },
1424
- "StorageQuotaExceededFault": {
1425
- "base": "<p> Request would result in user exceeding the allowed amount of storage available across all DB instances. </p>",
1426
- "refs": {
1427
- }
1428
- },
1429
- "StorageTypeNotSupportedFault": {
1430
- "base": "<p> <i>StorageType</i> specified cannot be associated with the DB Instance. </p>",
1431
- "refs": {
1432
- }
1433
- },
1434
- "String": {
1435
- "base": null,
1436
- "refs": {
1437
- "AccountQuota$AccountQuotaName": "<p>The name of the Amazon RDS quota for this AWS account.</p>",
1438
- "AddSourceIdentifierToSubscriptionMessage$SubscriptionName": "<p>The name of the RDS event notification subscription you want to add a source identifier to.</p>",
1439
- "AddSourceIdentifierToSubscriptionMessage$SourceIdentifier": "<p> The identifier of the event source to be added. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it cannot end with a hyphen or contain two consecutive hyphens. </p> <p>Constraints:</p> <ul> <li>If the source type is a DB instance, then a <code>DBInstanceIdentifier</code> must be supplied.</li> <li>If the source type is a DB security group, a <code>DBSecurityGroupName</code> must be supplied.</li> <li>If the source type is a DB parameter group, a <code>DBParameterGroupName</code> must be supplied.</li> <li>If the source type is a DB snapshot, a <code>DBSnapshotIdentifier</code> must be supplied.</li> </ul>",
1440
- "AddTagsToResourceMessage$ResourceName": "<p>The Amazon RDS resource the tags will be added to. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html#USER_Tagging.ARN\"> Constructing an RDS Amazon Resource Name (ARN)</a>.</p>",
1441
- "ApplyPendingMaintenanceActionMessage$ResourceIdentifier": "<p>The ARN of the resource that the pending maintenance action applies to.</p>",
1442
- "ApplyPendingMaintenanceActionMessage$ApplyAction": "<p>The pending maintenance action to apply to this resource.</p>",
1443
- "ApplyPendingMaintenanceActionMessage$OptInType": "<p>A value that specifies the type of opt-in request, or undoes an opt-in request. An opt-in request of type <code>immediate</code> cannot be undone.</p> <p>Valid values:</p> <ul> <li> <code>immediate</code> - Apply the maintenance action immediately.</li> <li> <code>next-maintenance</code> - Apply the maintenance action during the next maintenance window for the resource.</li> <li> <code>undo-opt-in</code> - Cancel any existing <code>next-maintenance</code> opt-in requests.</li> </ul>",
1444
- "AuthorizeDBSecurityGroupIngressMessage$DBSecurityGroupName": "<p> The name of the DB security group to add authorization to. </p>",
1445
- "AuthorizeDBSecurityGroupIngressMessage$CIDRIP": "<p> The IP range to authorize. </p>",
1446
- "AuthorizeDBSecurityGroupIngressMessage$EC2SecurityGroupName": "<p> Name of the EC2 security group to authorize. For VPC DB security groups, <code>EC2SecurityGroupId</code> must be provided. Otherwise, EC2SecurityGroupOwnerId and either <code>EC2SecurityGroupName</code> or <code>EC2SecurityGroupId</code> must be provided. </p>",
1447
- "AuthorizeDBSecurityGroupIngressMessage$EC2SecurityGroupId": "<p> Id of the EC2 security group to authorize. For VPC DB security groups, <code>EC2SecurityGroupId</code> must be provided. Otherwise, EC2SecurityGroupOwnerId and either <code>EC2SecurityGroupName</code> or <code>EC2SecurityGroupId</code> must be provided. </p>",
1448
- "AuthorizeDBSecurityGroupIngressMessage$EC2SecurityGroupOwnerId": "<p> AWS Account Number of the owner of the EC2 security group specified in the EC2SecurityGroupName parameter. The AWS Access Key ID is not an acceptable value. For VPC DB security groups, <code>EC2SecurityGroupId</code> must be provided. Otherwise, EC2SecurityGroupOwnerId and either <code>EC2SecurityGroupName</code> or <code>EC2SecurityGroupId</code> must be provided. </p>",
1449
- "AvailabilityZone$Name": "<p> The name of the availability zone. </p>",
1450
- "Certificate$CertificateIdentifier": "<p>The unique key that identifies a certificate. </p>",
1451
- "Certificate$CertificateType": "<p>The type of the certificate. </p>",
1452
- "Certificate$Thumbprint": "<p>The thumbprint of the certificate. </p>",
1453
- "CertificateMessage$Marker": "<p> An optional pagination token provided by a previous <a>DescribeCertificates</a> request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code> . </p>",
1454
- "CharacterSet$CharacterSetName": "<p> The name of the character set. </p>",
1455
- "CharacterSet$CharacterSetDescription": "<p> The description of the character set. </p>",
1456
- "CopyDBParameterGroupMessage$SourceDBParameterGroupIdentifier": "<p> The identifier or ARN for the source DB parameter group. </p> <p>Constraints:</p> <ul> <li>Must specify a valid DB parameter group.</li> <li>If the source DB parameter group is in the same region as the copy, specify a valid DB parameter group identifier, for example <code>my-db-param-group</code>, or a valid ARN.</li> <li>If the source DB parameter group is in a different region than the copy, specify a valid DB parameter group ARN, for example <code>arn:aws:rds:us-west-2:123456789012:pg:special-parameters</code>.</li> </ul>",
1457
- "CopyDBParameterGroupMessage$TargetDBParameterGroupIdentifier": "<p>The identifier for the copied DB parameter group.</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-db-parameter-group</code></p>",
1458
- "CopyDBParameterGroupMessage$TargetDBParameterGroupDescription": "<p>A description for the copied DB parameter group.</p>",
1459
- "CopyDBSnapshotMessage$SourceDBSnapshotIdentifier": "<p> The identifier for the source DB snapshot. </p> <p>Constraints:</p> <ul> <li>Must specify a valid system snapshot in the \"available\" state.</li> <li>If the source snapshot is in the same region as the copy, specify a valid DB snapshot identifier.</li> <li>If the source snapshot is in a different region than the copy, specify a valid DB snapshot ARN. For more information, go to <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html\"> Copying a DB Snapshot</a>.</li> </ul> <p>Example: <code>rds:mydb-2012-04-02-00-01</code></p> <p>Example: <code>arn:aws:rds:rr-regn-1:123456789012:snapshot:mysql-instance1-snapshot-20130805</code></p>",
1460
- "CopyDBSnapshotMessage$TargetDBSnapshotIdentifier": "<p> The identifier for the copied 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> </ul> <p>Example: <code>my-db-snapshot</code></p>",
1461
- "CopyOptionGroupMessage$SourceOptionGroupIdentifier": "<p>The identifier or ARN for the source option group. </p> <p>Constraints:</p> <ul> <li>Must specify a valid option group.</li> <li>If the source option group is in the same region as the copy, specify a valid option group identifier, for example <code>my-option-group</code>, or a valid ARN.</li> <li>If the source option group is in a different region than the copy, specify a valid option group ARN, for example <code>arn:aws:rds:us-west-2:123456789012:og:special-options</code>.</li> </ul>",
1462
- "CopyOptionGroupMessage$TargetOptionGroupIdentifier": "<p>The identifier for the copied option group. </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-option-group</code></p>",
1463
- "CopyOptionGroupMessage$TargetOptionGroupDescription": "<p>The description for the copied option group. </p>",
1464
- "CreateDBInstanceMessage$DBName": "<p>The meaning of this parameter differs according to the database engine you use.</p> <p>Type: String</p> <p> <b>MySQL</b> </p> <p>The name of the database to create when the DB instance is created. If this parameter is not specified, no database is created in the DB instance. </p> <p>Constraints:</p> <ul> <li>Must contain 1 to 64 alphanumeric characters</li> <li>Cannot be a word reserved by the specified database engine</li> </ul> <p> <b>PostgreSQL</b> </p> <p>The name of the database to create when the DB instance is created. If this parameter is not specified, no database is created in the DB instance. </p> <p>Constraints:</p> <ul> <li>Must contain 1 to 63 alphanumeric characters</li> <li>Must begin with a letter or an underscore. Subsequent characters can be letters, underscores, or digits (0-9).</li> <li>Cannot be a word reserved by the specified database engine</li> </ul> <p> <b>Oracle</b> </p> <p> The Oracle System ID (SID) of the created DB instance. </p> <p>Default: <code>ORCL</code></p> <p>Constraints:</p> <ul> <li>Cannot be longer than 8 characters</li> </ul> <p> <b>SQL Server</b> </p> <p>Not applicable. Must be null.</p>",
1465
- "CreateDBInstanceMessage$DBInstanceIdentifier": "<p> The DB instance identifier. This parameter is stored as a lowercase string. </p> <p>Constraints:</p> <ul> <li>Must contain from 1 to 63 alphanumeric characters or hyphens (1 to 15 for SQL Server).</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>mydbinstance</code></p>",
1466
- "CreateDBInstanceMessage$DBInstanceClass": "<p> The compute and memory capacity of the DB instance. </p> <p> Valid Values: <code>db.t1.micro | db.m1.small | db.m1.medium | db.m1.large | db.m1.xlarge | db.m2.xlarge |db.m2.2xlarge | db.m2.4xlarge | db.m3.medium | db.m3.large | db.m3.xlarge | db.m3.2xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge | db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small | db.t2.medium</code></p>",
1467
- "CreateDBInstanceMessage$Engine": "<p> The name of the database engine to be used for this instance. </p> <p> Valid Values: <code>MySQL</code> | <code>oracle-se1</code> | <code>oracle-se</code> | <code>oracle-ee</code> | <code>sqlserver-ee</code> | <code>sqlserver-se</code> | <code>sqlserver-ex</code> | <code>sqlserver-web</code> | <code>postgres</code></p> <p> Not every database engine is available for every AWS region. </p>",
1468
- "CreateDBInstanceMessage$MasterUsername": "<p> The name of master user for the client DB instance. </p> <p> <b>MySQL</b> </p> <p>Constraints:</p> <ul> <li>Must be 1 to 16 alphanumeric characters.</li> <li>First character must be a letter.</li> <li>Cannot be a reserved word for the chosen database engine.</li> </ul> <p>Type: String</p> <p> <b>Oracle</b> </p> <p>Constraints:</p> <ul> <li>Must be 1 to 30 alphanumeric characters.</li> <li>First character must be a letter.</li> <li>Cannot be a reserved word for the chosen database engine.</li> </ul> <p> <b>SQL Server</b> </p> <p>Constraints:</p> <ul> <li>Must be 1 to 128 alphanumeric characters.</li> <li>First character must be a letter.</li> <li>Cannot be a reserved word for the chosen database engine.</li> </ul> <p> <b>PostgreSQL</b> </p> <p>Constraints:</p> <ul> <li>Must be 1 to 63 alphanumeric characters.</li> <li>First character must be a letter.</li> <li>Cannot be a reserved word for the chosen database engine.</li> </ul>",
1469
- "CreateDBInstanceMessage$MasterUserPassword": "<p> The password for the master database user. Can be any printable ASCII character except \"/\", \"\"\", or \"@\". </p> <p>Type: String</p> <p> <b>MySQL</b> </p> <p> Constraints: Must contain from 8 to 41 characters. </p> <p> <b>Oracle</b> </p> <p> Constraints: Must contain from 8 to 30 characters. </p> <p> <b>SQL Server</b> </p> <p> Constraints: Must contain from 8 to 128 characters. </p> <p> <b>PostgreSQL</b> </p> <p> Constraints: Must contain from 8 to 128 characters. </p>",
1470
- "CreateDBInstanceMessage$AvailabilityZone": "<p> The EC2 Availability Zone that the database instance will be created in. For information on regions and Availability Zones, see <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html\">Regions and Availability Zones</a>. </p> <p> Default: A random, system-chosen Availability Zone in the endpoint's region. </p> <p> Example: <code>us-east-1d</code></p> <p> Constraint: The AvailabilityZone parameter cannot be specified if the MultiAZ parameter is set to <code>true</code>. The specified Availability Zone must be in the same region as the current endpoint. </p>",
1471
- "CreateDBInstanceMessage$DBSubnetGroupName": "<p> A DB subnet group to associate with this DB instance. </p> <p> If there is no DB subnet group, then it is a non-VPC DB instance. </p>",
1472
- "CreateDBInstanceMessage$PreferredMaintenanceWindow": "<p> The weekly time range (in UTC) during which system maintenance can occur. For more information, see <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBMaintenance.html\">DB Instance Maintenance</a>. </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. To see the time blocks available, see <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html\"> Adjusting the Preferred Maintenance Window</a> in the Amazon RDS User Guide. </p> <p>Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun</p> <p>Constraints: Minimum 30-minute window.</p>",
1473
- "CreateDBInstanceMessage$DBParameterGroupName": "<p> The name of the DB parameter group to associate with this DB instance. If this argument is omitted, the default DBParameterGroup for the specified engine will be used. </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>",
1474
- "CreateDBInstanceMessage$PreferredBackupWindow": "<p> The daily time range during which automated backups are created if automated backups are enabled, using the <code>BackupRetentionPeriod</code> parameter. For more information, see <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.BackingUpAndRestoringAmazonRDSInstances.html\">DB Instance Backups</a>. </p> <p> Default: A 30-minute window selected at random from an 8-hour block of time per region. See the Amazon RDS User Guide for the time blocks for each region from which the default backup windows are assigned. </p> <p> Constraints: Must be in the format <code>hh24:mi-hh24:mi</code>. Times should be Universal Time Coordinated (UTC). Must not conflict with the preferred maintenance window. Must be at least 30 minutes. </p>",
1475
- "CreateDBInstanceMessage$EngineVersion": "<p> The version number of the database engine to use. </p> <p> The following are the database engines and major and minor versions that are available with Amazon RDS. Not every database engine is available for every AWS region. </p> <p> <b>MySQL</b> </p> <ul> <li> <b>Version 5.1 (Only available in the following regions: ap-northeast-1, ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-west-1, us-west-2):</b> <code> 5.1.73a | 5.1.73b</code> </li> <li> <b>Version 5.5 (Only available in the following regions: ap-northeast-1, ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-west-1, us-west-2):</b> <code> 5.5.40 | 5.5.40a</code> </li> <li> <b>Version 5.5 (Available in all regions):</b> <code> 5.5.40b | 5.5.41</code> </li> <li> <b>Version 5.6 (Available in all regions):</b> <code> 5.6.19a | 5.6.19b | 5.6.21 | 5.6.21b | 5.6.22</code> </li> </ul> <p> <b>MySQL</b> </p> <ul> <li> <b>Version 5.1 (Only available in the following regions: ap-northeast-1, ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-west-1, us-west-2):</b> <code> 5.1.73a | 5.1.73b</code> </li> <li> <b>Version 5.5 (Only available in the following regions: ap-northeast-1, ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-west-1, us-west-2):</b> <code> 5.5.40 | 5.5.40a</code> </li> <li> <b>Version 5.5 (Available in all regions):</b> <code> 5.5.40b | 5.5.41</code> </li> <li> <b>Version 5.6 (Available in all regions):</b> <code> 5.6.19a | 5.6.19b | 5.6.21 | 5.6.21b | 5.6.22</code> </li> </ul> <p> <b>MySQL</b> </p> <ul> <li> <b>Version 5.1 (Only available in the following regions: ap-northeast-1, ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-west-1, us-west-2):</b> <code> 5.1.73a | 5.1.73b</code> </li> <li> <b>Version 5.5 (Only available in the following regions: ap-northeast-1, ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-west-1, us-west-2):</b> <code> 5.5.40 | 5.5.40a</code> </li> <li> <b>Version 5.5 (Available in all regions):</b> <code> 5.5.40b | 5.5.41</code> </li> <li> <b>Version 5.6 (Available in all regions):</b> <code> 5.6.19a | 5.6.19b | 5.6.21 | 5.6.21b | 5.6.22</code> </li> </ul> <p> <b>MySQL</b> </p> <ul> <li> <b>Version 5.1 (Only available in the following regions: ap-northeast-1, ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-west-1, us-west-2):</b> <code> 5.1.73a | 5.1.73b</code> </li> <li> <b>Version 5.5 (Only available in the following regions: ap-northeast-1, ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-west-1, us-west-2):</b> <code> 5.5.40 | 5.5.40a</code> </li> <li> <b>Version 5.5 (Available in all regions):</b> <code> 5.5.40b | 5.5.41</code> </li> <li> <b>Version 5.6 (Available in all regions):</b> <code> 5.6.19a | 5.6.19b | 5.6.21 | 5.6.21b | 5.6.22</code> </li> </ul> <p> <b>Oracle Database Enterprise Edition (oracle-ee)</b> </p> <ul> <li> <b>Version 11.2 (Only available in the following regions: ap-northeast-1, ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-west-1, us-west-2):</b> <code> 11.2.0.2.v3 | 11.2.0.2.v4 | 11.2.0.2.v5 | 11.2.0.2.v6 | 11.2.0.2.v7</code> </li> <li> <b>Version 11.2 (Available in all regions):</b> <code> 11.2.0.3.v1 | 11.2.0.3.v2 | 11.2.0.4.v1 | 11.2.0.4.v3</code> </li> </ul> <p> <b>Oracle Database Enterprise Edition (oracle-ee)</b> </p> <ul> <li> <b>Version 11.2 (Only available in the following regions: ap-northeast-1, ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-west-1, us-west-2):</b> <code> 11.2.0.2.v3 | 11.2.0.2.v4 | 11.2.0.2.v5 | 11.2.0.2.v6 | 11.2.0.2.v7</code> </li> <li> <b>Version 11.2 (Available in all regions):</b> <code> 11.2.0.3.v1 | 11.2.0.3.v2 | 11.2.0.4.v1 | 11.2.0.4.v3</code> </li> </ul> <p> <b>Oracle Database Standard Edition (oracle-se)</b> </p> <ul> <li> <b>Version 11.2 (Only available in the following regions: us-west-1):</b> <code> 11.2.0.2.v3 | 11.2.0.2.v4 | 11.2.0.2.v5 | 11.2.0.2.v6 | 11.2.0.2.v7</code> </li> <li> <b>Version 11.2 (Only available in the following regions: eu-central-1, us-west-1):</b> <code> 11.2.0.3.v1 | 11.2.0.3.v2 | 11.2.0.4.v1 | 11.2.0.4.v3</code> </li> </ul> <p> <b>Oracle Database Standard Edition (oracle-se)</b> </p> <ul> <li> <b>Version 11.2 (Only available in the following regions: us-west-1):</b> <code> 11.2.0.2.v3 | 11.2.0.2.v4 | 11.2.0.2.v5 | 11.2.0.2.v6 | 11.2.0.2.v7</code> </li> <li> <b>Version 11.2 (Only available in the following regions: eu-central-1, us-west-1):</b> <code> 11.2.0.3.v1 | 11.2.0.3.v2 | 11.2.0.4.v1 | 11.2.0.4.v3</code> </li> </ul> <p> <b>Oracle Database Standard Edition One (oracle-se1)</b> </p> <ul> <li> <b>Version 11.2 (Only available in the following regions: us-west-1):</b> <code> 11.2.0.2.v3 | 11.2.0.2.v4 | 11.2.0.2.v5 | 11.2.0.2.v6 | 11.2.0.2.v7</code> </li> <li> <b>Version 11.2 (Only available in the following regions: eu-central-1, us-west-1):</b> <code> 11.2.0.3.v1 | 11.2.0.3.v2 | 11.2.0.4.v1 | 11.2.0.4.v3</code> </li> </ul> <p> <b>Oracle Database Standard Edition One (oracle-se1)</b> </p> <ul> <li> <b>Version 11.2 (Only available in the following regions: us-west-1):</b> <code> 11.2.0.2.v3 | 11.2.0.2.v4 | 11.2.0.2.v5 | 11.2.0.2.v6 | 11.2.0.2.v7</code> </li> <li> <b>Version 11.2 (Only available in the following regions: eu-central-1, us-west-1):</b> <code> 11.2.0.3.v1 | 11.2.0.3.v2 | 11.2.0.4.v1 | 11.2.0.4.v3</code> </li> </ul> <p> <b>PostgreSQL</b> </p> <ul> <li> <b>Version 9.3 (Only available in the following regions: ap-northeast-1, ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-west-1, us-west-2):</b> <code> 9.3.1 | 9.3.2</code> </li> <li> <b>Version 9.3 (Available in all regions):</b> <code> 9.3.3 | 9.3.5</code> </li> </ul> <p> <b>PostgreSQL</b> </p> <ul> <li> <b>Version 9.3 (Only available in the following regions: ap-northeast-1, ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-west-1, us-west-2):</b> <code> 9.3.1 | 9.3.2</code> </li> <li> <b>Version 9.3 (Available in all regions):</b> <code> 9.3.3 | 9.3.5</code> </li> </ul> <p> <b>Microsoft SQL Server Enterprise Edition (sqlserver-ee)</b> </p> <ul> <li> <b>Version 10.50 (Only available in the following regions: eu-central-1, us-west-1):</b> <code> 10.50.2789.0.v1</code> </li> <li> <b>Version 11.00 (Only available in the following regions: eu-central-1, us-west-1):</b> <code> 11.00.2100.60.v1</code> </li> </ul> <p> <b>Microsoft SQL Server Enterprise Edition (sqlserver-ee)</b> </p> <ul> <li> <b>Version 10.50 (Only available in the following regions: eu-central-1, us-west-1):</b> <code> 10.50.2789.0.v1</code> </li> <li> <b>Version 11.00 (Only available in the following regions: eu-central-1, us-west-1):</b> <code> 11.00.2100.60.v1</code> </li> </ul> <p> <b>Microsoft SQL Server Express Edition (sqlserver-ex)</b> </p> <ul> <li> <b>Version 10.50 (Available in all regions):</b> <code> 10.50.2789.0.v1</code> </li> <li> <b>Version 11.00 (Available in all regions):</b> <code> 11.00.2100.60.v1</code> </li> </ul> <p> <b>Microsoft SQL Server Express Edition (sqlserver-ex)</b> </p> <ul> <li> <b>Version 10.50 (Available in all regions):</b> <code> 10.50.2789.0.v1</code> </li> <li> <b>Version 11.00 (Available in all regions):</b> <code> 11.00.2100.60.v1</code> </li> </ul> <p> <b>Microsoft SQL Server Standard Edition (sqlserver-se)</b> </p> <ul> <li> <b>Version 10.50 (Available in all regions):</b> <code> 10.50.2789.0.v1</code> </li> <li> <b>Version 11.00 (Available in all regions):</b> <code> 11.00.2100.60.v1</code> </li> </ul> <p> <b>Microsoft SQL Server Standard Edition (sqlserver-se)</b> </p> <ul> <li> <b>Version 10.50 (Available in all regions):</b> <code> 10.50.2789.0.v1</code> </li> <li> <b>Version 11.00 (Available in all regions):</b> <code> 11.00.2100.60.v1</code> </li> </ul> <p> <b>Microsoft SQL Server Web Edition (sqlserver-web)</b> </p> <ul> <li> <b>Version 10.50 (Available in all regions):</b> <code> 10.50.2789.0.v1</code> </li> <li> <b>Version 11.00 (Available in all regions):</b> <code> 11.00.2100.60.v1</code> </li> </ul> <p> <b>Microsoft SQL Server Web Edition (sqlserver-web)</b> </p> <ul> <li> <b>Version 10.50 (Available in all regions):</b> <code> 10.50.2789.0.v1</code> </li> <li> <b>Version 11.00 (Available in all regions):</b> <code> 11.00.2100.60.v1</code> </li> </ul>",
1476
- "CreateDBInstanceMessage$LicenseModel": "<p> License model information for this DB instance. </p> <p> Valid values: <code>license-included</code> | <code>bring-your-own-license</code> | <code>general-public-license</code></p>",
1477
- "CreateDBInstanceMessage$OptionGroupName": "<p> Indicates that the DB instance should be associated with the specified option group. </p> <p> Permanent options, such as the TDE option for Oracle Advanced Security TDE, cannot be removed from an option group, and that option group cannot be removed from a DB instance once it is associated with a DB instance </p>",
1478
- "CreateDBInstanceMessage$CharacterSetName": "<p> For supported engines, indicates that the DB instance should be associated with the specified CharacterSet. </p>",
1479
- "CreateDBInstanceMessage$StorageType": "<p> Specifies the storage type to be associated with the DB instance. </p> <p> Valid values: <code>standard | gp2 | io1</code></p> <p> If you specify <code>io1</code>, you must also include a value for the <code>Iops</code> parameter. </p> <p> Default: <code>io1</code> if the <code>Iops</code> parameter is specified; otherwise <code>standard</code></p>",
1480
- "CreateDBInstanceMessage$TdeCredentialArn": "<p> The ARN from the Key Store with which to associate the instance for TDE encryption. </p>",
1481
- "CreateDBInstanceMessage$TdeCredentialPassword": "<p> The password for the given ARN from the Key Store in order to access the device. </p>",
1482
- "CreateDBInstanceMessage$KmsKeyId": "<p> The KMS key identifier for an encrypted DB instance. </p> <p>The KMS key identifier is the Amazon Resoure Name (ARN) for the KMS encryption key. If you are creating a DB instance with the same AWS account that owns the KMS encryption key used to encrypt the new DB instance, then you can use the KMS key alias instead of the ARN for the KM encryption key.</p> <p>If the <code>StorageEncrypted</code> parameter is true, and you do not specify a value for the <code>KmsKeyId</code> parameter, then Amazon RDS will use your default encryption key. AWS KMS creates the default encryption key for your AWS account. Your AWS account has a different default encryption key for each AWS region.</p>",
1483
- "CreateDBInstanceReadReplicaMessage$DBInstanceIdentifier": "<p> The DB instance identifier of the Read Replica. This is the unique key that identifies a DB instance. This parameter is stored as a lowercase string. </p>",
1484
- "CreateDBInstanceReadReplicaMessage$SourceDBInstanceIdentifier": "<p> The identifier of the DB instance that will act as the source for the Read Replica. Each DB instance can have up to five Read Replicas. </p> <p>Constraints:</p> <ul> <li>Must be the identifier of an existing DB instance.</li> <li>Can specify a DB instance that is a MySQL Read Replica only if the source is running MySQL 5.6.</li> <li>Can specify a DB instance that is a PostgreSQL Read Replica only if the source is running PostgreSQL 9.3.5.</li> <li>The specified DB instance must have automatic backups enabled, its backup retention period must be greater than 0.</li> <li>If the source DB instance is in the same region as the Read Replica, specify a valid DB instance identifier.</li> <li>If the source DB instance is in a different region than the Read Replica, specify a valid DB instance ARN. For more information, go to <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html#USER_Tagging.ARN\"> Constructing a Amazon RDS Amazon Resource Name (ARN)</a>.</li> </ul>",
1485
- "CreateDBInstanceReadReplicaMessage$DBInstanceClass": "<p> The compute and memory capacity of the Read Replica. </p> <p> Valid Values: <code>db.m1.small | db.m1.medium | db.m1.large | db.m1.xlarge | db.m2.xlarge |db.m2.2xlarge | db.m2.4xlarge | db.m3.medium | db.m3.large | db.m3.xlarge | db.m3.2xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge | db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small | db.t2.medium</code></p> <p>Default: Inherits from the source DB instance.</p>",
1486
- "CreateDBInstanceReadReplicaMessage$AvailabilityZone": "<p> The Amazon EC2 Availability Zone that the Read Replica will be created in. </p> <p> Default: A random, system-chosen Availability Zone in the endpoint's region. </p> <p> Example: <code>us-east-1d</code></p>",
1487
- "CreateDBInstanceReadReplicaMessage$OptionGroupName": "<p> The option group the DB instance will be associated with. If omitted, the default option group for the engine specified will be used. </p>",
1488
- "CreateDBInstanceReadReplicaMessage$DBSubnetGroupName": "<p> Specifies a DB subnet group for the DB instance. The new DB instance will be created in the VPC associated with the DB subnet group. If no DB subnet group is specified, then the new DB instance is not created in a VPC. </p> <p>Constraints:</p> <ul> <li>Can only be specified if the source DB instance identifier specifies a DB instance in another region.</li> <li>The specified DB subnet group must be in the same region in which the operation is running.</li> <li> All Read Replicas in one region that are created from the same source DB instance must either: <ul> <li>Specify DB subnet groups from the same VPC. All these Read Replicas will be created in the same VPC.</li> <li>Not specify a DB subnet group. All these Read Replicas will be created outside of any VPC.</li> </ul> </li> </ul>",
1489
- "CreateDBInstanceReadReplicaMessage$StorageType": "<p> Specifies the storage type to be associated with the Read Replica. </p> <p> Valid values: <code>standard | gp2 | io1</code></p> <p> If you specify <code>io1</code>, you must also include a value for the <code>Iops</code> parameter. </p> <p> Default: <code>io1</code> if the <code>Iops</code> parameter is specified; otherwise <code>standard</code></p>",
1490
- "CreateDBParameterGroupMessage$DBParameterGroupName": "<p> The name of the DB parameter group. </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> <note>This value is stored as a lower-case string.</note>",
1491
- "CreateDBParameterGroupMessage$DBParameterGroupFamily": "<p> The DB parameter group family name. A DB parameter group can be associated with one and only one DB parameter group family, and can be applied only to a DB instance running a database engine and engine version compatible with that DB parameter group family. </p>",
1492
- "CreateDBParameterGroupMessage$Description": "<p> The description for the DB parameter group. </p>",
1493
- "CreateDBSecurityGroupMessage$DBSecurityGroupName": "<p> The name for the DB security group. This value is stored as a lowercase string. </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> <li>Must not be \"Default\"</li> <li>May not contain spaces</li> </ul> <p>Example: <code>mysecuritygroup</code></p>",
1494
- "CreateDBSecurityGroupMessage$DBSecurityGroupDescription": "<p> The description for the DB security group. </p>",
1495
- "CreateDBSnapshotMessage$DBSnapshotIdentifier": "<p> The identifier for the DB 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> </ul> <p>Example: <code>my-snapshot-id</code></p>",
1496
- "CreateDBSnapshotMessage$DBInstanceIdentifier": "<p> The DB instance identifier. This is the unique key that identifies a DB instance. </p> <p>Constraints:</p> <ul> <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>",
1497
- "CreateDBSubnetGroupMessage$DBSubnetGroupName": "<p> The name for the DB subnet group. This value is stored as a lowercase string. </p> <p>Constraints: Must contain no more than 255 alphanumeric characters or hyphens. Must not be \"Default\".</p> <p>Example: <code>mySubnetgroup</code></p>",
1498
- "CreateDBSubnetGroupMessage$DBSubnetGroupDescription": "<p> The description for the DB subnet group. </p>",
1499
- "CreateEventSubscriptionMessage$SubscriptionName": "<p>The name of the subscription. </p> <p>Constraints: The name must be less than 255 characters. </p>",
1500
- "CreateEventSubscriptionMessage$SnsTopicArn": "<p> The Amazon Resource Name (ARN) of the SNS topic created for event notification. The ARN is created by Amazon SNS when you create a topic and subscribe to it. </p>",
1501
- "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 DB instance, you would set this parameter to db-instance. if this value is not specified, all events are returned. </p> <p>Valid values: db-instance | db-parameter-group | db-security-group | db-snapshot</p>",
1502
- "CreateOptionGroupMessage$OptionGroupName": "<p> Specifies the name of the option group to be created. </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> <p>Example: <code>myoptiongroup</code></p>",
1503
- "CreateOptionGroupMessage$EngineName": "<p> Specifies the name of the engine that this option group should be associated with. </p>",
1504
- "CreateOptionGroupMessage$MajorEngineVersion": "<p> Specifies the major version of the engine that this option group should be associated with. </p>",
1505
- "CreateOptionGroupMessage$OptionGroupDescription": "<p> The description of the option group. </p>",
1506
- "DBEngineVersion$Engine": "<p> The name of the database engine. </p>",
1507
- "DBEngineVersion$EngineVersion": "<p> The version number of the database engine. </p>",
1508
- "DBEngineVersion$DBParameterGroupFamily": "<p> The name of the DB parameter group family for the database engine. </p>",
1509
- "DBEngineVersion$DBEngineDescription": "<p> The description of the database engine. </p>",
1510
- "DBEngineVersion$DBEngineVersionDescription": "<p> The description of the database engine version. </p>",
1511
- "DBEngineVersionMessage$Marker": "<p> An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1512
- "DBInstance$DBInstanceIdentifier": "<p> Contains a user-supplied database identifier. This is the unique key that identifies a DB instance. </p>",
1513
- "DBInstance$DBInstanceClass": "<p> Contains the name of the compute and memory capacity class of the DB instance. </p>",
1514
- "DBInstance$Engine": "<p> Provides the name of the database engine to be used for this DB instance. </p>",
1515
- "DBInstance$DBInstanceStatus": "<p> Specifies the current state of this database. </p>",
1516
- "DBInstance$MasterUsername": "<p> Contains the master username for the DB instance. </p>",
1517
- "DBInstance$DBName": "<p>The meaning of this parameter differs according to the database engine you use. For example, this value returns either MySQL or PostgreSQL information when returning values from CreateDBInstanceReadReplica since Read Replicas are only supported for MySQL and PostgreSQL.</p> <p> <b>MySQL, SQL Server, PostgreSQL</b> </p> <p> Contains the name of the initial database of this instance that was provided at create time, if one was specified when the DB instance was created. This same name is returned for the life of the DB instance. </p> <p>Type: String</p> <p> <b>Oracle</b> </p> <p> Contains the Oracle System ID (SID) of the created DB instance. Not shown when the returned parameters do not apply to an Oracle DB instance. </p>",
1518
- "DBInstance$PreferredBackupWindow": "<p> Specifies the daily time range during which automated backups are created if automated backups are enabled, as determined by the <code>BackupRetentionPeriod</code>. </p>",
1519
- "DBInstance$AvailabilityZone": "<p> Specifies the name of the Availability Zone the DB instance is located in. </p>",
1520
- "DBInstance$PreferredMaintenanceWindow": "<p> Specifies the weekly time range (in UTC) during which system maintenance can occur. </p>",
1521
- "DBInstance$EngineVersion": "<p> Indicates the database engine version. </p>",
1522
- "DBInstance$ReadReplicaSourceDBInstanceIdentifier": "<p> Contains the identifier of the source DB instance if this DB instance is a Read Replica. </p>",
1523
- "DBInstance$LicenseModel": "<p> License model information for this DB instance. </p>",
1524
- "DBInstance$CharacterSetName": "<p> If present, specifies the name of the character set that this instance is associated with. </p>",
1525
- "DBInstance$SecondaryAvailabilityZone": "<p> If present, specifies the name of the secondary Availability Zone for a DB instance with multi-AZ support. </p>",
1526
- "DBInstance$StorageType": "<p> Specifies the storage type associated with DB instance. </p>",
1527
- "DBInstance$TdeCredentialArn": "<p> The ARN from the Key Store with which the instance is associated for TDE encryption. </p>",
1528
- "DBInstance$KmsKeyId": "<p> If <code>StorageEncrypted</code> is true, the KMS key identifier for the encrypted DB instance. </p>",
1529
- "DBInstance$DbiResourceId": "<p> If <code>StorageEncrypted</code> is true, the region-unique, immutable identifier for the encrypted DB instance. This identifier is found in AWS CloudTrail log entries whenever the KMS key for the DB instance is accessed. </p>",
1530
- "DBInstance$CACertificateIdentifier": "<p>The identifier of the CA certificate for this DB instance.</p>",
1531
- "DBInstanceMessage$Marker": "<p> An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code> . </p>",
1532
- "DBInstanceStatusInfo$StatusType": "<p> This value is currently \"read replication.\" </p>",
1533
- "DBInstanceStatusInfo$Status": "<p> Status of the DB instance. For a StatusType of read replica, the values can be replicating, error, stopped, or terminated. </p>",
1534
- "DBInstanceStatusInfo$Message": "<p> Details of the error if there is an error for the instance. If the instance is not in an error state, this value is blank. </p>",
1535
- "DBParameterGroup$DBParameterGroupName": "<p>Provides the name of the DB parameter group. </p>",
1536
- "DBParameterGroup$DBParameterGroupFamily": "<p>Provides the name of the DB parameter group family that this DB parameter group is compatible with. </p>",
1537
- "DBParameterGroup$Description": "<p>Provides the customer-specified description for this DB parameter group. </p>",
1538
- "DBParameterGroupDetails$Marker": "<p> An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1539
- "DBParameterGroupNameMessage$DBParameterGroupName": "<p> The name of the DB parameter group. </p>",
1540
- "DBParameterGroupStatus$DBParameterGroupName": "<p> The name of the DP parameter group. </p>",
1541
- "DBParameterGroupStatus$ParameterApplyStatus": "<p> The status of parameter updates. </p>",
1542
- "DBParameterGroupsMessage$Marker": "<p> An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1543
- "DBSecurityGroup$OwnerId": "<p> Provides the AWS ID of the owner of a specific DB security group. </p>",
1544
- "DBSecurityGroup$DBSecurityGroupName": "<p> Specifies the name of the DB security group. </p>",
1545
- "DBSecurityGroup$DBSecurityGroupDescription": "<p> Provides the description of the DB security group. </p>",
1546
- "DBSecurityGroup$VpcId": "<p> Provides the VpcId of the DB security group. </p>",
1547
- "DBSecurityGroupMembership$DBSecurityGroupName": "<p> The name of the DB security group. </p>",
1548
- "DBSecurityGroupMembership$Status": "<p> The status of the DB security group. </p>",
1549
- "DBSecurityGroupMessage$Marker": "<p> An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1550
- "DBSecurityGroupNameList$member": null,
1551
- "DBSnapshot$DBSnapshotIdentifier": "<p> Specifies the identifier for the DB snapshot. </p>",
1552
- "DBSnapshot$DBInstanceIdentifier": "<p> Specifies the DB instance identifier of the DB instance this DB snapshot was created from. </p>",
1553
- "DBSnapshot$Engine": "<p> Specifies the name of the database engine. </p>",
1554
- "DBSnapshot$Status": "<p> Specifies the status of this DB snapshot. </p>",
1555
- "DBSnapshot$AvailabilityZone": "<p> Specifies the name of the Availability Zone the DB instance was located in at the time of the DB snapshot. </p>",
1556
- "DBSnapshot$VpcId": "<p> Provides the Vpc Id associated with the DB snapshot. </p>",
1557
- "DBSnapshot$MasterUsername": "<p> Provides the master username for the DB snapshot. </p>",
1558
- "DBSnapshot$EngineVersion": "<p> Specifies the version of the database engine. </p>",
1559
- "DBSnapshot$LicenseModel": "<p> License model information for the restored DB instance. </p>",
1560
- "DBSnapshot$SnapshotType": "<p> Provides the type of the DB snapshot. </p>",
1561
- "DBSnapshot$OptionGroupName": "<p> Provides the option group name for the DB snapshot. </p>",
1562
- "DBSnapshot$SourceRegion": "<p> The region that the DB snapshot was created in or copied from. </p>",
1563
- "DBSnapshot$StorageType": "<p> Specifies the storage type associated with DB Snapshot. </p>",
1564
- "DBSnapshot$TdeCredentialArn": "<p> The ARN from the Key Store with which to associate the instance for TDE encryption. </p>",
1565
- "DBSnapshot$KmsKeyId": "<p> If <code>Encrypted</code> is true, the KMS key identifier for the encrypted DB snapshot. </p>",
1566
- "DBSnapshotMessage$Marker": "<p> An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1567
- "DBSubnetGroup$DBSubnetGroupName": "<p> Specifies the name of the DB subnet group. </p>",
1568
- "DBSubnetGroup$DBSubnetGroupDescription": "<p> Provides the description of the DB subnet group. </p>",
1569
- "DBSubnetGroup$VpcId": "<p> Provides the VpcId of the DB subnet group. </p>",
1570
- "DBSubnetGroup$SubnetGroupStatus": "<p> Provides the status of the DB subnet group. </p>",
1571
- "DBSubnetGroupMessage$Marker": "<p> An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1572
- "DeleteDBInstanceMessage$DBInstanceIdentifier": "<p> The DB instance identifier for the DB instance to be deleted. This parameter isn't case sensitive. </p> <p>Constraints:</p> <ul> <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>",
1573
- "DeleteDBInstanceMessage$FinalDBSnapshotIdentifier": "<p> The DBSnapshotIdentifier of the new DBSnapshot created when SkipFinalSnapshot is set to <code>false</code>. </p> <note> Specifying this parameter and also setting the SkipFinalShapshot parameter to true results in an error. </note> <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> <li>Cannot be specified when deleting a Read Replica.</li> </ul>",
1574
- "DeleteDBParameterGroupMessage$DBParameterGroupName": "<p> The name of the DB parameter group. </p> <p>Constraints:</p> <ul> <li>Must be the name of an existing DB parameter group</li> <li>You cannot delete a default DB parameter group</li> <li>Cannot be associated with any DB instances</li> </ul>",
1575
- "DeleteDBSecurityGroupMessage$DBSecurityGroupName": "<p> The name of the DB security group to delete. </p> <note>You cannot delete the default DB security group.</note> <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> <li>Must not be \"Default\"</li> <li>May not contain spaces</li> </ul>",
1576
- "DeleteDBSnapshotMessage$DBSnapshotIdentifier": "<p> The DBSnapshot identifier. </p> <p>Constraints: Must be the name of an existing DB snapshot in the <code>available</code> state.</p>",
1577
- "DeleteDBSubnetGroupMessage$DBSubnetGroupName": "<p> The name of the database subnet group to delete. </p> <note>You cannot delete the default subnet group.</note> <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>",
1578
- "DeleteEventSubscriptionMessage$SubscriptionName": "<p>The name of the RDS event notification subscription you want to delete.</p>",
1579
- "DeleteOptionGroupMessage$OptionGroupName": "<p> The name of the option group to be deleted. </p> <note>You cannot delete default option groups.</note>",
1580
- "DescribeCertificatesMessage$CertificateIdentifier": "<p> The user-supplied certificate identifier. If this parameter is specified, information for only the identified certificate is returned. This parameter isn't case-sensitive. </p> <p>Constraints:</p> <ul> <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>",
1581
- "DescribeCertificatesMessage$Marker": "<p> An optional pagination token provided by a previous <a>DescribeCertificates</a> request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1582
- "DescribeDBEngineVersionsMessage$Engine": "<p> The database engine to return. </p>",
1583
- "DescribeDBEngineVersionsMessage$EngineVersion": "<p> The database engine version to return. </p> <p>Example: <code>5.1.49</code></p>",
1584
- "DescribeDBEngineVersionsMessage$DBParameterGroupFamily": "<p> The name of a specific DB 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>",
1585
- "DescribeDBEngineVersionsMessage$Marker": "<p> An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1586
- "DescribeDBInstancesMessage$DBInstanceIdentifier": "<p> The user-supplied instance identifier. If this parameter is specified, information from only the specific DB instance is returned. This parameter isn't case sensitive. </p> <p>Constraints:</p> <ul> <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>",
1587
- "DescribeDBInstancesMessage$Marker": "<p> An optional pagination token provided by a previous DescribeDBInstances request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code> . </p>",
1588
- "DescribeDBLogFilesDetails$LogFileName": "<p> The name of the log file for the specified DB instance. </p>",
1589
- "DescribeDBLogFilesMessage$DBInstanceIdentifier": "<p> The customer-assigned name of the DB instance that contains the log files you want to list. </p> <p>Constraints:</p> <ul> <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>",
1590
- "DescribeDBLogFilesMessage$FilenameContains": "<p> Filters the available log files for log file names that contain the specified string. </p>",
1591
- "DescribeDBLogFilesMessage$Marker": "<p> The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords. </p>",
1592
- "DescribeDBLogFilesResponse$Marker": "<p> A pagination token that can be used in a subsequent DescribeDBLogFiles request. </p>",
1593
- "DescribeDBParameterGroupsMessage$DBParameterGroupName": "<p> The name of a specific DB parameter group 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>",
1594
- "DescribeDBParameterGroupsMessage$Marker": "<p> An optional pagination token provided by a previous <code>DescribeDBParameterGroups</code> request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1595
- "DescribeDBParametersMessage$DBParameterGroupName": "<p> The name of a specific DB parameter group 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>",
1596
- "DescribeDBParametersMessage$Source": "<p> The parameter types to return. </p> <p>Default: All parameter types returned</p> <p>Valid Values: <code>user | system | engine-default</code></p>",
1597
- "DescribeDBParametersMessage$Marker": "<p> An optional pagination token provided by a previous <code>DescribeDBParameters</code> request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1598
- "DescribeDBSecurityGroupsMessage$DBSecurityGroupName": "<p> The name of the DB security group to return details for. </p>",
1599
- "DescribeDBSecurityGroupsMessage$Marker": "<p> An optional pagination token provided by a previous DescribeDBSecurityGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1600
- "DescribeDBSnapshotsMessage$DBInstanceIdentifier": "<p> A DB instance identifier to retrieve the list of DB snapshots for. Cannot be used in conjunction with <code>DBSnapshotIdentifier</code>. This parameter is not case sensitive. </p> <p>Constraints:</p> <ul> <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>",
1601
- "DescribeDBSnapshotsMessage$DBSnapshotIdentifier": "<p> A specific DB snapshot identifier to describe. Cannot be used in conjunction with <code>DBInstanceIdentifier</code>. This value is stored as a lowercase string. </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> <li>If this is the identifier of an automated snapshot, the <code>SnapshotType</code> parameter must also be specified.</li> </ul>",
1602
- "DescribeDBSnapshotsMessage$SnapshotType": "<p> The type of snapshots that will be returned. Values can be \"automated\" or \"manual.\" If not specified, the returned results will include all snapshots types. </p>",
1603
- "DescribeDBSnapshotsMessage$Marker": "<p> An optional pagination token provided by a previous <code>DescribeDBSnapshots</code> request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1604
- "DescribeDBSubnetGroupsMessage$DBSubnetGroupName": "<p> The name of the DB subnet group to return details for. </p>",
1605
- "DescribeDBSubnetGroupsMessage$Marker": "<p> An optional pagination token provided by a previous DescribeDBSubnetGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1606
- "DescribeEngineDefaultParametersMessage$DBParameterGroupFamily": "<p> The name of the DB parameter group family. </p>",
1607
- "DescribeEngineDefaultParametersMessage$Marker": "<p> An optional pagination token provided by a previous <code>DescribeEngineDefaultParameters</code> request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1608
- "DescribeEventCategoriesMessage$SourceType": "<p> The type of source that will be generating the events. </p> <p>Valid values: db-instance | db-parameter-group | db-security-group | db-snapshot</p>",
1609
- "DescribeEventSubscriptionsMessage$SubscriptionName": "<p>The name of the RDS event notification subscription you want to describe.</p>",
1610
- "DescribeEventSubscriptionsMessage$Marker": "<p> An optional pagination token provided by a previous DescribeOrderableDBInstanceOptions request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code> . </p>",
1611
- "DescribeEventsMessage$SourceIdentifier": "<p> The identifier of the event source for which events will be returned. If not specified, then all sources are included in the response. </p> <p>Constraints:</p> <ul> <li>If SourceIdentifier is supplied, SourceType must also be provided.</li> <li>If the source type is <code>DBInstance</code>, then a <code>DBInstanceIdentifier</code> must be supplied.</li> <li>If the source type is <code>DBSecurityGroup</code>, a <code>DBSecurityGroupName</code> must be supplied.</li> <li>If the source type is <code>DBParameterGroup</code>, a <code>DBParameterGroupName</code> must be supplied.</li> <li>If the source type is <code>DBSnapshot</code>, a <code>DBSnapshotIdentifier</code> must be supplied.</li> <li>Cannot end with a hyphen or contain two consecutive hyphens.</li> </ul>",
1612
- "DescribeEventsMessage$Marker": "<p> An optional pagination token provided by a previous DescribeEvents request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1613
- "DescribeOptionGroupOptionsMessage$EngineName": "<p> A required parameter. Options available for the given Engine name will be described. </p>",
1614
- "DescribeOptionGroupOptionsMessage$MajorEngineVersion": "<p> If specified, filters the results to include only options for the specified major engine version. </p>",
1615
- "DescribeOptionGroupOptionsMessage$Marker": "<p>An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>",
1616
- "DescribeOptionGroupsMessage$OptionGroupName": "<p> The name of the option group to describe. Cannot be supplied together with EngineName or MajorEngineVersion. </p>",
1617
- "DescribeOptionGroupsMessage$Marker": "<p> An optional pagination token provided by a previous DescribeOptionGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1618
- "DescribeOptionGroupsMessage$EngineName": "<p> Filters the list of option groups to only include groups associated with a specific database engine. </p>",
1619
- "DescribeOptionGroupsMessage$MajorEngineVersion": "<p> Filters the list of option groups to only include groups associated with a specific database engine version. If specified, then EngineName must also be specified. </p>",
1620
- "DescribeOrderableDBInstanceOptionsMessage$Engine": "<p> The name of the engine to retrieve DB instance options for. </p>",
1621
- "DescribeOrderableDBInstanceOptionsMessage$EngineVersion": "<p> The engine version filter value. Specify this parameter to show only the available offerings matching the specified engine version. </p>",
1622
- "DescribeOrderableDBInstanceOptionsMessage$DBInstanceClass": "<p> The DB instance class filter value. Specify this parameter to show only the available offerings matching the specified DB instance class. </p>",
1623
- "DescribeOrderableDBInstanceOptionsMessage$LicenseModel": "<p> The license model filter value. Specify this parameter to show only the available offerings matching the specified license model. </p>",
1624
- "DescribeOrderableDBInstanceOptionsMessage$Marker": "<p> An optional pagination token provided by a previous DescribeOrderableDBInstanceOptions request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code> . </p>",
1625
- "DescribePendingMaintenanceActionsMessage$ResourceIdentifier": "<p>The ARN of a resource to return pending maintenance actions for.</p>",
1626
- "DescribePendingMaintenanceActionsMessage$Marker": "<p> An optional pagination token provided by a previous <code>DescribePendingMaintenanceActions</code> request. If this parameter is specified, the response includes only records beyond the marker, up to a number of records specified by <code>MaxRecords</code>. </p>",
1627
- "DescribeReservedDBInstancesMessage$ReservedDBInstanceId": "<p> The reserved DB instance identifier filter value. Specify this parameter to show only the reservation that matches the specified reservation ID. </p>",
1628
- "DescribeReservedDBInstancesMessage$ReservedDBInstancesOfferingId": "<p> The offering identifier filter value. Specify this parameter to show only purchased reservations matching the specified offering identifier. </p>",
1629
- "DescribeReservedDBInstancesMessage$DBInstanceClass": "<p> The DB instance class filter value. Specify this parameter to show only those reservations matching the specified DB instances class. </p>",
1630
- "DescribeReservedDBInstancesMessage$Duration": "<p> The duration filter value, specified in years or seconds. Specify this parameter to show only reservations for this duration. </p> <p>Valid Values: <code>1 | 3 | 31536000 | 94608000</code></p>",
1631
- "DescribeReservedDBInstancesMessage$ProductDescription": "<p> The product description filter value. Specify this parameter to show only those reservations matching the specified product description. </p>",
1632
- "DescribeReservedDBInstancesMessage$OfferingType": "<p> The offering type filter value. Specify this parameter to show only the available offerings matching the specified offering type. </p> <p>Valid Values: <code>\"Light Utilization\" | \"Medium Utilization\" | \"Heavy Utilization\" </code></p>",
1633
- "DescribeReservedDBInstancesMessage$Marker": "<p> An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1634
- "DescribeReservedDBInstancesOfferingsMessage$ReservedDBInstancesOfferingId": "<p> The offering identifier filter value. Specify this parameter to show only the available offering that matches the specified reservation identifier. </p> <p>Example: <code>438012d3-4052-4cc7-b2e3-8d3372e0e706</code></p>",
1635
- "DescribeReservedDBInstancesOfferingsMessage$DBInstanceClass": "<p> The DB instance class filter value. Specify this parameter to show only the available offerings matching the specified DB instance class. </p>",
1636
- "DescribeReservedDBInstancesOfferingsMessage$Duration": "<p> Duration filter value, specified in years or seconds. Specify this parameter to show only reservations for this duration. </p> <p>Valid Values: <code>1 | 3 | 31536000 | 94608000</code></p>",
1637
- "DescribeReservedDBInstancesOfferingsMessage$ProductDescription": "<p> Product description filter value. Specify this parameter to show only the available offerings matching the specified product description. </p>",
1638
- "DescribeReservedDBInstancesOfferingsMessage$OfferingType": "<p> The offering type filter value. Specify this parameter to show only the available offerings matching the specified offering type. </p> <p>Valid Values: <code>\"Light Utilization\" | \"Medium Utilization\" | \"Heavy Utilization\" </code></p>",
1639
- "DescribeReservedDBInstancesOfferingsMessage$Marker": "<p> An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1640
- "DownloadDBLogFilePortionDetails$LogFileData": "<p> Entries from the specified log file. </p>",
1641
- "DownloadDBLogFilePortionDetails$Marker": "<p> A pagination token that can be used in a subsequent DownloadDBLogFilePortion request. </p>",
1642
- "DownloadDBLogFilePortionMessage$DBInstanceIdentifier": "<p> The customer-assigned name of the DB instance that contains the log files you want to list. </p> <p>Constraints:</p> <ul> <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>",
1643
- "DownloadDBLogFilePortionMessage$LogFileName": "<p> The name of the log file to be downloaded. </p>",
1644
- "DownloadDBLogFilePortionMessage$Marker": "<p> The pagination token provided in the previous request or \"0\". If the Marker parameter is specified the response includes only records beyond the marker until the end of the file or up to NumberOfLines. </p>",
1645
- "EC2SecurityGroup$Status": "<p> Provides the status of the EC2 security group. Status can be \"authorizing\", \"authorized\", \"revoking\", and \"revoked\". </p>",
1646
- "EC2SecurityGroup$EC2SecurityGroupName": "<p> Specifies the name of the EC2 security group. </p>",
1647
- "EC2SecurityGroup$EC2SecurityGroupId": "<p> Specifies the id of the EC2 security group. </p>",
1648
- "EC2SecurityGroup$EC2SecurityGroupOwnerId": "<p> Specifies the AWS ID of the owner of the EC2 security group specified in the <code>EC2SecurityGroupName</code> field. </p>",
1649
- "Endpoint$Address": "<p> Specifies the DNS address of the DB instance. </p>",
1650
- "EngineDefaults$DBParameterGroupFamily": "<p> Specifies the name of the DB parameter group family which the engine default parameters apply to. </p>",
1651
- "EngineDefaults$Marker": "<p> An optional pagination token provided by a previous EngineDefaults request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code> . </p>",
1652
- "Event$SourceIdentifier": "<p> Provides the identifier for the source of the event. </p>",
1653
- "Event$Message": "<p> Provides the text of this event. </p>",
1654
- "EventCategoriesList$member": null,
1655
- "EventCategoriesMap$SourceType": "<p>The source type that the returned categories belong to</p>",
1656
- "EventSubscription$CustomerAwsId": "<p>The AWS customer account associated with the RDS event notification subscription.</p>",
1657
- "EventSubscription$CustSubscriptionId": "<p>The RDS event notification subscription Id.</p>",
1658
- "EventSubscription$SnsTopicArn": "<p>The topic ARN of the RDS event notification subscription.</p>",
1659
- "EventSubscription$Status": "<p>The status of the RDS event notification subscription.</p> <p>Constraints:</p> <p>Can be one of the following: creating | modifying | deleting | active | no-permission | topic-not-exist</p> <p>The status \"no-permission\" indicates that RDS no longer has permission to post to the SNS topic. The status \"topic-not-exist\" indicates that the topic was deleted after the subscription was created.</p>",
1660
- "EventSubscription$SubscriptionCreationTime": "<p>The time the RDS event notification subscription was created.</p>",
1661
- "EventSubscription$SourceType": "<p>The source type for the RDS event notification subscription.</p>",
1662
- "EventSubscriptionsMessage$Marker": "<p> An optional pagination token provided by a previous DescribeOrderableDBInstanceOptions request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1663
- "EventsMessage$Marker": "<p> An optional pagination token provided by a previous Events request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code> . </p>",
1664
- "Filter$Name": "<p>This parameter is not currently supported.</p>",
1665
- "FilterValueList$member": null,
1666
- "IPRange$Status": "<p> Specifies the status of the IP range. Status can be \"authorizing\", \"authorized\", \"revoking\", and \"revoked\". </p>",
1667
- "IPRange$CIDRIP": "<p> Specifies the IP range. </p>",
1668
- "KeyList$member": null,
1669
- "ListTagsForResourceMessage$ResourceName": "<p>The Amazon RDS resource with tags to be listed. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html#USER_Tagging.ARN\"> Constructing an RDS Amazon Resource Name (ARN)</a>.</p>",
1670
- "ModifyDBInstanceMessage$DBInstanceIdentifier": "<p> The DB instance identifier. This value is stored as a lowercase string. </p> <p>Constraints:</p> <ul> <li>Must be the identifier for an existing DB instance</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>",
1671
- "ModifyDBInstanceMessage$DBInstanceClass": "<p> The new compute and memory capacity of the DB instance. To determine the instance classes that are available for a particular DB engine, use the <a>DescribeOrderableDBInstanceOptions</a> action. </p> <p> Passing a value for this setting causes an outage during the change and is applied during the next maintenance window, unless <code>ApplyImmediately</code> is specified as <code>true</code> for this request. </p> <p>Default: Uses existing setting</p> <p>Valid Values: <code>db.t1.micro | db.m1.small | db.m1.medium | db.m1.large | db.m1.xlarge | db.m2.xlarge | db.m2.2xlarge | db.m2.4xlarge | db.m3.medium | db.m3.large | db.m3.xlarge | db.m3.2xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge | db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small | db.t2.medium</code></p>",
1672
- "ModifyDBInstanceMessage$MasterUserPassword": "<p> The new password for the DB instance master user. Can be any printable ASCII character except \"/\", \"\"\", or \"@\".</p> <p> Changing this parameter does not result in an outage and the 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. </p> <p>Default: Uses existing setting</p> <p>Constraints: Must be 8 to 41 alphanumeric characters (MySQL), 8 to 30 alphanumeric characters (Oracle), or 8 to 128 alphanumeric characters (SQL Server).</p> <note> Amazon RDS API actions never return the password, so this action provides a way to regain access to a primary instance user if the password is lost. This includes restoring privileges that may have been accidentally revoked. </note>",
1673
- "ModifyDBInstanceMessage$DBParameterGroupName": "<p> The name of the DB parameter group to apply to the DB instance. Changing this setting does not result in an outage. The parameter group name itself is changed immediately, but the actual parameter changes are not applied until you reboot the instance without failover. The db instance will NOT be rebooted automatically and the parameter changes will NOT be applied during the next maintenance window. </p> <p>Default: Uses existing setting</p> <p>Constraints: The DB parameter group must be in the same DB parameter group family as this DB instance.</p>",
1674
- "ModifyDBInstanceMessage$PreferredBackupWindow": "<p> The daily time range during which automated backups are created if automated backups are enabled, as determined by the <code>BackupRetentionPeriod</code>. Changing this parameter does not result in an outage and the change is asynchronously applied as soon as possible. </p> <p>Constraints:</p> <ul> <li>Must be in the format hh24:mi-hh24:mi</li> <li>Times should be Universal Time Coordinated (UTC)</li> <li>Must not conflict with the preferred maintenance window</li> <li>Must be at least 30 minutes</li> </ul>",
1675
- "ModifyDBInstanceMessage$PreferredMaintenanceWindow": "<p> The weekly time range (in UTC) during which system maintenance can occur, which may result in an outage. Changing this parameter does not result in an outage, except in the following situation, and the change is asynchronously applied as soon as possible. If there are pending actions that cause a reboot, and the maintenance window is changed to include the current time, then changing this parameter will cause a reboot of the DB instance. If moving this window to the current time, there must be at least 30 minutes between the current time and end of the window to ensure pending changes are applied. </p> <p>Default: Uses existing setting</p> <p>Format: ddd:hh24:mi-ddd:hh24:mi</p> <p>Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun</p> <p>Constraints: Must be at least 30 minutes</p>",
1676
- "ModifyDBInstanceMessage$EngineVersion": "<p> The version number of the database engine to upgrade to. Changing this parameter results in an outage and the change is applied during the next maintenance window unless the <code>ApplyImmediately</code> parameter is set to <code>true</code> for this request. </p> <p> For major version upgrades, if a non-default DB parameter group is currently in use, a new DB parameter group in the DB parameter group family for the new engine version must be specified. The new DB parameter group can be the default for that DB parameter group family. </p> <p>For a list of valid engine versions, see <a>CreateDBInstance</a>.</p>",
1677
- "ModifyDBInstanceMessage$OptionGroupName": "<p> Indicates that the DB instance should be associated with the specified option group. Changing this parameter does not result in an outage except in the following case and the change is applied during the next maintenance window unless the <code>ApplyImmediately</code> parameter is set to <code>true</code> for this request. If the parameter change results in an option group that enables OEM, this change can cause a brief (sub-second) period during which new connections are rejected but existing connections are not interrupted. </p> <p> Permanent options, such as the TDE option for Oracle Advanced Security TDE, cannot be removed from an option group, and that option group cannot be removed from a DB instance once it is associated with a DB instance </p>",
1678
- "ModifyDBInstanceMessage$NewDBInstanceIdentifier": "<p> The new DB instance identifier for the DB instance when renaming a DB instance. When you change the DB instance identifier, an instance reboot will occur immediately if you set <code>Apply Immediately</code> to true, or will occur during the next maintenance window if <code>Apply Immediately</code> to false. This value is stored as a lowercase string. </p> <p>Constraints:</p> <ul> <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>",
1679
- "ModifyDBInstanceMessage$StorageType": "<p> Specifies the storage type to be associated with the DB instance. </p> <p> Valid values: <code>standard | gp2 | io1</code></p> <p> If you specify <code>io1</code>, you must also include a value for the <code>Iops</code> parameter. </p> <p> Default: <code>io1</code> if the <code>Iops</code> parameter is specified; otherwise <code>standard</code></p>",
1680
- "ModifyDBInstanceMessage$TdeCredentialArn": "<p> The ARN from the Key Store with which to associate the instance for TDE encryption. </p>",
1681
- "ModifyDBInstanceMessage$TdeCredentialPassword": "<p> The password for the given ARN from the Key Store in order to access the device. </p>",
1682
- "ModifyDBInstanceMessage$CACertificateIdentifier": "<p> Indicates the certificate which needs to be associated with the instance. </p>",
1683
- "ModifyDBParameterGroupMessage$DBParameterGroupName": "<p> The name of the DB parameter group. </p> <p>Constraints:</p> <ul> <li>Must be the name of an existing DB parameter group</li> <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>",
1684
- "ModifyDBSubnetGroupMessage$DBSubnetGroupName": "<p> The name for the DB subnet group. This value is stored as a lowercase string. </p> <p>Constraints: Must contain no more than 255 alphanumeric characters or hyphens. Must not be \"Default\".</p> <p>Example: <code>mySubnetgroup</code></p>",
1685
- "ModifyDBSubnetGroupMessage$DBSubnetGroupDescription": "<p> The description for the DB subnet group. </p>",
1686
- "ModifyEventSubscriptionMessage$SubscriptionName": "<p>The name of the RDS event notification subscription.</p>",
1687
- "ModifyEventSubscriptionMessage$SnsTopicArn": "<p> The Amazon Resource Name (ARN) of the SNS topic created for event notification. The ARN is created by Amazon SNS when you create a topic and subscribe to it. </p>",
1688
- "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 DB instance, you would set this parameter to db-instance. if this value is not specified, all events are returned. </p> <p>Valid values: db-instance | db-parameter-group | db-security-group | db-snapshot</p>",
1689
- "ModifyOptionGroupMessage$OptionGroupName": "<p> The name of the option group to be modified. </p> <p> Permanent options, such as the TDE option for Oracle Advanced Security TDE, cannot be removed from an option group, and that option group cannot be removed from a DB instance once it is associated with a DB instance </p>",
1690
- "Option$OptionName": "<p> The name of the option. </p>",
1691
- "Option$OptionDescription": "<p> The description of the option. </p>",
1692
- "OptionConfiguration$OptionName": "<p> The configuration of options to include in a group. </p>",
1693
- "OptionGroup$OptionGroupName": "<p> Specifies the name of the option group. </p>",
1694
- "OptionGroup$OptionGroupDescription": "<p>Provides a description of the option group. </p>",
1695
- "OptionGroup$EngineName": "<p> Engine name that this option group can be applied to. </p>",
1696
- "OptionGroup$MajorEngineVersion": "<p> Indicates the major engine version associated with this option group. </p>",
1697
- "OptionGroup$VpcId": "<p>If <b>AllowsVpcAndNonVpcInstanceMemberships</b> is <code>false</code>, this field is blank. If <b>AllowsVpcAndNonVpcInstanceMemberships</b> is <code>true</code> and this field is blank, then this option group can be applied to both VPC and non-VPC instances. If this field contains a value, then this option group can only be applied to instances that are in the VPC indicated by this field. </p>",
1698
- "OptionGroupMembership$OptionGroupName": "<p> The name of the option group that the instance belongs to. </p>",
1699
- "OptionGroupMembership$Status": "<p> The status of the DB instance's option group membership (e.g. in-sync, pending, pending-maintenance, applying). </p>",
1700
- "OptionGroupOption$Name": "<p> The name of the option. </p>",
1701
- "OptionGroupOption$Description": "<p> The description of the option. </p>",
1702
- "OptionGroupOption$EngineName": "<p>The name of the engine that this option can be applied to. </p>",
1703
- "OptionGroupOption$MajorEngineVersion": "<p> Indicates the major engine version that the option is available for. </p>",
1704
- "OptionGroupOption$MinimumRequiredMinorEngineVersion": "<p> The minimum required engine version for the option to be applied. </p>",
1705
- "OptionGroupOptionSetting$SettingName": "<p> The name of the option group option. </p>",
1706
- "OptionGroupOptionSetting$SettingDescription": "<p> The description of the option group option. </p>",
1707
- "OptionGroupOptionSetting$DefaultValue": "<p> The default value for the option group option. </p>",
1708
- "OptionGroupOptionSetting$ApplyType": "<p> The DB engine specific parameter type for the option group option. </p>",
1709
- "OptionGroupOptionSetting$AllowedValues": "<p> Indicates the acceptable values for the option group option. </p>",
1710
- "OptionGroupOptionsMessage$Marker": "<p>An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>",
1711
- "OptionGroups$Marker": "<p>An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1712
- "OptionNamesList$member": null,
1713
- "OptionSetting$Name": "<p> The name of the option that has settings that you can set. </p>",
1714
- "OptionSetting$Value": "<p> The current value of the option setting. </p>",
1715
- "OptionSetting$DefaultValue": "<p> The default value of the option setting. </p>",
1716
- "OptionSetting$Description": "<p> The description of the option setting. </p>",
1717
- "OptionSetting$ApplyType": "<p> The DB engine specific parameter type. </p>",
1718
- "OptionSetting$DataType": "<p> The data type of the option setting. </p>",
1719
- "OptionSetting$AllowedValues": "<p> The allowed values of the option setting. </p>",
1720
- "OptionsDependedOn$member": null,
1721
- "OrderableDBInstanceOption$Engine": "<p> The engine type of the orderable DB instance. </p>",
1722
- "OrderableDBInstanceOption$EngineVersion": "<p> The engine version of the orderable DB instance. </p>",
1723
- "OrderableDBInstanceOption$DBInstanceClass": "<p> The DB instance Class for the orderable DB instance </p>",
1724
- "OrderableDBInstanceOption$LicenseModel": "<p> The license model for the orderable DB instance. </p>",
1725
- "OrderableDBInstanceOption$StorageType": "<p> The storage type for this orderable DB instance. </p>",
1726
- "OrderableDBInstanceOptionsMessage$Marker": "<p> An optional pagination token provided by a previous OrderableDBInstanceOptions request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code> . </p>",
1727
- "Parameter$ParameterName": "<p> Specifies the name of the parameter. </p>",
1728
- "Parameter$ParameterValue": "<p> Specifies the value of the parameter. </p>",
1729
- "Parameter$Description": "<p> Provides a description of the parameter. </p>",
1730
- "Parameter$Source": "<p> Indicates the source of the parameter value. </p>",
1731
- "Parameter$ApplyType": "<p> Specifies the engine specific parameters type. </p>",
1732
- "Parameter$DataType": "<p> Specifies the valid data type for the parameter. </p>",
1733
- "Parameter$AllowedValues": "<p> Specifies the valid range of values for the parameter. </p>",
1734
- "Parameter$MinimumEngineVersion": "<p> The earliest engine version to which the parameter can apply. </p>",
1735
- "PendingMaintenanceAction$Action": "<p>The type of pending maintenance action that is available for the resource.</p>",
1736
- "PendingMaintenanceAction$OptInStatus": "<p>Indicates the type of opt-in request that has been received for the resource.</p>",
1737
- "PendingMaintenanceAction$Description": "<p>A description providing more detail about the maintenance action.</p>",
1738
- "PendingMaintenanceActionsMessage$Marker": "<p> An optional pagination token provided by a previous <code>DescribePendingMaintenanceActions</code> request. If this parameter is specified, the response includes only records beyond the marker, up to a number of records specified by <code>MaxRecords</code>. </p>",
1739
- "PendingModifiedValues$DBInstanceClass": "<p> Contains the new <code>DBInstanceClass</code> for the DB instance that will be applied or is in progress. </p>",
1740
- "PendingModifiedValues$MasterUserPassword": "<p> Contains the pending or in-progress change of the master credentials for the DB instance. </p>",
1741
- "PendingModifiedValues$EngineVersion": "<p> Indicates the database engine version. </p>",
1742
- "PendingModifiedValues$DBInstanceIdentifier": "<p> Contains the new <code>DBInstanceIdentifier</code> for the DB instance that will be applied or is in progress. </p>",
1743
- "PendingModifiedValues$StorageType": "<p> Specifies the storage type to be associated with the DB instance. </p>",
1744
- "PendingModifiedValues$CACertificateIdentifier": "<p>Specifies the identifier of the CA certificate for the DB instance.</p>",
1745
- "PromoteReadReplicaMessage$DBInstanceIdentifier": "<p> The DB instance identifier. This value is stored as a lowercase string. </p> <p>Constraints:</p> <ul> <li>Must be the identifier for an existing Read Replica DB instance</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> <p>Example: <copy>mydbinstance</copy></p>",
1746
- "PromoteReadReplicaMessage$PreferredBackupWindow": "<p> The daily time range during which automated backups are created if automated backups are enabled, using the <code>BackupRetentionPeriod</code> parameter. </p> <p> Default: A 30-minute window selected at random from an 8-hour block of time per region. See the Amazon RDS User Guide for the time blocks for each region from which the default backup windows are assigned. </p> <p> Constraints: Must be in the format <code>hh24:mi-hh24:mi</code>. Times should be Universal Time Coordinated (UTC). Must not conflict with the preferred maintenance window. Must be at least 30 minutes. </p>",
1747
- "PurchaseReservedDBInstancesOfferingMessage$ReservedDBInstancesOfferingId": "<p> The ID of the Reserved DB instance offering to purchase. </p> <p>Example: 438012d3-4052-4cc7-b2e3-8d3372e0e706</p>",
1748
- "PurchaseReservedDBInstancesOfferingMessage$ReservedDBInstanceId": "<p> Customer-specified identifier to track this reservation. </p> <p>Example: myreservationID</p>",
1749
- "ReadReplicaDBInstanceIdentifierList$member": null,
1750
- "RebootDBInstanceMessage$DBInstanceIdentifier": "<p> The DB instance identifier. This parameter is stored as a lowercase string. </p> <p>Constraints:</p> <ul> <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>",
1751
- "RecurringCharge$RecurringChargeFrequency": "<p> The frequency of the recurring charge. </p>",
1752
- "RemoveSourceIdentifierFromSubscriptionMessage$SubscriptionName": "<p>The name of the RDS event notification subscription you want to remove a source identifier from.</p>",
1753
- "RemoveSourceIdentifierFromSubscriptionMessage$SourceIdentifier": "<p> The source identifier to be removed from the subscription, such as the <b>DB instance identifier</b> for a DB instance or the name of a security group. </p>",
1754
- "RemoveTagsFromResourceMessage$ResourceName": "<p>The Amazon RDS resource the tags will be removed from. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see <a href=\"http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html#USER_Tagging.ARN\"> Constructing an RDS Amazon Resource Name (ARN)</a>.</p>",
1755
- "ReservedDBInstance$ReservedDBInstanceId": "<p> The unique identifier for the reservation. </p>",
1756
- "ReservedDBInstance$ReservedDBInstancesOfferingId": "<p> The offering identifier. </p>",
1757
- "ReservedDBInstance$DBInstanceClass": "<p> The DB instance class for the reserved DB instance. </p>",
1758
- "ReservedDBInstance$CurrencyCode": "<p> The currency code for the reserved DB instance. </p>",
1759
- "ReservedDBInstance$ProductDescription": "<p> The description of the reserved DB instance. </p>",
1760
- "ReservedDBInstance$OfferingType": "<p> The offering type of this reserved DB instance. </p>",
1761
- "ReservedDBInstance$State": "<p> The state of the reserved DB instance. </p>",
1762
- "ReservedDBInstanceMessage$Marker": "<p> An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1763
- "ReservedDBInstancesOffering$ReservedDBInstancesOfferingId": "<p> The offering identifier. </p>",
1764
- "ReservedDBInstancesOffering$DBInstanceClass": "<p> The DB instance class for the reserved DB instance. </p>",
1765
- "ReservedDBInstancesOffering$CurrencyCode": "<p> The currency code for the reserved DB instance offering. </p>",
1766
- "ReservedDBInstancesOffering$ProductDescription": "<p> The database engine used by the offering. </p>",
1767
- "ReservedDBInstancesOffering$OfferingType": "<p> The offering type. </p>",
1768
- "ReservedDBInstancesOfferingMessage$Marker": "<p> An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>",
1769
- "ResetDBParameterGroupMessage$DBParameterGroupName": "<p> The name of the DB parameter group. </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>",
1770
- "ResourcePendingMaintenanceActions$ResourceIdentifier": "<p>The ARN of the resource that has pending maintenance actions.</p>",
1771
- "RestoreDBInstanceFromDBSnapshotMessage$DBInstanceIdentifier": "<p> Name of the DB instance to create from the DB snapshot. This parameter isn't case sensitive. </p> <p>Constraints:</p> <ul> <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>",
1772
- "RestoreDBInstanceFromDBSnapshotMessage$DBSnapshotIdentifier": "<p> The identifier for the DB snapshot to restore from. </p> <p>Constraints:</p> <ul> <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>",
1773
- "RestoreDBInstanceFromDBSnapshotMessage$DBInstanceClass": "<p> The compute and memory capacity of the Amazon RDS DB instance. </p> <p>Valid Values: <code>db.t1.micro | db.m1.small | db.m1.medium | db.m1.large | db.m1.xlarge | db.m2.2xlarge | db.m2.4xlarge | db.m3.medium | db.m3.large | db.m3.xlarge | db.m3.2xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge | db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small | db.t2.medium</code></p>",
1774
- "RestoreDBInstanceFromDBSnapshotMessage$AvailabilityZone": "<p> The EC2 Availability Zone that the database instance will be created in. </p> <p>Default: A random, system-chosen Availability Zone.</p> <p>Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to <code>true</code>.</p> <p>Example: <code>us-east-1a</code></p>",
1775
- "RestoreDBInstanceFromDBSnapshotMessage$DBSubnetGroupName": "<p> The DB subnet group name to use for the new instance. </p>",
1776
- "RestoreDBInstanceFromDBSnapshotMessage$LicenseModel": "<p> License model information for the restored DB instance. </p> <p> Default: Same as source. </p> <p> Valid values: <code>license-included</code> | <code>bring-your-own-license</code> | <code>general-public-license</code></p>",
1777
- "RestoreDBInstanceFromDBSnapshotMessage$DBName": "<p> The database name for the restored DB instance. </p> <note> <p>This parameter doesn't apply to the MySQL engine.</p> </note>",
1778
- "RestoreDBInstanceFromDBSnapshotMessage$Engine": "<p> The database engine to use for the new instance. </p> <p>Default: The same as source</p> <p>Constraint: Must be compatible with the engine of the source</p> <p> Valid Values: <code>MySQL</code> | <code>oracle-se1</code> | <code>oracle-se</code> | <code>oracle-ee</code> | <code>sqlserver-ee</code> | <code>sqlserver-se</code> | <code>sqlserver-ex</code> | <code>sqlserver-web</code> | <code>postgres</code></p>",
1779
- "RestoreDBInstanceFromDBSnapshotMessage$OptionGroupName": "<p>The name of the option group to be used for the restored DB instance.</p> <p>Permanent options, such as the TDE option for Oracle Advanced Security TDE, cannot be removed from an option group, and that option group cannot be removed from a DB instance once it is associated with a DB instance </p>",
1780
- "RestoreDBInstanceFromDBSnapshotMessage$StorageType": "<p> Specifies the storage type to be associated with the DB instance. </p> <p> Valid values: <code>standard | gp2 | io1</code></p> <p> If you specify <code>io1</code>, you must also include a value for the <code>Iops</code> parameter. </p> <p> Default: <code>io1</code> if the <code>Iops</code> parameter is specified; otherwise <code>standard</code></p>",
1781
- "RestoreDBInstanceFromDBSnapshotMessage$TdeCredentialArn": "<p> The ARN from the Key Store with which to associate the instance for TDE encryption. </p>",
1782
- "RestoreDBInstanceFromDBSnapshotMessage$TdeCredentialPassword": "<p> The password for the given ARN from the Key Store in order to access the device. </p>",
1783
- "RestoreDBInstanceToPointInTimeMessage$SourceDBInstanceIdentifier": "<p> The identifier of the source DB instance from which to restore. </p> <p>Constraints:</p> <ul> <li>Must be the identifier of an existing database instance</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>",
1784
- "RestoreDBInstanceToPointInTimeMessage$TargetDBInstanceIdentifier": "<p> The name of the new database instance to be created. </p> <p>Constraints:</p> <ul> <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>",
1785
- "RestoreDBInstanceToPointInTimeMessage$DBInstanceClass": "<p> The compute and memory capacity of the Amazon RDS DB instance. </p> <p>Valid Values: <code>db.t1.micro | db.m1.small | db.m1.medium | db.m1.large | db.m1.xlarge | db.m2.2xlarge | db.m2.4xlarge | db.m3.medium | db.m3.large | db.m3.xlarge | db.m3.2xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge | db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small | db.t2.medium</code></p> <p>Default: The same DBInstanceClass as the original DB instance.</p>",
1786
- "RestoreDBInstanceToPointInTimeMessage$AvailabilityZone": "<p> The EC2 Availability Zone that the database instance will be created in. </p> <p>Default: A random, system-chosen Availability Zone.</p> <p>Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to true.</p> <p>Example: <code>us-east-1a</code></p>",
1787
- "RestoreDBInstanceToPointInTimeMessage$DBSubnetGroupName": "<p> The DB subnet group name to use for the new instance. </p>",
1788
- "RestoreDBInstanceToPointInTimeMessage$LicenseModel": "<p> License model information for the restored DB instance. </p> <p> Default: Same as source. </p> <p> Valid values: <code>license-included</code> | <code>bring-your-own-license</code> | <code>general-public-license</code></p>",
1789
- "RestoreDBInstanceToPointInTimeMessage$DBName": "<p> The database name for the restored DB instance. </p> <note> <p>This parameter is not used for the MySQL engine.</p> </note>",
1790
- "RestoreDBInstanceToPointInTimeMessage$Engine": "<p> The database engine to use for the new instance. </p> <p>Default: The same as source</p> <p>Constraint: Must be compatible with the engine of the source</p> <p> Valid Values: <code>MySQL</code> | <code>oracle-se1</code> | <code>oracle-se</code> | <code>oracle-ee</code> | <code>sqlserver-ee</code> | <code>sqlserver-se</code> | <code>sqlserver-ex</code> | <code>sqlserver-web</code> | <code>postgres</code></p>",
1791
- "RestoreDBInstanceToPointInTimeMessage$OptionGroupName": "<p>The name of the option group to be used for the restored DB instance.</p> <p>Permanent options, such as the TDE option for Oracle Advanced Security TDE, cannot be removed from an option group, and that option group cannot be removed from a DB instance once it is associated with a DB instance </p>",
1792
- "RestoreDBInstanceToPointInTimeMessage$StorageType": "<p> Specifies the storage type to be associated with the DB instance. </p> <p> Valid values: <code>standard | gp2 | io1</code></p> <p> If you specify <code>io1</code>, you must also include a value for the <code>Iops</code> parameter. </p> <p> Default: <code>io1</code> if the <code>Iops</code> parameter is specified; otherwise <code>standard</code></p>",
1793
- "RestoreDBInstanceToPointInTimeMessage$TdeCredentialArn": "<p> The ARN from the Key Store with which to associate the instance for TDE encryption. </p>",
1794
- "RestoreDBInstanceToPointInTimeMessage$TdeCredentialPassword": "<p> The password for the given ARN from the Key Store in order to access the device. </p>",
1795
- "RevokeDBSecurityGroupIngressMessage$DBSecurityGroupName": "<p> The name of the DB security group to revoke ingress from. </p>",
1796
- "RevokeDBSecurityGroupIngressMessage$CIDRIP": "<p> The IP range to revoke access from. Must be a valid CIDR range. If <code>CIDRIP</code> is specified, <code>EC2SecurityGroupName</code>, <code>EC2SecurityGroupId</code> and <code>EC2SecurityGroupOwnerId</code> cannot be provided. </p>",
1797
- "RevokeDBSecurityGroupIngressMessage$EC2SecurityGroupName": "<p> The name of the EC2 security group to revoke access from. For VPC DB security groups, <code>EC2SecurityGroupId</code> must be provided. Otherwise, EC2SecurityGroupOwnerId and either <code>EC2SecurityGroupName</code> or <code>EC2SecurityGroupId</code> must be provided. </p>",
1798
- "RevokeDBSecurityGroupIngressMessage$EC2SecurityGroupId": "<p> The id of the EC2 security group to revoke access from. For VPC DB security groups, <code>EC2SecurityGroupId</code> must be provided. Otherwise, EC2SecurityGroupOwnerId and either <code>EC2SecurityGroupName</code> or <code>EC2SecurityGroupId</code> must be provided. </p>",
1799
- "RevokeDBSecurityGroupIngressMessage$EC2SecurityGroupOwnerId": "<p> The AWS Account Number of the owner of the EC2 security group specified in the <code>EC2SecurityGroupName</code> parameter. The AWS Access Key ID is not an acceptable value. For VPC DB security groups, <code>EC2SecurityGroupId</code> must be provided. Otherwise, EC2SecurityGroupOwnerId and either <code>EC2SecurityGroupName</code> or <code>EC2SecurityGroupId</code> must be provided. </p>",
1800
- "SourceIdsList$member": null,
1801
- "Subnet$SubnetIdentifier": "<p> Specifies the identifier of the subnet. </p>",
1802
- "Subnet$SubnetStatus": "<p> Specifies the status of the subnet. </p>",
1803
- "SubnetIdentifierList$member": null,
1804
- "Tag$Key": "<p>A key is the required name of the tag. The string value can be from 1 to 128 Unicode characters in length and cannot be prefixed with \"aws:\" or \"rds:\". The string may only contain only the set of Unicode letters, digits, white-space, '_', '.', '/', '=', '+', '-' (Java regex: \"^([\\\\p{L}\\\\p{Z}\\\\p{N}_.:/=+\\\\-]*)$\").</p>",
1805
- "Tag$Value": "<p>A value is the optional value of the tag. The string value can be from 1 to 256 Unicode characters in length and cannot be prefixed with \"aws:\" or \"rds:\". The string may only contain only the set of Unicode letters, digits, white-space, '_', '.', '/', '=', '+', '-' (Java regex: \"^([\\\\p{L}\\\\p{Z}\\\\p{N}_.:/=+\\\\-]*)$\").</p>",
1806
- "VpcSecurityGroupIdList$member": null,
1807
- "VpcSecurityGroupMembership$VpcSecurityGroupId": "<p>The name of the VPC security group.</p>",
1808
- "VpcSecurityGroupMembership$Status": "<p> The status of the VPC security group. </p>"
1809
- }
1810
- },
1811
- "Subnet": {
1812
- "base": "<p> This data type is used as a response element in the <a>DescribeDBSubnetGroups</a> action. </p>",
1813
- "refs": {
1814
- "SubnetList$member": null
1815
- }
1816
- },
1817
- "SubnetAlreadyInUse": {
1818
- "base": "<p> The DB subnet is already in use in the Availability Zone. </p>",
1819
- "refs": {
1820
- }
1821
- },
1822
- "SubnetIdentifierList": {
1823
- "base": null,
1824
- "refs": {
1825
- "CreateDBSubnetGroupMessage$SubnetIds": "<p> The EC2 Subnet IDs for the DB subnet group. </p>",
1826
- "ModifyDBSubnetGroupMessage$SubnetIds": "<p> The EC2 subnet IDs for the DB subnet group. </p>"
1827
- }
1828
- },
1829
- "SubnetList": {
1830
- "base": null,
1831
- "refs": {
1832
- "DBSubnetGroup$Subnets": "<p> Contains a list of <a>Subnet</a> elements. </p>"
1833
- }
1834
- },
1835
- "SubscriptionAlreadyExistFault": {
1836
- "base": "<p>The supplied subscription name already exists.</p>",
1837
- "refs": {
1838
- }
1839
- },
1840
- "SubscriptionCategoryNotFoundFault": {
1841
- "base": "<p>The supplied category does not exist.</p>",
1842
- "refs": {
1843
- }
1844
- },
1845
- "SubscriptionNotFoundFault": {
1846
- "base": "<p>The subscription name does not exist.</p>",
1847
- "refs": {
1848
- }
1849
- },
1850
- "SupportedCharacterSetsList": {
1851
- "base": null,
1852
- "refs": {
1853
- "DBEngineVersion$SupportedCharacterSets": "<p> A list of the character sets supported by this engine for the <code>CharacterSetName</code> parameter of the CreateDBInstance API. </p>"
1854
- }
1855
- },
1856
- "TStamp": {
1857
- "base": null,
1858
- "refs": {
1859
- "Certificate$ValidFrom": "<p>The starting date from which the certificate is valid. </p>",
1860
- "Certificate$ValidTill": "<p>The final date that the certificate continues to be valid. </p>",
1861
- "DBInstance$InstanceCreateTime": "<p> Provides the date and time the DB instance was created. </p>",
1862
- "DBInstance$LatestRestorableTime": "<p> Specifies the latest time to which a database can be restored with point-in-time restore. </p>",
1863
- "DBSnapshot$SnapshotCreateTime": "<p> Provides the time (UTC) when the snapshot was taken. </p>",
1864
- "DBSnapshot$InstanceCreateTime": "<p> Specifies the time (UTC) when the snapshot was taken. </p>",
1865
- "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: 2009-07-08T18:00Z</p>",
1866
- "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: 2009-07-08T18:00Z</p>",
1867
- "Event$Date": "<p> Specifies the date and time of the event. </p>",
1868
- "PendingMaintenanceAction$AutoAppliedAfterDate": "<p>The date of the maintenance window when the action will be applied. The maintenance action will be applied to the resource during its first maintenance window after this date. If this date is specified, any <code>next-maintenance</code> opt-in requests are ignored.</p>",
1869
- "PendingMaintenanceAction$ForcedApplyDate": "<p>The date when the maintenance action will be automatically applied. The maintenance action will be applied to the resource on this date regardless of the maintenance window for the resource. If this date is specified, any <code>immediate</code> opt-in requests are ignored.</p>",
1870
- "PendingMaintenanceAction$CurrentApplyDate": "<p>The effective date when the pending maintenance action will be applied to the resource. This date takes into account opt-in requests received from the <a>ApplyPendingMaintenanceAction</a> API, the <code>AutoAppliedAfterDate</code>, and the <code>ForcedApplyDate</code>. This value is blank if an opt-in request has not been received and nothing has been specified as <code>AutoAppliedAfterDate</code> or <code>ForcedApplyDate</code>.</p>",
1871
- "ReservedDBInstance$StartTime": "<p> The time the reservation started. </p>",
1872
- "RestoreDBInstanceToPointInTimeMessage$RestoreTime": "<p> The date and time to restore from. </p> <p>Valid Values: Value must be a UTC time</p> <p>Constraints:</p> <ul> <li>Must be before the latest restorable time for the DB instance</li> <li>Cannot be specified if UseLatestRestorableTime parameter is true</li> </ul> <p>Example: <code>2009-09-07T23:45:00Z</code></p>"
1873
- }
1874
- },
1875
- "Tag": {
1876
- "base": "<p>Metadata assigned to an Amazon RDS resource consisting of a key-value pair.</p>",
1877
- "refs": {
1878
- "TagList$member": null
1879
- }
1880
- },
1881
- "TagList": {
1882
- "base": "<p>A list of tags.</p>",
1883
- "refs": {
1884
- "AddTagsToResourceMessage$Tags": "<p>The tags to be assigned to the Amazon RDS resource.</p>",
1885
- "CopyDBParameterGroupMessage$Tags": null,
1886
- "CopyDBSnapshotMessage$Tags": null,
1887
- "CopyOptionGroupMessage$Tags": null,
1888
- "CreateDBInstanceMessage$Tags": null,
1889
- "CreateDBInstanceReadReplicaMessage$Tags": null,
1890
- "CreateDBParameterGroupMessage$Tags": null,
1891
- "CreateDBSecurityGroupMessage$Tags": null,
1892
- "CreateDBSnapshotMessage$Tags": null,
1893
- "CreateDBSubnetGroupMessage$Tags": null,
1894
- "CreateEventSubscriptionMessage$Tags": null,
1895
- "CreateOptionGroupMessage$Tags": null,
1896
- "PurchaseReservedDBInstancesOfferingMessage$Tags": null,
1897
- "RestoreDBInstanceFromDBSnapshotMessage$Tags": null,
1898
- "RestoreDBInstanceToPointInTimeMessage$Tags": null,
1899
- "TagListMessage$TagList": "<p>List of tags returned by the ListTagsForResource operation.</p>"
1900
- }
1901
- },
1902
- "TagListMessage": {
1903
- "base": "<p></p>",
1904
- "refs": {
1905
- }
1906
- },
1907
- "VpcSecurityGroupIdList": {
1908
- "base": null,
1909
- "refs": {
1910
- "CreateDBInstanceMessage$VpcSecurityGroupIds": "<p> A list of EC2 VPC security groups to associate with this DB instance. </p> <p> Default: The default EC2 VPC security group for the DB subnet group's VPC. </p>",
1911
- "ModifyDBInstanceMessage$VpcSecurityGroupIds": "<p> A list of EC2 VPC security groups to authorize on this DB instance. This change is asynchronously applied as soon as possible. </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>",
1912
- "OptionConfiguration$VpcSecurityGroupMemberships": "<p> A list of VpcSecurityGroupMemebrship name strings used for this option. </p>"
1913
- }
1914
- },
1915
- "VpcSecurityGroupMembership": {
1916
- "base": "<p>This data type is used as a response element for queries on VPC security group membership.</p>",
1917
- "refs": {
1918
- "VpcSecurityGroupMembershipList$member": null
1919
- }
1920
- },
1921
- "VpcSecurityGroupMembershipList": {
1922
- "base": null,
1923
- "refs": {
1924
- "DBInstance$VpcSecurityGroups": "<p> Provides List of VPC security group elements that the DB instance belongs to. </p>",
1925
- "Option$VpcSecurityGroupMemberships": "<p> If the option requires access to a port, then this VPC security group allows access to the port. </p>"
1926
- }
1927
- },
1928
- "AddSourceIdentifierToSubscriptionResult": {
1929
- "base": null,
1930
- "refs": {
1931
- }
1932
- },
1933
- "ApplyPendingMaintenanceActionResult": {
1934
- "base": null,
1935
- "refs": {
1936
- }
1937
- },
1938
- "AuthorizeDBSecurityGroupIngressResult": {
1939
- "base": null,
1940
- "refs": {
1941
- }
1942
- },
1943
- "CopyDBParameterGroupResult": {
1944
- "base": null,
1945
- "refs": {
1946
- }
1947
- },
1948
- "CopyDBSnapshotResult": {
1949
- "base": null,
1950
- "refs": {
1951
- }
1952
- },
1953
- "CopyOptionGroupResult": {
1954
- "base": null,
1955
- "refs": {
1956
- }
1957
- },
1958
- "CreateDBInstanceResult": {
1959
- "base": null,
1960
- "refs": {
1961
- }
1962
- },
1963
- "CreateDBInstanceReadReplicaResult": {
1964
- "base": null,
1965
- "refs": {
1966
- }
1967
- },
1968
- "CreateDBParameterGroupResult": {
1969
- "base": null,
1970
- "refs": {
1971
- }
1972
- },
1973
- "CreateDBSecurityGroupResult": {
1974
- "base": null,
1975
- "refs": {
1976
- }
1977
- },
1978
- "CreateDBSnapshotResult": {
1979
- "base": null,
1980
- "refs": {
1981
- }
1982
- },
1983
- "CreateDBSubnetGroupResult": {
1984
- "base": null,
1985
- "refs": {
1986
- }
1987
- },
1988
- "CreateEventSubscriptionResult": {
1989
- "base": null,
1990
- "refs": {
1991
- }
1992
- },
1993
- "CreateOptionGroupResult": {
1994
- "base": null,
1995
- "refs": {
1996
- }
1997
- },
1998
- "DeleteDBInstanceResult": {
1999
- "base": null,
2000
- "refs": {
2001
- }
2002
- },
2003
- "DeleteDBSnapshotResult": {
2004
- "base": null,
2005
- "refs": {
2006
- }
2007
- },
2008
- "DeleteEventSubscriptionResult": {
2009
- "base": null,
2010
- "refs": {
2011
- }
2012
- },
2013
- "DescribeEngineDefaultParametersResult": {
2014
- "base": null,
2015
- "refs": {
2016
- }
2017
- },
2018
- "ModifyDBInstanceResult": {
2019
- "base": null,
2020
- "refs": {
2021
- }
2022
- },
2023
- "ModifyDBSubnetGroupResult": {
2024
- "base": null,
2025
- "refs": {
2026
- }
2027
- },
2028
- "ModifyEventSubscriptionResult": {
2029
- "base": null,
2030
- "refs": {
2031
- }
2032
- },
2033
- "ModifyOptionGroupResult": {
2034
- "base": null,
2035
- "refs": {
2036
- }
2037
- },
2038
- "PromoteReadReplicaResult": {
2039
- "base": null,
2040
- "refs": {
2041
- }
2042
- },
2043
- "PurchaseReservedDBInstancesOfferingResult": {
2044
- "base": null,
2045
- "refs": {
2046
- }
2047
- },
2048
- "RebootDBInstanceResult": {
2049
- "base": null,
2050
- "refs": {
2051
- }
2052
- },
2053
- "RemoveSourceIdentifierFromSubscriptionResult": {
2054
- "base": null,
2055
- "refs": {
2056
- }
2057
- },
2058
- "RestoreDBInstanceFromDBSnapshotResult": {
2059
- "base": null,
2060
- "refs": {
2061
- }
2062
- },
2063
- "RestoreDBInstanceToPointInTimeResult": {
2064
- "base": null,
2065
- "refs": {
2066
- }
2067
- },
2068
- "RevokeDBSecurityGroupIngressResult": {
2069
- "base": null,
2070
- "refs": {
2071
- }
2072
- }
2073
- }
2074
- }