aws-sdk-core 2.6.10 → 2.6.11

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "pagination": {
3
+ "ListCloudFrontOriginAccessIdentities": {
4
+ "input_token": "Marker",
5
+ "output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
6
+ "limit_key": "MaxItems",
7
+ "more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
8
+ "result_key": "CloudFrontOriginAccessIdentityList.Items"
9
+ },
10
+ "ListDistributions": {
11
+ "input_token": "Marker",
12
+ "output_token": "DistributionList.NextMarker",
13
+ "limit_key": "MaxItems",
14
+ "more_results": "DistributionList.IsTruncated",
15
+ "result_key": "DistributionList.Items"
16
+ },
17
+ "ListInvalidations": {
18
+ "input_token": "Marker",
19
+ "output_token": "InvalidationList.NextMarker",
20
+ "limit_key": "MaxItems",
21
+ "more_results": "InvalidationList.IsTruncated",
22
+ "result_key": "InvalidationList.Items"
23
+ },
24
+ "ListStreamingDistributions": {
25
+ "input_token": "Marker",
26
+ "output_token": "StreamingDistributionList.NextMarker",
27
+ "limit_key": "MaxItems",
28
+ "more_results": "StreamingDistributionList.IsTruncated",
29
+ "result_key": "StreamingDistributionList.Items"
30
+ }
31
+ }
32
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "version": 2,
3
+ "waiters": {
4
+ "DistributionDeployed": {
5
+ "delay": 60,
6
+ "operation": "GetDistribution",
7
+ "maxAttempts": 25,
8
+ "description": "Wait until a distribution is deployed.",
9
+ "acceptors": [
10
+ {
11
+ "expected": "Deployed",
12
+ "matcher": "path",
13
+ "state": "success",
14
+ "argument": "Distribution.Status"
15
+ }
16
+ ]
17
+ },
18
+ "InvalidationCompleted": {
19
+ "delay": 20,
20
+ "operation": "GetInvalidation",
21
+ "maxAttempts": 30,
22
+ "description": "Wait until an invalidation has completed.",
23
+ "acceptors": [
24
+ {
25
+ "expected": "Completed",
26
+ "matcher": "path",
27
+ "state": "success",
28
+ "argument": "Invalidation.Status"
29
+ }
30
+ ]
31
+ },
32
+ "StreamingDistributionDeployed": {
33
+ "delay": 60,
34
+ "operation": "GetStreamingDistribution",
35
+ "maxAttempts": 25,
36
+ "description": "Wait until a streaming distribution is deployed.",
37
+ "acceptors": [
38
+ {
39
+ "expected": "Deployed",
40
+ "matcher": "path",
41
+ "state": "success",
42
+ "argument": "StreamingDistribution.Status"
43
+ }
44
+ ]
45
+ }
46
+ }
47
+ }
@@ -1276,7 +1276,8 @@
1276
1276
  "AWS::RDS::DBSecurityGroup",
1277
1277
  "AWS::RDS::DBSnapshot",
1278
1278
  "AWS::RDS::EventSubscription",
1279
- "AWS::ElasticLoadBalancingV2::LoadBalancer"
1279
+ "AWS::ElasticLoadBalancingV2::LoadBalancer",
1280
+ "AWS::S3::Bucket"
1280
1281
  ]
1281
1282
  },
1282
1283
  "ResourceTypeList":{
@@ -2419,6 +2419,7 @@
2419
2419
  "type":"structure",
2420
2420
  "members":{
2421
2421
  "dynamoDB":{"shape":"DynamoDBAction"},
2422
+ "dynamoDBv2":{"shape":"DynamoDBv2Action"},
2422
2423
  "lambda":{"shape":"LambdaAction"},
2423
2424
  "sns":{"shape":"SnsAction"},
2424
2425
  "sqs":{"shape":"SqsAction"},
@@ -3142,6 +3143,13 @@
3142
3143
  "payloadField":{"shape":"PayloadField"}
3143
3144
  }
3144
3145
  },
3146
+ "DynamoDBv2Action":{
3147
+ "type":"structure",
3148
+ "members":{
3149
+ "roleArn":{"shape":"AwsArn"},
3150
+ "putItem":{"shape":"PutItemInput"}
3151
+ }
3152
+ },
3145
3153
  "DynamoKeyType":{
3146
3154
  "type":"string",
3147
3155
  "enum":[
@@ -3846,6 +3854,13 @@
3846
3854
  "type":"string",
3847
3855
  "min":1
3848
3856
  },
3857
+ "PutItemInput":{
3858
+ "type":"structure",
3859
+ "required":["tableName"],
3860
+ "members":{
3861
+ "tableName":{"shape":"TableName"}
3862
+ }
3863
+ },
3849
3864
  "QueueUrl":{"type":"string"},
3850
3865
  "RangeKeyField":{"type":"string"},
3851
3866
  "RangeKeyValue":{"type":"string"},
@@ -499,7 +499,10 @@
499
499
  },
500
500
  "Input":{
501
501
  "type":"structure",
502
- "required":["NamePrefix"],
502
+ "required":[
503
+ "NamePrefix",
504
+ "InputSchema"
505
+ ],
503
506
  "members":{
504
507
  "NamePrefix":{"shape":"InAppStreamName"},
505
508
  "KinesisStreamsInput":{"shape":"KinesisStreamsInput"},
@@ -1018,7 +1021,8 @@
1018
1021
  "UnableToDetectSchemaException":{
1019
1022
  "type":"structure",
1020
1023
  "members":{
1021
- "message":{"shape":"ErrorMessage"}
1024
+ "message":{"shape":"ErrorMessage"},
1025
+ "RawInputRecords":{"shape":"RawInputRecords"}
1022
1026
  },
1023
1027
  "exception":true
1024
1028
  },
@@ -10,6 +10,20 @@
10
10
  "xmlNamespace":"http://rds.amazonaws.com/doc/2014-10-31/"
11
11
  },
12
12
  "operations":{
13
+ "AddRoleToDBCluster":{
14
+ "name":"AddRoleToDBCluster",
15
+ "http":{
16
+ "method":"POST",
17
+ "requestUri":"/"
18
+ },
19
+ "input":{"shape":"AddRoleToDBClusterMessage"},
20
+ "errors":[
21
+ {"shape":"DBClusterNotFoundFault"},
22
+ {"shape":"DBClusterRoleAlreadyExistsFault"},
23
+ {"shape":"InvalidDBClusterStateFault"},
24
+ {"shape":"DBClusterRoleQuotaExceededFault"}
25
+ ]
26
+ },
13
27
  "AddSourceIdentifierToSubscription":{
14
28
  "name":"AddSourceIdentifierToSubscription",
15
29
  "http":{
@@ -103,7 +117,9 @@
103
117
  {"shape":"DBClusterSnapshotAlreadyExistsFault"},
104
118
  {"shape":"DBClusterSnapshotNotFoundFault"},
105
119
  {"shape":"InvalidDBClusterStateFault"},
106
- {"shape":"InvalidDBClusterSnapshotStateFault"}
120
+ {"shape":"InvalidDBClusterSnapshotStateFault"},
121
+ {"shape":"SnapshotQuotaExceededFault"},
122
+ {"shape":"KMSKeyNotAccessibleFault"}
107
123
  ]
108
124
  },
109
125
  "CopyDBParameterGroup":{
@@ -1221,6 +1237,19 @@
1221
1237
  {"shape":"DBInstanceNotFoundFault"}
1222
1238
  ]
1223
1239
  },
1240
+ "RemoveRoleFromDBCluster":{
1241
+ "name":"RemoveRoleFromDBCluster",
1242
+ "http":{
1243
+ "method":"POST",
1244
+ "requestUri":"/"
1245
+ },
1246
+ "input":{"shape":"RemoveRoleFromDBClusterMessage"},
1247
+ "errors":[
1248
+ {"shape":"DBClusterNotFoundFault"},
1249
+ {"shape":"DBClusterRoleNotFoundFault"},
1250
+ {"shape":"InvalidDBClusterStateFault"}
1251
+ ]
1252
+ },
1224
1253
  "RemoveSourceIdentifierFromSubscription":{
1225
1254
  "name":"RemoveSourceIdentifierFromSubscription",
1226
1255
  "http":{
@@ -1476,6 +1505,17 @@
1476
1505
  "locationName":"AccountQuota"
1477
1506
  }
1478
1507
  },
1508
+ "AddRoleToDBClusterMessage":{
1509
+ "type":"structure",
1510
+ "required":[
1511
+ "DBClusterIdentifier",
1512
+ "RoleArn"
1513
+ ],
1514
+ "members":{
1515
+ "DBClusterIdentifier":{"shape":"String"},
1516
+ "RoleArn":{"shape":"String"}
1517
+ }
1518
+ },
1479
1519
  "AddSourceIdentifierToSubscriptionMessage":{
1480
1520
  "type":"structure",
1481
1521
  "required":[
@@ -2061,7 +2101,8 @@
2061
2101
  "StorageEncrypted":{"shape":"Boolean"},
2062
2102
  "KmsKeyId":{"shape":"String"},
2063
2103
  "DbClusterResourceId":{"shape":"String"},
2064
- "DBClusterArn":{"shape":"String"}
2104
+ "DBClusterArn":{"shape":"String"},
2105
+ "AssociatedRoles":{"shape":"DBClusterRoles"}
2065
2106
  },
2066
2107
  "wrapper":true
2067
2108
  },
@@ -2191,6 +2232,53 @@
2191
2232
  },
2192
2233
  "exception":true
2193
2234
  },
2235
+ "DBClusterRole":{
2236
+ "type":"structure",
2237
+ "members":{
2238
+ "RoleArn":{"shape":"String"},
2239
+ "Status":{"shape":"String"}
2240
+ }
2241
+ },
2242
+ "DBClusterRoleAlreadyExistsFault":{
2243
+ "type":"structure",
2244
+ "members":{
2245
+ },
2246
+ "error":{
2247
+ "code":"DBClusterRoleAlreadyExists",
2248
+ "httpStatusCode":400,
2249
+ "senderFault":true
2250
+ },
2251
+ "exception":true
2252
+ },
2253
+ "DBClusterRoleNotFoundFault":{
2254
+ "type":"structure",
2255
+ "members":{
2256
+ },
2257
+ "error":{
2258
+ "code":"DBClusterRoleNotFound",
2259
+ "httpStatusCode":404,
2260
+ "senderFault":true
2261
+ },
2262
+ "exception":true
2263
+ },
2264
+ "DBClusterRoleQuotaExceededFault":{
2265
+ "type":"structure",
2266
+ "members":{
2267
+ },
2268
+ "error":{
2269
+ "code":"DBClusterRoleQuotaExceeded",
2270
+ "httpStatusCode":400,
2271
+ "senderFault":true
2272
+ },
2273
+ "exception":true
2274
+ },
2275
+ "DBClusterRoles":{
2276
+ "type":"list",
2277
+ "member":{
2278
+ "shape":"DBClusterRole",
2279
+ "locationName":"DBClusterRole"
2280
+ }
2281
+ },
2194
2282
  "DBClusterSnapshot":{
2195
2283
  "type":"structure",
2196
2284
  "members":{
@@ -4305,6 +4393,17 @@
4305
4393
  "locationName":"RecurringCharge"
4306
4394
  }
4307
4395
  },
4396
+ "RemoveRoleFromDBClusterMessage":{
4397
+ "type":"structure",
4398
+ "required":[
4399
+ "DBClusterIdentifier",
4400
+ "RoleArn"
4401
+ ],
4402
+ "members":{
4403
+ "DBClusterIdentifier":{"shape":"String"},
4404
+ "RoleArn":{"shape":"String"}
4405
+ }
4406
+ },
4308
4407
  "RemoveSourceIdentifierFromSubscriptionMessage":{
4309
4408
  "type":"structure",
4310
4409
  "required":[
@@ -108,26 +108,6 @@
108
108
  "TargetDBClusterSnapshotIdentifier": "cluster-snapshot-copy-1"
109
109
  },
110
110
  "output": {
111
- "AllocatedStorage": 1,
112
- "AvailabilityZones": [
113
- "us-west-2a",
114
- "us-west-2b",
115
- "us-west-2c"
116
- ],
117
- "ClusterCreateTime": "2016-09-13T16:57:52.695Z",
118
- "DBClusterIdentifier": "sample-cluster",
119
- "DBClusterSnapshotArn": "arn:aws:rds:us-west-2:123456789012:cluster-snapshot:cluster-snapshot-copy-1",
120
- "DBClusterSnapshotIdentifier": "cluster-snapshot-copy-1",
121
- "Engine": "aurora",
122
- "LicenseModel": "aurora",
123
- "MasterUsername": "mymasteruser",
124
- "PercentProgress": 100,
125
- "Port": 0,
126
- "SnapshotCreateTime": "2016-09-14T10:38:05.616Z",
127
- "SnapshotType": "manual",
128
- "Status": "available",
129
- "StorageEncrypted": false,
130
- "VpcId": "vpc-e82e7d8d"
131
111
  },
132
112
  "comments": {
133
113
  "input": {
@@ -1324,16 +1304,6 @@
1324
1304
  ]
1325
1305
  },
1326
1306
  "output": {
1327
- "DBClusterSnapshotAttributes": [
1328
- {
1329
- "AttributeName": "restore",
1330
- "AttributeValues": [
1331
- "123451234512",
1332
- "123456789012"
1333
- ]
1334
- }
1335
- ],
1336
- "DBClusterSnapshotIdentifier": "manual-cluster-snapshot1"
1337
1307
  },
1338
1308
  "comments": {
1339
1309
  "input": {
@@ -1479,186 +1449,6 @@
1479
1449
  ]
1480
1450
  },
1481
1451
  "output": {
1482
- "AllowsVpcAndNonVpcInstanceMemberships": false,
1483
- "EngineName": "mysql",
1484
- "MajorEngineVersion": "5.7",
1485
- "OptionGroupArn": "arn:aws:rds:us-west-2:123456789012:og:myawsuser-og02",
1486
- "OptionGroupDescription": "Sample option group",
1487
- "OptionGroupName": "myawsuser-og02",
1488
- "Options": [
1489
- {
1490
- "DBSecurityGroupMemberships": [
1491
- {
1492
- "DBSecurityGroupName": "default",
1493
- "Status": "authorized"
1494
- }
1495
- ],
1496
- "OptionDescription": "Innodb Memcached for MySQL",
1497
- "OptionName": "MEMCACHED",
1498
- "OptionSettings": [
1499
- {
1500
- "AllowedValues": "0,1",
1501
- "ApplyType": "STATIC",
1502
- "DataType": "BOOLEAN",
1503
- "DefaultValue": "0",
1504
- "Description": "Disable the use of compare and swap (CAS) which reduces the per-item size by 8 bytes.",
1505
- "IsCollection": false,
1506
- "IsModifiable": true,
1507
- "Name": "CAS_DISABLED",
1508
- "Value": "0"
1509
- },
1510
- {
1511
- "AllowedValues": "0,1",
1512
- "ApplyType": "STATIC",
1513
- "DataType": "BOOLEAN",
1514
- "DefaultValue": "0",
1515
- "Description": "If enabled when there is no more memory to store items, memcached will return an error rather than evicting items.",
1516
- "IsCollection": false,
1517
- "IsModifiable": true,
1518
- "Name": "ERROR_ON_MEMORY_EXHAUSTED",
1519
- "Value": "0"
1520
- },
1521
- {
1522
- "AllowedValues": "10-1024",
1523
- "ApplyType": "STATIC",
1524
- "DataType": "INTEGER",
1525
- "DefaultValue": "1024",
1526
- "Description": "Maximum number of concurrent connections. Setting this value to anything less than 10 prevents MySQL from starting.",
1527
- "IsCollection": false,
1528
- "IsModifiable": true,
1529
- "Name": "MAX_SIMULTANEOUS_CONNECTIONS",
1530
- "Value": "1024"
1531
- },
1532
- {
1533
- "AllowedValues": "1-1073741824",
1534
- "ApplyType": "DYNAMIC",
1535
- "DataType": "INTEGER",
1536
- "DefaultValue": "5",
1537
- "Description": "Specifies how often to auto-commit idle connections that use the InnoDB memcached interface.",
1538
- "IsCollection": false,
1539
- "IsModifiable": true,
1540
- "Name": "INNODB_API_BK_COMMIT_INTERVAL",
1541
- "Value": "5"
1542
- },
1543
- {
1544
- "AllowedValues": "1-2",
1545
- "ApplyType": "STATIC",
1546
- "DataType": "FLOAT",
1547
- "DefaultValue": "1.25",
1548
- "Description": "Chunk size growth factor that controls the size of each successive chunk with each chunk growing times this amount larger than the previous chunk.",
1549
- "IsCollection": false,
1550
- "IsModifiable": true,
1551
- "Name": "CHUNK_SIZE_GROWTH_FACTOR",
1552
- "Value": "1.25"
1553
- },
1554
- {
1555
- "AllowedValues": "v,vv,vvv",
1556
- "ApplyType": "STATIC",
1557
- "DataType": "STRING",
1558
- "DefaultValue": "v",
1559
- "Description": "Verbose level for memcached.",
1560
- "IsCollection": false,
1561
- "IsModifiable": true,
1562
- "Name": "VERBOSITY",
1563
- "Value": "v"
1564
- },
1565
- {
1566
- "AllowedValues": "0,1",
1567
- "ApplyType": "STATIC",
1568
- "DataType": "BOOLEAN",
1569
- "DefaultValue": "0",
1570
- "Description": "Disables the use of row locks when using the InnoDB memcached interface.",
1571
- "IsCollection": false,
1572
- "IsModifiable": true,
1573
- "Name": "INNODB_API_DISABLE_ROWLOCK",
1574
- "Value": "0"
1575
- },
1576
- {
1577
- "AllowedValues": "auto,ascii,binary",
1578
- "ApplyType": "STATIC",
1579
- "DataType": "STRING",
1580
- "DefaultValue": "auto",
1581
- "Description": "The binding protocol to use which can be either auto, ascii, or binary. The default is auto which means the server automatically negotiates the protocol with the client.",
1582
- "IsCollection": false,
1583
- "IsModifiable": true,
1584
- "Name": "BINDING_PROTOCOL",
1585
- "Value": "auto"
1586
- },
1587
- {
1588
- "AllowedValues": "1-48",
1589
- "ApplyType": "STATIC",
1590
- "DataType": "INTEGER",
1591
- "DefaultValue": "48",
1592
- "Description": "Minimum chunk size in bytes to allocate for the smallest item's key, value, and flags. The default is 48 and you can get a significant memory efficiency gain with a lower value.",
1593
- "IsCollection": false,
1594
- "IsModifiable": true,
1595
- "Name": "CHUNK_SIZE",
1596
- "Value": "48"
1597
- },
1598
- {
1599
- "AllowedValues": "0-3",
1600
- "ApplyType": "STATIC",
1601
- "DataType": "INTEGER",
1602
- "DefaultValue": "0",
1603
- "Description": "Lets you control the transaction isolation level on queries processed by the memcached interface.",
1604
- "IsCollection": false,
1605
- "IsModifiable": true,
1606
- "Name": "INNODB_API_TRX_LEVEL",
1607
- "Value": "0"
1608
- },
1609
- {
1610
- "AllowedValues": "1-4294967295",
1611
- "ApplyType": "STATIC",
1612
- "DataType": "INTEGER",
1613
- "DefaultValue": "1",
1614
- "Description": "Specifies how many memcached write operations, such as add, set, or incr, to perform before doing a COMMIT to start a new transaction",
1615
- "IsCollection": false,
1616
- "IsModifiable": true,
1617
- "Name": "DAEMON_MEMCACHED_W_BATCH_SIZE",
1618
- "Value": "1"
1619
- },
1620
- {
1621
- "AllowedValues": "1-4294967295",
1622
- "ApplyType": "STATIC",
1623
- "DataType": "INTEGER",
1624
- "DefaultValue": "1",
1625
- "Description": "Specifies how many memcached read operations (get) to perform before doing a COMMIT to start a new transaction",
1626
- "IsCollection": false,
1627
- "IsModifiable": true,
1628
- "Name": "DAEMON_MEMCACHED_R_BATCH_SIZE",
1629
- "Value": "1"
1630
- },
1631
- {
1632
- "AllowedValues": "0,1",
1633
- "ApplyType": "STATIC",
1634
- "DataType": "BOOLEAN",
1635
- "DefaultValue": "0",
1636
- "Description": "Locks the table used by the InnoDB memcached plugin, so that it cannot be dropped or altered by DDL through the SQL interface.",
1637
- "IsCollection": false,
1638
- "IsModifiable": true,
1639
- "Name": "INNODB_API_ENABLE_MDL",
1640
- "Value": "0"
1641
- },
1642
- {
1643
- "AllowedValues": "1-2048",
1644
- "ApplyType": "STATIC",
1645
- "DataType": "INTEGER",
1646
- "DefaultValue": "1024",
1647
- "Description": "The backlog queue configures how many network connections can be waiting to be processed by memcached",
1648
- "IsCollection": false,
1649
- "IsModifiable": true,
1650
- "Name": "BACKLOG_QUEUE_LIMIT",
1651
- "Value": "1024"
1652
- }
1653
- ],
1654
- "Permanent": false,
1655
- "Persistent": false,
1656
- "Port": 11211,
1657
- "VpcSecurityGroupMemberships": [
1658
-
1659
- ]
1660
- }
1661
- ]
1662
1452
  },
1663
1453
  "comments": {
1664
1454
  "input": {
@@ -1691,71 +1481,6 @@
1691
1481
  "title": "To promote a read replica"
1692
1482
  }
1693
1483
  ],
1694
- "PromoteReadReplicaDBCluster": [
1695
- {
1696
- "input": {
1697
- "DBClusterIdentifier": "sample-cluster"
1698
- },
1699
- "output": {
1700
- "AllocatedStorage": 1,
1701
- "AvailabilityZones": [
1702
- "us-west-2a",
1703
- "us-west-2b",
1704
- "us-west-2c"
1705
- ],
1706
- "BackupRetentionPeriod": 1,
1707
- "DBClusterArn": "arn:aws:rds:us-west-2:123456789012:cluster:sample-cluster",
1708
- "DBClusterIdentifier": "sample-cluster",
1709
- "DBClusterMembers": [
1710
- {
1711
- "DBClusterParameterGroupStatus": "in-sync",
1712
- "DBInstanceIdentifier": "sample",
1713
- "IsClusterWriter": true,
1714
- "PromotionTier": 0
1715
- },
1716
- {
1717
- "DBClusterParameterGroupStatus": "in-sync",
1718
- "DBInstanceIdentifier": "sample-us-west-2a",
1719
- "IsClusterWriter": false,
1720
- "PromotionTier": 0
1721
- }
1722
- ],
1723
- "DBClusterParameterGroup": "default.aurora5.6",
1724
- "DBSubnetGroup": "default",
1725
- "DatabaseName": "sample",
1726
- "DbClusterResourceId": "cluster-YJFQLUT5KMASH2ZRHSE7LSTRMM",
1727
- "Endpoint": "sample-cluster.cluster-cnubrrfwfke7.us-west-2.rds.amazonaws.com",
1728
- "Engine": "aurora",
1729
- "EngineVersion": "5.6.10a",
1730
- "HostedZoneId": "Z1PVIF0B656C1W",
1731
- "MasterUsername": "mymasteruser",
1732
- "Port": 3306,
1733
- "PreferredBackupWindow": "11:54-12:24",
1734
- "PreferredMaintenanceWindow": "fri:06:47-fri:07:17",
1735
- "ReadReplicaIdentifiers": [
1736
-
1737
- ],
1738
- "ReaderEndpoint": "sample-cluster.cluster-ro-cnubrrfwfke7.us-west-2.rds.amazonaws.com",
1739
- "Status": "creating",
1740
- "StorageEncrypted": false,
1741
- "VpcSecurityGroups": [
1742
- {
1743
- "Status": "active",
1744
- "VpcSecurityGroupId": "sg-122c1671"
1745
- }
1746
- ]
1747
- },
1748
- "comments": {
1749
- "input": {
1750
- },
1751
- "output": {
1752
- }
1753
- },
1754
- "description": "The following example promotes Read Replica DB cluster to a standalone DB cluster.",
1755
- "id": "to-promote-an-aurora-replica-to-the-primary-instance-of-a-db-cluster-1473954817725",
1756
- "title": "To promote a Read Replica DB cluster to a standalone DB cluster"
1757
- }
1758
- ],
1759
1484
  "PurchaseReservedDBInstancesOffering": [
1760
1485
  {
1761
1486
  "input": {
@@ -1870,81 +1595,6 @@
1870
1595
  "title": "To reset the values of a DB parameter group"
1871
1596
  }
1872
1597
  ],
1873
- "RestoreDBClusterFromS3": [
1874
- {
1875
- "input": {
1876
- "DBClusterIdentifier": "sample-restored-cluster",
1877
- "DatabaseName": "sample",
1878
- "Engine": "aurora",
1879
- "MasterUserPassword": "mymasterpassword",
1880
- "MasterUsername": "mymasteruser",
1881
- "Port": 3306,
1882
- "S3BucketName": "my-aurora-bucket",
1883
- "S3IngestionRoleArn": "arn:aws:iam::123456789012:role/S3RestoreAccess",
1884
- "S3Prefix": "",
1885
- "SourceEngine": "mysql",
1886
- "SourceEngineVersion": "5.6.22"
1887
- },
1888
- "output": {
1889
- "AllocatedStorage": 1,
1890
- "AvailabilityZones": [
1891
- "us-west-2a",
1892
- "us-west-2b",
1893
- "us-west-2c"
1894
- ],
1895
- "BackupRetentionPeriod": 1,
1896
- "DBClusterArn": "arn:aws:rds:us-west-2:123456789012:cluster:sample-restored-cluster",
1897
- "DBClusterIdentifier": "sample-restored-cluster",
1898
- "DBClusterMembers": [
1899
- {
1900
- "DBClusterParameterGroupStatus": "in-sync",
1901
- "DBInstanceIdentifier": "sample-restored",
1902
- "IsClusterWriter": true,
1903
- "PromotionTier": 0
1904
- },
1905
- {
1906
- "DBClusterParameterGroupStatus": "in-sync",
1907
- "DBInstanceIdentifier": "sample-restored-us-west-2a",
1908
- "IsClusterWriter": false,
1909
- "PromotionTier": 0
1910
- }
1911
- ],
1912
- "DBClusterParameterGroup": "default.aurora5.6",
1913
- "DBSubnetGroup": "default",
1914
- "DatabaseName": "sample",
1915
- "DbClusterResourceId": "cluster-YJFQLUT5KMASB2ZRHSE7LSTRMM",
1916
- "Endpoint": "sample-restored-cluster.cluster-cnubrrfwfkb5.us-west-2.rds.amazonaws.com",
1917
- "Engine": "aurora",
1918
- "EngineVersion": "5.6.10a",
1919
- "HostedZoneId": "Z1PVIF0B446C1W",
1920
- "MasterUsername": "mymasteruser",
1921
- "Port": 3306,
1922
- "PreferredBackupWindow": "11:54-12:24",
1923
- "PreferredMaintenanceWindow": "fri:06:47-fri:07:17",
1924
- "ReadReplicaIdentifiers": [
1925
-
1926
- ],
1927
- "ReaderEndpoint": "sample-restored-cluster.cluster-ro-cnubrrfwfkb5.us-west-2.rds.amazonaws.com",
1928
- "Status": "creating",
1929
- "StorageEncrypted": false,
1930
- "VpcSecurityGroups": [
1931
- {
1932
- "Status": "active",
1933
- "VpcSecurityGroupId": "sg-122c1671"
1934
- }
1935
- ]
1936
- },
1937
- "comments": {
1938
- "input": {
1939
- },
1940
- "output": {
1941
- }
1942
- },
1943
- "description": "The following example restores an Amazon Aurora DB cluster from an Amazon S3 bucket.",
1944
- "id": "to-restore-an-amazon-aurora-db-cluster-from-an-amazon-s3-bucket-1473955754456",
1945
- "title": "To restore an Amazon Aurora DB cluster from an Amazon S3 bucket"
1946
- }
1947
- ],
1948
1598
  "RestoreDBClusterFromSnapshot": [
1949
1599
  {
1950
1600
  "input": {
@@ -1953,53 +1603,6 @@
1953
1603
  "SnapshotIdentifier": "sample-cluster-snapshot1"
1954
1604
  },
1955
1605
  "output": {
1956
- "AllocatedStorage": 1,
1957
- "AvailabilityZones": [
1958
- "us-west-2a",
1959
- "us-west-2b",
1960
- "us-west-2c"
1961
- ],
1962
- "BackupRetentionPeriod": 1,
1963
- "DBClusterArn": "arn:aws:rds:us-west-2:123456789012:cluster:restored-cluster1",
1964
- "DBClusterIdentifier": "restored-cluster1",
1965
- "DBClusterMembers": [
1966
- {
1967
- "DBClusterParameterGroupStatus": "in-sync",
1968
- "DBInstanceIdentifier": "sample-instance",
1969
- "IsClusterWriter": true,
1970
- "PromotionTier": 0
1971
- },
1972
- {
1973
- "DBClusterParameterGroupStatus": "in-sync",
1974
- "DBInstanceIdentifier": "sample-instance-us-west-2a",
1975
- "IsClusterWriter": false,
1976
- "PromotionTier": 0
1977
- }
1978
- ],
1979
- "DBClusterParameterGroup": "default.aurora5.6",
1980
- "DBSubnetGroup": "default",
1981
- "DatabaseName": "sample",
1982
- "DbClusterResourceId": "cluster-YJFQLUT5KMASB2ZRHSB5LSTRMM",
1983
- "Endpoint": "restored-cluster1.cluster-cnubrrfwfkk3.us-west-2.rds.amazonaws.com",
1984
- "Engine": "aurora",
1985
- "EngineVersion": "5.6.10a",
1986
- "HostedZoneId": "Z1PVIF0B446B2W",
1987
- "MasterUsername": "mymasteruser",
1988
- "Port": 3306,
1989
- "PreferredBackupWindow": "11:54-12:24",
1990
- "PreferredMaintenanceWindow": "fri:06:47-fri:07:17",
1991
- "ReadReplicaIdentifiers": [
1992
-
1993
- ],
1994
- "ReaderEndpoint": "restored-cluster1.cluster-ro-cnubrrfwfkk3.us-west-2.rds.amazonaws.com",
1995
- "Status": "creating",
1996
- "StorageEncrypted": false,
1997
- "VpcSecurityGroups": [
1998
- {
1999
- "Status": "active",
2000
- "VpcSecurityGroupId": "sg-212c1671"
2001
- }
2002
- ]
2003
1606
  },
2004
1607
  "comments": {
2005
1608
  "input": {
@@ -2020,53 +1623,6 @@
2020
1623
  "SourceDBClusterIdentifier": "sample-cluster1"
2021
1624
  },
2022
1625
  "output": {
2023
- "AllocatedStorage": 1,
2024
- "AvailabilityZones": [
2025
- "us-west-2a",
2026
- "us-west-2b",
2027
- "us-west-2c"
2028
- ],
2029
- "BackupRetentionPeriod": 1,
2030
- "DBClusterArn": "arn:aws:rds:us-west-2:123456789012:cluster:sample-restored-cluster1",
2031
- "DBClusterIdentifier": "sample-restored-cluster1",
2032
- "DBClusterMembers": [
2033
- {
2034
- "DBClusterParameterGroupStatus": "in-sync",
2035
- "DBInstanceIdentifier": "sample-restored",
2036
- "IsClusterWriter": true,
2037
- "PromotionTier": 0
2038
- },
2039
- {
2040
- "DBClusterParameterGroupStatus": "in-sync",
2041
- "DBInstanceIdentifier": "sample-restored-us-west-2a",
2042
- "IsClusterWriter": false,
2043
- "PromotionTier": 0
2044
- }
2045
- ],
2046
- "DBClusterParameterGroup": "default.aurora5.6",
2047
- "DBSubnetGroup": "default",
2048
- "DatabaseName": "sample",
2049
- "DbClusterResourceId": "cluster-YJFQLUT5KMASB2ZRHSE7LSTRMM",
2050
- "Endpoint": "sample-restored-cluster1.cluster-cnubrrfwfkf4.us-west-2.rds.amazonaws.com",
2051
- "Engine": "aurora",
2052
- "EngineVersion": "5.6.10a",
2053
- "HostedZoneId": "Z1PVIF0B726C1W",
2054
- "MasterUsername": "mymasteruser",
2055
- "Port": 3306,
2056
- "PreferredBackupWindow": "11:54-12:24",
2057
- "PreferredMaintenanceWindow": "fri:06:47-fri:07:17",
2058
- "ReadReplicaIdentifiers": [
2059
-
2060
- ],
2061
- "ReaderEndpoint": "sample-restored-cluster1.cluster-ro-cnubrrfwfkf4.us-west-2.rds.amazonaws.com",
2062
- "Status": "creating",
2063
- "StorageEncrypted": false,
2064
- "VpcSecurityGroups": [
2065
- {
2066
- "Status": "active",
2067
- "VpcSecurityGroupId": "sg-332c1671"
2068
- }
2069
- ]
2070
1626
  },
2071
1627
  "comments": {
2072
1628
  "input": {