aws-sdk 2.829.0 → 2.833.0
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/CHANGELOG.md +25 -1
- package/README.md +1 -1
- package/apis/customer-profiles-2020-08-15.min.json +4 -2
- package/apis/databrew-2017-07-25.min.json +79 -62
- package/apis/ec2-2016-11-15.min.json +197 -190
- package/apis/elasticache-2015-02-02.min.json +1 -0
- package/apis/es-2015-01-01.min.json +6 -0
- package/apis/kafka-2018-11-14.min.json +41 -0
- package/apis/managedblockchain-2018-09-24.min.json +159 -36
- package/apis/metadata.json +8 -0
- package/apis/models.lex.v2-2020-08-07.examples.json +5 -0
- package/apis/models.lex.v2-2020-08-07.min.json +2845 -0
- package/apis/models.lex.v2-2020-08-07.paginators.json +49 -0
- package/apis/monitoring-2010-08-01.min.json +15 -9
- package/apis/redshift-2012-12-01.min.json +1 -1
- package/apis/resourcegroupstaggingapi-2017-01-26.min.json +14 -10
- package/apis/robomaker-2018-06-29.min.json +198 -170
- package/apis/runtime.lex.v2-2020-08-07.examples.json +4 -0
- package/apis/runtime.lex.v2-2020-08-07.min.json +531 -0
- package/apis/runtime.lex.v2-2020-08-07.paginators.json +3 -0
- package/apis/securityhub-2018-10-26.min.json +406 -187
- package/apis/sesv2-2019-09-27.min.json +40 -15
- package/clients/accessanalyzer.d.ts +5 -5
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/backup.d.ts +27 -27
- package/clients/cloudwatch.d.ts +12 -1
- package/clients/customerprofiles.d.ts +2 -2
- package/clients/databrew.d.ts +170 -143
- package/clients/ec2.d.ts +119 -111
- package/clients/elasticache.d.ts +14 -10
- package/clients/es.d.ts +8 -0
- package/clients/greengrassv2.d.ts +6 -6
- package/clients/iot.d.ts +2 -2
- package/clients/kafka.d.ts +52 -0
- package/clients/lexmodelsv2.d.ts +3350 -0
- package/clients/lexmodelsv2.js +18 -0
- package/clients/lexruntimev2.d.ts +542 -0
- package/clients/lexruntimev2.js +18 -0
- package/clients/lightsail.d.ts +2 -2
- package/clients/managedblockchain.d.ts +140 -6
- package/clients/rds.d.ts +14 -14
- package/clients/redshift.d.ts +8 -8
- package/clients/resourcegroupstaggingapi.d.ts +50 -45
- package/clients/robomaker.d.ts +35 -3
- package/clients/securityhub.d.ts +410 -63
- package/clients/sesv2.d.ts +30 -2
- package/clients/ssm.d.ts +2 -2
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +91 -17
- package/dist/aws-sdk.js +225 -203
- package/dist/aws-sdk.min.js +60 -60
- package/lib/config.d.ts +1 -1
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/elasticache.d.ts
CHANGED
|
@@ -101,11 +101,11 @@ declare class ElastiCache extends Service {
|
|
|
101
101
|
*/
|
|
102
102
|
createGlobalReplicationGroup(callback?: (err: AWSError, data: ElastiCache.Types.CreateGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.CreateGlobalReplicationGroupResult, AWSError>;
|
|
103
103
|
/**
|
|
104
|
-
* Creates a Redis (cluster mode disabled) or a Redis (cluster mode enabled) replication group. This API can be used to create a standalone regional replication group or a secondary replication group associated with a Global Datastore. A Redis (cluster mode disabled) replication group is a collection of clusters, where one of the clusters is a read/write primary and the others are read-only replicas. Writes to the primary are asynchronously propagated to the replicas. A Redis
|
|
104
|
+
* Creates a Redis (cluster mode disabled) or a Redis (cluster mode enabled) replication group. This API can be used to create a standalone regional replication group or a secondary replication group associated with a Global Datastore. A Redis (cluster mode disabled) replication group is a collection of clusters, where one of the clusters is a read/write primary and the others are read-only replicas. Writes to the primary are asynchronously propagated to the replicas. A Redis cluster-mode enabled cluster is comprised of from 1 to 90 shards (API/CLI: node groups). Each shard has a primary node and up to 5 read-only replica nodes. The configuration can range from 90 shards and 0 replicas to 15 shards and 5 replicas, which is the maximum number or replicas allowed. The node or shard limit can be increased to a maximum of 500 per cluster if the Redis engine version is 5.0.6 or higher. For example, you can choose to configure a 500 node cluster that ranges between 83 shards (one primary and 5 replicas per shard) and 500 shards (single primary and no replicas). Make sure there are enough available IP addresses to accommodate the increase. Common pitfalls include the subnets in the subnet group have too small a CIDR range or the subnets are shared and heavily used by other clusters. For more information, see Creating a Subnet Group. For versions below 5.0.6, the limit is 250 per cluster. To request a limit increase, see AWS Service Limits and choose the limit type Nodes per cluster per instance type. When a Redis (cluster mode disabled) replication group has been successfully created, you can add one or more read replicas to it, up to a total of 5 read replicas. If you need to increase or decrease the number of node groups (console: shards), you can avail yourself of ElastiCache for Redis' scaling. For more information, see Scaling ElastiCache for Redis Clusters in the ElastiCache User Guide. This operation is valid for Redis only.
|
|
105
105
|
*/
|
|
106
106
|
createReplicationGroup(params: ElastiCache.Types.CreateReplicationGroupMessage, callback?: (err: AWSError, data: ElastiCache.Types.CreateReplicationGroupResult) => void): Request<ElastiCache.Types.CreateReplicationGroupResult, AWSError>;
|
|
107
107
|
/**
|
|
108
|
-
* Creates a Redis (cluster mode disabled) or a Redis (cluster mode enabled) replication group. This API can be used to create a standalone regional replication group or a secondary replication group associated with a Global Datastore. A Redis (cluster mode disabled) replication group is a collection of clusters, where one of the clusters is a read/write primary and the others are read-only replicas. Writes to the primary are asynchronously propagated to the replicas. A Redis
|
|
108
|
+
* Creates a Redis (cluster mode disabled) or a Redis (cluster mode enabled) replication group. This API can be used to create a standalone regional replication group or a secondary replication group associated with a Global Datastore. A Redis (cluster mode disabled) replication group is a collection of clusters, where one of the clusters is a read/write primary and the others are read-only replicas. Writes to the primary are asynchronously propagated to the replicas. A Redis cluster-mode enabled cluster is comprised of from 1 to 90 shards (API/CLI: node groups). Each shard has a primary node and up to 5 read-only replica nodes. The configuration can range from 90 shards and 0 replicas to 15 shards and 5 replicas, which is the maximum number or replicas allowed. The node or shard limit can be increased to a maximum of 500 per cluster if the Redis engine version is 5.0.6 or higher. For example, you can choose to configure a 500 node cluster that ranges between 83 shards (one primary and 5 replicas per shard) and 500 shards (single primary and no replicas). Make sure there are enough available IP addresses to accommodate the increase. Common pitfalls include the subnets in the subnet group have too small a CIDR range or the subnets are shared and heavily used by other clusters. For more information, see Creating a Subnet Group. For versions below 5.0.6, the limit is 250 per cluster. To request a limit increase, see AWS Service Limits and choose the limit type Nodes per cluster per instance type. When a Redis (cluster mode disabled) replication group has been successfully created, you can add one or more read replicas to it, up to a total of 5 read replicas. If you need to increase or decrease the number of node groups (console: shards), you can avail yourself of ElastiCache for Redis' scaling. For more information, see Scaling ElastiCache for Redis Clusters in the ElastiCache User Guide. This operation is valid for Redis only.
|
|
109
109
|
*/
|
|
110
110
|
createReplicationGroup(callback?: (err: AWSError, data: ElastiCache.Types.CreateReplicationGroupResult) => void): Request<ElastiCache.Types.CreateReplicationGroupResult, AWSError>;
|
|
111
111
|
/**
|
|
@@ -213,11 +213,11 @@ declare class ElastiCache extends Service {
|
|
|
213
213
|
*/
|
|
214
214
|
deleteUser(callback?: (err: AWSError, data: ElastiCache.Types.User) => void): Request<ElastiCache.Types.User, AWSError>;
|
|
215
215
|
/**
|
|
216
|
-
* For Redis engine version 6.x onwards: Deletes a
|
|
216
|
+
* For Redis engine version 6.x onwards: Deletes a user group. The user group must first be disassociated from the replication group before it can be deleted. For more information, see Using Role Based Access Control (RBAC).
|
|
217
217
|
*/
|
|
218
218
|
deleteUserGroup(params: ElastiCache.Types.DeleteUserGroupMessage, callback?: (err: AWSError, data: ElastiCache.Types.UserGroup) => void): Request<ElastiCache.Types.UserGroup, AWSError>;
|
|
219
219
|
/**
|
|
220
|
-
* For Redis engine version 6.x onwards: Deletes a
|
|
220
|
+
* For Redis engine version 6.x onwards: Deletes a user group. The user group must first be disassociated from the replication group before it can be deleted. For more information, see Using Role Based Access Control (RBAC).
|
|
221
221
|
*/
|
|
222
222
|
deleteUserGroup(callback?: (err: AWSError, data: ElastiCache.Types.UserGroup) => void): Request<ElastiCache.Types.UserGroup, AWSError>;
|
|
223
223
|
/**
|
|
@@ -381,11 +381,11 @@ declare class ElastiCache extends Service {
|
|
|
381
381
|
*/
|
|
382
382
|
increaseNodeGroupsInGlobalReplicationGroup(callback?: (err: AWSError, data: ElastiCache.Types.IncreaseNodeGroupsInGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.IncreaseNodeGroupsInGlobalReplicationGroupResult, AWSError>;
|
|
383
383
|
/**
|
|
384
|
-
* Dynamically increases the number of
|
|
384
|
+
* Dynamically increases the number of replicas in a Redis (cluster mode disabled) replication group or the number of replica nodes in one or more node groups (shards) of a Redis (cluster mode enabled) replication group. This operation is performed with no cluster down time.
|
|
385
385
|
*/
|
|
386
386
|
increaseReplicaCount(params: ElastiCache.Types.IncreaseReplicaCountMessage, callback?: (err: AWSError, data: ElastiCache.Types.IncreaseReplicaCountResult) => void): Request<ElastiCache.Types.IncreaseReplicaCountResult, AWSError>;
|
|
387
387
|
/**
|
|
388
|
-
* Dynamically increases the number of
|
|
388
|
+
* Dynamically increases the number of replicas in a Redis (cluster mode disabled) replication group or the number of replica nodes in one or more node groups (shards) of a Redis (cluster mode enabled) replication group. This operation is performed with no cluster down time.
|
|
389
389
|
*/
|
|
390
390
|
increaseReplicaCount(callback?: (err: AWSError, data: ElastiCache.Types.IncreaseReplicaCountResult) => void): Request<ElastiCache.Types.IncreaseReplicaCountResult, AWSError>;
|
|
391
391
|
/**
|
|
@@ -469,11 +469,11 @@ declare class ElastiCache extends Service {
|
|
|
469
469
|
*/
|
|
470
470
|
modifyUserGroup(callback?: (err: AWSError, data: ElastiCache.Types.UserGroup) => void): Request<ElastiCache.Types.UserGroup, AWSError>;
|
|
471
471
|
/**
|
|
472
|
-
* Allows you to purchase a reserved cache node offering.
|
|
472
|
+
* Allows you to purchase a reserved cache node offering. Reserved nodes are not eligible for cancellation and are non-refundable. For more information, see Managing Costs with Reserved Nodes for Redis or Managing Costs with Reserved Nodes for Memcached.
|
|
473
473
|
*/
|
|
474
474
|
purchaseReservedCacheNodesOffering(params: ElastiCache.Types.PurchaseReservedCacheNodesOfferingMessage, callback?: (err: AWSError, data: ElastiCache.Types.PurchaseReservedCacheNodesOfferingResult) => void): Request<ElastiCache.Types.PurchaseReservedCacheNodesOfferingResult, AWSError>;
|
|
475
475
|
/**
|
|
476
|
-
* Allows you to purchase a reserved cache node offering.
|
|
476
|
+
* Allows you to purchase a reserved cache node offering. Reserved nodes are not eligible for cancellation and are non-refundable. For more information, see Managing Costs with Reserved Nodes for Redis or Managing Costs with Reserved Nodes for Memcached.
|
|
477
477
|
*/
|
|
478
478
|
purchaseReservedCacheNodesOffering(callback?: (err: AWSError, data: ElastiCache.Types.PurchaseReservedCacheNodesOfferingResult) => void): Request<ElastiCache.Types.PurchaseReservedCacheNodesOfferingResult, AWSError>;
|
|
479
479
|
/**
|
|
@@ -663,7 +663,7 @@ declare namespace ElastiCache {
|
|
|
663
663
|
*/
|
|
664
664
|
CacheClusterId?: String;
|
|
665
665
|
/**
|
|
666
|
-
* Represents a Memcached cluster endpoint which
|
|
666
|
+
* Represents a Memcached cluster endpoint which can be used by an application to connect to any node in the cluster. The configuration endpoint will always have .cfg in it. Example: mem-3.9dvc4r.cfg.usw2.cache.amazonaws.com:11211
|
|
667
667
|
*/
|
|
668
668
|
ConfigurationEndpoint?: Endpoint;
|
|
669
669
|
/**
|
|
@@ -1364,7 +1364,7 @@ declare namespace ElastiCache {
|
|
|
1364
1364
|
*/
|
|
1365
1365
|
EngineVersion?: String;
|
|
1366
1366
|
/**
|
|
1367
|
-
* The name of the parameter group to associate with this replication group. If this argument is omitted, the default cache parameter group for the specified engine is used.
|
|
1367
|
+
* The name of the parameter group to associate with this replication group. If this argument is omitted, the default cache parameter group for the specified engine is used. If you are running Redis version 3.2.4 or later, only one node group (shard), and want to use a default parameter group, we recommend that you specify the parameter group by name. To create a Redis (cluster mode disabled) replication group, use CacheParameterGroupName=default.redis3.2. To create a Redis (cluster mode enabled) replication group, use CacheParameterGroupName=default.redis3.2.cluster.on.
|
|
1368
1368
|
*/
|
|
1369
1369
|
CacheParameterGroupName?: String;
|
|
1370
1370
|
/**
|
|
@@ -2468,6 +2468,10 @@ declare namespace ElastiCache {
|
|
|
2468
2468
|
* The upgraded version of the cache engine to be run on the clusters in the Global Datastore.
|
|
2469
2469
|
*/
|
|
2470
2470
|
EngineVersion?: String;
|
|
2471
|
+
/**
|
|
2472
|
+
* The name of the cache parameter group to use with the Global datastore. It must be compatible with the major engine version used by the Global datastore.
|
|
2473
|
+
*/
|
|
2474
|
+
CacheParameterGroupName?: String;
|
|
2471
2475
|
/**
|
|
2472
2476
|
* A description of the Global Datastore
|
|
2473
2477
|
*/
|
package/clients/es.d.ts
CHANGED
|
@@ -1996,6 +1996,14 @@ declare namespace ES {
|
|
|
1996
1996
|
* Specifies advanced security options.
|
|
1997
1997
|
*/
|
|
1998
1998
|
AdvancedSecurityOptions?: AdvancedSecurityOptionsInput;
|
|
1999
|
+
/**
|
|
2000
|
+
* Specifies the NodeToNodeEncryptionOptions.
|
|
2001
|
+
*/
|
|
2002
|
+
NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions;
|
|
2003
|
+
/**
|
|
2004
|
+
* Specifies the Encryption At Rest Options.
|
|
2005
|
+
*/
|
|
2006
|
+
EncryptionAtRestOptions?: EncryptionAtRestOptions;
|
|
1999
2007
|
}
|
|
2000
2008
|
export interface UpdateElasticsearchDomainConfigResponse {
|
|
2001
2009
|
/**
|
|
@@ -68,11 +68,11 @@ declare class GreengrassV2 extends Service {
|
|
|
68
68
|
*/
|
|
69
69
|
getComponent(callback?: (err: AWSError, data: GreengrassV2.Types.GetComponentResponse) => void): Request<GreengrassV2.Types.GetComponentResponse, AWSError>;
|
|
70
70
|
/**
|
|
71
|
-
* Gets the pre-signed URL to a component artifact
|
|
71
|
+
* Gets the pre-signed URL to download a public component artifact. Core devices call this operation to identify the URL that they can use to download an artifact to install.
|
|
72
72
|
*/
|
|
73
73
|
getComponentVersionArtifact(params: GreengrassV2.Types.GetComponentVersionArtifactRequest, callback?: (err: AWSError, data: GreengrassV2.Types.GetComponentVersionArtifactResponse) => void): Request<GreengrassV2.Types.GetComponentVersionArtifactResponse, AWSError>;
|
|
74
74
|
/**
|
|
75
|
-
* Gets the pre-signed URL to a component artifact
|
|
75
|
+
* Gets the pre-signed URL to download a public component artifact. Core devices call this operation to identify the URL that they can use to download an artifact to install.
|
|
76
76
|
*/
|
|
77
77
|
getComponentVersionArtifact(callback?: (err: AWSError, data: GreengrassV2.Types.GetComponentVersionArtifactResponse) => void): Request<GreengrassV2.Types.GetComponentVersionArtifactResponse, AWSError>;
|
|
78
78
|
/**
|
|
@@ -478,7 +478,7 @@ declare namespace GreengrassV2 {
|
|
|
478
478
|
*/
|
|
479
479
|
timeoutInSeconds?: OptionalInteger;
|
|
480
480
|
/**
|
|
481
|
-
* Whether or not to notify components and wait for components to become safe to update. Choose from the following options: NOTIFY_COMPONENTS – The deployment notifies each component before it stops and updates that component. Components can use the SubscribeToComponentUpdates IPC operation to receive these notifications. Then, components can respond with the DeferComponentUpdate IPC operation. For more information, see
|
|
481
|
+
* Whether or not to notify components and wait for components to become safe to update. Choose from the following options: NOTIFY_COMPONENTS – The deployment notifies each component before it stops and updates that component. Components can use the SubscribeToComponentUpdates IPC operation to receive these notifications. Then, components can respond with the DeferComponentUpdate IPC operation. For more information, see Create deployments in the AWS IoT Greengrass V2 Developer Guide. SKIP_NOTIFY_COMPONENTS – The deployment doesn't notify components or wait for them to be safe to update. Default: NOTIFY_COMPONENTS
|
|
482
482
|
*/
|
|
483
483
|
action?: DeploymentComponentUpdatePolicyAction;
|
|
484
484
|
}
|
|
@@ -642,17 +642,17 @@ declare namespace GreengrassV2 {
|
|
|
642
642
|
}
|
|
643
643
|
export interface GetComponentVersionArtifactRequest {
|
|
644
644
|
/**
|
|
645
|
-
* The ARN of the component version.
|
|
645
|
+
* The ARN of the component version. Specify the ARN of a public component version.
|
|
646
646
|
*/
|
|
647
647
|
arn: ComponentVersionARN;
|
|
648
648
|
/**
|
|
649
|
-
* The name of the artifact.
|
|
649
|
+
* The name of the artifact. You can use the GetComponent operation to download the component recipe, which includes the URI of the artifact. The artifact name is the section of the URI after the scheme. For example, in the artifact URI greengrass:SomeArtifact.zip, the artifact name is SomeArtifact.zip.
|
|
650
650
|
*/
|
|
651
651
|
artifactName: NonEmptyString;
|
|
652
652
|
}
|
|
653
653
|
export interface GetComponentVersionArtifactResponse {
|
|
654
654
|
/**
|
|
655
|
-
* The URL
|
|
655
|
+
* The URL of the artifact.
|
|
656
656
|
*/
|
|
657
657
|
preSignedUrl: NonEmptyString;
|
|
658
658
|
}
|
package/clients/iot.d.ts
CHANGED
|
@@ -4115,11 +4115,11 @@ declare namespace Iot {
|
|
|
4115
4115
|
*/
|
|
4116
4116
|
otaUpdateId: OTAUpdateId;
|
|
4117
4117
|
/**
|
|
4118
|
-
*
|
|
4118
|
+
* When true, the stream created by the OTAUpdate process is deleted when the OTA update is deleted. Ignored if the stream specified in the OTAUpdate is supplied by the user.
|
|
4119
4119
|
*/
|
|
4120
4120
|
deleteStream?: DeleteStream;
|
|
4121
4121
|
/**
|
|
4122
|
-
*
|
|
4122
|
+
* When true, deletes the AWS job created by the OTAUpdate process even if it is "IN_PROGRESS". Otherwise, if the job is not in a terminal state ("COMPLETED" or "CANCELED") an exception will occur. The default is false.
|
|
4123
4123
|
*/
|
|
4124
4124
|
forceDeleteAWSJob?: ForceDeleteAWSJob;
|
|
4125
4125
|
}
|
package/clients/kafka.d.ts
CHANGED
|
@@ -295,6 +295,18 @@ declare class Kafka extends Service {
|
|
|
295
295
|
|
|
296
296
|
*/
|
|
297
297
|
updateBrokerCount(callback?: (err: AWSError, data: Kafka.Types.UpdateBrokerCountResponse) => void): Request<Kafka.Types.UpdateBrokerCountResponse, AWSError>;
|
|
298
|
+
/**
|
|
299
|
+
*
|
|
300
|
+
Updates EC2 instance type.
|
|
301
|
+
|
|
302
|
+
*/
|
|
303
|
+
updateBrokerType(params: Kafka.Types.UpdateBrokerTypeRequest, callback?: (err: AWSError, data: Kafka.Types.UpdateBrokerTypeResponse) => void): Request<Kafka.Types.UpdateBrokerTypeResponse, AWSError>;
|
|
304
|
+
/**
|
|
305
|
+
*
|
|
306
|
+
Updates EC2 instance type.
|
|
307
|
+
|
|
308
|
+
*/
|
|
309
|
+
updateBrokerType(callback?: (err: AWSError, data: Kafka.Types.UpdateBrokerTypeResponse) => void): Request<Kafka.Types.UpdateBrokerTypeResponse, AWSError>;
|
|
298
310
|
/**
|
|
299
311
|
*
|
|
300
312
|
Updates the EBS storage associated with MSK brokers.
|
|
@@ -1551,6 +1563,12 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
|
1551
1563
|
*/
|
|
1552
1564
|
KafkaVersion?: __string;
|
|
1553
1565
|
LoggingInfo?: LoggingInfo;
|
|
1566
|
+
/**
|
|
1567
|
+
*
|
|
1568
|
+
Information about the Amazon MSK broker type.
|
|
1569
|
+
|
|
1570
|
+
*/
|
|
1571
|
+
InstanceType?: __stringMin5Max32;
|
|
1554
1572
|
}
|
|
1555
1573
|
export interface NodeExporter {
|
|
1556
1574
|
/**
|
|
@@ -1837,6 +1855,40 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
|
1837
1855
|
*/
|
|
1838
1856
|
ClusterOperationArn?: __string;
|
|
1839
1857
|
}
|
|
1858
|
+
export interface UpdateBrokerTypeRequest {
|
|
1859
|
+
/**
|
|
1860
|
+
*
|
|
1861
|
+
The Amazon Resource Name (ARN) that uniquely identifies the cluster.
|
|
1862
|
+
|
|
1863
|
+
*/
|
|
1864
|
+
ClusterArn: __string;
|
|
1865
|
+
/**
|
|
1866
|
+
*
|
|
1867
|
+
The cluster version that you want to change. After this operation completes successfully, the cluster will have a new version.
|
|
1868
|
+
|
|
1869
|
+
*/
|
|
1870
|
+
CurrentVersion: __string;
|
|
1871
|
+
/**
|
|
1872
|
+
*
|
|
1873
|
+
The Amazon MSK broker type that you want all of the brokers in this cluster to be.
|
|
1874
|
+
|
|
1875
|
+
*/
|
|
1876
|
+
TargetInstanceType: __string;
|
|
1877
|
+
}
|
|
1878
|
+
export interface UpdateBrokerTypeResponse {
|
|
1879
|
+
/**
|
|
1880
|
+
*
|
|
1881
|
+
The Amazon Resource Name (ARN) of the cluster.
|
|
1882
|
+
|
|
1883
|
+
*/
|
|
1884
|
+
ClusterArn?: __string;
|
|
1885
|
+
/**
|
|
1886
|
+
*
|
|
1887
|
+
The Amazon Resource Name (ARN) of the cluster operation.
|
|
1888
|
+
|
|
1889
|
+
*/
|
|
1890
|
+
ClusterOperationArn?: __string;
|
|
1891
|
+
}
|
|
1840
1892
|
export interface UpdateBrokerStorageRequest {
|
|
1841
1893
|
/**
|
|
1842
1894
|
*
|