cdk-lambda-subminute 2.0.330 → 2.0.332

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.
Files changed (36) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/README.md +1 -1
  4. package/node_modules/aws-sdk/apis/appstream-2016-12-01.min.json +4 -1
  5. package/node_modules/aws-sdk/apis/appsync-2017-07-25.min.json +65 -44
  6. package/node_modules/aws-sdk/apis/chime-sdk-meetings-2021-07-15.min.json +33 -13
  7. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +7 -2
  8. package/node_modules/aws-sdk/apis/eks-2017-11-01.min.json +170 -0
  9. package/node_modules/aws-sdk/apis/eks-2017-11-01.paginators.json +6 -0
  10. package/node_modules/aws-sdk/apis/fsx-2018-03-01.min.json +9 -5
  11. package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +119 -15
  12. package/node_modules/aws-sdk/apis/managedblockchain-query-2023-05-04.min.json +7 -3
  13. package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +81 -22
  14. package/node_modules/aws-sdk/apis/mediatailor-2018-04-23.min.json +191 -165
  15. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +251 -31
  16. package/node_modules/aws-sdk/apis/rds-2014-10-31.paginators.json +6 -0
  17. package/node_modules/aws-sdk/clients/appstream.d.ts +4 -0
  18. package/node_modules/aws-sdk/clients/appsync.d.ts +39 -0
  19. package/node_modules/aws-sdk/clients/chimesdkmeetings.d.ts +56 -23
  20. package/node_modules/aws-sdk/clients/ec2.d.ts +21 -6
  21. package/node_modules/aws-sdk/clients/eks.d.ts +237 -3
  22. package/node_modules/aws-sdk/clients/fsx.d.ts +11 -2
  23. package/node_modules/aws-sdk/clients/guardduty.d.ts +102 -11
  24. package/node_modules/aws-sdk/clients/managedblockchainquery.d.ts +13 -3
  25. package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +74 -2
  26. package/node_modules/aws-sdk/clients/mediatailor.d.ts +26 -0
  27. package/node_modules/aws-sdk/clients/rds.d.ts +335 -0
  28. package/node_modules/aws-sdk/clients/route53.d.ts +4 -4
  29. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  30. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +14 -14
  31. package/node_modules/aws-sdk/dist/aws-sdk.js +348 -58
  32. package/node_modules/aws-sdk/dist/aws-sdk.min.js +56 -56
  33. package/node_modules/aws-sdk/lib/core.js +1 -1
  34. package/node_modules/aws-sdk/package.json +1 -1
  35. package/node_modules/aws-sdk/scripts/console +1 -1
  36. package/package.json +2 -2
@@ -11,6 +11,14 @@ declare class MarketplaceCatalog extends Service {
11
11
  */
12
12
  constructor(options?: MarketplaceCatalog.Types.ClientConfiguration)
13
13
  config: Config & MarketplaceCatalog.Types.ClientConfiguration;
14
+ /**
15
+ * Returns metadata and content for multiple entities.
16
+ */
17
+ batchDescribeEntities(params: MarketplaceCatalog.Types.BatchDescribeEntitiesRequest, callback?: (err: AWSError, data: MarketplaceCatalog.Types.BatchDescribeEntitiesResponse) => void): Request<MarketplaceCatalog.Types.BatchDescribeEntitiesResponse, AWSError>;
18
+ /**
19
+ * Returns metadata and content for multiple entities.
20
+ */
21
+ batchDescribeEntities(callback?: (err: AWSError, data: MarketplaceCatalog.Types.BatchDescribeEntitiesResponse) => void): Request<MarketplaceCatalog.Types.BatchDescribeEntitiesResponse, AWSError>;
14
22
  /**
15
23
  * Used to cancel an open change request. Must be sent before the status of the request changes to APPLYING, the final stage of completing your change request. You can describe a change during the 60-day request history retention period for API calls.
16
24
  */
@@ -193,6 +201,34 @@ declare namespace MarketplaceCatalog {
193
201
  }
194
202
  export type AmiProductVisibilityFilterValueList = AmiProductVisibilityString[];
195
203
  export type AmiProductVisibilityString = "Limited"|"Public"|"Restricted"|"Draft"|string;
204
+ export interface BatchDescribeEntitiesRequest {
205
+ /**
206
+ * List of entity IDs and the catalogs the entities are present in.
207
+ */
208
+ EntityRequestList: EntityRequestList;
209
+ }
210
+ export interface BatchDescribeEntitiesResponse {
211
+ /**
212
+ * Details about each entity.
213
+ */
214
+ EntityDetails?: EntityDetails;
215
+ /**
216
+ * A map of errors returned, with EntityId as the key and errorDetail as the value.
217
+ */
218
+ Errors?: Errors;
219
+ }
220
+ export type BatchDescribeErrorCodeString = string;
221
+ export interface BatchDescribeErrorDetail {
222
+ /**
223
+ * The error code returned.
224
+ */
225
+ ErrorCode?: BatchDescribeErrorCodeString;
226
+ /**
227
+ * The error message returned.
228
+ */
229
+ ErrorMessage?: BatchDescribeErrorMessageContent;
230
+ }
231
+ export type BatchDescribeErrorMessageContent = string;
196
232
  export interface CancelChangeSetRequest {
197
233
  /**
198
234
  * Required. The catalog related to the request. Fixed value: AWSMarketplace.
@@ -216,7 +252,7 @@ declare namespace MarketplaceCatalog {
216
252
  export type Catalog = string;
217
253
  export interface Change {
218
254
  /**
219
- * Change types are single string values that describe your intention for the change. Each change type is unique for each EntityType provided in the change's scope. For more information on change types available for single-AMI products, see Working with single-AMI products. Also, for more information about change types available for container-based products, see Working with container products.
255
+ * Change types are single string values that describe your intention for the change. Each change type is unique for each EntityType provided in the change's scope. For more information about change types available for single-AMI products, see Working with single-AMI products. Also, for more information about change types available for container-based products, see Working with container products.
220
256
  */
221
257
  ChangeType: ChangeType;
222
258
  /**
@@ -576,7 +612,42 @@ declare namespace MarketplaceCatalog {
576
612
  */
577
613
  Identifier?: Identifier;
578
614
  }
615
+ export interface EntityDetail {
616
+ /**
617
+ * The entity type of the entity, in the format of EntityType@Version.
618
+ */
619
+ EntityType?: EntityType;
620
+ /**
621
+ * The Amazon Resource Name (ARN) of the entity.
622
+ */
623
+ EntityArn?: ARN;
624
+ /**
625
+ * The ID of the entity, in the format of EntityId@RevisionId.
626
+ */
627
+ EntityIdentifier?: Identifier;
628
+ /**
629
+ * The last time the entity was modified.
630
+ */
631
+ LastModifiedDate?: DateTimeISO8601;
632
+ /**
633
+ * An object that contains all the details of the entity.
634
+ */
635
+ DetailsDocument?: JsonDocumentType;
636
+ }
637
+ export type EntityDetails = {[key: string]: EntityDetail};
638
+ export type EntityId = string;
579
639
  export type EntityNameString = string;
640
+ export interface EntityRequest {
641
+ /**
642
+ * The name of the catalog the entity is present in. The only value at this time is AWSMarketplace.
643
+ */
644
+ Catalog: Catalog;
645
+ /**
646
+ * The ID of the entity.
647
+ */
648
+ EntityId: EntityId;
649
+ }
650
+ export type EntityRequestList = EntityRequest[];
580
651
  export interface EntitySummary {
581
652
  /**
582
653
  * The name for the entity. This value is not unique. It is defined by the seller.
@@ -693,6 +764,7 @@ declare namespace MarketplaceCatalog {
693
764
  ErrorMessage?: ExceptionMessageContent;
694
765
  }
695
766
  export type ErrorDetailList = ErrorDetail[];
767
+ export type Errors = {[key: string]: BatchDescribeErrorDetail};
696
768
  export type ExceptionMessageContent = string;
697
769
  export type FailureCode = "CLIENT_ERROR"|"SERVER_FAULT"|string;
698
770
  export interface Filter {
@@ -764,7 +836,7 @@ declare namespace MarketplaceCatalog {
764
836
  */
765
837
  Catalog: Catalog;
766
838
  /**
767
- * The type of entities to retrieve. Valid values are: ServerProduct, AmiProduct, ContainerProduct, DataProduct, SaaSProduct, ProcurementPolicy, Experience, Audience, BrandingSettings, Offer, Seller, ResaleAuthorization.
839
+ * The type of entities to retrieve. Valid values are: AmiProduct, ContainerProduct, DataProduct, SaaSProduct, ProcurementPolicy, Experience, Audience, BrandingSettings, Offer, Seller, ResaleAuthorization.
768
840
  */
769
841
  EntityType: EntityType;
770
842
  /**
@@ -608,6 +608,10 @@ declare namespace MediaTailor {
608
608
  * The tier of the channel.
609
609
  */
610
610
  Tier?: Tier;
611
+ /**
612
+ * The time-shifted viewing configuration you want to associate to the channel.
613
+ */
614
+ TimeShiftConfiguration?: TimeShiftConfiguration;
611
615
  }
612
616
  export interface CreateChannelResponse {
613
617
  /**
@@ -650,6 +654,10 @@ declare namespace MediaTailor {
650
654
  * The tier of the channel.
651
655
  */
652
656
  Tier?: __string;
657
+ /**
658
+ * The time-shifted viewing configuration assigned to the channel.
659
+ */
660
+ TimeShiftConfiguration?: TimeShiftConfiguration;
653
661
  }
654
662
  export interface CreateLiveSourceRequest {
655
663
  /**
@@ -1114,6 +1122,10 @@ declare namespace MediaTailor {
1114
1122
  * The channel's tier.
1115
1123
  */
1116
1124
  Tier?: __string;
1125
+ /**
1126
+ * The time-shifted viewing configuration for the channel.
1127
+ */
1128
+ TimeShiftConfiguration?: TimeShiftConfiguration;
1117
1129
  }
1118
1130
  export interface DescribeLiveSourceRequest {
1119
1131
  /**
@@ -2294,6 +2306,12 @@ declare namespace MediaTailor {
2294
2306
  Tags: __mapOf__string;
2295
2307
  }
2296
2308
  export type Tier = "BASIC"|"STANDARD"|string;
2309
+ export interface TimeShiftConfiguration {
2310
+ /**
2311
+ * The maximum time delay for time-shifted viewing. The minimum allowed maximum time delay is 0 seconds, and the maximum allowed maximum time delay is 21600 seconds (6 hours).
2312
+ */
2313
+ MaxTimeDelaySeconds: __integer;
2314
+ }
2297
2315
  export interface TimeSignalMessage {
2298
2316
  /**
2299
2317
  * The configurations for the SCTE-35 segmentation_descriptor message(s) sent with the time_signal message.
@@ -2346,6 +2364,10 @@ declare namespace MediaTailor {
2346
2364
  * The channel's output properties.
2347
2365
  */
2348
2366
  Outputs: RequestOutputs;
2367
+ /**
2368
+ * The time-shifted viewing configuration you want to associate to the channel.
2369
+ */
2370
+ TimeShiftConfiguration?: TimeShiftConfiguration;
2349
2371
  }
2350
2372
  export interface UpdateChannelResponse {
2351
2373
  /**
@@ -2388,6 +2410,10 @@ declare namespace MediaTailor {
2388
2410
  * The tier associated with this Channel.
2389
2411
  */
2390
2412
  Tier?: __string;
2413
+ /**
2414
+ * The time-shifted viewing configuration for the channel.
2415
+ */
2416
+ TimeShiftConfiguration?: TimeShiftConfiguration;
2391
2417
  }
2392
2418
  export interface UpdateLiveSourceRequest {
2393
2419
  /**
@@ -605,6 +605,14 @@ declare class RDS extends Service {
605
605
  * Returns information about DBProxyTarget objects. This API supports pagination.
606
606
  */
607
607
  describeDBProxyTargets(callback?: (err: AWSError, data: RDS.Types.DescribeDBProxyTargetsResponse) => void): Request<RDS.Types.DescribeDBProxyTargetsResponse, AWSError>;
608
+ /**
609
+ * Describes the recommendations to resolve the issues for your DB instances, DB clusters, and DB parameter groups.
610
+ */
611
+ describeDBRecommendations(params: RDS.Types.DescribeDBRecommendationsMessage, callback?: (err: AWSError, data: RDS.Types.DBRecommendationsMessage) => void): Request<RDS.Types.DBRecommendationsMessage, AWSError>;
612
+ /**
613
+ * Describes the recommendations to resolve the issues for your DB instances, DB clusters, and DB parameter groups.
614
+ */
615
+ describeDBRecommendations(callback?: (err: AWSError, data: RDS.Types.DBRecommendationsMessage) => void): Request<RDS.Types.DBRecommendationsMessage, AWSError>;
608
616
  /**
609
617
  * Returns a list of DBSecurityGroup descriptions. If a DBSecurityGroupName is specified, the list will contain only the descriptions of the specified DB security group. EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.
610
618
  */
@@ -917,6 +925,14 @@ declare class RDS extends Service {
917
925
  * Modifies the properties of a DBProxyTargetGroup.
918
926
  */
919
927
  modifyDBProxyTargetGroup(callback?: (err: AWSError, data: RDS.Types.ModifyDBProxyTargetGroupResponse) => void): Request<RDS.Types.ModifyDBProxyTargetGroupResponse, AWSError>;
928
+ /**
929
+ * Updates the recommendation status and recommended action status for the specified recommendation.
930
+ */
931
+ modifyDBRecommendation(params: RDS.Types.ModifyDBRecommendationMessage, callback?: (err: AWSError, data: RDS.Types.DBRecommendationMessage) => void): Request<RDS.Types.DBRecommendationMessage, AWSError>;
932
+ /**
933
+ * Updates the recommendation status and recommended action status for the specified recommendation.
934
+ */
935
+ modifyDBRecommendation(callback?: (err: AWSError, data: RDS.Types.DBRecommendationMessage) => void): Request<RDS.Types.DBRecommendationMessage, AWSError>;
920
936
  /**
921
937
  * Updates a manual DB snapshot with a new engine version. The snapshot can be encrypted or unencrypted, but not shared or public. Amazon RDS supports upgrading DB snapshots for MySQL, PostgreSQL, and Oracle. This operation doesn't apply to RDS Custom or RDS for Db2.
922
938
  */
@@ -1714,6 +1730,17 @@ declare namespace RDS {
1714
1730
  */
1715
1731
  InitQuery?: String;
1716
1732
  }
1733
+ export interface ContextAttribute {
1734
+ /**
1735
+ * The key of ContextAttribute.
1736
+ */
1737
+ Key?: String;
1738
+ /**
1739
+ * The value of ContextAttribute.
1740
+ */
1741
+ Value?: String;
1742
+ }
1743
+ export type ContextAttributeList = ContextAttribute[];
1717
1744
  export interface CopyDBClusterParameterGroupMessage {
1718
1745
  /**
1719
1746
  * The identifier or Amazon Resource Name (ARN) for the source DB cluster parameter group. For information about creating an ARN, see Constructing an ARN for Amazon RDS in the Amazon Aurora User Guide. Constraints: Must specify a valid DB cluster parameter group.
@@ -4610,6 +4637,102 @@ declare namespace RDS {
4610
4637
  */
4611
4638
  UpdatedDate?: TStamp;
4612
4639
  }
4640
+ export interface DBRecommendation {
4641
+ /**
4642
+ * The unique identifier of the recommendation.
4643
+ */
4644
+ RecommendationId?: String;
4645
+ /**
4646
+ * A value that indicates the type of recommendation. This value determines how the description is rendered.
4647
+ */
4648
+ TypeId?: String;
4649
+ /**
4650
+ * The severity level of the recommendation. The severity level can help you decide the urgency with which to address the recommendation. Valid values: high medium low informational
4651
+ */
4652
+ Severity?: String;
4653
+ /**
4654
+ * The Amazon Resource Name (ARN) of the RDS resource associated with the recommendation.
4655
+ */
4656
+ ResourceArn?: String;
4657
+ /**
4658
+ * The current status of the recommendation. Valid values: active - The recommendations which are ready for you to apply. pending - The applied or scheduled recommendations which are in progress. resolved - The recommendations which are completed. dismissed - The recommendations that you dismissed.
4659
+ */
4660
+ Status?: String;
4661
+ /**
4662
+ * The time when the recommendation was created. For example, 2023-09-28T01:13:53.931000+00:00.
4663
+ */
4664
+ CreatedTime?: TStamp;
4665
+ /**
4666
+ * The time when the recommendation was last updated.
4667
+ */
4668
+ UpdatedTime?: TStamp;
4669
+ /**
4670
+ * A short description of the issue identified for this recommendation. The description might contain markdown.
4671
+ */
4672
+ Detection?: String;
4673
+ /**
4674
+ * A short description of the recommendation to resolve an issue. The description might contain markdown.
4675
+ */
4676
+ Recommendation?: String;
4677
+ /**
4678
+ * A detailed description of the recommendation. The description might contain markdown.
4679
+ */
4680
+ Description?: String;
4681
+ /**
4682
+ * The reason why this recommendation was created. The information might contain markdown.
4683
+ */
4684
+ Reason?: String;
4685
+ /**
4686
+ * A list of recommended actions.
4687
+ */
4688
+ RecommendedActions?: RecommendedActionList;
4689
+ /**
4690
+ * The category of the recommendation. Valid values: performance efficiency security reliability cost optimization operational excellence sustainability
4691
+ */
4692
+ Category?: String;
4693
+ /**
4694
+ * The Amazon Web Services service that generated the recommendations.
4695
+ */
4696
+ Source?: String;
4697
+ /**
4698
+ * A short description of the recommendation type. The description might contain markdown.
4699
+ */
4700
+ TypeDetection?: String;
4701
+ /**
4702
+ * A short description that summarizes the recommendation to fix all the issues of the recommendation type. The description might contain markdown.
4703
+ */
4704
+ TypeRecommendation?: String;
4705
+ /**
4706
+ * A short description that explains the possible impact of an issue.
4707
+ */
4708
+ Impact?: String;
4709
+ /**
4710
+ * Additional information about the recommendation. The information might contain markdown.
4711
+ */
4712
+ AdditionalInfo?: String;
4713
+ /**
4714
+ * A link to documentation that provides additional information about the recommendation.
4715
+ */
4716
+ Links?: DocLinkList;
4717
+ /**
4718
+ * Details of the issue that caused the recommendation.
4719
+ */
4720
+ IssueDetails?: IssueDetails;
4721
+ }
4722
+ export type DBRecommendationList = DBRecommendation[];
4723
+ export interface DBRecommendationMessage {
4724
+ DBRecommendation?: DBRecommendation;
4725
+ }
4726
+ export interface DBRecommendationsMessage {
4727
+ /**
4728
+ * A list of recommendations which is returned from DescribeDBRecommendations API request.
4729
+ */
4730
+ DBRecommendations?: DBRecommendationList;
4731
+ /**
4732
+ * An optional pagination token provided by a previous DBRecommendationsMessage request. This token can be used later in a DescribeDBRecomendations request.
4733
+ */
4734
+ Marker?: String;
4735
+ }
4613
4736
  export interface DBSecurityGroup {
4614
4737
  /**
4615
4738
  * Provides the Amazon Web Services ID of the owner of a specific DB security group.
@@ -5700,6 +5823,32 @@ declare namespace RDS {
5700
5823
  */
5701
5824
  Marker?: String;
5702
5825
  }
5826
+ export interface DescribeDBRecommendationsMessage {
5827
+ /**
5828
+ * A filter to include only the recommendations that were updated after this specified time.
5829
+ */
5830
+ LastUpdatedAfter?: TStamp;
5831
+ /**
5832
+ * A filter to include only the recommendations that were updated before this specified time.
5833
+ */
5834
+ LastUpdatedBefore?: TStamp;
5835
+ /**
5836
+ * The language that you choose to return the list of recommendations. Valid values: en en_UK de es fr id it ja ko pt_BR zh_TW zh_CN
5837
+ */
5838
+ Locale?: String;
5839
+ /**
5840
+ * A filter that specifies one or more recommendations to describe. Supported Filters: recommendation-id - Accepts a list of recommendation identifiers. The results list only includes the recommendations whose identifier is one of the specified filter values. status - Accepts a list of recommendation statuses. Valid values: active - The recommendations which are ready for you to apply. pending - The applied or scheduled recommendations which are in progress. resolved - The recommendations which are completed. dismissed - The recommendations that you dismissed. The results list only includes the recommendations whose status is one of the specified filter values. severity - Accepts a list of recommendation severities. The results list only includes the recommendations whose severity is one of the specified filter values. Valid values: high medium low informational type-id - Accepts a list of recommendation type identifiers. The results list only includes the recommendations whose type is one of the specified filter values. dbi-resource-id - Accepts a list of database resource identifiers. The results list only includes the recommendations that generated for the specified databases. cluster-resource-id - Accepts a list of cluster resource identifiers. The results list only includes the recommendations that generated for the specified clusters. pg-arn - Accepts a list of parameter group ARNs. The results list only includes the recommendations that generated for the specified parameter groups. cluster-pg-arn - Accepts a list of cluster parameter group ARNs. The results list only includes the recommendations that generated for the specified cluster parameter groups.
5841
+ */
5842
+ Filters?: FilterList;
5843
+ /**
5844
+ * The maximum number of recommendations to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that you can retrieve the remaining results.
5845
+ */
5846
+ MaxRecords?: IntegerOptional;
5847
+ /**
5848
+ * An optional pagination token provided by a previous DescribeDBRecommendations request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
5849
+ */
5850
+ Marker?: String;
5851
+ }
5703
5852
  export interface DescribeDBSecurityGroupsMessage {
5704
5853
  /**
5705
5854
  * The name of the DB security group to return details for.
@@ -6231,6 +6380,17 @@ declare namespace RDS {
6231
6380
  ValidDBInstanceModificationsMessage?: ValidDBInstanceModificationsMessage;
6232
6381
  }
6233
6382
  export type Description = string;
6383
+ export interface DocLink {
6384
+ /**
6385
+ * The text with the link to documentation for the recommendation.
6386
+ */
6387
+ Text?: String;
6388
+ /**
6389
+ * The URL for the documentation for the recommendation.
6390
+ */
6391
+ Url?: String;
6392
+ }
6393
+ export type DocLinkList = DocLink[];
6234
6394
  export interface DomainMembership {
6235
6395
  /**
6236
6396
  * The identifier of the Active Directory Domain.
@@ -6760,6 +6920,12 @@ declare namespace RDS {
6760
6920
  export type IntegrationList = Integration[];
6761
6921
  export type IntegrationName = string;
6762
6922
  export type IntegrationStatus = "creating"|"active"|"modifying"|"failed"|"deleting"|"syncing"|"needs_attention"|string;
6923
+ export interface IssueDetails {
6924
+ /**
6925
+ * A detailed description of the issue when the recommendation category is performance.
6926
+ */
6927
+ PerformanceIssueDetails?: PerformanceIssueDetails;
6928
+ }
6763
6929
  export type KeyList = String[];
6764
6930
  export type KmsKeyIdOrArn = string;
6765
6931
  export interface ListTagsForResourceMessage {
@@ -6792,6 +6958,42 @@ declare namespace RDS {
6792
6958
  KmsKeyId?: String;
6793
6959
  }
6794
6960
  export type MaxRecords = number;
6961
+ export interface Metric {
6962
+ /**
6963
+ * The name of a metric.
6964
+ */
6965
+ Name?: String;
6966
+ /**
6967
+ * A list of metric references (thresholds).
6968
+ */
6969
+ References?: MetricReferenceList;
6970
+ /**
6971
+ * The details of different statistics for a metric. The description might contain markdown.
6972
+ */
6973
+ StatisticsDetails?: String;
6974
+ /**
6975
+ * The query to retrieve metric data points.
6976
+ */
6977
+ MetricQuery?: MetricQuery;
6978
+ }
6979
+ export type MetricList = Metric[];
6980
+ export interface MetricQuery {
6981
+ /**
6982
+ * The Performance Insights query that you can use to retrieve Performance Insights metric data points.
6983
+ */
6984
+ PerformanceInsightsMetricQuery?: PerformanceInsightsMetricQuery;
6985
+ }
6986
+ export interface MetricReference {
6987
+ /**
6988
+ * The name of the metric reference.
6989
+ */
6990
+ Name?: String;
6991
+ /**
6992
+ * The details of a performance issue.
6993
+ */
6994
+ ReferenceDetails?: ReferenceDetails;
6995
+ }
6996
+ export type MetricReferenceList = MetricReference[];
6795
6997
  export interface MinimumEngineVersionPerAllowedValue {
6796
6998
  /**
6797
6999
  * The allowed value for an option setting.
@@ -7450,6 +7652,24 @@ declare namespace RDS {
7450
7652
  */
7451
7653
  DBProxyTargetGroup?: DBProxyTargetGroup;
7452
7654
  }
7655
+ export interface ModifyDBRecommendationMessage {
7656
+ /**
7657
+ * The identifier of the recommendation to update.
7658
+ */
7659
+ RecommendationId: String;
7660
+ /**
7661
+ * The language of the modified recommendation.
7662
+ */
7663
+ Locale?: String;
7664
+ /**
7665
+ * The recommendation status to update. Valid values: active dismissed
7666
+ */
7667
+ Status?: String;
7668
+ /**
7669
+ * The list of recommended action status to update. You can update multiple recommended actions at one time.
7670
+ */
7671
+ RecommendedActionUpdates?: RecommendedActionUpdateList;
7672
+ }
7453
7673
  export interface ModifyDBSnapshotAttributeMessage {
7454
7674
  /**
7455
7675
  * The identifier for the DB snapshot to modify the attributes for.
@@ -8243,6 +8463,48 @@ declare namespace RDS {
8243
8463
  */
8244
8464
  MultiTenant?: BooleanOptional;
8245
8465
  }
8466
+ export interface PerformanceInsightsMetricDimensionGroup {
8467
+ /**
8468
+ * A list of specific dimensions from a dimension group. If this list isn't included, then all of the dimensions in the group were requested, or are present in the response.
8469
+ */
8470
+ Dimensions?: StringList;
8471
+ /**
8472
+ * The available dimension groups for Performance Insights metric type.
8473
+ */
8474
+ Group?: String;
8475
+ /**
8476
+ * The maximum number of items to fetch for this dimension group.
8477
+ */
8478
+ Limit?: Integer;
8479
+ }
8480
+ export interface PerformanceInsightsMetricQuery {
8481
+ /**
8482
+ * A specification for how to aggregate the data points from a query result. You must specify a valid dimension group. Performance Insights will return all of the dimensions within that group, unless you provide the names of specific dimensions within that group. You can also request that Performance Insights return a limited number of values for a dimension.
8483
+ */
8484
+ GroupBy?: PerformanceInsightsMetricDimensionGroup;
8485
+ /**
8486
+ * The name of a Performance Insights metric to be measured. Valid Values: db.load.avg - A scaled representation of the number of active sessions for the database engine. db.sampledload.avg - The raw number of active sessions for the database engine. The counter metrics listed in Performance Insights operating system counters in the Amazon Aurora User Guide. If the number of active sessions is less than an internal Performance Insights threshold, db.load.avg and db.sampledload.avg are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with db.load.avg showing the scaled values, db.sampledload.avg showing the raw values, and db.sampledload.avg less than db.load.avg. For most use cases, you can query db.load.avg only.
8487
+ */
8488
+ Metric?: String;
8489
+ }
8490
+ export interface PerformanceIssueDetails {
8491
+ /**
8492
+ * The time when the performance issue started.
8493
+ */
8494
+ StartTime?: TStamp;
8495
+ /**
8496
+ * The time when the performance issue stopped.
8497
+ */
8498
+ EndTime?: TStamp;
8499
+ /**
8500
+ * The metrics that are relevant to the performance issue.
8501
+ */
8502
+ Metrics?: MetricList;
8503
+ /**
8504
+ * The analysis of the performance issue. The information might contain markdown.
8505
+ */
8506
+ Analysis?: String;
8507
+ }
8246
8508
  export interface ProcessorFeature {
8247
8509
  /**
8248
8510
  * The name of the processor feature. Valid names are coreCount and threadsPerCore.
@@ -8353,6 +8615,67 @@ declare namespace RDS {
8353
8615
  export interface RebootDBInstanceResult {
8354
8616
  DBInstance?: DBInstance;
8355
8617
  }
8618
+ export interface RecommendedAction {
8619
+ /**
8620
+ * The unique identifier of the recommended action.
8621
+ */
8622
+ ActionId?: String;
8623
+ /**
8624
+ * A short description to summarize the action. The description might contain markdown.
8625
+ */
8626
+ Title?: String;
8627
+ /**
8628
+ * A detailed description of the action. The description might contain markdown.
8629
+ */
8630
+ Description?: String;
8631
+ /**
8632
+ * An API operation for the action.
8633
+ */
8634
+ Operation?: String;
8635
+ /**
8636
+ * The parameters for the API operation.
8637
+ */
8638
+ Parameters?: RecommendedActionParameterList;
8639
+ /**
8640
+ * The methods to apply the recommended action. Valid values: manual - The action requires you to resolve the recommendation manually. immediately - The action is applied immediately. next-maintainance-window - The action is applied during the next scheduled maintainance.
8641
+ */
8642
+ ApplyModes?: StringList;
8643
+ /**
8644
+ * The status of the action. ready applied scheduled resolved
8645
+ */
8646
+ Status?: String;
8647
+ /**
8648
+ * The details of the issue.
8649
+ */
8650
+ IssueDetails?: IssueDetails;
8651
+ /**
8652
+ * The supporting attributes to explain the recommended action.
8653
+ */
8654
+ ContextAttributes?: ContextAttributeList;
8655
+ }
8656
+ export type RecommendedActionList = RecommendedAction[];
8657
+ export interface RecommendedActionParameter {
8658
+ /**
8659
+ * The key of the parameter to use with the RecommendedAction API operation.
8660
+ */
8661
+ Key?: String;
8662
+ /**
8663
+ * The value of the parameter to use with the RecommendedAction API operation.
8664
+ */
8665
+ Value?: String;
8666
+ }
8667
+ export type RecommendedActionParameterList = RecommendedActionParameter[];
8668
+ export interface RecommendedActionUpdate {
8669
+ /**
8670
+ * A unique identifier of the updated recommendation action.
8671
+ */
8672
+ ActionId: String;
8673
+ /**
8674
+ * The status of the updated recommendation action. applied scheduled
8675
+ */
8676
+ Status: String;
8677
+ }
8678
+ export type RecommendedActionUpdateList = RecommendedActionUpdate[];
8356
8679
  export interface RecurringCharge {
8357
8680
  /**
8358
8681
  * The amount of the recurring charge.
@@ -8364,6 +8687,12 @@ declare namespace RDS {
8364
8687
  RecurringChargeFrequency?: String;
8365
8688
  }
8366
8689
  export type RecurringChargeList = RecurringCharge[];
8690
+ export interface ReferenceDetails {
8691
+ /**
8692
+ * The metric reference details when the reference is a scalar.
8693
+ */
8694
+ ScalarReferenceDetails?: ScalarReferenceDetails;
8695
+ }
8367
8696
  export interface RegisterDBProxyTargetsRequest {
8368
8697
  /**
8369
8698
  * The identifier of the DBProxy that is associated with the DBProxyTargetGroup.
@@ -9573,6 +9902,12 @@ declare namespace RDS {
9573
9902
  export interface RevokeDBSecurityGroupIngressResult {
9574
9903
  DBSecurityGroup?: DBSecurityGroup;
9575
9904
  }
9905
+ export interface ScalarReferenceDetails {
9906
+ /**
9907
+ * The value of a scalar reference.
9908
+ */
9909
+ Value?: Double;
9910
+ }
9576
9911
  export interface ScalingConfiguration {
9577
9912
  /**
9578
9913
  * The minimum capacity for an Aurora DB cluster in serverless DB engine mode. For Aurora MySQL, valid capacity values are 1, 2, 4, 8, 16, 32, 64, 128, and 256. For Aurora PostgreSQL, valid capacity values are 2, 4, 8, 16, 32, 64, 192, and 384. The minimum capacity must be less than or equal to the maximum capacity.
@@ -850,7 +850,7 @@ declare namespace Route53 {
850
850
  Dimensions?: DimensionList;
851
851
  }
852
852
  export type CloudWatchLogsLogGroupArn = string;
853
- export type CloudWatchRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-central-1"|"eu-central-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"ap-south-2"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-northwest-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"eu-south-2"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|"ap-southeast-4"|"il-central-1"|string;
853
+ export type CloudWatchRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-central-1"|"eu-central-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"ap-south-2"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-northwest-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"eu-south-2"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|"ap-southeast-4"|"il-central-1"|"ca-west-1"|string;
854
854
  export type CollectionName = string;
855
855
  export type CollectionSummaries = CollectionSummary[];
856
856
  export interface CollectionSummary {
@@ -2569,7 +2569,7 @@ declare namespace Route53 {
2569
2569
  }
2570
2570
  export interface ResourceRecordSet {
2571
2571
  /**
2572
- * For ChangeResourceRecordSets requests, the name of the record that you want to create, update, or delete. For ListResourceRecordSets responses, the name of a record in the specified hosted zone. ChangeResourceRecordSets Only Enter a fully qualified domain name, for example, www.example.com. You can optionally include a trailing dot. If you omit the trailing dot, Amazon Route 53 assumes that the domain name that you specify is fully qualified. This means that Route 53 treats www.example.com (without a trailing dot) and www.example.com. (with a trailing dot) as identical. For information about how to specify characters other than a-z, 0-9, and - (hyphen) and how to specify internationalized domain names, see DNS Domain Name Format in the Amazon Route 53 Developer Guide. You can use the asterisk (*) wildcard to replace the leftmost label in a domain name, for example, *.example.com. Note the following: The * must replace the entire label. For example, you can't specify *prod.example.com or prod*.example.com. The * can't replace any of the middle labels, for example, marketing.*.example.com. If you include * in any position other than the leftmost label in a domain name, DNS treats it as an * character (ASCII 42), not as a wildcard. You can't use the * wildcard for resource records sets that have a type of NS. You can use the * wildcard as the leftmost label in a domain name, for example, *.example.com. You can't use an * for one of the middle labels, for example, marketing.*.example.com. In addition, the * must replace the entire label; for example, you can't specify prod*.example.com.
2572
+ * For ChangeResourceRecordSets requests, the name of the record that you want to create, update, or delete. For ListResourceRecordSets responses, the name of a record in the specified hosted zone. ChangeResourceRecordSets Only Enter a fully qualified domain name, for example, www.example.com. You can optionally include a trailing dot. If you omit the trailing dot, Amazon Route 53 assumes that the domain name that you specify is fully qualified. This means that Route 53 treats www.example.com (without a trailing dot) and www.example.com. (with a trailing dot) as identical. For information about how to specify characters other than a-z, 0-9, and - (hyphen) and how to specify internationalized domain names, see DNS Domain Name Format in the Amazon Route 53 Developer Guide. You can use the asterisk (*) wildcard to replace the leftmost label in a domain name, for example, *.example.com. Note the following: The * must replace the entire label. For example, you can't specify *prod.example.com or prod*.example.com. The * can't replace any of the middle labels, for example, marketing.*.example.com. If you include * in any position other than the leftmost label in a domain name, DNS treats it as an * character (ASCII 42), not as a wildcard. You can't use the * wildcard for resource records sets that have a type of NS.
2573
2573
  */
2574
2574
  Name: DNSName;
2575
2575
  /**
@@ -2625,7 +2625,7 @@ declare namespace Route53 {
2625
2625
  export type ResourceRecordSetFailover = "PRIMARY"|"SECONDARY"|string;
2626
2626
  export type ResourceRecordSetIdentifier = string;
2627
2627
  export type ResourceRecordSetMultiValueAnswer = boolean;
2628
- export type ResourceRecordSetRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-north-1"|"cn-northwest-1"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"ap-south-2"|"af-south-1"|"eu-south-1"|"eu-south-2"|"ap-southeast-4"|"il-central-1"|string;
2628
+ export type ResourceRecordSetRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-north-1"|"cn-northwest-1"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"ap-south-2"|"af-south-1"|"eu-south-1"|"eu-south-2"|"ap-southeast-4"|"il-central-1"|"ca-west-1"|string;
2629
2629
  export type ResourceRecordSetWeight = number;
2630
2630
  export type ResourceRecordSets = ResourceRecordSet[];
2631
2631
  export type ResourceRecords = ResourceRecord[];
@@ -2996,7 +2996,7 @@ declare namespace Route53 {
2996
2996
  VPCId?: VPCId;
2997
2997
  }
2998
2998
  export type VPCId = string;
2999
- export type VPCRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-east-1"|"me-south-1"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|"me-central-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-south-1"|"ap-south-2"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"ca-central-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"eu-south-2"|"ap-southeast-4"|"il-central-1"|string;
2999
+ export type VPCRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-east-1"|"me-south-1"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|"me-central-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-south-1"|"ap-south-2"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"ca-central-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"eu-south-2"|"ap-southeast-4"|"il-central-1"|"ca-west-1"|string;
3000
3000
  export type VPCs = VPC[];
3001
3001
  /**
3002
3002
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1521.0',
86
+ VERSION: '2.1523.0',
87
87
 
88
88
  /**
89
89
  * @api private