aws-sdk 2.1564.0 → 2.1566.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/README.md +1 -1
- package/apis/drs-2020-02-26.min.json +70 -55
- package/apis/kafkaconnect-2021-09-14.min.json +185 -48
- package/apis/rds-2014-10-31.min.json +166 -157
- package/clients/apigateway.d.ts +4 -4
- package/clients/appsync.d.ts +4 -4
- package/clients/drs.d.ts +23 -0
- package/clients/kafkaconnect.d.ts +124 -3
- package/clients/qldb.d.ts +2 -2
- package/clients/rds.d.ts +19 -6
- package/clients/rum.d.ts +7 -7
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +4 -4
- package/dist/aws-sdk.js +169 -160
- package/dist/aws-sdk.min.js +32 -32
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/apigateway.d.ts
CHANGED
@@ -908,11 +908,11 @@ declare class APIGateway extends Service {
|
|
908
908
|
*/
|
909
909
|
updateMethodResponse(callback?: (err: AWSError, data: APIGateway.Types.MethodResponse) => void): Request<APIGateway.Types.MethodResponse, AWSError>;
|
910
910
|
/**
|
911
|
-
* Changes information about a model.
|
911
|
+
* Changes information about a model. The maximum size of the model is 400 KB.
|
912
912
|
*/
|
913
913
|
updateModel(params: APIGateway.Types.UpdateModelRequest, callback?: (err: AWSError, data: APIGateway.Types.Model) => void): Request<APIGateway.Types.Model, AWSError>;
|
914
914
|
/**
|
915
|
-
* Changes information about a model.
|
915
|
+
* Changes information about a model. The maximum size of the model is 400 KB.
|
916
916
|
*/
|
917
917
|
updateModel(callback?: (err: AWSError, data: APIGateway.Types.Model) => void): Request<APIGateway.Types.Model, AWSError>;
|
918
918
|
/**
|
@@ -1437,7 +1437,7 @@ declare namespace APIGateway {
|
|
1437
1437
|
*/
|
1438
1438
|
description?: String;
|
1439
1439
|
/**
|
1440
|
-
* The schema for the model. For application/json models, this should be JSON schema draft 4 model.
|
1440
|
+
* The schema for the model. For application/json models, this should be JSON schema draft 4 model. The maximum size of the model is 400 KB.
|
1441
1441
|
*/
|
1442
1442
|
schema?: String;
|
1443
1443
|
/**
|
@@ -3491,7 +3491,7 @@ declare namespace APIGateway {
|
|
3491
3491
|
*/
|
3492
3492
|
description?: String;
|
3493
3493
|
/**
|
3494
|
-
* Specifies whether a cache cluster is enabled for the stage.
|
3494
|
+
* Specifies whether a cache cluster is enabled for the stage. To activate a method-level cache, set CachingEnabled to true for a method.
|
3495
3495
|
*/
|
3496
3496
|
cacheClusterEnabled?: Boolean;
|
3497
3497
|
/**
|
package/clients/appsync.d.ts
CHANGED
@@ -803,7 +803,7 @@ declare namespace AppSync {
|
|
803
803
|
*/
|
804
804
|
type: ApiCacheType;
|
805
805
|
/**
|
806
|
-
* Controls how cache health metrics will be emitted to CloudWatch. Cache health metrics include: NetworkBandwidthOutAllowanceExceeded: The
|
806
|
+
* Controls how cache health metrics will be emitted to CloudWatch. Cache health metrics include: NetworkBandwidthOutAllowanceExceeded: The network packets dropped because the throughput exceeded the aggregated bandwidth limit. This is useful for diagnosing bottlenecks in a cache configuration. EngineCPUUtilization: The CPU utilization (percentage) allocated to the Redis process. This is useful for diagnosing bottlenecks in a cache configuration. Metrics will be recorded by API ID. You can set the value to ENABLED or DISABLED.
|
807
807
|
*/
|
808
808
|
healthMetricsConfig?: CacheHealthMetricsConfig;
|
809
809
|
}
|
@@ -1457,11 +1457,11 @@ declare namespace AppSync {
|
|
1457
1457
|
}
|
1458
1458
|
export interface EnhancedMetricsConfig {
|
1459
1459
|
/**
|
1460
|
-
* Controls how resolver metrics will be emitted to CloudWatch. Resolver metrics include: GraphQL errors: The number of GraphQL errors that occurred. Requests: The number of invocations that occurred during a request. Latency: The time to complete a resolver invocation. Cache hits: The number of cache hits during a request. Cache misses: The number of cache misses during a request. These metrics can be emitted to CloudWatch per resolver or for all resolvers in the request. Metrics will be recorded by API ID and resolver name. resolverLevelMetricsBehavior accepts one of these values at a time: FULL_REQUEST_RESOLVER_METRICS: Records and emits metric data for all resolvers in the request. PER_RESOLVER_METRICS: Records and emits metric data for resolvers that have the
|
1460
|
+
* Controls how resolver metrics will be emitted to CloudWatch. Resolver metrics include: GraphQL errors: The number of GraphQL errors that occurred. Requests: The number of invocations that occurred during a request. Latency: The time to complete a resolver invocation. Cache hits: The number of cache hits during a request. Cache misses: The number of cache misses during a request. These metrics can be emitted to CloudWatch per resolver or for all resolvers in the request. Metrics will be recorded by API ID and resolver name. resolverLevelMetricsBehavior accepts one of these values at a time: FULL_REQUEST_RESOLVER_METRICS: Records and emits metric data for all resolvers in the request. PER_RESOLVER_METRICS: Records and emits metric data for resolvers that have the metricsConfig value set to ENABLED.
|
1461
1461
|
*/
|
1462
1462
|
resolverLevelMetricsBehavior: ResolverLevelMetricsBehavior;
|
1463
1463
|
/**
|
1464
|
-
* Controls how data source metrics will be emitted to CloudWatch. Data source metrics include: Requests: The number of invocations that occured during a request. Latency: The time to complete a data source invocation. Errors: The number of errors that occurred during a data source invocation. These metrics can be emitted to CloudWatch per data source or for all data sources in the request. Metrics will be recorded by API ID and data source name. dataSourceLevelMetricsBehavior accepts one of these values at a time: FULL_REQUEST_DATA_SOURCE_METRICS: Records and emits metric data for all data sources in the request. PER_DATA_SOURCE_METRICS: Records and emits metric data for data sources that have the
|
1464
|
+
* Controls how data source metrics will be emitted to CloudWatch. Data source metrics include: Requests: The number of invocations that occured during a request. Latency: The time to complete a data source invocation. Errors: The number of errors that occurred during a data source invocation. These metrics can be emitted to CloudWatch per data source or for all data sources in the request. Metrics will be recorded by API ID and data source name. dataSourceLevelMetricsBehavior accepts one of these values at a time: FULL_REQUEST_DATA_SOURCE_METRICS: Records and emits metric data for all data sources in the request. PER_DATA_SOURCE_METRICS: Records and emits metric data for data sources that have the metricsConfig value set to ENABLED.
|
1465
1465
|
*/
|
1466
1466
|
dataSourceLevelMetricsBehavior: DataSourceLevelMetricsBehavior;
|
1467
1467
|
/**
|
@@ -2646,7 +2646,7 @@ declare namespace AppSync {
|
|
2646
2646
|
*/
|
2647
2647
|
type: ApiCacheType;
|
2648
2648
|
/**
|
2649
|
-
* Controls how cache health metrics will be emitted to CloudWatch. Cache health metrics include: NetworkBandwidthOutAllowanceExceeded: The
|
2649
|
+
* Controls how cache health metrics will be emitted to CloudWatch. Cache health metrics include: NetworkBandwidthOutAllowanceExceeded: The network packets dropped because the throughput exceeded the aggregated bandwidth limit. This is useful for diagnosing bottlenecks in a cache configuration. EngineCPUUtilization: The CPU utilization (percentage) allocated to the Redis process. This is useful for diagnosing bottlenecks in a cache configuration. Metrics will be recorded by API ID. You can set the value to ENABLED or DISABLED.
|
2650
2650
|
*/
|
2651
2651
|
healthMetricsConfig?: CacheHealthMetricsConfig;
|
2652
2652
|
}
|
package/clients/drs.d.ts
CHANGED
@@ -473,6 +473,10 @@ declare namespace Drs {
|
|
473
473
|
* A mapping between the volumes being converted and the converted snapshot ids
|
474
474
|
*/
|
475
475
|
volumeToConversionMap?: VolumeToConversionMap;
|
476
|
+
/**
|
477
|
+
* A mapping between the volumes being converted and the product codes associated with them
|
478
|
+
*/
|
479
|
+
volumeToProductCodes?: VolumeToProductCodes;
|
476
480
|
/**
|
477
481
|
* A mapping between the volumes and their sizes
|
478
482
|
*/
|
@@ -687,6 +691,10 @@ declare namespace Drs {
|
|
687
691
|
* The total amount of data to be replicated in bytes.
|
688
692
|
*/
|
689
693
|
totalStorageBytes?: PositiveInteger;
|
694
|
+
/**
|
695
|
+
* The status of the volume.
|
696
|
+
*/
|
697
|
+
volumeStatus?: VolumeStatus;
|
690
698
|
}
|
691
699
|
export type DataReplicationInfoReplicatedDisks = DataReplicationInfoReplicatedDisk[];
|
692
700
|
export interface DataReplicationInitiation {
|
@@ -1645,6 +1653,19 @@ declare namespace Drs {
|
|
1645
1653
|
}
|
1646
1654
|
export type ParticipatingServers = ParticipatingServer[];
|
1647
1655
|
export type PositiveInteger = number;
|
1656
|
+
export interface ProductCode {
|
1657
|
+
/**
|
1658
|
+
* Id of a product code associated with a volume.
|
1659
|
+
*/
|
1660
|
+
productCodeId?: ProductCodeId;
|
1661
|
+
/**
|
1662
|
+
* Mode of a product code associated with a volume.
|
1663
|
+
*/
|
1664
|
+
productCodeMode?: ProductCodeMode;
|
1665
|
+
}
|
1666
|
+
export type ProductCodeId = string;
|
1667
|
+
export type ProductCodeMode = "ENABLED"|"DISABLED"|string;
|
1668
|
+
export type ProductCodes = ProductCode[];
|
1648
1669
|
export interface PutLaunchActionRequest {
|
1649
1670
|
/**
|
1650
1671
|
* Launch action code.
|
@@ -2793,7 +2814,9 @@ declare namespace Drs {
|
|
2793
2814
|
*/
|
2794
2815
|
useDedicatedReplicationServer?: Boolean;
|
2795
2816
|
}
|
2817
|
+
export type VolumeStatus = "REGULAR"|"CONTAINS_MARKETPLACE_PRODUCT_CODES"|"MISSING_VOLUME_ATTRIBUTES"|"MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE"|string;
|
2796
2818
|
export type VolumeToConversionMap = {[key: string]: ConversionMap};
|
2819
|
+
export type VolumeToProductCodes = {[key: string]: ProductCodes};
|
2797
2820
|
export type VolumeToSizeMap = {[key: string]: PositiveInteger};
|
2798
2821
|
export type VpcID = string;
|
2799
2822
|
/**
|
@@ -12,11 +12,11 @@ declare class KafkaConnect extends Service {
|
|
12
12
|
constructor(options?: KafkaConnect.Types.ClientConfiguration)
|
13
13
|
config: Config & KafkaConnect.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
* Creates a connector using the specified properties.
|
15
|
+
* Creates a connector using the specified properties.
|
16
16
|
*/
|
17
17
|
createConnector(params: KafkaConnect.Types.CreateConnectorRequest, callback?: (err: AWSError, data: KafkaConnect.Types.CreateConnectorResponse) => void): Request<KafkaConnect.Types.CreateConnectorResponse, AWSError>;
|
18
18
|
/**
|
19
|
-
* Creates a connector using the specified properties.
|
19
|
+
* Creates a connector using the specified properties.
|
20
20
|
*/
|
21
21
|
createConnector(callback?: (err: AWSError, data: KafkaConnect.Types.CreateConnectorResponse) => void): Request<KafkaConnect.Types.CreateConnectorResponse, AWSError>;
|
22
22
|
/**
|
@@ -51,6 +51,14 @@ declare class KafkaConnect extends Service {
|
|
51
51
|
* Deletes a custom plugin.
|
52
52
|
*/
|
53
53
|
deleteCustomPlugin(callback?: (err: AWSError, data: KafkaConnect.Types.DeleteCustomPluginResponse) => void): Request<KafkaConnect.Types.DeleteCustomPluginResponse, AWSError>;
|
54
|
+
/**
|
55
|
+
* Deletes the specified worker configuration.
|
56
|
+
*/
|
57
|
+
deleteWorkerConfiguration(params: KafkaConnect.Types.DeleteWorkerConfigurationRequest, callback?: (err: AWSError, data: KafkaConnect.Types.DeleteWorkerConfigurationResponse) => void): Request<KafkaConnect.Types.DeleteWorkerConfigurationResponse, AWSError>;
|
58
|
+
/**
|
59
|
+
* Deletes the specified worker configuration.
|
60
|
+
*/
|
61
|
+
deleteWorkerConfiguration(callback?: (err: AWSError, data: KafkaConnect.Types.DeleteWorkerConfigurationResponse) => void): Request<KafkaConnect.Types.DeleteWorkerConfigurationResponse, AWSError>;
|
54
62
|
/**
|
55
63
|
* Returns summary information about the connector.
|
56
64
|
*/
|
@@ -91,6 +99,14 @@ declare class KafkaConnect extends Service {
|
|
91
99
|
* Returns a list of all of the custom plugins in this account and Region.
|
92
100
|
*/
|
93
101
|
listCustomPlugins(callback?: (err: AWSError, data: KafkaConnect.Types.ListCustomPluginsResponse) => void): Request<KafkaConnect.Types.ListCustomPluginsResponse, AWSError>;
|
102
|
+
/**
|
103
|
+
* Lists all the tags attached to the specified resource.
|
104
|
+
*/
|
105
|
+
listTagsForResource(params: KafkaConnect.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: KafkaConnect.Types.ListTagsForResourceResponse) => void): Request<KafkaConnect.Types.ListTagsForResourceResponse, AWSError>;
|
106
|
+
/**
|
107
|
+
* Lists all the tags attached to the specified resource.
|
108
|
+
*/
|
109
|
+
listTagsForResource(callback?: (err: AWSError, data: KafkaConnect.Types.ListTagsForResourceResponse) => void): Request<KafkaConnect.Types.ListTagsForResourceResponse, AWSError>;
|
94
110
|
/**
|
95
111
|
* Returns a list of all of the worker configurations in this account and Region.
|
96
112
|
*/
|
@@ -99,6 +115,22 @@ declare class KafkaConnect extends Service {
|
|
99
115
|
* Returns a list of all of the worker configurations in this account and Region.
|
100
116
|
*/
|
101
117
|
listWorkerConfigurations(callback?: (err: AWSError, data: KafkaConnect.Types.ListWorkerConfigurationsResponse) => void): Request<KafkaConnect.Types.ListWorkerConfigurationsResponse, AWSError>;
|
118
|
+
/**
|
119
|
+
* Attaches tags to the specified resource.
|
120
|
+
*/
|
121
|
+
tagResource(params: KafkaConnect.Types.TagResourceRequest, callback?: (err: AWSError, data: KafkaConnect.Types.TagResourceResponse) => void): Request<KafkaConnect.Types.TagResourceResponse, AWSError>;
|
122
|
+
/**
|
123
|
+
* Attaches tags to the specified resource.
|
124
|
+
*/
|
125
|
+
tagResource(callback?: (err: AWSError, data: KafkaConnect.Types.TagResourceResponse) => void): Request<KafkaConnect.Types.TagResourceResponse, AWSError>;
|
126
|
+
/**
|
127
|
+
* Removes tags from the specified resource.
|
128
|
+
*/
|
129
|
+
untagResource(params: KafkaConnect.Types.UntagResourceRequest, callback?: (err: AWSError, data: KafkaConnect.Types.UntagResourceResponse) => void): Request<KafkaConnect.Types.UntagResourceResponse, AWSError>;
|
130
|
+
/**
|
131
|
+
* Removes tags from the specified resource.
|
132
|
+
*/
|
133
|
+
untagResource(callback?: (err: AWSError, data: KafkaConnect.Types.UntagResourceResponse) => void): Request<KafkaConnect.Types.UntagResourceResponse, AWSError>;
|
102
134
|
/**
|
103
135
|
* Updates the specified connector.
|
104
136
|
*/
|
@@ -346,13 +378,17 @@ declare namespace KafkaConnect {
|
|
346
378
|
*/
|
347
379
|
logDelivery?: LogDelivery;
|
348
380
|
/**
|
349
|
-
* Specifies which
|
381
|
+
* Amazon MSK Connect does not currently support specifying multiple plugins as a list. To use more than one plugin for your connector, you can create a single custom plugin using a ZIP file that bundles multiple plugins together. Specifies which plugin to use for the connector. You must specify a single-element list containing one customPlugin object.
|
350
382
|
*/
|
351
383
|
plugins: __listOfPlugin;
|
352
384
|
/**
|
353
385
|
* The Amazon Resource Name (ARN) of the IAM role used by the connector to access the Amazon Web Services resources that it needs. The types of resources depends on the logic of the connector. For example, a connector that has Amazon S3 as a destination must have permissions that allow it to write to the S3 destination bucket.
|
354
386
|
*/
|
355
387
|
serviceExecutionRoleArn: __string;
|
388
|
+
/**
|
389
|
+
* The tags you want to attach to the connector.
|
390
|
+
*/
|
391
|
+
tags?: Tags;
|
356
392
|
/**
|
357
393
|
* Specifies which worker configuration to use with the connector.
|
358
394
|
*/
|
@@ -389,6 +425,10 @@ declare namespace KafkaConnect {
|
|
389
425
|
* The name of the custom plugin.
|
390
426
|
*/
|
391
427
|
name: __stringMin1Max128;
|
428
|
+
/**
|
429
|
+
* The tags you want to attach to the custom plugin.
|
430
|
+
*/
|
431
|
+
tags?: Tags;
|
392
432
|
}
|
393
433
|
export interface CreateCustomPluginResponse {
|
394
434
|
/**
|
@@ -421,6 +461,10 @@ declare namespace KafkaConnect {
|
|
421
461
|
* Base64 encoded contents of connect-distributed.properties file.
|
422
462
|
*/
|
423
463
|
propertiesFileContent: __sensitiveString;
|
464
|
+
/**
|
465
|
+
* The tags you want to attach to the worker configuration.
|
466
|
+
*/
|
467
|
+
tags?: Tags;
|
424
468
|
}
|
425
469
|
export interface CreateWorkerConfigurationResponse {
|
426
470
|
/**
|
@@ -439,6 +483,10 @@ declare namespace KafkaConnect {
|
|
439
483
|
* The Amazon Resource Name (ARN) that Amazon assigned to the worker configuration.
|
440
484
|
*/
|
441
485
|
workerConfigurationArn?: __string;
|
486
|
+
/**
|
487
|
+
* The state of the worker configuration.
|
488
|
+
*/
|
489
|
+
workerConfigurationState?: WorkerConfigurationState;
|
442
490
|
}
|
443
491
|
export interface CustomPlugin {
|
444
492
|
/**
|
@@ -572,6 +620,22 @@ declare namespace KafkaConnect {
|
|
572
620
|
*/
|
573
621
|
customPluginState?: CustomPluginState;
|
574
622
|
}
|
623
|
+
export interface DeleteWorkerConfigurationRequest {
|
624
|
+
/**
|
625
|
+
* The Amazon Resource Name (ARN) of the worker configuration that you want to delete.
|
626
|
+
*/
|
627
|
+
workerConfigurationArn: __string;
|
628
|
+
}
|
629
|
+
export interface DeleteWorkerConfigurationResponse {
|
630
|
+
/**
|
631
|
+
* The Amazon Resource Name (ARN) of the worker configuration that you requested to delete.
|
632
|
+
*/
|
633
|
+
workerConfigurationArn?: __string;
|
634
|
+
/**
|
635
|
+
* The state of the worker configuration.
|
636
|
+
*/
|
637
|
+
workerConfigurationState?: WorkerConfigurationState;
|
638
|
+
}
|
575
639
|
export interface DescribeConnectorRequest {
|
576
640
|
/**
|
577
641
|
* The Amazon Resource Name (ARN) of the connector that you want to describe.
|
@@ -711,6 +775,10 @@ declare namespace KafkaConnect {
|
|
711
775
|
* The Amazon Resource Name (ARN) of the custom configuration.
|
712
776
|
*/
|
713
777
|
workerConfigurationArn?: __string;
|
778
|
+
/**
|
779
|
+
* The state of the worker configuration.
|
780
|
+
*/
|
781
|
+
workerConfigurationState?: WorkerConfigurationState;
|
714
782
|
}
|
715
783
|
export interface FirehoseLogDelivery {
|
716
784
|
/**
|
@@ -799,6 +867,10 @@ declare namespace KafkaConnect {
|
|
799
867
|
* The maximum number of custom plugins to list in one response.
|
800
868
|
*/
|
801
869
|
maxResults?: MaxResults;
|
870
|
+
/**
|
871
|
+
* Lists custom plugin names that start with the specified text string.
|
872
|
+
*/
|
873
|
+
namePrefix?: __string;
|
802
874
|
/**
|
803
875
|
* If the response of a ListCustomPlugins operation is truncated, it will include a NextToken. Send this NextToken in a subsequent request to continue listing from where the previous operation left off.
|
804
876
|
*/
|
@@ -814,11 +886,27 @@ declare namespace KafkaConnect {
|
|
814
886
|
*/
|
815
887
|
nextToken?: __string;
|
816
888
|
}
|
889
|
+
export interface ListTagsForResourceRequest {
|
890
|
+
/**
|
891
|
+
* The Amazon Resource Name (ARN) of the resource for which you want to list all attached tags.
|
892
|
+
*/
|
893
|
+
resourceArn: __string;
|
894
|
+
}
|
895
|
+
export interface ListTagsForResourceResponse {
|
896
|
+
/**
|
897
|
+
* Lists the tags attached to the specified resource in the corresponding request.
|
898
|
+
*/
|
899
|
+
tags?: Tags;
|
900
|
+
}
|
817
901
|
export interface ListWorkerConfigurationsRequest {
|
818
902
|
/**
|
819
903
|
* The maximum number of worker configurations to list in one response.
|
820
904
|
*/
|
821
905
|
maxResults?: MaxResults;
|
906
|
+
/**
|
907
|
+
* Lists worker configuration names that start with the specified text string.
|
908
|
+
*/
|
909
|
+
namePrefix?: __string;
|
822
910
|
/**
|
823
911
|
* If the response of a ListWorkerConfigurations operation is truncated, it will include a NextToken. Send this NextToken in a subsequent request to continue listing from where the previous operation left off.
|
824
912
|
*/
|
@@ -991,6 +1079,34 @@ declare namespace KafkaConnect {
|
|
991
1079
|
*/
|
992
1080
|
message?: __string;
|
993
1081
|
}
|
1082
|
+
export type TagKey = string;
|
1083
|
+
export type TagKeyList = TagKey[];
|
1084
|
+
export interface TagResourceRequest {
|
1085
|
+
/**
|
1086
|
+
* The Amazon Resource Name (ARN) of the resource to which you want to attach tags.
|
1087
|
+
*/
|
1088
|
+
resourceArn: __string;
|
1089
|
+
/**
|
1090
|
+
* The tags that you want to attach to the resource.
|
1091
|
+
*/
|
1092
|
+
tags: Tags;
|
1093
|
+
}
|
1094
|
+
export interface TagResourceResponse {
|
1095
|
+
}
|
1096
|
+
export type TagValue = string;
|
1097
|
+
export type Tags = {[key: string]: TagValue};
|
1098
|
+
export interface UntagResourceRequest {
|
1099
|
+
/**
|
1100
|
+
* The Amazon Resource Name (ARN) of the resource from which you want to remove tags.
|
1101
|
+
*/
|
1102
|
+
resourceArn: __string;
|
1103
|
+
/**
|
1104
|
+
* The keys of the tags that you want to remove from the resource.
|
1105
|
+
*/
|
1106
|
+
tagKeys: TagKeyList;
|
1107
|
+
}
|
1108
|
+
export interface UntagResourceResponse {
|
1109
|
+
}
|
994
1110
|
export interface UpdateConnectorRequest {
|
995
1111
|
/**
|
996
1112
|
* The target capacity.
|
@@ -1087,6 +1203,7 @@ declare namespace KafkaConnect {
|
|
1087
1203
|
*/
|
1088
1204
|
revision?: __long;
|
1089
1205
|
}
|
1206
|
+
export type WorkerConfigurationState = "ACTIVE"|"DELETING"|string;
|
1090
1207
|
export interface WorkerConfigurationSummary {
|
1091
1208
|
/**
|
1092
1209
|
* The time that a worker configuration was created.
|
@@ -1108,6 +1225,10 @@ declare namespace KafkaConnect {
|
|
1108
1225
|
* The Amazon Resource Name (ARN) of the worker configuration.
|
1109
1226
|
*/
|
1110
1227
|
workerConfigurationArn?: __string;
|
1228
|
+
/**
|
1229
|
+
* The state of the worker configuration.
|
1230
|
+
*/
|
1231
|
+
workerConfigurationState?: WorkerConfigurationState;
|
1111
1232
|
}
|
1112
1233
|
export interface WorkerLogDelivery {
|
1113
1234
|
/**
|
package/clients/qldb.d.ts
CHANGED
@@ -314,7 +314,7 @@ declare namespace QLDB {
|
|
314
314
|
*/
|
315
315
|
DeletionProtection?: DeletionProtection;
|
316
316
|
/**
|
317
|
-
* Information about the encryption of data at rest in the ledger. This includes the current status, the KMS key, and when the key became inaccessible (in the case of an error).
|
317
|
+
* Information about the encryption of data at rest in the ledger. This includes the current status, the KMS key, and when the key became inaccessible (in the case of an error). If this parameter is undefined, the ledger uses an Amazon Web Services owned KMS key for encryption.
|
318
318
|
*/
|
319
319
|
EncryptionDescription?: LedgerEncryptionDescription;
|
320
320
|
}
|
@@ -519,7 +519,7 @@ declare namespace QLDB {
|
|
519
519
|
export type KmsKey = string;
|
520
520
|
export interface LedgerEncryptionDescription {
|
521
521
|
/**
|
522
|
-
* The Amazon Resource Name (ARN) of the customer managed KMS key that the ledger uses for encryption at rest. If this parameter is undefined, the ledger uses an Amazon Web Services owned KMS key for encryption.
|
522
|
+
* The Amazon Resource Name (ARN) of the customer managed KMS key that the ledger uses for encryption at rest. If this parameter is undefined, the ledger uses an Amazon Web Services owned KMS key for encryption. It will display AWS_OWNED_KMS_KEY when updating the ledger's encryption configuration to the Amazon Web Services owned KMS key.
|
523
523
|
*/
|
524
524
|
KmsKeyArn: Arn;
|
525
525
|
/**
|
package/clients/rds.d.ts
CHANGED
@@ -3343,6 +3343,10 @@ declare namespace RDS {
|
|
3343
3343
|
* The details for Aurora Limitless Database.
|
3344
3344
|
*/
|
3345
3345
|
LimitlessDatabase?: LimitlessDatabase;
|
3346
|
+
/**
|
3347
|
+
* The storage throughput for the DB cluster. The throughput is automatically set based on the IOPS that you provision, and is not configurable. This setting is only for non-Aurora Multi-AZ DB clusters.
|
3348
|
+
*/
|
3349
|
+
StorageThroughput?: IntegerOptional;
|
3346
3350
|
}
|
3347
3351
|
export interface DBClusterAutomatedBackup {
|
3348
3352
|
/**
|
@@ -3438,6 +3442,10 @@ declare namespace RDS {
|
|
3438
3442
|
* The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services Backup.
|
3439
3443
|
*/
|
3440
3444
|
AwsBackupRecoveryPointArn?: String;
|
3445
|
+
/**
|
3446
|
+
* The storage throughput for the automated backup. The throughput is automatically set based on the IOPS that you provision, and is not configurable. This setting is only for non-Aurora Multi-AZ DB clusters.
|
3447
|
+
*/
|
3448
|
+
StorageThroughput?: IntegerOptional;
|
3441
3449
|
}
|
3442
3450
|
export type DBClusterAutomatedBackupList = DBClusterAutomatedBackup[];
|
3443
3451
|
export interface DBClusterAutomatedBackupMessage {
|
@@ -3762,6 +3770,10 @@ declare namespace RDS {
|
|
3762
3770
|
* The resource ID of the DB cluster that this DB cluster snapshot was created from.
|
3763
3771
|
*/
|
3764
3772
|
DbClusterResourceId?: String;
|
3773
|
+
/**
|
3774
|
+
* The storage throughput for the DB cluster snapshot. The throughput is automatically set based on the IOPS that you provision, and is not configurable. This setting is only for non-Aurora Multi-AZ DB clusters.
|
3775
|
+
*/
|
3776
|
+
StorageThroughput?: IntegerOptional;
|
3765
3777
|
}
|
3766
3778
|
export interface DBClusterSnapshotAttribute {
|
3767
3779
|
/**
|
@@ -4880,7 +4892,7 @@ declare namespace RDS {
|
|
4880
4892
|
/**
|
4881
4893
|
* The name of the DB shard group.
|
4882
4894
|
*/
|
4883
|
-
DBShardGroupIdentifier?:
|
4895
|
+
DBShardGroupIdentifier?: DBShardGroupIdentifier;
|
4884
4896
|
/**
|
4885
4897
|
* The name of the primary DB cluster for the DB shard group.
|
4886
4898
|
*/
|
@@ -4906,6 +4918,7 @@ declare namespace RDS {
|
|
4906
4918
|
*/
|
4907
4919
|
Endpoint?: String;
|
4908
4920
|
}
|
4921
|
+
export type DBShardGroupIdentifier = string;
|
4909
4922
|
export type DBShardGroupsList = DBShardGroup[];
|
4910
4923
|
export interface DBSnapshot {
|
4911
4924
|
/**
|
@@ -5334,7 +5347,7 @@ declare namespace RDS {
|
|
5334
5347
|
/**
|
5335
5348
|
* Teh name of the DB shard group to delete.
|
5336
5349
|
*/
|
5337
|
-
DBShardGroupIdentifier:
|
5350
|
+
DBShardGroupIdentifier: DBShardGroupIdentifier;
|
5338
5351
|
}
|
5339
5352
|
export interface DeleteDBSnapshotMessage {
|
5340
5353
|
/**
|
@@ -5998,7 +6011,7 @@ declare namespace RDS {
|
|
5998
6011
|
/**
|
5999
6012
|
* The user-supplied DB shard group identifier or the Amazon Resource Name (ARN) of the DB shard group. If this parameter is specified, information for only the specific DB shard group is returned. This parameter isn't case-sensitive. Constraints: If supplied, must match an existing DB shard group identifier.
|
6000
6013
|
*/
|
6001
|
-
DBShardGroupIdentifier?:
|
6014
|
+
DBShardGroupIdentifier?: DBShardGroupIdentifier;
|
6002
6015
|
/**
|
6003
6016
|
* A filter that specifies one or more DB shard groups to describe.
|
6004
6017
|
*/
|
@@ -7876,7 +7889,7 @@ declare namespace RDS {
|
|
7876
7889
|
/**
|
7877
7890
|
* The name of the DB shard group to modify.
|
7878
7891
|
*/
|
7879
|
-
DBShardGroupIdentifier:
|
7892
|
+
DBShardGroupIdentifier: DBShardGroupIdentifier;
|
7880
7893
|
/**
|
7881
7894
|
* The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
|
7882
7895
|
*/
|
@@ -8831,7 +8844,7 @@ declare namespace RDS {
|
|
8831
8844
|
/**
|
8832
8845
|
* The name of the DB shard group to reboot.
|
8833
8846
|
*/
|
8834
|
-
DBShardGroupIdentifier:
|
8847
|
+
DBShardGroupIdentifier: DBShardGroupIdentifier;
|
8835
8848
|
}
|
8836
8849
|
export interface RecommendedAction {
|
8837
8850
|
/**
|
@@ -9691,7 +9704,7 @@ declare namespace RDS {
|
|
9691
9704
|
*/
|
9692
9705
|
StorageThroughput?: IntegerOptional;
|
9693
9706
|
/**
|
9694
|
-
* The identifier for the
|
9707
|
+
* The identifier for the Multi-AZ DB cluster snapshot to restore from. For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide. Constraints: Must match the identifier of an existing Multi-AZ DB cluster snapshot. Can't be specified when DBSnapshotIdentifier is specified. Must be specified when DBSnapshotIdentifier isn't specified. If you are restoring from a shared manual Multi-AZ DB cluster snapshot, the DBClusterSnapshotIdentifier must be the ARN of the shared snapshot. Can't be the identifier of an Aurora DB cluster snapshot.
|
9695
9708
|
*/
|
9696
9709
|
DBClusterSnapshotIdentifier?: String;
|
9697
9710
|
/**
|
package/clients/rum.d.ts
CHANGED
@@ -12,11 +12,11 @@ declare class RUM extends Service {
|
|
12
12
|
constructor(options?: RUM.Types.ClientConfiguration)
|
13
13
|
config: Config & RUM.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
* Specifies the extended metrics and custom metrics that you want a CloudWatch RUM app monitor to send to a destination. Valid destinations include CloudWatch and Evidently. By default, RUM app monitors send some metrics to CloudWatch. These default metrics are listed in CloudWatch metrics that you can collect with CloudWatch RUM. In addition to these default metrics, you can choose to send extended metrics
|
15
|
+
* Specifies the extended metrics and custom metrics that you want a CloudWatch RUM app monitor to send to a destination. Valid destinations include CloudWatch and Evidently. By default, RUM app monitors send some metrics to CloudWatch. These default metrics are listed in CloudWatch metrics that you can collect with CloudWatch RUM. In addition to these default metrics, you can choose to send extended metrics, custom metrics, or both. Extended metrics let you send metrics with additional dimensions that aren't included in the default metrics. You can also send extended metrics to both Evidently and CloudWatch. The valid dimension names for the additional dimensions for extended metrics are BrowserName, CountryCode, DeviceType, FileType, OSName, and PageId. For more information, see Extended metrics that you can send to CloudWatch and CloudWatch Evidently. Custom metrics are metrics that you define. You can send custom metrics to CloudWatch. CloudWatch Evidently, or both. With custom metrics, you can use any metric name and namespace. To derive the metrics, you can use any custom events, built-in events, custom attributes, or default attributes. You can't send custom metrics to the AWS/RUM namespace. You must send custom metrics to a custom namespace that you define. The namespace that you use can't start with AWS/. CloudWatch RUM prepends RUM/CustomMetrics/ to the custom namespace that you define, so the final namespace for your metrics in CloudWatch is RUM/CustomMetrics/your-custom-namespace . The maximum number of metric definitions that you can specify in one BatchCreateRumMetricDefinitions operation is 200. The maximum number of metric definitions that one destination can contain is 2000. Extended metrics sent to CloudWatch and RUM custom metrics are charged as CloudWatch custom metrics. Each combination of additional dimension name and dimension value counts as a custom metric. For more information, see Amazon CloudWatch Pricing. You must have already created a destination for the metrics before you send them. For more information, see PutRumMetricsDestination. If some metric definitions specified in a BatchCreateRumMetricDefinitions operations are not valid, those metric definitions fail and return errors, but all valid metric definitions in the same operation still succeed.
|
16
16
|
*/
|
17
17
|
batchCreateRumMetricDefinitions(params: RUM.Types.BatchCreateRumMetricDefinitionsRequest, callback?: (err: AWSError, data: RUM.Types.BatchCreateRumMetricDefinitionsResponse) => void): Request<RUM.Types.BatchCreateRumMetricDefinitionsResponse, AWSError>;
|
18
18
|
/**
|
19
|
-
* Specifies the extended metrics and custom metrics that you want a CloudWatch RUM app monitor to send to a destination. Valid destinations include CloudWatch and Evidently. By default, RUM app monitors send some metrics to CloudWatch. These default metrics are listed in CloudWatch metrics that you can collect with CloudWatch RUM. In addition to these default metrics, you can choose to send extended metrics
|
19
|
+
* Specifies the extended metrics and custom metrics that you want a CloudWatch RUM app monitor to send to a destination. Valid destinations include CloudWatch and Evidently. By default, RUM app monitors send some metrics to CloudWatch. These default metrics are listed in CloudWatch metrics that you can collect with CloudWatch RUM. In addition to these default metrics, you can choose to send extended metrics, custom metrics, or both. Extended metrics let you send metrics with additional dimensions that aren't included in the default metrics. You can also send extended metrics to both Evidently and CloudWatch. The valid dimension names for the additional dimensions for extended metrics are BrowserName, CountryCode, DeviceType, FileType, OSName, and PageId. For more information, see Extended metrics that you can send to CloudWatch and CloudWatch Evidently. Custom metrics are metrics that you define. You can send custom metrics to CloudWatch. CloudWatch Evidently, or both. With custom metrics, you can use any metric name and namespace. To derive the metrics, you can use any custom events, built-in events, custom attributes, or default attributes. You can't send custom metrics to the AWS/RUM namespace. You must send custom metrics to a custom namespace that you define. The namespace that you use can't start with AWS/. CloudWatch RUM prepends RUM/CustomMetrics/ to the custom namespace that you define, so the final namespace for your metrics in CloudWatch is RUM/CustomMetrics/your-custom-namespace . The maximum number of metric definitions that you can specify in one BatchCreateRumMetricDefinitions operation is 200. The maximum number of metric definitions that one destination can contain is 2000. Extended metrics sent to CloudWatch and RUM custom metrics are charged as CloudWatch custom metrics. Each combination of additional dimension name and dimension value counts as a custom metric. For more information, see Amazon CloudWatch Pricing. You must have already created a destination for the metrics before you send them. For more information, see PutRumMetricsDestination. If some metric definitions specified in a BatchCreateRumMetricDefinitions operations are not valid, those metric definitions fail and return errors, but all valid metric definitions in the same operation still succeed.
|
20
20
|
*/
|
21
21
|
batchCreateRumMetricDefinitions(callback?: (err: AWSError, data: RUM.Types.BatchCreateRumMetricDefinitionsResponse) => void): Request<RUM.Types.BatchCreateRumMetricDefinitionsResponse, AWSError>;
|
22
22
|
/**
|
@@ -209,7 +209,7 @@ declare namespace RUM {
|
|
209
209
|
*/
|
210
210
|
FavoritePages?: FavoritePages;
|
211
211
|
/**
|
212
|
-
* The ARN of the guest IAM role that is attached to the Amazon Cognito identity pool that is used to authorize the sending of data to RUM.
|
212
|
+
* The ARN of the guest IAM role that is attached to the Amazon Cognito identity pool that is used to authorize the sending of data to RUM. It is possible that an app monitor does not have a value for GuestRoleArn. For example, this can happen when you use the console to create an app monitor and you allow CloudWatch RUM to create a new identity pool for Authorization. In this case, GuestRoleArn is not present in the GetAppMonitor response because it is not stored by the service. If this issue affects you, you can take one of the following steps: Use the Cloud Development Kit (CDK) to create an identity pool and the associated IAM role, and use that for your app monitor. Make a separate GetIdentityPoolRoles call to Amazon Cognito to retrieve the GuestRoleArn.
|
213
213
|
*/
|
214
214
|
GuestRoleArn?: Arn;
|
215
215
|
/**
|
@@ -291,7 +291,7 @@ declare namespace RUM {
|
|
291
291
|
*/
|
292
292
|
AppMonitorName: AppMonitorName;
|
293
293
|
/**
|
294
|
-
* The destination to send the metrics to. Valid values are CloudWatch and Evidently. If you specify Evidently, you must also specify the ARN of the CloudWatchEvidently experiment that will receive the metrics and an IAM role that has permission to write to the experiment.
|
294
|
+
* The destination to send the metrics to. Valid values are CloudWatch and Evidently. If you specify Evidently, you must also specify the Amazon Resource Name (ARN) of the CloudWatchEvidently experiment that will receive the metrics and an IAM role that has permission to write to the experiment.
|
295
295
|
*/
|
296
296
|
Destination: MetricDestination;
|
297
297
|
/**
|
@@ -624,7 +624,7 @@ declare namespace RUM {
|
|
624
624
|
*/
|
625
625
|
DimensionKeys?: DimensionKeysMap;
|
626
626
|
/**
|
627
|
-
* The pattern that defines the metric, specified as a JSON object. RUM checks events that happen in a user's session against the pattern, and events that match the pattern are sent to the metric destination. When you define extended metrics, the metric definition is not valid if EventPattern is omitted. Example event patterns: '{ "event_type": ["com.amazon.rum.js_error_event"], "metadata": { "browserName": [ "Chrome", "Safari" ], } }' '{ "event_type": ["com.amazon.rum.performance_navigation_event"], "metadata": { "browserName": [ "Chrome", "Firefox" ] }, "event_details": { "duration": [{ "numeric": [ "<", 2000 ] }] } }' '{ "event_type": ["com.amazon.rum.performance_navigation_event"], "metadata": { "browserName": [ "Chrome", "Safari" ], "countryCode": [ "US" ] }, "event_details": { "duration": [{ "numeric": [ ">=", 2000, "<", 8000 ] }] } }' If the metrics destination
|
627
|
+
* The pattern that defines the metric, specified as a JSON object. RUM checks events that happen in a user's session against the pattern, and events that match the pattern are sent to the metric destination. When you define extended metrics, the metric definition is not valid if EventPattern is omitted. Example event patterns: '{ "event_type": ["com.amazon.rum.js_error_event"], "metadata": { "browserName": [ "Chrome", "Safari" ], } }' '{ "event_type": ["com.amazon.rum.performance_navigation_event"], "metadata": { "browserName": [ "Chrome", "Firefox" ] }, "event_details": { "duration": [{ "numeric": [ "<", 2000 ] }] } }' '{ "event_type": ["com.amazon.rum.performance_navigation_event"], "metadata": { "browserName": [ "Chrome", "Safari" ], "countryCode": [ "US" ] }, "event_details": { "duration": [{ "numeric": [ ">=", 2000, "<", 8000 ] }] } }' If the metrics destination is CloudWatch and the event also matches a value in DimensionKeys, then the metric is published with the specified dimensions.
|
628
628
|
*/
|
629
629
|
EventPattern?: EventPattern;
|
630
630
|
/**
|
@@ -640,7 +640,7 @@ declare namespace RUM {
|
|
640
640
|
*/
|
641
641
|
UnitLabel?: UnitLabel;
|
642
642
|
/**
|
643
|
-
* The field within the event object that the metric value is sourced from. If you omit this field, a hardcoded value of 1 is pushed as the metric value. This is useful if you
|
643
|
+
* The field within the event object that the metric value is sourced from. If you omit this field, a hardcoded value of 1 is pushed as the metric value. This is useful if you want to count the number of events that the filter catches. If this metric is sent to CloudWatch Evidently, this field will be passed to Evidently raw. Evidently will handle data extraction from the event.
|
644
644
|
*/
|
645
645
|
ValueKey?: ValueKey;
|
646
646
|
}
|
@@ -705,7 +705,7 @@ declare namespace RUM {
|
|
705
705
|
*/
|
706
706
|
DestinationArn?: DestinationArn;
|
707
707
|
/**
|
708
|
-
* This parameter is required if Destination is Evidently. If Destination is CloudWatch,
|
708
|
+
* This parameter is required if Destination is Evidently. If Destination is CloudWatch, don't use this parameter. This parameter specifies the ARN of an IAM role that RUM will assume to write to the Evidently experiment that you are sending metrics to. This role must have permission to write to that experiment. If you specify this parameter, you must be signed on to a role that has PassRole permissions attached to it, to allow the role to be passed. The CloudWatchAmazonCloudWatchRUMFullAccess policy doesn't include PassRole permissions.
|
709
709
|
*/
|
710
710
|
IamRoleArn?: IamRoleArn;
|
711
711
|
}
|