cdk-docker-image-deployment 0.0.116 → 0.0.118
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +11 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/elasticache-2015-02-02.min.json +160 -145
- package/node_modules/aws-sdk/apis/memorydb-2021-01-01.min.json +136 -3
- package/node_modules/aws-sdk/apis/memorydb-2021-01-01.paginators.json +73 -1
- package/node_modules/aws-sdk/apis/network-firewall-2020-11-12.min.json +50 -49
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +242 -236
- package/node_modules/aws-sdk/apis/route53-recovery-control-config-2020-11-02.paginators.json +10 -5
- package/node_modules/aws-sdk/clients/elasticache.d.ts +46 -9
- package/node_modules/aws-sdk/clients/memorydb.d.ts +209 -0
- package/node_modules/aws-sdk/clients/networkfirewall.d.ts +6 -1
- package/node_modules/aws-sdk/clients/rds.d.ts +27 -5
- package/node_modules/aws-sdk/clients/route53recoverycontrolconfig.d.ts +10 -10
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +7 -7
- package/node_modules/aws-sdk/dist/aws-sdk.js +405 -384
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +57 -57
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
package/node_modules/aws-sdk/apis/route53-recovery-control-config-2020-11-02.paginators.json
CHANGED
|
@@ -3,27 +3,32 @@
|
|
|
3
3
|
"ListAssociatedRoute53HealthChecks" : {
|
|
4
4
|
"input_token" : "NextToken",
|
|
5
5
|
"output_token" : "NextToken",
|
|
6
|
-
"limit_key" : "MaxResults"
|
|
6
|
+
"limit_key" : "MaxResults",
|
|
7
|
+
"result_key" : "HealthCheckIds"
|
|
7
8
|
},
|
|
8
9
|
"ListClusters" : {
|
|
9
10
|
"input_token" : "NextToken",
|
|
10
11
|
"output_token" : "NextToken",
|
|
11
|
-
"limit_key" : "MaxResults"
|
|
12
|
+
"limit_key" : "MaxResults",
|
|
13
|
+
"result_key" : "Clusters"
|
|
12
14
|
},
|
|
13
15
|
"ListControlPanels" : {
|
|
14
16
|
"input_token" : "NextToken",
|
|
15
17
|
"output_token" : "NextToken",
|
|
16
|
-
"limit_key" : "MaxResults"
|
|
18
|
+
"limit_key" : "MaxResults",
|
|
19
|
+
"result_key" : "ControlPanels"
|
|
17
20
|
},
|
|
18
21
|
"ListRoutingControls" : {
|
|
19
22
|
"input_token" : "NextToken",
|
|
20
23
|
"output_token" : "NextToken",
|
|
21
|
-
"limit_key" : "MaxResults"
|
|
24
|
+
"limit_key" : "MaxResults",
|
|
25
|
+
"result_key" : "RoutingControls"
|
|
22
26
|
},
|
|
23
27
|
"ListSafetyRules" : {
|
|
24
28
|
"input_token" : "NextToken",
|
|
25
29
|
"output_token" : "NextToken",
|
|
26
|
-
"limit_key" : "MaxResults"
|
|
30
|
+
"limit_key" : "MaxResults",
|
|
31
|
+
"result_key" : "SafetyRules"
|
|
27
32
|
}
|
|
28
33
|
}
|
|
29
34
|
}
|
|
@@ -766,7 +766,7 @@ declare namespace ElastiCache {
|
|
|
766
766
|
*/
|
|
767
767
|
AuthTokenLastModifiedDate?: TStamp;
|
|
768
768
|
/**
|
|
769
|
-
* A flag that enables in-transit encryption when set to true.
|
|
769
|
+
* A flag that enables in-transit encryption when set to true. Required: Only available when creating a replication group in an Amazon VPC using redis version 3.2.6, 4.x or later. Default: false
|
|
770
770
|
*/
|
|
771
771
|
TransitEncryptionEnabled?: BooleanOptional;
|
|
772
772
|
/**
|
|
@@ -793,6 +793,10 @@ declare namespace ElastiCache {
|
|
|
793
793
|
* The network type associated with the cluster, either ipv4 | ipv6. IPv6 is supported for workloads using Redis engine version 6.2 onward or Memcached engine version 1.6.6 on all instances built on the Nitro system.
|
|
794
794
|
*/
|
|
795
795
|
IpDiscovery?: IpDiscovery;
|
|
796
|
+
/**
|
|
797
|
+
* A setting that allows you to migrate your clients to use in-transit encryption, with no downtime.
|
|
798
|
+
*/
|
|
799
|
+
TransitEncryptionMode?: TransitEncryptionMode;
|
|
796
800
|
}
|
|
797
801
|
export type CacheClusterIdList = String[];
|
|
798
802
|
export type CacheClusterList = CacheCluster[];
|
|
@@ -1283,7 +1287,7 @@ declare namespace ElastiCache {
|
|
|
1283
1287
|
*/
|
|
1284
1288
|
LogDeliveryConfigurations?: LogDeliveryConfigurationRequestList;
|
|
1285
1289
|
/**
|
|
1286
|
-
* A flag that enables in-transit encryption when set to true.
|
|
1290
|
+
* A flag that enables in-transit encryption when set to true. Only available when creating a cache cluster in an Amazon VPC using Memcached version 1.6.12 or later.
|
|
1287
1291
|
*/
|
|
1288
1292
|
TransitEncryptionEnabled?: BooleanOptional;
|
|
1289
1293
|
/**
|
|
@@ -1424,7 +1428,7 @@ declare namespace ElastiCache {
|
|
|
1424
1428
|
*/
|
|
1425
1429
|
CacheNodeType?: String;
|
|
1426
1430
|
/**
|
|
1427
|
-
* The name of the cache engine to be used for the clusters in this replication group.
|
|
1431
|
+
* The name of the cache engine to be used for the clusters in this replication group. The value must be set to Redis.
|
|
1428
1432
|
*/
|
|
1429
1433
|
Engine?: String;
|
|
1430
1434
|
/**
|
|
@@ -1488,7 +1492,7 @@ declare namespace ElastiCache {
|
|
|
1488
1492
|
*/
|
|
1489
1493
|
AuthToken?: String;
|
|
1490
1494
|
/**
|
|
1491
|
-
* A flag that enables in-transit encryption when set to true.
|
|
1495
|
+
* A flag that enables in-transit encryption when set to true. This parameter is valid only if the Engine parameter is redis, the EngineVersion parameter is 3.2.6, 4.x or later, and the cluster is being created in an Amazon VPC. If you enable in-transit encryption, you must also specify a value for CacheSubnetGroup. Required: Only available when creating a replication group in an Amazon VPC using redis version 3.2.6, 4.x or later. Default: false For HIPAA compliance, you must specify TransitEncryptionEnabled as true, an AuthToken, and a CacheSubnetGroup.
|
|
1492
1496
|
*/
|
|
1493
1497
|
TransitEncryptionEnabled?: BooleanOptional;
|
|
1494
1498
|
/**
|
|
@@ -1519,6 +1523,10 @@ declare namespace ElastiCache {
|
|
|
1519
1523
|
* The network type you choose when creating a replication group, either ipv4 | ipv6. IPv6 is supported for workloads using Redis engine version 6.2 onward or Memcached engine version 1.6.6 on all instances built on the Nitro system.
|
|
1520
1524
|
*/
|
|
1521
1525
|
IpDiscovery?: IpDiscovery;
|
|
1526
|
+
/**
|
|
1527
|
+
* A setting that allows you to migrate your clients to use in-transit encryption, with no downtime. When setting TransitEncryptionEnabled to true, you can set your TransitEncryptionMode to preferred in the same request, to allow both encrypted and unencrypted connections at the same time. Once you migrate all your Redis clients to use encrypted connections you can modify the value to required to allow encrypted connections only. Setting TransitEncryptionMode to required is a two-step process that requires you to first set the TransitEncryptionMode to preferred first, after that you can set TransitEncryptionMode to required.
|
|
1528
|
+
*/
|
|
1529
|
+
TransitEncryptionMode?: TransitEncryptionMode;
|
|
1522
1530
|
}
|
|
1523
1531
|
export interface CreateReplicationGroupResult {
|
|
1524
1532
|
ReplicationGroup?: ReplicationGroup;
|
|
@@ -1776,7 +1784,7 @@ declare namespace ElastiCache {
|
|
|
1776
1784
|
*/
|
|
1777
1785
|
EngineVersion?: String;
|
|
1778
1786
|
/**
|
|
1779
|
-
* The name of a specific cache parameter group family to return details for. Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x | redis6.2 Constraints: Must be 1 to 255 alphanumeric characters First character must be a letter Cannot end with a hyphen or contain two consecutive hyphens
|
|
1787
|
+
* The name of a specific cache parameter group family to return details for. Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x | redis6.2 | redis7 Constraints: Must be 1 to 255 alphanumeric characters First character must be a letter Cannot end with a hyphen or contain two consecutive hyphens
|
|
1780
1788
|
*/
|
|
1781
1789
|
CacheParameterGroupFamily?: String;
|
|
1782
1790
|
/**
|
|
@@ -1854,7 +1862,7 @@ declare namespace ElastiCache {
|
|
|
1854
1862
|
}
|
|
1855
1863
|
export interface DescribeEngineDefaultParametersMessage {
|
|
1856
1864
|
/**
|
|
1857
|
-
* The name of the cache parameter group family. Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x | redis6.2
|
|
1865
|
+
* The name of the cache parameter group family. Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x | redis6.2 | redis7
|
|
1858
1866
|
*/
|
|
1859
1867
|
CacheParameterGroupFamily: String;
|
|
1860
1868
|
/**
|
|
@@ -2348,7 +2356,7 @@ declare namespace ElastiCache {
|
|
|
2348
2356
|
*/
|
|
2349
2357
|
AuthTokenEnabled?: BooleanOptional;
|
|
2350
2358
|
/**
|
|
2351
|
-
* A flag that enables in-transit encryption when set to true.
|
|
2359
|
+
* A flag that enables in-transit encryption when set to true. Required: Only available when creating a replication group in an Amazon VPC using redis version 3.2.6, 4.x or later.
|
|
2352
2360
|
*/
|
|
2353
2361
|
TransitEncryptionEnabled?: BooleanOptional;
|
|
2354
2362
|
/**
|
|
@@ -2770,6 +2778,14 @@ declare namespace ElastiCache {
|
|
|
2770
2778
|
* The network type you choose when modifying a cluster, either ipv4 | ipv6. IPv6 is supported for workloads using Redis engine version 6.2 onward or Memcached engine version 1.6.6 on all instances built on the Nitro system.
|
|
2771
2779
|
*/
|
|
2772
2780
|
IpDiscovery?: IpDiscovery;
|
|
2781
|
+
/**
|
|
2782
|
+
* A flag that enables in-transit encryption when set to true. If you are enabling in-transit encryption for an existing cluster, you must also set TransitEncryptionMode to preferred.
|
|
2783
|
+
*/
|
|
2784
|
+
TransitEncryptionEnabled?: BooleanOptional;
|
|
2785
|
+
/**
|
|
2786
|
+
* A setting that allows you to migrate your clients to use in-transit encryption, with no downtime. You must set TransitEncryptionEnabled to true, for your existing cluster, and set TransitEncryptionMode to preferred in the same request to allow both encrypted and unencrypted connections at the same time. Once you migrate all your Redis clients to use encrypted connections you can set the value to required to allow encrypted connections only. Setting TransitEncryptionMode to required is a two-step process that requires you to first set the TransitEncryptionMode to preferred first, after that you can set TransitEncryptionMode to required.
|
|
2787
|
+
*/
|
|
2788
|
+
TransitEncryptionMode?: TransitEncryptionMode;
|
|
2773
2789
|
}
|
|
2774
2790
|
export interface ModifyReplicationGroupResult {
|
|
2775
2791
|
ReplicationGroup?: ReplicationGroup;
|
|
@@ -3125,6 +3141,14 @@ declare namespace ElastiCache {
|
|
|
3125
3141
|
* The log delivery configurations being modified
|
|
3126
3142
|
*/
|
|
3127
3143
|
LogDeliveryConfigurations?: PendingLogDeliveryConfigurationList;
|
|
3144
|
+
/**
|
|
3145
|
+
* A flag that enables in-transit encryption when set to true.
|
|
3146
|
+
*/
|
|
3147
|
+
TransitEncryptionEnabled?: BooleanOptional;
|
|
3148
|
+
/**
|
|
3149
|
+
* A setting that allows you to migrate your clients to use in-transit encryption, with no downtime.
|
|
3150
|
+
*/
|
|
3151
|
+
TransitEncryptionMode?: TransitEncryptionMode;
|
|
3128
3152
|
}
|
|
3129
3153
|
export type PreferredAvailabilityZoneList = String[];
|
|
3130
3154
|
export type PreferredOutpostArnList = String[];
|
|
@@ -3302,7 +3326,7 @@ declare namespace ElastiCache {
|
|
|
3302
3326
|
*/
|
|
3303
3327
|
AuthTokenLastModifiedDate?: TStamp;
|
|
3304
3328
|
/**
|
|
3305
|
-
* A flag that enables in-transit encryption when set to true.
|
|
3329
|
+
* A flag that enables in-transit encryption when set to true. Required: Only available when creating a replication group in an Amazon VPC using redis version 3.2.6, 4.x or later. Default: false
|
|
3306
3330
|
*/
|
|
3307
3331
|
TransitEncryptionEnabled?: BooleanOptional;
|
|
3308
3332
|
/**
|
|
@@ -3338,7 +3362,7 @@ declare namespace ElastiCache {
|
|
|
3338
3362
|
*/
|
|
3339
3363
|
DataTiering?: DataTieringStatus;
|
|
3340
3364
|
/**
|
|
3341
|
-
*
|
|
3365
|
+
* If you are running Redis engine version 6.0 or later, set this parameter to yes if you want to opt-in to the next auto minor version upgrade campaign. This parameter is disabled for previous versions.
|
|
3342
3366
|
*/
|
|
3343
3367
|
AutoMinorVersionUpgrade?: Boolean;
|
|
3344
3368
|
/**
|
|
@@ -3349,6 +3373,10 @@ declare namespace ElastiCache {
|
|
|
3349
3373
|
* The network type you choose when modifying a cluster, either ipv4 | ipv6. IPv6 is supported for workloads using Redis engine version 6.2 onward or Memcached engine version 1.6.6 on all instances built on the Nitro system.
|
|
3350
3374
|
*/
|
|
3351
3375
|
IpDiscovery?: IpDiscovery;
|
|
3376
|
+
/**
|
|
3377
|
+
* A setting that allows you to migrate your clients to use in-transit encryption, with no downtime.
|
|
3378
|
+
*/
|
|
3379
|
+
TransitEncryptionMode?: TransitEncryptionMode;
|
|
3352
3380
|
}
|
|
3353
3381
|
export type ReplicationGroupIdList = String[];
|
|
3354
3382
|
export type ReplicationGroupList = ReplicationGroup[];
|
|
@@ -3388,6 +3416,14 @@ declare namespace ElastiCache {
|
|
|
3388
3416
|
* The log delivery configurations being modified
|
|
3389
3417
|
*/
|
|
3390
3418
|
LogDeliveryConfigurations?: PendingLogDeliveryConfigurationList;
|
|
3419
|
+
/**
|
|
3420
|
+
* A flag that enables in-transit encryption when set to true.
|
|
3421
|
+
*/
|
|
3422
|
+
TransitEncryptionEnabled?: BooleanOptional;
|
|
3423
|
+
/**
|
|
3424
|
+
* A setting that allows you to migrate your clients to use in-transit encryption, with no downtime.
|
|
3425
|
+
*/
|
|
3426
|
+
TransitEncryptionMode?: TransitEncryptionMode;
|
|
3391
3427
|
}
|
|
3392
3428
|
export interface ReservedCacheNode {
|
|
3393
3429
|
/**
|
|
@@ -3829,6 +3865,7 @@ declare namespace ElastiCache {
|
|
|
3829
3865
|
*/
|
|
3830
3866
|
EndTime?: TStamp;
|
|
3831
3867
|
}
|
|
3868
|
+
export type TransitEncryptionMode = "preferred"|"required"|string;
|
|
3832
3869
|
export type UGReplicationGroupIdList = String[];
|
|
3833
3870
|
export interface UnprocessedUpdateAction {
|
|
3834
3871
|
/**
|
|
@@ -171,6 +171,22 @@ declare class MemoryDB extends Service {
|
|
|
171
171
|
* Returns the detailed parameter list for a particular parameter group.
|
|
172
172
|
*/
|
|
173
173
|
describeParameters(callback?: (err: AWSError, data: MemoryDB.Types.DescribeParametersResponse) => void): Request<MemoryDB.Types.DescribeParametersResponse, AWSError>;
|
|
174
|
+
/**
|
|
175
|
+
* Returns information about reserved nodes for this account, or about a specified reserved node.
|
|
176
|
+
*/
|
|
177
|
+
describeReservedNodes(params: MemoryDB.Types.DescribeReservedNodesRequest, callback?: (err: AWSError, data: MemoryDB.Types.DescribeReservedNodesResponse) => void): Request<MemoryDB.Types.DescribeReservedNodesResponse, AWSError>;
|
|
178
|
+
/**
|
|
179
|
+
* Returns information about reserved nodes for this account, or about a specified reserved node.
|
|
180
|
+
*/
|
|
181
|
+
describeReservedNodes(callback?: (err: AWSError, data: MemoryDB.Types.DescribeReservedNodesResponse) => void): Request<MemoryDB.Types.DescribeReservedNodesResponse, AWSError>;
|
|
182
|
+
/**
|
|
183
|
+
* Lists available reserved node offerings.
|
|
184
|
+
*/
|
|
185
|
+
describeReservedNodesOfferings(params: MemoryDB.Types.DescribeReservedNodesOfferingsRequest, callback?: (err: AWSError, data: MemoryDB.Types.DescribeReservedNodesOfferingsResponse) => void): Request<MemoryDB.Types.DescribeReservedNodesOfferingsResponse, AWSError>;
|
|
186
|
+
/**
|
|
187
|
+
* Lists available reserved node offerings.
|
|
188
|
+
*/
|
|
189
|
+
describeReservedNodesOfferings(callback?: (err: AWSError, data: MemoryDB.Types.DescribeReservedNodesOfferingsResponse) => void): Request<MemoryDB.Types.DescribeReservedNodesOfferingsResponse, AWSError>;
|
|
174
190
|
/**
|
|
175
191
|
* Returns details of the service updates
|
|
176
192
|
*/
|
|
@@ -227,6 +243,14 @@ declare class MemoryDB extends Service {
|
|
|
227
243
|
* Lists all tags currently on a named resource. A tag is a key-value pair where the key and value are case-sensitive. You can use tags to categorize and track your MemoryDB resources. For more information, see Tagging your MemoryDB resources
|
|
228
244
|
*/
|
|
229
245
|
listTags(callback?: (err: AWSError, data: MemoryDB.Types.ListTagsResponse) => void): Request<MemoryDB.Types.ListTagsResponse, AWSError>;
|
|
246
|
+
/**
|
|
247
|
+
* Allows you to purchase a reserved node offering. Reserved nodes are not eligible for cancellation and are non-refundable.
|
|
248
|
+
*/
|
|
249
|
+
purchaseReservedNodesOffering(params: MemoryDB.Types.PurchaseReservedNodesOfferingRequest, callback?: (err: AWSError, data: MemoryDB.Types.PurchaseReservedNodesOfferingResponse) => void): Request<MemoryDB.Types.PurchaseReservedNodesOfferingResponse, AWSError>;
|
|
250
|
+
/**
|
|
251
|
+
* Allows you to purchase a reserved node offering. Reserved nodes are not eligible for cancellation and are non-refundable.
|
|
252
|
+
*/
|
|
253
|
+
purchaseReservedNodesOffering(callback?: (err: AWSError, data: MemoryDB.Types.PurchaseReservedNodesOfferingResponse) => void): Request<MemoryDB.Types.PurchaseReservedNodesOfferingResponse, AWSError>;
|
|
230
254
|
/**
|
|
231
255
|
* Modifies the parameters of a parameter group to the engine or system default value. You can reset specific parameters by submitting a list of parameter names. To reset the entire parameter group, specify the AllParameters and ParameterGroupName parameters.
|
|
232
256
|
*/
|
|
@@ -1063,6 +1087,82 @@ declare namespace MemoryDB {
|
|
|
1063
1087
|
*/
|
|
1064
1088
|
Parameters?: ParametersList;
|
|
1065
1089
|
}
|
|
1090
|
+
export interface DescribeReservedNodesOfferingsRequest {
|
|
1091
|
+
/**
|
|
1092
|
+
* The offering identifier filter value. Use this parameter to show only the available offering that matches the specified reservation identifier.
|
|
1093
|
+
*/
|
|
1094
|
+
ReservedNodesOfferingId?: String;
|
|
1095
|
+
/**
|
|
1096
|
+
* The node type for the reserved nodes. For more information, see Supported node types.
|
|
1097
|
+
*/
|
|
1098
|
+
NodeType?: String;
|
|
1099
|
+
/**
|
|
1100
|
+
* Duration filter value, specified in years or seconds. Use this parameter to show only reservations for a given duration.
|
|
1101
|
+
*/
|
|
1102
|
+
Duration?: String;
|
|
1103
|
+
/**
|
|
1104
|
+
* The offering type filter value. Use this parameter to show only the available offerings matching the specified offering type. Valid values: "All Upfront"|"Partial Upfront"| "No Upfront"
|
|
1105
|
+
*/
|
|
1106
|
+
OfferingType?: String;
|
|
1107
|
+
/**
|
|
1108
|
+
* The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a marker is included in the response so that the remaining results can be retrieved.
|
|
1109
|
+
*/
|
|
1110
|
+
MaxResults?: IntegerOptional;
|
|
1111
|
+
/**
|
|
1112
|
+
* An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
|
|
1113
|
+
*/
|
|
1114
|
+
NextToken?: String;
|
|
1115
|
+
}
|
|
1116
|
+
export interface DescribeReservedNodesOfferingsResponse {
|
|
1117
|
+
/**
|
|
1118
|
+
* An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
|
|
1119
|
+
*/
|
|
1120
|
+
NextToken?: String;
|
|
1121
|
+
/**
|
|
1122
|
+
* Lists available reserved node offerings.
|
|
1123
|
+
*/
|
|
1124
|
+
ReservedNodesOfferings?: ReservedNodesOfferingList;
|
|
1125
|
+
}
|
|
1126
|
+
export interface DescribeReservedNodesRequest {
|
|
1127
|
+
/**
|
|
1128
|
+
* The reserved node identifier filter value. Use this parameter to show only the reservation that matches the specified reservation ID.
|
|
1129
|
+
*/
|
|
1130
|
+
ReservationId?: String;
|
|
1131
|
+
/**
|
|
1132
|
+
* The offering identifier filter value. Use this parameter to show only purchased reservations matching the specified offering identifier.
|
|
1133
|
+
*/
|
|
1134
|
+
ReservedNodesOfferingId?: String;
|
|
1135
|
+
/**
|
|
1136
|
+
* The node type filter value. Use this parameter to show only those reservations matching the specified node type. For more information, see Supported node types.
|
|
1137
|
+
*/
|
|
1138
|
+
NodeType?: String;
|
|
1139
|
+
/**
|
|
1140
|
+
* The duration filter value, specified in years or seconds. Use this parameter to show only reservations for this duration.
|
|
1141
|
+
*/
|
|
1142
|
+
Duration?: String;
|
|
1143
|
+
/**
|
|
1144
|
+
* The offering type filter value. Use this parameter to show only the available offerings matching the specified offering type. Valid values: "All Upfront"|"Partial Upfront"| "No Upfront"
|
|
1145
|
+
*/
|
|
1146
|
+
OfferingType?: String;
|
|
1147
|
+
/**
|
|
1148
|
+
* The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a marker is included in the response so that the remaining results can be retrieved.
|
|
1149
|
+
*/
|
|
1150
|
+
MaxResults?: IntegerOptional;
|
|
1151
|
+
/**
|
|
1152
|
+
* An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
|
|
1153
|
+
*/
|
|
1154
|
+
NextToken?: String;
|
|
1155
|
+
}
|
|
1156
|
+
export interface DescribeReservedNodesResponse {
|
|
1157
|
+
/**
|
|
1158
|
+
* An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
|
|
1159
|
+
*/
|
|
1160
|
+
NextToken?: String;
|
|
1161
|
+
/**
|
|
1162
|
+
* Returns information about reserved nodes for this account, or about a specified reserved node.
|
|
1163
|
+
*/
|
|
1164
|
+
ReservedNodes?: ReservedNodeList;
|
|
1165
|
+
}
|
|
1066
1166
|
export interface DescribeServiceUpdatesRequest {
|
|
1067
1167
|
/**
|
|
1068
1168
|
* The unique ID of the service update to describe.
|
|
@@ -1385,12 +1485,121 @@ declare namespace MemoryDB {
|
|
|
1385
1485
|
Status?: ServiceUpdateStatus;
|
|
1386
1486
|
}
|
|
1387
1487
|
export type PendingModifiedServiceUpdateList = PendingModifiedServiceUpdate[];
|
|
1488
|
+
export interface PurchaseReservedNodesOfferingRequest {
|
|
1489
|
+
/**
|
|
1490
|
+
* The ID of the reserved node offering to purchase.
|
|
1491
|
+
*/
|
|
1492
|
+
ReservedNodesOfferingId: String;
|
|
1493
|
+
/**
|
|
1494
|
+
* A customer-specified identifier to track this reservation.
|
|
1495
|
+
*/
|
|
1496
|
+
ReservationId?: String;
|
|
1497
|
+
/**
|
|
1498
|
+
* The number of node instances to reserve.
|
|
1499
|
+
*/
|
|
1500
|
+
NodeCount?: IntegerOptional;
|
|
1501
|
+
/**
|
|
1502
|
+
* A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
|
|
1503
|
+
*/
|
|
1504
|
+
Tags?: TagList;
|
|
1505
|
+
}
|
|
1506
|
+
export interface PurchaseReservedNodesOfferingResponse {
|
|
1507
|
+
/**
|
|
1508
|
+
* Represents the output of a PurchaseReservedNodesOffering operation.
|
|
1509
|
+
*/
|
|
1510
|
+
ReservedNode?: ReservedNode;
|
|
1511
|
+
}
|
|
1512
|
+
export interface RecurringCharge {
|
|
1513
|
+
/**
|
|
1514
|
+
* The amount of the recurring charge to run this reserved node.
|
|
1515
|
+
*/
|
|
1516
|
+
RecurringChargeAmount?: Double;
|
|
1517
|
+
/**
|
|
1518
|
+
* The frequency of the recurring price charged to run this reserved node.
|
|
1519
|
+
*/
|
|
1520
|
+
RecurringChargeFrequency?: String;
|
|
1521
|
+
}
|
|
1522
|
+
export type RecurringChargeList = RecurringCharge[];
|
|
1388
1523
|
export interface ReplicaConfigurationRequest {
|
|
1389
1524
|
/**
|
|
1390
1525
|
* The number of replicas to scale up or down to
|
|
1391
1526
|
*/
|
|
1392
1527
|
ReplicaCount?: Integer;
|
|
1393
1528
|
}
|
|
1529
|
+
export interface ReservedNode {
|
|
1530
|
+
/**
|
|
1531
|
+
* A customer-specified identifier to track this reservation.
|
|
1532
|
+
*/
|
|
1533
|
+
ReservationId?: String;
|
|
1534
|
+
/**
|
|
1535
|
+
* The ID of the reserved node offering to purchase.
|
|
1536
|
+
*/
|
|
1537
|
+
ReservedNodesOfferingId?: String;
|
|
1538
|
+
/**
|
|
1539
|
+
* The node type for the reserved nodes.
|
|
1540
|
+
*/
|
|
1541
|
+
NodeType?: String;
|
|
1542
|
+
/**
|
|
1543
|
+
* The time the reservation started.
|
|
1544
|
+
*/
|
|
1545
|
+
StartTime?: TStamp;
|
|
1546
|
+
/**
|
|
1547
|
+
* The duration of the reservation in seconds.
|
|
1548
|
+
*/
|
|
1549
|
+
Duration?: Integer;
|
|
1550
|
+
/**
|
|
1551
|
+
* The fixed price charged for this reserved node.
|
|
1552
|
+
*/
|
|
1553
|
+
FixedPrice?: Double;
|
|
1554
|
+
/**
|
|
1555
|
+
* The number of nodes that have been reserved.
|
|
1556
|
+
*/
|
|
1557
|
+
NodeCount?: Integer;
|
|
1558
|
+
/**
|
|
1559
|
+
* The offering type of this reserved node.
|
|
1560
|
+
*/
|
|
1561
|
+
OfferingType?: String;
|
|
1562
|
+
/**
|
|
1563
|
+
* The state of the reserved node.
|
|
1564
|
+
*/
|
|
1565
|
+
State?: String;
|
|
1566
|
+
/**
|
|
1567
|
+
* The recurring price charged to run this reserved node.
|
|
1568
|
+
*/
|
|
1569
|
+
RecurringCharges?: RecurringChargeList;
|
|
1570
|
+
/**
|
|
1571
|
+
* The Amazon Resource Name (ARN) of the reserved node.
|
|
1572
|
+
*/
|
|
1573
|
+
ARN?: String;
|
|
1574
|
+
}
|
|
1575
|
+
export type ReservedNodeList = ReservedNode[];
|
|
1576
|
+
export interface ReservedNodesOffering {
|
|
1577
|
+
/**
|
|
1578
|
+
* The offering identifier.
|
|
1579
|
+
*/
|
|
1580
|
+
ReservedNodesOfferingId?: String;
|
|
1581
|
+
/**
|
|
1582
|
+
* The node type for the reserved nodes. For more information, see Supported node types.
|
|
1583
|
+
*/
|
|
1584
|
+
NodeType?: String;
|
|
1585
|
+
/**
|
|
1586
|
+
* The duration of the reservation in seconds.
|
|
1587
|
+
*/
|
|
1588
|
+
Duration?: Integer;
|
|
1589
|
+
/**
|
|
1590
|
+
* The fixed price charged for this reserved node.
|
|
1591
|
+
*/
|
|
1592
|
+
FixedPrice?: Double;
|
|
1593
|
+
/**
|
|
1594
|
+
* The offering type of this reserved node.
|
|
1595
|
+
*/
|
|
1596
|
+
OfferingType?: String;
|
|
1597
|
+
/**
|
|
1598
|
+
* The recurring price charged to run this reserved node.
|
|
1599
|
+
*/
|
|
1600
|
+
RecurringCharges?: RecurringChargeList;
|
|
1601
|
+
}
|
|
1602
|
+
export type ReservedNodesOfferingList = ReservedNodesOffering[];
|
|
1394
1603
|
export interface ResetParameterGroupRequest {
|
|
1395
1604
|
/**
|
|
1396
1605
|
* The name of the parameter group to reset.
|
|
@@ -358,9 +358,13 @@ declare namespace NetworkFirewall {
|
|
|
358
358
|
*/
|
|
359
359
|
EndpointId?: EndpointId;
|
|
360
360
|
/**
|
|
361
|
-
* The current status of the firewall endpoint in the subnet. This value reflects both the instantiation of the endpoint in the VPC subnet and the sync states that are reported in the Config settings. When this value is READY, the endpoint is available and configured properly to handle network traffic. When the endpoint isn't available for traffic, this value will reflect its state, for example CREATING
|
|
361
|
+
* The current status of the firewall endpoint in the subnet. This value reflects both the instantiation of the endpoint in the VPC subnet and the sync states that are reported in the Config settings. When this value is READY, the endpoint is available and configured properly to handle network traffic. When the endpoint isn't available for traffic, this value will reflect its state, for example CREATING or DELETING.
|
|
362
362
|
*/
|
|
363
363
|
Status?: AttachmentStatus;
|
|
364
|
+
/**
|
|
365
|
+
* If Network Firewall fails to create or delete the firewall endpoint in the subnet, it populates this with the reason for the failure and how to resolve it. Depending on the error, it can take as many as 15 minutes to populate this field. For more information about the errors and solutions available for this field, see Troubleshooting firewall endpoint failures in the Network Firewall Developer Guide.
|
|
366
|
+
*/
|
|
367
|
+
StatusMessage?: StatusMessage;
|
|
364
368
|
}
|
|
365
369
|
export type AttachmentStatus = "CREATING"|"DELETING"|"SCALING"|"READY"|string;
|
|
366
370
|
export type AvailabilityZone = string;
|
|
@@ -1503,6 +1507,7 @@ declare namespace NetworkFirewall {
|
|
|
1503
1507
|
*/
|
|
1504
1508
|
CustomActions?: CustomActions;
|
|
1505
1509
|
}
|
|
1510
|
+
export type StatusMessage = string;
|
|
1506
1511
|
export type StreamExceptionPolicy = "DROP"|"CONTINUE"|string;
|
|
1507
1512
|
export interface SubnetMapping {
|
|
1508
1513
|
/**
|
|
@@ -126,11 +126,11 @@ declare class RDS extends Service {
|
|
|
126
126
|
*/
|
|
127
127
|
createBlueGreenDeployment(callback?: (err: AWSError, data: RDS.Types.CreateBlueGreenDeploymentResponse) => void): Request<RDS.Types.CreateBlueGreenDeploymentResponse, AWSError>;
|
|
128
128
|
/**
|
|
129
|
-
* Creates a custom DB engine version (CEV).
|
|
129
|
+
* Creates a custom DB engine version (CEV).
|
|
130
130
|
*/
|
|
131
131
|
createCustomDBEngineVersion(params: RDS.Types.CreateCustomDBEngineVersionMessage, callback?: (err: AWSError, data: RDS.Types.DBEngineVersion) => void): Request<RDS.Types.DBEngineVersion, AWSError>;
|
|
132
132
|
/**
|
|
133
|
-
* Creates a custom DB engine version (CEV).
|
|
133
|
+
* Creates a custom DB engine version (CEV).
|
|
134
134
|
*/
|
|
135
135
|
createCustomDBEngineVersion(callback?: (err: AWSError, data: RDS.Types.DBEngineVersion) => void): Request<RDS.Types.DBEngineVersion, AWSError>;
|
|
136
136
|
/**
|
|
@@ -1753,15 +1753,19 @@ declare namespace RDS {
|
|
|
1753
1753
|
/**
|
|
1754
1754
|
* The name of an Amazon S3 bucket that contains database installation files for your CEV. For example, a valid bucket name is my-custom-installation-files.
|
|
1755
1755
|
*/
|
|
1756
|
-
DatabaseInstallationFilesS3BucketName
|
|
1756
|
+
DatabaseInstallationFilesS3BucketName?: BucketName;
|
|
1757
1757
|
/**
|
|
1758
1758
|
* The Amazon S3 directory that contains the database installation files for your CEV. For example, a valid bucket name is 123456789012/cev1. If this setting isn't specified, no prefix is assumed.
|
|
1759
1759
|
*/
|
|
1760
1760
|
DatabaseInstallationFilesS3Prefix?: String255;
|
|
1761
|
+
/**
|
|
1762
|
+
* The ID of the AMI. An AMI ID is required to create a CEV for RDS Custom for SQL Server.
|
|
1763
|
+
*/
|
|
1764
|
+
ImageId?: String255;
|
|
1761
1765
|
/**
|
|
1762
1766
|
* The Amazon Web Services KMS key identifier for an encrypted CEV. A symmetric encryption KMS key is required for RDS Custom, but optional for Amazon RDS. If you have an existing symmetric encryption KMS key in your account, you can use it with RDS Custom. No further action is necessary. If you don't already have a symmetric encryption KMS key in your account, follow the instructions in Creating a symmetric encryption KMS key in the Amazon Web Services Key Management Service Developer Guide. You can choose the same symmetric encryption key when you create a CEV and a DB instance, or choose different keys.
|
|
1763
1767
|
*/
|
|
1764
|
-
KMSKeyId
|
|
1768
|
+
KMSKeyId?: KmsKeyIdOrArn;
|
|
1765
1769
|
/**
|
|
1766
1770
|
* An optional description of your CEV.
|
|
1767
1771
|
*/
|
|
@@ -1769,7 +1773,7 @@ declare namespace RDS {
|
|
|
1769
1773
|
/**
|
|
1770
1774
|
* The CEV manifest, which is a JSON document that describes the installation .zip files stored in Amazon S3. Specify the name/value pairs in a file or a quoted string. RDS Custom applies the patches in the order in which they are listed. The following JSON fields are valid: MediaImportTemplateVersion Version of the CEV manifest. The date is in the format YYYY-MM-DD. databaseInstallationFileNames Ordered list of installation files for the CEV. opatchFileNames Ordered list of OPatch installers used for the Oracle DB engine. psuRuPatchFileNames The PSU and RU patches for this CEV. OtherPatchFileNames The patches that are not in the list of PSU and RU patches. Amazon RDS applies these patches after applying the PSU and RU patches. For more information, see Creating the CEV manifest in the Amazon RDS User Guide.
|
|
1771
1775
|
*/
|
|
1772
|
-
Manifest
|
|
1776
|
+
Manifest?: CustomDBEngineVersionManifest;
|
|
1773
1777
|
Tags?: TagList;
|
|
1774
1778
|
}
|
|
1775
1779
|
export interface CreateDBClusterEndpointMessage {
|
|
@@ -2647,6 +2651,16 @@ declare namespace RDS {
|
|
|
2647
2651
|
export interface CreateOptionGroupResult {
|
|
2648
2652
|
OptionGroup?: OptionGroup;
|
|
2649
2653
|
}
|
|
2654
|
+
export interface CustomDBEngineVersionAMI {
|
|
2655
|
+
/**
|
|
2656
|
+
* A value that indicates the ID of the AMI.
|
|
2657
|
+
*/
|
|
2658
|
+
ImageId?: String;
|
|
2659
|
+
/**
|
|
2660
|
+
* A value that indicates the status of a custom engine version (CEV).
|
|
2661
|
+
*/
|
|
2662
|
+
Status?: String;
|
|
2663
|
+
}
|
|
2650
2664
|
export type CustomDBEngineVersionManifest = string;
|
|
2651
2665
|
export type CustomEngineName = string;
|
|
2652
2666
|
export type CustomEngineVersion = string;
|
|
@@ -3290,6 +3304,14 @@ declare namespace RDS {
|
|
|
3290
3304
|
* The default character set for new instances of this engine version, if the CharacterSetName parameter of the CreateDBInstance API isn't specified.
|
|
3291
3305
|
*/
|
|
3292
3306
|
DefaultCharacterSet?: CharacterSet;
|
|
3307
|
+
/**
|
|
3308
|
+
* The EC2 image
|
|
3309
|
+
*/
|
|
3310
|
+
Image?: CustomDBEngineVersionAMI;
|
|
3311
|
+
/**
|
|
3312
|
+
* A value that indicates the source media provider of the AMI based on the usage operation. Applicable for RDS Custom for SQL Server.
|
|
3313
|
+
*/
|
|
3314
|
+
DBEngineMediaType?: String;
|
|
3293
3315
|
/**
|
|
3294
3316
|
* A list of the character sets supported by this engine for the CharacterSetName parameter of the CreateDBInstance operation.
|
|
3295
3317
|
*/
|
|
@@ -37,11 +37,11 @@ declare class Route53RecoveryControlConfig extends Service {
|
|
|
37
37
|
*/
|
|
38
38
|
createRoutingControl(callback?: (err: AWSError, data: Route53RecoveryControlConfig.Types.CreateRoutingControlResponse) => void): Request<Route53RecoveryControlConfig.Types.CreateRoutingControlResponse, AWSError>;
|
|
39
39
|
/**
|
|
40
|
-
* Creates a safety rule in a control panel. Safety rules let you add safeguards around changing routing control states, and for enabling and disabling routing controls, to help prevent unexpected outcomes. There are two types of safety rules: assertion rules and gating rules. Assertion rule: An assertion rule enforces that, when you change a routing control state, that a certain criteria is met. For example, the criteria might be that at least one routing control state is On after the
|
|
40
|
+
* Creates a safety rule in a control panel. Safety rules let you add safeguards around changing routing control states, and for enabling and disabling routing controls, to help prevent unexpected outcomes. There are two types of safety rules: assertion rules and gating rules. Assertion rule: An assertion rule enforces that, when you change a routing control state, that a certain criteria is met. For example, the criteria might be that at least one routing control state is On after the transaction so that traffic continues to flow to at least one cell for the application. This ensures that you avoid a fail-open scenario. Gating rule: A gating rule lets you configure a gating routing control as an overall "on/off" switch for a group of routing controls. Or, you can configure more complex gating scenarios, for example by configuring multiple gating routing controls. For more information, see Safety rules in the Amazon Route 53 Application Recovery Controller Developer Guide.
|
|
41
41
|
*/
|
|
42
42
|
createSafetyRule(params: Route53RecoveryControlConfig.Types.CreateSafetyRuleRequest, callback?: (err: AWSError, data: Route53RecoveryControlConfig.Types.CreateSafetyRuleResponse) => void): Request<Route53RecoveryControlConfig.Types.CreateSafetyRuleResponse, AWSError>;
|
|
43
43
|
/**
|
|
44
|
-
* Creates a safety rule in a control panel. Safety rules let you add safeguards around changing routing control states, and for enabling and disabling routing controls, to help prevent unexpected outcomes. There are two types of safety rules: assertion rules and gating rules. Assertion rule: An assertion rule enforces that, when you change a routing control state, that a certain criteria is met. For example, the criteria might be that at least one routing control state is On after the
|
|
44
|
+
* Creates a safety rule in a control panel. Safety rules let you add safeguards around changing routing control states, and for enabling and disabling routing controls, to help prevent unexpected outcomes. There are two types of safety rules: assertion rules and gating rules. Assertion rule: An assertion rule enforces that, when you change a routing control state, that a certain criteria is met. For example, the criteria might be that at least one routing control state is On after the transaction so that traffic continues to flow to at least one cell for the application. This ensures that you avoid a fail-open scenario. Gating rule: A gating rule lets you configure a gating routing control as an overall "on/off" switch for a group of routing controls. Or, you can configure more complex gating scenarios, for example by configuring multiple gating routing controls. For more information, see Safety rules in the Amazon Route 53 Application Recovery Controller Developer Guide.
|
|
45
45
|
*/
|
|
46
46
|
createSafetyRule(callback?: (err: AWSError, data: Route53RecoveryControlConfig.Types.CreateSafetyRuleResponse) => void): Request<Route53RecoveryControlConfig.Types.CreateSafetyRuleResponse, AWSError>;
|
|
47
47
|
/**
|
|
@@ -260,7 +260,7 @@ declare namespace Route53RecoveryControlConfig {
|
|
|
260
260
|
*/
|
|
261
261
|
Name: __stringMin1Max64PatternS;
|
|
262
262
|
/**
|
|
263
|
-
* The criteria that you set for specific assertion routing controls (AssertedControls) that designate how many routing control states must be ON as the result of a transaction. For example, if you have three assertion routing controls, you might specify
|
|
263
|
+
* The criteria that you set for specific assertion routing controls (AssertedControls) that designate how many routing control states must be ON as the result of a transaction. For example, if you have three assertion routing controls, you might specify ATLEAST 2 for your rule configuration. This means that at least two assertion routing control states must be ON, so that at least two Amazon Web Services Regions have traffic flowing to them.
|
|
264
264
|
*/
|
|
265
265
|
RuleConfig: RuleConfig;
|
|
266
266
|
/**
|
|
@@ -538,7 +538,7 @@ declare namespace Route53RecoveryControlConfig {
|
|
|
538
538
|
*/
|
|
539
539
|
Name: __stringMin1Max64PatternS;
|
|
540
540
|
/**
|
|
541
|
-
* The criteria that you set for gating routing controls that
|
|
541
|
+
* The criteria that you set for gating routing controls that designate how many of the routing control states must be ON to allow you to update target routing control states.
|
|
542
542
|
*/
|
|
543
543
|
RuleConfig: RuleConfig;
|
|
544
544
|
/**
|
|
@@ -550,7 +550,7 @@ declare namespace Route53RecoveryControlConfig {
|
|
|
550
550
|
*/
|
|
551
551
|
Status: Status;
|
|
552
552
|
/**
|
|
553
|
-
* An array of target routing control Amazon Resource Names (ARNs) for which the states can only be updated if the rule configuration that you specify evaluates to true for the gating routing control. As a simple example, if you have a single gating control, it acts as an overall "on/off" switch for a set of target routing controls. You can use this to manually override automated
|
|
553
|
+
* An array of target routing control Amazon Resource Names (ARNs) for which the states can only be updated if the rule configuration that you specify evaluates to true for the gating routing control. As a simple example, if you have a single gating control, it acts as an overall "on/off" switch for a set of target routing controls. You can use this to manually override automated failover, for example.
|
|
554
554
|
*/
|
|
555
555
|
TargetControls: __listOf__stringMin1Max256PatternAZaZ09;
|
|
556
556
|
/**
|
|
@@ -715,7 +715,7 @@ declare namespace Route53RecoveryControlConfig {
|
|
|
715
715
|
*/
|
|
716
716
|
Name: __stringMin1Max64PatternS;
|
|
717
717
|
/**
|
|
718
|
-
* The criteria that you set for specific assertion controls (routing controls) that designate how many control states must be ON as the result of a transaction. For example, if you have three assertion controls, you might specify ATLEAST
|
|
718
|
+
* The criteria that you set for specific assertion controls (routing controls) that designate how many control states must be ON as the result of a transaction. For example, if you have three assertion controls, you might specify ATLEAST 2 for your rule configuration. This means that at least two assertion controls must be ON, so that at least two Amazon Web Services Regions have traffic flowing to them.
|
|
719
719
|
*/
|
|
720
720
|
RuleConfig: RuleConfig;
|
|
721
721
|
/**
|
|
@@ -737,11 +737,11 @@ declare namespace Route53RecoveryControlConfig {
|
|
|
737
737
|
*/
|
|
738
738
|
Name: __stringMin1Max64PatternS;
|
|
739
739
|
/**
|
|
740
|
-
* The criteria that you set for specific gating controls (routing controls) that
|
|
740
|
+
* The criteria that you set for specific gating controls (routing controls) that designate how many control states must be ON to allow you to change (set or unset) the target control states.
|
|
741
741
|
*/
|
|
742
742
|
RuleConfig: RuleConfig;
|
|
743
743
|
/**
|
|
744
|
-
* Routing controls that can only be set or unset if the specified RuleConfig evaluates to true for the specified GatingControls. For example, say you have three gating controls, one for each of three Amazon Web Services Regions. Now you specify
|
|
744
|
+
* Routing controls that can only be set or unset if the specified RuleConfig evaluates to true for the specified GatingControls. For example, say you have three gating controls, one for each of three Amazon Web Services Regions. Now you specify ATLEAST 2 as your RuleConfig. With these settings, you can only change (set or unset) the routing controls that you have specified as TargetControls if that rule evaluates to true. In other words, your ability to change the routing controls that you have specified as TargetControls is gated by the rule that you set for the routing controls in GatingControls.
|
|
745
745
|
*/
|
|
746
746
|
TargetControls: __listOf__stringMin1Max256PatternAZaZ09;
|
|
747
747
|
/**
|
|
@@ -769,11 +769,11 @@ declare namespace Route53RecoveryControlConfig {
|
|
|
769
769
|
}
|
|
770
770
|
export interface Rule {
|
|
771
771
|
/**
|
|
772
|
-
* An assertion rule enforces that, when a routing control state is changed, the criteria set by the rule configuration is met. Otherwise, the change to the routing control state is not accepted. For example, the criteria might be that at least one routing control state is On after the
|
|
772
|
+
* An assertion rule enforces that, when a routing control state is changed, the criteria set by the rule configuration is met. Otherwise, the change to the routing control state is not accepted. For example, the criteria might be that at least one routing control state is On after the transaction so that traffic continues to flow to at least one cell for the application. This ensures that you avoid a fail-open scenario.
|
|
773
773
|
*/
|
|
774
774
|
ASSERTION?: AssertionRule;
|
|
775
775
|
/**
|
|
776
|
-
* A gating rule verifies that a gating routing control or set of gating
|
|
776
|
+
* A gating rule verifies that a gating routing control or set of gating routing controls, evaluates as true, based on a rule configuration that you specify, which allows a set of routing control state changes to complete. For example, if you specify one gating routing control and you set the Type in the rule configuration to OR, that indicates that you must set the gating routing control to On for the rule to evaluate as true; that is, for the gating control "switch" to be "On". When you do that, then you can update the routing control states for the target routing controls that you specify in the gating rule.
|
|
777
777
|
*/
|
|
778
778
|
GATING?: GatingRule;
|
|
779
779
|
}
|