@awboost/cfntypes 0.100.336 → 0.100.338

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.
@@ -17651,6 +17651,7 @@ export type BackupBackupPlanBackupRuleResourceType = {
17651
17651
  ScheduleExpressionTimezone?: string;
17652
17652
  StartWindowMinutes?: number;
17653
17653
  TargetBackupVault: string;
17654
+ TargetLogicallyAirGappedBackupVaultArn?: string;
17654
17655
  };
17655
17656
  /**
17656
17657
  * Type definition for `AWS::Backup::BackupPlan.CopyActionResourceType`.
@@ -28212,7 +28213,7 @@ export type BillingConductorCustomLineItemProps = {
28212
28213
  AccountId?: string;
28213
28214
  /**
28214
28215
  * Billing Group ARN
28215
- * @pattern `arn:aws(-cn)?:billingconductor::[0-9]{12}:billinggroup/?[0-9]{12}`
28216
+ * @pattern `arn:aws(-cn)?:billingconductor::[0-9]{12}:billinggroup/?[a-zA-Z0-9]{10,12}`
28216
28217
  */
28217
28218
  BillingGroupArn: string;
28218
28219
  BillingPeriodRange?: BillingConductorCustomLineItemBillingPeriodRange;
@@ -32968,6 +32969,64 @@ export type CloudFrontCloudFrontOriginAccessIdentityCloudFrontOriginAccessIdenti
32968
32969
  */
32969
32970
  Comment: string;
32970
32971
  };
32972
+ /**
32973
+ * Resource Type definition for AWS::CloudFront::ConnectionFunction
32974
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectionfunction.html}
32975
+ */
32976
+ export type CloudFrontConnectionFunctionProps = {
32977
+ AutoPublish?: boolean;
32978
+ ConnectionFunctionCode: string;
32979
+ ConnectionFunctionConfig: CloudFrontConnectionFunctionConnectionFunctionConfig;
32980
+ Name: string;
32981
+ Tags?: CloudFrontConnectionFunctionTag[];
32982
+ };
32983
+ /**
32984
+ * Attribute type definition for `AWS::CloudFront::ConnectionFunction`.
32985
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectionfunction.html#aws-resource-cloudfront-connectionfunction-return-values}
32986
+ */
32987
+ export type CloudFrontConnectionFunctionAttributes = {
32988
+ ConnectionFunctionArn: string;
32989
+ CreatedTime: string;
32990
+ ETag: string;
32991
+ Id: string;
32992
+ LastModifiedTime: string;
32993
+ Stage: "DEVELOPMENT" | "LIVE";
32994
+ Status: "UNPUBLISHED" | "DEPLOYED" | "UNASSOCIATED" | "PUBLISHING" | "IN_PROGRESS";
32995
+ };
32996
+ /**
32997
+ * Type definition for `AWS::CloudFront::ConnectionFunction.ConnectionFunctionConfig`.
32998
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-connectionfunction-connectionfunctionconfig.html}
32999
+ */
33000
+ export type CloudFrontConnectionFunctionConnectionFunctionConfig = {
33001
+ Comment: string;
33002
+ KeyValueStoreAssociations?: CloudFrontConnectionFunctionKeyValueStoreAssociation[];
33003
+ Runtime: "cloudfront-js-2.0";
33004
+ };
33005
+ /**
33006
+ * Type definition for `AWS::CloudFront::ConnectionFunction.KeyValueStoreAssociation`.
33007
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-connectionfunction-keyvaluestoreassociation.html}
33008
+ */
33009
+ export type CloudFrontConnectionFunctionKeyValueStoreAssociation = {
33010
+ KeyValueStoreARN: string;
33011
+ };
33012
+ /**
33013
+ * Type definition for `AWS::CloudFront::ConnectionFunction.Tag`.
33014
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-connectionfunction-tag.html}
33015
+ */
33016
+ export type CloudFrontConnectionFunctionTag = {
33017
+ /**
33018
+ * @minLength `1`
33019
+ * @maxLength `128`
33020
+ * @pattern `^[a-zA-Z0-9 _.:/=+\-@]{1,128}\Z`
33021
+ */
33022
+ Key: string;
33023
+ /**
33024
+ * @minLength `0`
33025
+ * @maxLength `256`
33026
+ * @pattern `^[a-zA-Z0-9 _.:/=+\-@]{0,256}\Z`
33027
+ */
33028
+ Value: string;
33029
+ };
32971
33030
  /**
32972
33031
  * Resource type definition for `AWS::CloudFront::ConnectionGroup`.
32973
33032
  * The connection group for your distribution tenants. When you first create a distribution tenant and you don't specify a connection group, CloudFront will automatically create a default connection group for you. When you create a new distribution tenant and don't specify a connection group, the default one will be associated with your distribution tenant.
@@ -35860,6 +35919,11 @@ export type CloudTrailTrailProps = {
35860
35919
  * The advanced event selectors that were used to select events for the data store.
35861
35920
  */
35862
35921
  AdvancedEventSelectors?: CloudTrailTrailAdvancedEventSelector[];
35922
+ /**
35923
+ * Specifies the aggregation configuration to aggregate CloudTrail Events. A maximum of 1 aggregation configuration is allowed.
35924
+ * @maxLength `1`
35925
+ */
35926
+ AggregationConfigurations?: CloudTrailTrailAggregationConfiguration[];
35863
35927
  /**
35864
35928
  * Specifies a log group name using an Amazon Resource Name (ARN), a unique identifier that represents the log group to which CloudTrail logs will be delivered. Not required unless you specify CloudWatchLogsRoleArn.
35865
35929
  */
@@ -35993,6 +36057,23 @@ export type CloudTrailTrailAdvancedFieldSelector = {
35993
36057
  */
35994
36058
  StartsWith?: string[];
35995
36059
  };
36060
+ /**
36061
+ * Type definition for `AWS::CloudTrail::Trail.AggregationConfiguration`.
36062
+ * Configure to add aggregation rules to aggregate CloudTrail Events.
36063
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-trail-aggregationconfiguration.html}
36064
+ */
36065
+ export type CloudTrailTrailAggregationConfiguration = {
36066
+ /**
36067
+ * The category of events to be aggregated.
36068
+ */
36069
+ EventCategory: "Data";
36070
+ /**
36071
+ * Contains all templates in an aggregation configuration.
36072
+ * @minLength `1`
36073
+ * @maxLength `50`
36074
+ */
36075
+ Templates: CloudTrailTrailTemplate[];
36076
+ };
35996
36077
  /**
35997
36078
  * Type definition for `AWS::CloudTrail::Trail.DataResource`.
35998
36079
  * CloudTrail supports data event logging for Amazon S3 objects and AWS Lambda functions. You can specify up to 250 resources for an individual event selector, but the total number of data resources cannot exceed 250 across all event selectors in a trail. This limit does not apply if you configure resource logging for all data events.
@@ -36064,6 +36145,12 @@ export type CloudTrailTrailTag = {
36064
36145
  */
36065
36146
  Value: string;
36066
36147
  };
36148
+ /**
36149
+ * Type definition for `AWS::CloudTrail::Trail.Template`.
36150
+ * A template used to configure aggregation rules.
36151
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-trail-template.html}
36152
+ */
36153
+ export type CloudTrailTrailTemplate = "API_ACTIVITY" | "RESOURCE_ACCESS" | "USER_ACTIONS";
36067
36154
  /**
36068
36155
  * The ``AWS::CloudWatch::Alarm`` type specifies an alarm and associates it with the specified metric or metric math expression.
36069
36156
  When this operation creates an alarm, the alarm state is immediately set to ``INSUFFICIENT_DATA``. The alarm is then evaluated and its state is set appropriately. Any actions associated with the new state are then executed.
@@ -39333,6 +39420,46 @@ export type CognitoManagedLoginBrandingColorModeType = "LIGHT" | "DARK" | "DYNAM
39333
39420
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-extensiontype.html}
39334
39421
  */
39335
39422
  export type CognitoManagedLoginBrandingExtensionType = "ICO" | "JPEG" | "PNG" | "SVG" | "WEBP";
39423
+ /**
39424
+ * Resource Type definition for AWS::Cognito::Terms
39425
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-terms.html}
39426
+ */
39427
+ export type CognitoTermsProps = {
39428
+ ClientId?: string;
39429
+ Enforcement: CognitoTermsTermsEnforcementType;
39430
+ Links: CognitoTermsLinksType;
39431
+ /**
39432
+ * @pattern `^(terms-of-use|privacy-policy)$`
39433
+ */
39434
+ TermsName: string;
39435
+ TermsSource: CognitoTermsTermsSourceType;
39436
+ UserPoolId: string;
39437
+ };
39438
+ /**
39439
+ * Attribute type definition for `AWS::Cognito::Terms`.
39440
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-terms.html#aws-resource-cognito-terms-return-values}
39441
+ */
39442
+ export type CognitoTermsAttributes = {
39443
+ /**
39444
+ * @pattern `^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[4][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$`
39445
+ */
39446
+ TermsId: string;
39447
+ };
39448
+ /**
39449
+ * Type definition for `AWS::Cognito::Terms.LinksType`.
39450
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-terms-linkstype.html}
39451
+ */
39452
+ export type CognitoTermsLinksType = Record<string, string>;
39453
+ /**
39454
+ * Type definition for `AWS::Cognito::Terms.TermsEnforcementType`.
39455
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-terms-termsenforcementtype.html}
39456
+ */
39457
+ export type CognitoTermsTermsEnforcementType = "NONE";
39458
+ /**
39459
+ * Type definition for `AWS::Cognito::Terms.TermsSourceType`.
39460
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-terms-termssourcetype.html}
39461
+ */
39462
+ export type CognitoTermsTermsSourceType = "LINK";
39336
39463
  /**
39337
39464
  * Definition of AWS::Cognito::UserPool Resource Type
39338
39465
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html}
@@ -41445,7 +41572,7 @@ export type ConnectEvaluationFormEvaluationFormItemEnablementExpression = {
41445
41572
  /**
41446
41573
  * Specifies the comparison method to determine if the source value matches any of the specified values.
41447
41574
  */
41448
- Comparator: "IN" | "NOT_IN";
41575
+ Comparator: "IN" | "NOT_IN" | "ALL_IN" | "EXACT";
41449
41576
  /**
41450
41577
  * Identifies the form item whose value will be evaluated in the expression.
41451
41578
  */
@@ -41572,7 +41699,7 @@ export type ConnectEvaluationFormEvaluationFormQuestion = {
41572
41699
  * The type of the question.
41573
41700
  *Allowed values*: ``NUMERIC`` | ``SINGLESELECT`` | ``TEXT``
41574
41701
  */
41575
- QuestionType: "NUMERIC" | "SINGLESELECT" | "TEXT";
41702
+ QuestionType: "NUMERIC" | "SINGLESELECT" | "TEXT" | "MULTISELECT" | "DATETIME";
41576
41703
  /**
41577
41704
  * The properties of the type of question. Text questions do not have to define question type properties.
41578
41705
  */
@@ -41605,7 +41732,7 @@ export type ConnectEvaluationFormEvaluationFormQuestion = {
41605
41732
  */
41606
41733
  export type ConnectEvaluationFormEvaluationFormQuestionAutomationAnswerSource = {
41607
41734
  /**
41608
- * The type of the answer sourcr
41735
+ * The type of the answer source
41609
41736
  */
41610
41737
  SourceType: "CONTACT_LENS_DATA" | "GEN_AI";
41611
41738
  };
@@ -41784,7 +41911,7 @@ export type ConnectEvaluationFormNumericQuestionPropertyValueAutomation = {
41784
41911
  /**
41785
41912
  * The property label of the automation.
41786
41913
  */
41787
- Label: "OVERALL_CUSTOMER_SENTIMENT_SCORE" | "OVERALL_AGENT_SENTIMENT_SCORE" | "NON_TALK_TIME" | "NON_TALK_TIME_PERCENTAGE" | "NUMBER_OF_INTERRUPTIONS" | "CONTACT_DURATION" | "AGENT_INTERACTION_DURATION" | "CUSTOMER_HOLD_TIME" | "LONGEST_HOLD_DURATION" | "NUMBER_OF_HOLDS" | "AGENT_INTERACTION_AND_HOLD_DURATION";
41914
+ Label: "OVERALL_CUSTOMER_SENTIMENT_SCORE" | "OVERALL_AGENT_SENTIMENT_SCORE" | "NON_TALK_TIME" | "NON_TALK_TIME_PERCENTAGE" | "NUMBER_OF_INTERRUPTIONS" | "CONTACT_DURATION" | "AGENT_INTERACTION_DURATION" | "CUSTOMER_HOLD_TIME" | "LONGEST_HOLD_DURATION" | "NUMBER_OF_HOLDS" | "AGENT_INTERACTION_AND_HOLD_DURATION" | "CUSTOMER_SENTIMENT_SCORE_WITHOUT_AGENT";
41788
41915
  };
41789
41916
  /**
41790
41917
  * Type definition for `AWS::Connect::EvaluationForm.ScoringStrategy`.
@@ -45646,6 +45773,10 @@ export type CustomerProfilesCalculatedAttributeDefinitionValueRange = {
45646
45773
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-domain.html}
45647
45774
  */
45648
45775
  export type CustomerProfilesDomainProps = {
45776
+ /**
45777
+ * Configuration and status of the data store for the domain.
45778
+ */
45779
+ DataStore?: CustomerProfilesDomainDataStore;
45649
45780
  /**
45650
45781
  * The URL of the SQS dead letter queue
45651
45782
  * @minLength `0`
@@ -45695,6 +45826,26 @@ export type CustomerProfilesDomainAttributes = {
45695
45826
  * The time of this integration got created
45696
45827
  */
45697
45828
  CreatedAt: string;
45829
+ /**
45830
+ * Configuration and status of the data store for the domain.
45831
+ */
45832
+ DataStore: {
45833
+ /**
45834
+ * Progress information for data store setup.
45835
+ */
45836
+ Readiness: {
45837
+ /**
45838
+ * A message describing the current progress.
45839
+ */
45840
+ Message: string;
45841
+ /**
45842
+ * The percentage of progress completed.
45843
+ * @min `0`
45844
+ * @max `100`
45845
+ */
45846
+ ProgressPercentage: number;
45847
+ };
45848
+ };
45698
45849
  /**
45699
45850
  * The time of this integration got last updated at
45700
45851
  */
@@ -45811,6 +45962,17 @@ export type CustomerProfilesDomainConsolidation = {
45811
45962
  */
45812
45963
  MatchingAttributesList: string[][];
45813
45964
  };
45965
+ /**
45966
+ * Type definition for `AWS::CustomerProfiles::Domain.DataStore`.
45967
+ * Configuration and status of the data store for the domain.
45968
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-datastore.html}
45969
+ */
45970
+ export type CustomerProfilesDomainDataStore = {
45971
+ /**
45972
+ * Whether the data store is enabled.
45973
+ */
45974
+ Enabled?: boolean;
45975
+ };
45814
45976
  /**
45815
45977
  * Type definition for `AWS::CustomerProfiles::Domain.DomainStats`.
45816
45978
  * Usage-specific statistics about the domain.
@@ -45899,6 +46061,23 @@ export type CustomerProfilesDomainMatchingRule = {
45899
46061
  */
45900
46062
  Rule: string[];
45901
46063
  };
46064
+ /**
46065
+ * Type definition for `AWS::CustomerProfiles::Domain.Readiness`.
46066
+ * Progress information for data store setup.
46067
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-readiness.html}
46068
+ */
46069
+ export type CustomerProfilesDomainReadiness = {
46070
+ /**
46071
+ * A message describing the current progress.
46072
+ */
46073
+ Message?: string;
46074
+ /**
46075
+ * The percentage of progress completed.
46076
+ * @min `0`
46077
+ * @max `100`
46078
+ */
46079
+ ProgressPercentage?: number;
46080
+ };
45902
46081
  /**
45903
46082
  * Type definition for `AWS::CustomerProfiles::Domain.RuleBasedMatching`.
45904
46083
  * The process of matching duplicate profiles using the Rule-Based matching. If RuleBasedMatching = true, Amazon Connect Customer Profiles will start to match and merge your profiles according to your configuration in the RuleBasedMatchingRequest. You can use the ListRuleBasedMatches and GetSimilarProfiles API to return and review the results. Also, if you have configured ExportingConfig in the RuleBasedMatchingRequest, you can download the results from S3.
@@ -61164,6 +61343,8 @@ export type EC2NatGatewayProps = {
61164
61343
  * [Public NAT gateway only] The allocation ID of the Elastic IP address that's associated with the NAT gateway. This property is required for a public NAT gateway and cannot be specified with a private NAT gateway.
61165
61344
  */
61166
61345
  AllocationId?: string;
61346
+ AvailabilityMode?: string;
61347
+ AvailabilityZoneAddresses?: EC2NatGatewayAvailabilityZoneAddress[];
61167
61348
  /**
61168
61349
  * Indicates whether the NAT gateway supports public or private connectivity. The default is public connectivity.
61169
61350
  */
@@ -61209,8 +61390,20 @@ export type EC2NatGatewayProps = {
61209
61390
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#aws-resource-ec2-natgateway-return-values}
61210
61391
  */
61211
61392
  export type EC2NatGatewayAttributes = {
61393
+ AutoProvisionZones: string;
61394
+ AutoScalingIps: string;
61212
61395
  EniId: string;
61213
61396
  NatGatewayId: string;
61397
+ RouteTableId: string;
61398
+ };
61399
+ /**
61400
+ * Type definition for `AWS::EC2::NatGateway.AvailabilityZoneAddress`.
61401
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-natgateway-availabilityzoneaddress.html}
61402
+ */
61403
+ export type EC2NatGatewayAvailabilityZoneAddress = {
61404
+ AllocationIds: string[];
61405
+ AvailabilityZone?: string;
61406
+ AvailabilityZoneId?: string;
61214
61407
  };
61215
61408
  /**
61216
61409
  * Type definition for `AWS::EC2::NatGateway.Tag`.
@@ -64604,6 +64797,125 @@ export type EC2TransitGatewayConnectPeerTransitGatewayConnectPeerConfiguration =
64604
64797
  */
64605
64798
  TransitGatewayAddress?: string;
64606
64799
  };
64800
+ /**
64801
+ * AWS::EC2::TransitGatewayMeteringPolicy Resource Definition
64802
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicy.html}
64803
+ */
64804
+ export type EC2TransitGatewayMeteringPolicyProps = {
64805
+ /**
64806
+ * Middle box attachment Ids
64807
+ */
64808
+ MiddleboxAttachmentIds?: string[];
64809
+ Tags?: EC2TransitGatewayMeteringPolicyTag[];
64810
+ /**
64811
+ * The Id of transit gateway
64812
+ */
64813
+ TransitGatewayId: string;
64814
+ };
64815
+ /**
64816
+ * Attribute type definition for `AWS::EC2::TransitGatewayMeteringPolicy`.
64817
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicy.html#aws-resource-ec2-transitgatewaymeteringpolicy-return-values}
64818
+ */
64819
+ export type EC2TransitGatewayMeteringPolicyAttributes = {
64820
+ /**
64821
+ * State of the transit gateway metering policy
64822
+ */
64823
+ State: string;
64824
+ /**
64825
+ * The Id of the transit gateway metering policy
64826
+ */
64827
+ TransitGatewayMeteringPolicyId: string;
64828
+ /**
64829
+ * The timestamp at which the latest action performed on the metering policy will become effective
64830
+ */
64831
+ UpdateEffectiveAt: string;
64832
+ };
64833
+ /**
64834
+ * Type definition for `AWS::EC2::TransitGatewayMeteringPolicy.Tag`.
64835
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewaymeteringpolicy-tag.html}
64836
+ */
64837
+ export type EC2TransitGatewayMeteringPolicyTag = {
64838
+ Key: string;
64839
+ Value: string;
64840
+ };
64841
+ /**
64842
+ * AWS::EC2::TransitGatewayMeteringPolicyEntry Resource Definition
64843
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicyentry.html}
64844
+ */
64845
+ export type EC2TransitGatewayMeteringPolicyEntryProps = {
64846
+ /**
64847
+ * The list of IP addresses of the instances receiving traffic from the transit gateway
64848
+ */
64849
+ DestinationCidrBlock?: string;
64850
+ /**
64851
+ * The list of ports on destination instances receiving traffic from the transit gateway
64852
+ */
64853
+ DestinationPortRange?: string;
64854
+ /**
64855
+ * The ID of the source attachment through which traffic leaves a transit gateway
64856
+ */
64857
+ DestinationTransitGatewayAttachmentId?: string;
64858
+ /**
64859
+ * The type of the attachment through which traffic leaves a transit gateway
64860
+ */
64861
+ DestinationTransitGatewayAttachmentType?: EC2TransitGatewayMeteringPolicyEntryTransitGatewayAttachmentResourceType;
64862
+ /**
64863
+ * The resource owner information responsible for paying default billable charges for the traffic flow
64864
+ */
64865
+ MeteredAccount: EC2TransitGatewayMeteringPolicyEntryTransitGatewayMeteringPayerType;
64866
+ /**
64867
+ * The rule number of the metering policy entry
64868
+ */
64869
+ PolicyRuleNumber: number;
64870
+ /**
64871
+ * The protocol of the traffic
64872
+ */
64873
+ Protocol?: string;
64874
+ /**
64875
+ * The list of IP addresses of the instances sending traffic to the transit gateway for which the metering policy entry is applicable
64876
+ */
64877
+ SourceCidrBlock?: string;
64878
+ /**
64879
+ * The list of ports on source instances sending traffic to the transit gateway
64880
+ */
64881
+ SourcePortRange?: string;
64882
+ /**
64883
+ * The ID of the source attachment through which traffic enters a transit gateway
64884
+ */
64885
+ SourceTransitGatewayAttachmentId?: string;
64886
+ /**
64887
+ * The type of the attachment through which traffic enters a transit gateway
64888
+ */
64889
+ SourceTransitGatewayAttachmentType?: EC2TransitGatewayMeteringPolicyEntryTransitGatewayAttachmentResourceType;
64890
+ /**
64891
+ * The ID of the transit gateway metering policy for which the entry is being created
64892
+ */
64893
+ TransitGatewayMeteringPolicyId: string;
64894
+ };
64895
+ /**
64896
+ * Attribute type definition for `AWS::EC2::TransitGatewayMeteringPolicyEntry`.
64897
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicyentry.html#aws-resource-ec2-transitgatewaymeteringpolicyentry-return-values}
64898
+ */
64899
+ export type EC2TransitGatewayMeteringPolicyEntryAttributes = {
64900
+ /**
64901
+ * State of the transit gateway metering policy
64902
+ */
64903
+ State: string;
64904
+ /**
64905
+ * The timestamp at which the latest action performed on the metering policy entry will become effective
64906
+ */
64907
+ UpdateEffectiveAt: string;
64908
+ };
64909
+ /**
64910
+ * Type definition for `AWS::EC2::TransitGatewayMeteringPolicyEntry.TransitGatewayAttachmentResourceType`.
64911
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewaymeteringpolicyentry-transitgatewayattachmentresourcetype.html}
64912
+ */
64913
+ export type EC2TransitGatewayMeteringPolicyEntryTransitGatewayAttachmentResourceType = "vpc" | "vpn" | "direct-connect-gateway" | "peering" | "network-function" | "vpn-concentrator";
64914
+ /**
64915
+ * Type definition for `AWS::EC2::TransitGatewayMeteringPolicyEntry.TransitGatewayMeteringPayerType`.
64916
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewaymeteringpolicyentry-transitgatewaymeteringpayertype.html}
64917
+ */
64918
+ export type EC2TransitGatewayMeteringPolicyEntryTransitGatewayMeteringPayerType = "source-attachment-owner" | "destination-attachment-owner" | "transit-gateway-owner";
64607
64919
  /**
64608
64920
  * The AWS::EC2::TransitGatewayMulticastDomain type
64609
64921
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymulticastdomain.html}
@@ -66115,6 +66427,130 @@ export type EC2VPCDHCPOptionsAssociationProps = {
66115
66427
  */
66116
66428
  VpcId: string;
66117
66429
  };
66430
+ /**
66431
+ * Resource Type definition for AWS::EC2::VPCEncryptionControl
66432
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcencryptioncontrol.html}
66433
+ */
66434
+ export type EC2VPCEncryptionControlProps = {
66435
+ /**
66436
+ * Used to enable or disable EIGW exclusion
66437
+ */
66438
+ EgressOnlyInternetGatewayExclusionInput?: "enable" | "disable";
66439
+ /**
66440
+ * Used to enable or disable EFS exclusion
66441
+ */
66442
+ ElasticFileSystemExclusionInput?: "enable" | "disable";
66443
+ /**
66444
+ * Used to enable or disable IGW exclusion
66445
+ */
66446
+ InternetGatewayExclusionInput?: "enable" | "disable";
66447
+ /**
66448
+ * Used to enable or disable Lambda exclusion
66449
+ */
66450
+ LambdaExclusionInput?: "enable" | "disable";
66451
+ /**
66452
+ * The VPC encryption control mode, either monitor or enforce.
66453
+ */
66454
+ Mode?: "monitor" | "enforce";
66455
+ /**
66456
+ * Used to enable or disable Nat gateway exclusion
66457
+ */
66458
+ NatGatewayExclusionInput?: "enable" | "disable";
66459
+ /**
66460
+ * The tags to assign to the VPC encryption control.
66461
+ */
66462
+ Tags?: EC2VPCEncryptionControlTag[];
66463
+ /**
66464
+ * Used to enable or disable VGW exclusion
66465
+ */
66466
+ VirtualPrivateGatewayExclusionInput?: "enable" | "disable";
66467
+ /**
66468
+ * The VPC on which this VPC encryption control is applied.
66469
+ */
66470
+ VpcId?: string;
66471
+ /**
66472
+ * Used to enable or disable Vpc Lattice exclusion
66473
+ */
66474
+ VpcLatticeExclusionInput?: "enable" | "disable";
66475
+ /**
66476
+ * Used to enable or disable VPC peering exclusion
66477
+ */
66478
+ VpcPeeringExclusionInput?: "enable" | "disable";
66479
+ };
66480
+ /**
66481
+ * Attribute type definition for `AWS::EC2::VPCEncryptionControl`.
66482
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcencryptioncontrol.html#aws-resource-ec2-vpcencryptioncontrol-return-values}
66483
+ */
66484
+ export type EC2VPCEncryptionControlAttributes = {
66485
+ /**
66486
+ * Enumerates the states of all the VPC encryption control resource exclusions
66487
+ */
66488
+ ResourceExclusions: {
66489
+ EgressOnlyInternetGateway: {
66490
+ State: string;
66491
+ StateMessage: string;
66492
+ };
66493
+ ElasticFileSystem: {
66494
+ State: string;
66495
+ StateMessage: string;
66496
+ };
66497
+ InternetGateway: {
66498
+ State: string;
66499
+ StateMessage: string;
66500
+ };
66501
+ Lambda: {
66502
+ State: string;
66503
+ StateMessage: string;
66504
+ };
66505
+ NatGateway: {
66506
+ State: string;
66507
+ StateMessage: string;
66508
+ };
66509
+ VirtualPrivateGateway: {
66510
+ State: string;
66511
+ StateMessage: string;
66512
+ };
66513
+ VpcLattice: {
66514
+ State: string;
66515
+ StateMessage: string;
66516
+ };
66517
+ VpcPeering: {
66518
+ State: string;
66519
+ StateMessage: string;
66520
+ };
66521
+ };
66522
+ /**
66523
+ * The current state of the VPC encryption control.
66524
+ */
66525
+ State: "creating" | "available" | "monitor-in-progress" | "enforce-in-progress" | "monitor-failed" | "enforce-failed" | "deleting" | "deleted" | "delete-failed";
66526
+ /**
66527
+ * Provides additional context on the state of the VPC encryption control.
66528
+ */
66529
+ StateMessage: string;
66530
+ /**
66531
+ * The VPC encryption control resource id.
66532
+ */
66533
+ VpcEncryptionControlId: string;
66534
+ };
66535
+ /**
66536
+ * Type definition for `AWS::EC2::VPCEncryptionControl.Tag`.
66537
+ * A key-value pair to associate with a resource.
66538
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpcencryptioncontrol-tag.html}
66539
+ */
66540
+ export type EC2VPCEncryptionControlTag = {
66541
+ /**
66542
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
66543
+ * @minLength `1`
66544
+ * @maxLength `128`
66545
+ */
66546
+ Key: string;
66547
+ /**
66548
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
66549
+ * @minLength `0`
66550
+ * @maxLength `256`
66551
+ */
66552
+ Value: string;
66553
+ };
66118
66554
  /**
66119
66555
  * Resource type definition for `AWS::EC2::VPCEndpoint`.
66120
66556
  * Specifies a VPC endpoint. A VPC endpoint provides a private connection between your VPC and an endpoint service. You can use an endpoint service provided by AWS, an MKT Partner, or another AWS accounts in your organization. For more information, see the [User Guide](https://docs.aws.amazon.com/vpc/latest/privatelink/).
@@ -67963,6 +68399,196 @@ export type ECSClusterCapacityProviderAssociationsCapacityProviderStrategy = {
67963
68399
  */
67964
68400
  Weight?: number;
67965
68401
  };
68402
+ /**
68403
+ * Resource Type definition for AWS::ECS::ExpressGatewayService
68404
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-expressgatewayservice.html}
68405
+ */
68406
+ export type ECSExpressGatewayServiceProps = {
68407
+ Cluster?: string;
68408
+ Cpu?: string;
68409
+ ExecutionRoleArn: string;
68410
+ HealthCheckPath?: string;
68411
+ InfrastructureRoleArn: string;
68412
+ Memory?: string;
68413
+ NetworkConfiguration?: ECSExpressGatewayServiceExpressGatewayServiceNetworkConfiguration;
68414
+ PrimaryContainer: ECSExpressGatewayServiceExpressGatewayContainer;
68415
+ ScalingTarget?: ECSExpressGatewayServiceExpressGatewayScalingTarget;
68416
+ ServiceName?: string;
68417
+ Tags?: ECSExpressGatewayServiceTag[];
68418
+ TaskRoleArn?: string;
68419
+ };
68420
+ /**
68421
+ * Attribute type definition for `AWS::ECS::ExpressGatewayService`.
68422
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-expressgatewayservice.html#aws-resource-ecs-expressgatewayservice-return-values}
68423
+ */
68424
+ export type ECSExpressGatewayServiceAttributes = {
68425
+ ActiveConfigurations: {
68426
+ Cpu: string;
68427
+ CreatedAt: string;
68428
+ ExecutionRoleArn: string;
68429
+ HealthCheckPath: string;
68430
+ IngressPaths: {
68431
+ AccessType: ECSExpressGatewayServiceAccessType;
68432
+ Endpoint: string;
68433
+ }[];
68434
+ Memory: string;
68435
+ NetworkConfiguration: {
68436
+ SecurityGroups: string[];
68437
+ Subnets: string[];
68438
+ };
68439
+ PrimaryContainer: {
68440
+ AwsLogsConfiguration: {
68441
+ LogGroup: string;
68442
+ LogStreamPrefix: string;
68443
+ };
68444
+ Command: string[];
68445
+ ContainerPort: number;
68446
+ Environment: {
68447
+ Name: string;
68448
+ Value: string;
68449
+ }[];
68450
+ Image: string;
68451
+ RepositoryCredentials: {
68452
+ CredentialsParameter: string;
68453
+ };
68454
+ Secrets: {
68455
+ Name: string;
68456
+ ValueFrom: string;
68457
+ }[];
68458
+ };
68459
+ ScalingTarget: {
68460
+ AutoScalingMetric: ECSExpressGatewayServiceExpressGatewayServiceScalingMetric;
68461
+ AutoScalingTargetValue: number;
68462
+ MaxTaskCount: number;
68463
+ MinTaskCount: number;
68464
+ };
68465
+ ServiceRevisionArn: string;
68466
+ TaskRoleArn: string;
68467
+ }[];
68468
+ CreatedAt: string;
68469
+ ServiceArn: string;
68470
+ Status: {
68471
+ StatusCode: ECSExpressGatewayServiceExpressGatewayServiceStatusCode;
68472
+ };
68473
+ UpdatedAt: string;
68474
+ };
68475
+ /**
68476
+ * Type definition for `AWS::ECS::ExpressGatewayService.AccessType`.
68477
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-accesstype.html}
68478
+ */
68479
+ export type ECSExpressGatewayServiceAccessType = "PUBLIC" | "PRIVATE";
68480
+ /**
68481
+ * Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayContainer`.
68482
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewaycontainer.html}
68483
+ */
68484
+ export type ECSExpressGatewayServiceExpressGatewayContainer = {
68485
+ AwsLogsConfiguration?: ECSExpressGatewayServiceExpressGatewayServiceAwsLogsConfiguration;
68486
+ Command?: string[];
68487
+ ContainerPort?: number;
68488
+ Environment?: ECSExpressGatewayServiceKeyValuePair[];
68489
+ Image: string;
68490
+ RepositoryCredentials?: ECSExpressGatewayServiceExpressGatewayRepositoryCredentials;
68491
+ Secrets?: ECSExpressGatewayServiceSecret[];
68492
+ };
68493
+ /**
68494
+ * Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayRepositoryCredentials`.
68495
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayrepositorycredentials.html}
68496
+ */
68497
+ export type ECSExpressGatewayServiceExpressGatewayRepositoryCredentials = {
68498
+ CredentialsParameter: string;
68499
+ };
68500
+ /**
68501
+ * Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayScalingTarget`.
68502
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayscalingtarget.html}
68503
+ */
68504
+ export type ECSExpressGatewayServiceExpressGatewayScalingTarget = {
68505
+ AutoScalingMetric?: ECSExpressGatewayServiceExpressGatewayServiceScalingMetric;
68506
+ AutoScalingTargetValue?: number;
68507
+ MaxTaskCount?: number;
68508
+ MinTaskCount?: number;
68509
+ };
68510
+ /**
68511
+ * Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceAwsLogsConfiguration`.
68512
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayserviceawslogsconfiguration.html}
68513
+ */
68514
+ export type ECSExpressGatewayServiceExpressGatewayServiceAwsLogsConfiguration = {
68515
+ LogGroup: string;
68516
+ LogStreamPrefix: string;
68517
+ };
68518
+ /**
68519
+ * Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceConfiguration`.
68520
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayserviceconfiguration.html}
68521
+ */
68522
+ export type ECSExpressGatewayServiceExpressGatewayServiceConfiguration = {
68523
+ Cpu?: string;
68524
+ CreatedAt?: string;
68525
+ ExecutionRoleArn?: string;
68526
+ HealthCheckPath?: string;
68527
+ IngressPaths?: ECSExpressGatewayServiceIngressPathSummary[];
68528
+ Memory?: string;
68529
+ NetworkConfiguration?: ECSExpressGatewayServiceExpressGatewayServiceNetworkConfiguration;
68530
+ PrimaryContainer?: ECSExpressGatewayServiceExpressGatewayContainer;
68531
+ ScalingTarget?: ECSExpressGatewayServiceExpressGatewayScalingTarget;
68532
+ ServiceRevisionArn?: string;
68533
+ TaskRoleArn?: string;
68534
+ };
68535
+ /**
68536
+ * Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceNetworkConfiguration`.
68537
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayservicenetworkconfiguration.html}
68538
+ */
68539
+ export type ECSExpressGatewayServiceExpressGatewayServiceNetworkConfiguration = {
68540
+ SecurityGroups?: string[];
68541
+ Subnets?: string[];
68542
+ };
68543
+ /**
68544
+ * Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceScalingMetric`.
68545
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayservicescalingmetric.html}
68546
+ */
68547
+ export type ECSExpressGatewayServiceExpressGatewayServiceScalingMetric = "AVERAGE_CPU" | "AVERAGE_MEMORY" | "REQUEST_COUNT_PER_TARGET";
68548
+ /**
68549
+ * Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceStatus`.
68550
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayservicestatus.html}
68551
+ */
68552
+ export type ECSExpressGatewayServiceExpressGatewayServiceStatus = {
68553
+ StatusCode?: ECSExpressGatewayServiceExpressGatewayServiceStatusCode;
68554
+ };
68555
+ /**
68556
+ * Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceStatusCode`.
68557
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayservicestatuscode.html}
68558
+ */
68559
+ export type ECSExpressGatewayServiceExpressGatewayServiceStatusCode = "ACTIVE" | "DRAINING" | "INACTIVE";
68560
+ /**
68561
+ * Type definition for `AWS::ECS::ExpressGatewayService.IngressPathSummary`.
68562
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ingresspathsummary.html}
68563
+ */
68564
+ export type ECSExpressGatewayServiceIngressPathSummary = {
68565
+ AccessType?: ECSExpressGatewayServiceAccessType;
68566
+ Endpoint?: string;
68567
+ };
68568
+ /**
68569
+ * Type definition for `AWS::ECS::ExpressGatewayService.KeyValuePair`.
68570
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-keyvaluepair.html}
68571
+ */
68572
+ export type ECSExpressGatewayServiceKeyValuePair = {
68573
+ Name: string;
68574
+ Value: string;
68575
+ };
68576
+ /**
68577
+ * Type definition for `AWS::ECS::ExpressGatewayService.Secret`.
68578
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-secret.html}
68579
+ */
68580
+ export type ECSExpressGatewayServiceSecret = {
68581
+ Name: string;
68582
+ ValueFrom: string;
68583
+ };
68584
+ /**
68585
+ * Type definition for `AWS::ECS::ExpressGatewayService.Tag`.
68586
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-tag.html}
68587
+ */
68588
+ export type ECSExpressGatewayServiceTag = {
68589
+ Key: string;
68590
+ Value: string;
68591
+ };
67966
68592
  /**
67967
68593
  * Resource type definition for `AWS::ECS::PrimaryTaskSet`.
67968
68594
  * A pseudo-resource that manages which of your ECS task sets is primary.
@@ -70935,6 +71561,10 @@ export type EKSClusterProps = {
70935
71561
  * Todo: add description
70936
71562
  */
70937
71563
  ComputeConfig?: EKSClusterComputeConfig;
71564
+ /**
71565
+ * Configuration for provisioned control plane scaling.
71566
+ */
71567
+ ControlPlaneScalingConfig?: EKSClusterControlPlaneScalingConfig;
70938
71568
  /**
70939
71569
  * Set this value to true to enable deletion protection for the cluster.
70940
71570
  */
@@ -71107,6 +71737,17 @@ export type EKSClusterControlPlanePlacement = {
71107
71737
  */
71108
71738
  GroupName?: string;
71109
71739
  };
71740
+ /**
71741
+ * Type definition for `AWS::EKS::Cluster.ControlPlaneScalingConfig`.
71742
+ * Configuration for provisioned control plane scaling.
71743
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-controlplanescalingconfig.html}
71744
+ */
71745
+ export type EKSClusterControlPlaneScalingConfig = {
71746
+ /**
71747
+ * The scaling tier for the provisioned control plane.
71748
+ */
71749
+ Tier?: "standard" | "tier-xl" | "tier-2xl" | "tier-4xl";
71750
+ };
71110
71751
  /**
71111
71752
  * Type definition for `AWS::EKS::Cluster.ElasticLoadBalancing`.
71112
71753
  * Todo: add description
@@ -76498,7 +77139,7 @@ export type EntityResolutionMatchingWorkflowRuleBasedProperties = {
76498
77139
  MatchPurpose?: "IDENTIFIER_GENERATION" | "INDEXING";
76499
77140
  /**
76500
77141
  * @minLength `1`
76501
- * @maxLength `15`
77142
+ * @maxLength `25`
76502
77143
  */
76503
77144
  Rules: EntityResolutionMatchingWorkflowRule[];
76504
77145
  };
@@ -76522,7 +77163,7 @@ export type EntityResolutionMatchingWorkflowRuleCondition = {
76522
77163
  export type EntityResolutionMatchingWorkflowRuleConditionProperties = {
76523
77164
  /**
76524
77165
  * @minLength `1`
76525
- * @maxLength `15`
77166
+ * @maxLength `25`
76526
77167
  */
76527
77168
  Rules: EntityResolutionMatchingWorkflowRuleCondition[];
76528
77169
  };
@@ -80525,6 +81166,7 @@ export type FSxFileSystemRootVolumeConfiguration = {
80525
81166
  */
80526
81167
  export type FSxFileSystemSelfManagedActiveDirectoryConfiguration = {
80527
81168
  DnsIps?: string[];
81169
+ DomainJoinServiceAccountSecret?: string;
80528
81170
  DomainName?: string;
80529
81171
  FileSystemAdministratorsGroup?: string;
80530
81172
  OrganizationalUnitDistinguishedName?: string;
@@ -80711,6 +81353,7 @@ export type FSxStorageVirtualMachineActiveDirectoryConfiguration = {
80711
81353
  */
80712
81354
  export type FSxStorageVirtualMachineSelfManagedActiveDirectoryConfiguration = {
80713
81355
  DnsIps?: string[];
81356
+ DomainJoinServiceAccountSecret?: string;
80714
81357
  DomainName?: string;
80715
81358
  FileSystemAdministratorsGroup?: string;
80716
81359
  OrganizationalUnitDistinguishedName?: string;
@@ -107070,6 +107713,9 @@ export type KMSKeyProps = {
107070
107713
  + ``ECC_NIST_P256`` (secp256r1)
107071
107714
  + ``ECC_NIST_P384`` (secp384r1)
107072
107715
  + ``ECC_NIST_P521`` (secp521r1)
107716
+ + ``ECC_NIST_EDWARDS25519`` (ed25519) - signing and verification only
107717
+ + *Note:* For ECC_NIST_EDWARDS25519 KMS keys, the ED25519_SHA_512 signing algorithm requires [MessageType:RAW](https://docs.aws.amazon.com/kms/latest/APIReference/API_Sign.html#KMS-Sign-request-MessageType), while ED25519_PH_SHA_512 requires [MessageType:DIGEST](https://docs.aws.amazon.com/kms/latest/APIReference/API_Sign.html#KMS-Sign-request-MessageType). These message types cannot be used interchangeably.
107718
+
107073
107719
 
107074
107720
  + Other asymmetric elliptic curve key pairs (signing and verification)
107075
107721
  + ``ECC_SECG_P256K1`` (secp256k1), commonly used for cryptocurrencies.
@@ -108252,6 +108898,9 @@ export type LambdaEventSourceMappingProps = {
108252
108898
  * @pattern `(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()`
108253
108899
  */
108254
108900
  KmsKeyArn?: string;
108901
+ /**
108902
+ * The function's Amazon CloudWatch Logs configuration settings.
108903
+ */
108255
108904
  LoggingConfig?: LambdaEventSourceMappingLoggingConfig;
108256
108905
  /**
108257
108906
  * The maximum amount of time, in seconds, that Lambda spends gathering records before invoking the function.
@@ -108286,7 +108935,7 @@ export type LambdaEventSourceMappingProps = {
108286
108935
  */
108287
108936
  ParallelizationFactor?: number;
108288
108937
  /**
108289
- * (Amazon MSK and self-managed Apache Kafka only) The provisioned mode configuration for the event source. For more information, see [provisioned mode](https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode).
108938
+ * (Amazon SQS, Amazon MSK, and self-managed Apache Kafka only) The provisioned mode configuration for the event source. For more information, see [provisioned mode](https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode).
108290
108939
  */
108291
108940
  ProvisionedPollerConfig?: LambdaEventSourceMappingProvisionedPollerConfig;
108292
108941
  /**
@@ -108296,7 +108945,7 @@ export type LambdaEventSourceMappingProps = {
108296
108945
  */
108297
108946
  Queues?: string[];
108298
108947
  /**
108299
- * (Amazon SQS only) The scaling configuration for the event source. For more information, see [Configuring maximum concurrency for Amazon SQS event sources](https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-max-concurrency).
108948
+ * This property is for Amazon SQS event sources only. You cannot use ``ProvisionedPollerConfig`` while using ``ScalingConfig``. These options are mutually exclusive. To remove the scaling configuration, pass an empty value.
108300
108949
  */
108301
108950
  ScalingConfig?: LambdaEventSourceMappingScalingConfig;
108302
108951
  /**
@@ -108457,11 +109106,12 @@ export type LambdaEventSourceMappingFilterCriteria = {
108457
109106
  };
108458
109107
  /**
108459
109108
  * Type definition for `AWS::Lambda::EventSourceMapping.LoggingConfig`.
109109
+ * The function's Amazon CloudWatch Logs configuration settings.
108460
109110
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-loggingconfig.html}
108461
109111
  */
108462
109112
  export type LambdaEventSourceMappingLoggingConfig = {
108463
109113
  /**
108464
- * Event source mapping log granularity level override
109114
+ * Set this property to filter the system logs for your function that Lambda sends to CloudWatch. Lambda only sends system logs at the selected level of detail and lower, where ``DEBUG`` is the highest level and ``WARN`` is the lowest.
108465
109115
  */
108466
109116
  SystemLogLevel?: "DEBUG" | "INFO" | "WARN";
108467
109117
  };
@@ -108497,18 +109147,18 @@ export type LambdaEventSourceMappingOnFailure = {
108497
109147
  };
108498
109148
  /**
108499
109149
  * Type definition for `AWS::Lambda::EventSourceMapping.ProvisionedPollerConfig`.
108500
- * The [provisioned mode](https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode) configuration for the event source. Use provisioned mode to customize the minimum and maximum number of event pollers for your event source.
109150
+ * The [provisioned mode](https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode) configuration for the event source. Use Provisioned Mode to customize the minimum and maximum number of event pollers for your event source.
108501
109151
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-provisionedpollerconfig.html}
108502
109152
  */
108503
109153
  export type LambdaEventSourceMappingProvisionedPollerConfig = {
108504
109154
  /**
108505
- * The maximum number of event pollers this event source can scale up to.
109155
+ * The maximum number of event pollers this event source can scale up to. For Amazon SQS events source mappings, default is 200, and minimum value allowed is 2. For Amazon MSK and self-managed Apache Kafka event source mappings, default is 200, and minimum value allowed is 1.
108506
109156
  * @min `1`
108507
109157
  * @max `2000`
108508
109158
  */
108509
109159
  MaximumPollers?: number;
108510
109160
  /**
108511
- * The minimum number of event pollers this event source can scale down to.
109161
+ * The minimum number of event pollers this event source can scale down to. For Amazon SQS events source mappings, default is 2, and minimum 2 required. For Amazon MSK and self-managed Apache Kafka event source mappings, default is 1.
108512
109162
  * @min `1`
108513
109163
  * @max `200`
108514
109164
  */
@@ -125893,10 +126543,6 @@ export type MSKClusterProps = {
125893
126543
  */
125894
126544
  ClusterName: string;
125895
126545
  ConfigurationInfo?: MSKClusterConfigurationInfo;
125896
- /**
125897
- * The current version of the MSK cluster
125898
- */
125899
- CurrentVersion?: string;
125900
126546
  EncryptionInfo?: MSKClusterEncryptionInfo;
125901
126547
  /**
125902
126548
  * @minLength `7`
@@ -125911,6 +126557,7 @@ export type MSKClusterProps = {
125911
126557
  LoggingInfo?: MSKClusterLoggingInfo;
125912
126558
  NumberOfBrokerNodes: number;
125913
126559
  OpenMonitoring?: MSKClusterOpenMonitoring;
126560
+ Rebalancing?: MSKClusterRebalancing;
125914
126561
  /**
125915
126562
  * @minLength `5`
125916
126563
  * @maxLength `6`
@@ -125927,6 +126574,10 @@ export type MSKClusterProps = {
125927
126574
  */
125928
126575
  export type MSKClusterAttributes = {
125929
126576
  Arn: string;
126577
+ /**
126578
+ * The current version of the MSK cluster
126579
+ */
126580
+ CurrentVersion: string;
125930
126581
  };
125931
126582
  /**
125932
126583
  * Type definition for `AWS::MSK::Cluster.BrokerLogs`.
@@ -126095,6 +126746,13 @@ export type MSKClusterPublicAccess = {
126095
126746
  */
126096
126747
  Type?: string;
126097
126748
  };
126749
+ /**
126750
+ * Type definition for `AWS::MSK::Cluster.Rebalancing`.
126751
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-rebalancing.html}
126752
+ */
126753
+ export type MSKClusterRebalancing = {
126754
+ Status: "PAUSED" | "ACTIVE";
126755
+ };
126098
126756
  /**
126099
126757
  * Type definition for `AWS::MSK::Cluster.S3`.
126100
126758
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html}
@@ -132978,26 +133636,11 @@ export type OpenSearchServerlessAccessPolicyAccessPolicyType = "data";
132978
133636
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-collection.html}
132979
133637
  */
132980
133638
  export type OpenSearchServerlessCollectionProps = {
132981
- /**
132982
- * The name of the collection group.
132983
-
132984
- The name must meet the following criteria:
132985
- Unique to your account and AWS Region
132986
- Starts with a lowercase letter
132987
- Contains only lowercase letters a-z, the numbers 0-9 and the hyphen (-)
132988
- Contains between 3 and 32 characters
132989
-
132990
- */
132991
- CollectionGroupName?: string;
132992
133639
  /**
132993
133640
  * The description of the collection
132994
133641
  * @maxLength `1000`
132995
133642
  */
132996
133643
  Description?: string;
132997
- /**
132998
- * The configuration to encrypt the collection
132999
- */
133000
- EncryptionConfig?: OpenSearchServerlessCollectionEncryptionConfig;
133001
133644
  /**
133002
133645
  * The name of the collection.
133003
133646
 
@@ -133061,21 +133704,6 @@ export type OpenSearchServerlessCollectionAttributes = {
133061
133704
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-collectiontype.html}
133062
133705
  */
133063
133706
  export type OpenSearchServerlessCollectionCollectionType = "SEARCH" | "TIMESERIES" | "VECTORSEARCH";
133064
- /**
133065
- * Type definition for `AWS::OpenSearchServerless::Collection.EncryptionConfig`.
133066
- * The configuration to encrypt the collection
133067
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-encryptionconfig.html}
133068
- */
133069
- export type OpenSearchServerlessCollectionEncryptionConfig = {
133070
- /**
133071
- * The configuration to encrypt the collection with AWS owned key
133072
- */
133073
- AWSOwnedKey?: boolean;
133074
- /**
133075
- * The ARN of the KMS key to encrypt the collection with
133076
- */
133077
- KmsKeyArn?: string;
133078
- };
133079
133707
  /**
133080
133708
  * Type definition for `AWS::OpenSearchServerless::Collection.StandbyReplicas`.
133081
133709
  * The possible standby replicas for the collection
@@ -136109,6 +136737,10 @@ export type PCSClusterProps = {
136109
136737
  * The shared Slurm key for authentication, also known as the cluster secret.
136110
136738
  */
136111
136739
  AuthKey?: PCSClusterAuthKey;
136740
+ /**
136741
+ * JWT authentication configuration for Slurm.
136742
+ */
136743
+ JwtAuth?: PCSClusterJwtAuth;
136112
136744
  /**
136113
136745
  * The time before an idle node is scaled down.
136114
136746
  * @min `1`
@@ -136118,6 +136750,10 @@ export type PCSClusterProps = {
136118
136750
  * Additional Slurm-specific configuration that directly maps to Slurm settings.
136119
136751
  */
136120
136752
  SlurmCustomSettings?: PCSClusterSlurmCustomSetting[];
136753
+ /**
136754
+ * The SlurmRest configuration includes configurable settings for Slurm Rest.
136755
+ */
136756
+ SlurmRest?: PCSClusterSlurmRest;
136121
136757
  };
136122
136758
  /**
136123
136759
  * 1 or more tags added to the resource. Each tag consists of a tag key and tag value. The tag value is optional and can be an empty string.
@@ -136156,7 +136792,7 @@ export type PCSClusterAttributes = {
136156
136792
  /**
136157
136793
  * Indicates the type of endpoint running at the specific IP address.
136158
136794
  */
136159
- Type: "SLURMCTLD" | "SLURMDBD";
136795
+ Type: "SLURMCTLD" | "SLURMDBD" | "SLURMRESTD";
136160
136796
  }[];
136161
136797
  /**
136162
136798
  * The list of errors that occurred during cluster provisioning.
@@ -136238,7 +136874,7 @@ export type PCSClusterEndpoint = {
136238
136874
  /**
136239
136875
  * Indicates the type of endpoint running at the specific IP address.
136240
136876
  */
136241
- Type: "SLURMCTLD" | "SLURMDBD";
136877
+ Type: "SLURMCTLD" | "SLURMDBD" | "SLURMRESTD";
136242
136878
  };
136243
136879
  /**
136244
136880
  * Type definition for `AWS::PCS::Cluster.ErrorInfo`.
@@ -136255,6 +136891,32 @@ export type PCSClusterErrorInfo = {
136255
136891
  */
136256
136892
  Message?: string;
136257
136893
  };
136894
+ /**
136895
+ * Type definition for `AWS::PCS::Cluster.JwtAuth`.
136896
+ * JWT authentication configuration for Slurm.
136897
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-jwtauth.html}
136898
+ */
136899
+ export type PCSClusterJwtAuth = {
136900
+ /**
136901
+ * JWT key configuration.
136902
+ */
136903
+ JwtKey?: PCSClusterJwtKey;
136904
+ };
136905
+ /**
136906
+ * Type definition for `AWS::PCS::Cluster.JwtKey`.
136907
+ * JWT key configuration.
136908
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-jwtkey.html}
136909
+ */
136910
+ export type PCSClusterJwtKey = {
136911
+ /**
136912
+ * The Amazon Resource Name (ARN) of the JWT key secret.
136913
+ */
136914
+ SecretArn: string;
136915
+ /**
136916
+ * The version of the JWT key secret.
136917
+ */
136918
+ SecretVersion: string;
136919
+ };
136258
136920
  /**
136259
136921
  * Type definition for `AWS::PCS::Cluster.SlurmCustomSetting`.
136260
136922
  * Additional settings that directly map to Slurm settings.
@@ -136270,6 +136932,17 @@ export type PCSClusterSlurmCustomSetting = {
136270
136932
  */
136271
136933
  ParameterValue: string;
136272
136934
  };
136935
+ /**
136936
+ * Type definition for `AWS::PCS::Cluster.SlurmRest`.
136937
+ * The SlurmRest configuration includes configurable settings for Slurm Rest.
136938
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-slurmrest.html}
136939
+ */
136940
+ export type PCSClusterSlurmRest = {
136941
+ /**
136942
+ * The default value is `STANDARD`. A value of `STANDARD` means that Slurm Rest is enabled.
136943
+ */
136944
+ Mode: "STANDARD" | "NONE";
136945
+ };
136273
136946
  /**
136274
136947
  * AWS::PCS::ComputeNodeGroup resource creates an AWS PCS compute node group.
136275
136948
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-computenodegroup.html}
@@ -170741,7 +171414,7 @@ export type RbinRuleProps = {
170741
171414
  /**
170742
171415
  * The resource type retained by the retention rule.
170743
171416
  */
170744
- ResourceType: "EBS_SNAPSHOT" | "EC2_IMAGE";
171417
+ ResourceType: "EBS_SNAPSHOT" | "EC2_IMAGE" | "EBS_VOLUME";
170745
171418
  /**
170746
171419
  * Information about the retention period for which the retention rule is to retain resources.
170747
171420
  */
@@ -179471,6 +180144,7 @@ export type RUMAppMonitorProps = {
179471
180144
  * @pattern `[\.\-_/#A-Za-z0-9]+`
179472
180145
  */
179473
180146
  Name: string;
180147
+ Platform?: "Web" | "Android" | "iOS";
179474
180148
  /**
179475
180149
  * A structure that defines resource policy attached to your app monitor.
179476
180150
  */
@@ -179654,11 +180328,57 @@ export type RUMAppMonitorMetricDefinition = {
179654
180328
 
179655
180329
  WebVitalsLargestContentfulPaint
179656
180330
 
180331
+ WebVitalsInteractionToNextPaint
180332
+
179657
180333
  JsErrorCount
179658
180334
 
179659
180335
  HttpErrorCount
179660
180336
 
179661
180337
  SessionCount
180338
+
180339
+ PageViewCount
180340
+
180341
+ Http4xxCount
180342
+
180343
+ Http5xxCount
180344
+
180345
+ SessionDuration
180346
+
180347
+ PageViewCountPerSession
180348
+
180349
+ JsErrorCountPerSession
180350
+
180351
+ Http4xxCountPerSession
180352
+
180353
+ Http5xxCountPerSession
180354
+
180355
+ JsErrorCountPerPageView
180356
+
180357
+ Http4xxCountPerPageView
180358
+
180359
+ Http5xxCountPerPageView
180360
+
180361
+ TimeOnPage
180362
+
180363
+ ColdLaunchTime
180364
+
180365
+ WarmLaunchTime
180366
+
180367
+ CrashCount
180368
+
180369
+ ANRCount
180370
+
180371
+ AppHangCount
180372
+
180373
+ ScreenLoadCount
180374
+
180375
+ ScreenLoadTime
180376
+
180377
+ NetworkLatency
180378
+
180379
+ SpanPayloadSize
180380
+
180381
+ LogEventPayloadSize
179662
180382
  * @minLength `1`
179663
180383
  * @maxLength `255`
179664
180384
  */
@@ -180275,6 +180995,16 @@ export type S3BucketAnalyticsConfiguration = {
180275
180995
  */
180276
180996
  TagFilters?: S3BucketTagFilter[];
180277
180997
  };
180998
+ /**
180999
+ * Type definition for `AWS::S3::Bucket.BlockedEncryptionTypes`.
181000
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-blockedencryptiontypes.html}
181001
+ */
181002
+ export type S3BucketBlockedEncryptionTypes = {
181003
+ /**
181004
+ * List of encryption types.
181005
+ */
181006
+ EncryptionType?: ("NONE" | "SSE-C")[];
181007
+ };
180278
181008
  /**
180279
181009
  * Type definition for `AWS::S3::Bucket.BucketEncryption`.
180280
181010
  * Specifies default encryption for a bucket using server-side encryption with Amazon S3-managed keys (SSE-S3), AWS KMS-managed keys (SSE-KMS), or dual-layer server-side encryption with KMS-managed keys (DSSE-KMS). For information about the Amazon S3 default encryption feature, see [Amazon S3 Default Encryption for S3 Buckets](https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-encryption.html) in the *Amazon S3 User Guide*.
@@ -181301,6 +182031,7 @@ export type S3BucketServerSideEncryptionByDefault = {
181301
182031
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-serversideencryptionrule.html}
181302
182032
  */
181303
182033
  export type S3BucketServerSideEncryptionRule = {
182034
+ BlockedEncryptionTypes?: S3BucketBlockedEncryptionTypes;
181304
182035
  /**
181305
182036
  * Specifies whether Amazon S3 should use an S3 Bucket Key with server-side encryption using KMS (SSE-KMS) for new objects in the bucket. Existing objects are not affected. Setting the ``BucketKeyEnabled`` element to ``true`` causes Amazon S3 to use an S3 Bucket Key. By default, S3 Bucket Key is not enabled.
181306
182037
  For more information, see [Amazon S3 Bucket Keys](https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-key.html) in the *Amazon S3 User Guide*.
@@ -190966,6 +191697,12 @@ export type SageMakerNotebookInstanceLifecycleConfigNotebookInstanceLifecycleHoo
190966
191697
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html}
190967
191698
  */
190968
191699
  export type SageMakerPartnerAppProps = {
191700
+ /**
191701
+ * The version of the PartnerApp.
191702
+ * @minLength `1`
191703
+ * @maxLength `64`
191704
+ */
191705
+ AppVersion?: string;
190969
191706
  /**
190970
191707
  * A collection of settings that specify the maintenance schedule for the PartnerApp.
190971
191708
  */
@@ -190981,6 +191718,10 @@ export type SageMakerPartnerAppProps = {
190981
191718
  * @pattern `^[a-zA-Z0-9-]+$`
190982
191719
  */
190983
191720
  ClientToken?: string;
191721
+ /**
191722
+ * Enables automatic minor version upgrades for the PartnerApp.
191723
+ */
191724
+ EnableAutoMinorVersionUpgrade?: boolean;
190984
191725
  /**
190985
191726
  * Enables IAM Session based Identity for PartnerApp.
190986
191727
  */
@@ -191043,6 +191784,10 @@ export type SageMakerPartnerAppAttributes = {
191043
191784
  * @maxLength `2048`
191044
191785
  */
191045
191786
  BaseUrl: string;
191787
+ /**
191788
+ * The end-of-life date for the current version of the PartnerApp.
191789
+ */
191790
+ CurrentVersionEolDate: string;
191046
191791
  };
191047
191792
  /**
191048
191793
  * Type definition for `AWS::SageMaker::PartnerApp.PartnerAppConfig`.
@@ -193714,6 +194459,7 @@ export type SecretsManagerSecretProps = {
193714
194459
  + If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
193715
194460
  */
193716
194461
  Tags?: SecretsManagerSecretTag[];
194462
+ Type?: string;
193717
194463
  };
193718
194464
  /**
193719
194465
  * Attribute type definition for `AWS::SecretsManager::Secret`.
@@ -210938,12 +211684,18 @@ export type WisdomAIAgentAIAgentConfiguration = {
210938
211684
  AnswerRecommendationAIAgentConfiguration: WisdomAIAgentAnswerRecommendationAIAgentConfiguration;
210939
211685
  } | {
210940
211686
  SelfServiceAIAgentConfiguration: WisdomAIAgentSelfServiceAIAgentConfiguration;
211687
+ } | {
211688
+ EmailResponseAIAgentConfiguration: WisdomAIAgentEmailResponseAIAgentConfiguration;
211689
+ } | {
211690
+ EmailOverviewAIAgentConfiguration: WisdomAIAgentEmailOverviewAIAgentConfiguration;
211691
+ } | {
211692
+ EmailGenerativeAnswerAIAgentConfiguration: WisdomAIAgentEmailGenerativeAnswerAIAgentConfiguration;
210941
211693
  };
210942
211694
  /**
210943
211695
  * Type definition for `AWS::Wisdom::AIAgent.AIAgentType`.
210944
211696
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagenttype.html}
210945
211697
  */
210946
- export type WisdomAIAgentAIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE";
211698
+ export type WisdomAIAgentAIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER";
210947
211699
  /**
210948
211700
  * Type definition for `AWS::Wisdom::AIAgent.AnswerRecommendationAIAgentConfiguration`.
210949
211701
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html}
@@ -210990,6 +211742,58 @@ export type WisdomAIAgentAssociationConfiguration = {
210990
211742
  export type WisdomAIAgentAssociationConfigurationData = {
210991
211743
  KnowledgeBaseAssociationConfigurationData: WisdomAIAgentKnowledgeBaseAssociationConfigurationData;
210992
211744
  };
211745
+ /**
211746
+ * Type definition for `AWS::Wisdom::AIAgent.EmailGenerativeAnswerAIAgentConfiguration`.
211747
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-emailgenerativeansweraiagentconfiguration.html}
211748
+ */
211749
+ export type WisdomAIAgentEmailGenerativeAnswerAIAgentConfiguration = {
211750
+ AssociationConfigurations?: WisdomAIAgentAssociationConfiguration[];
211751
+ /**
211752
+ * @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
211753
+ */
211754
+ EmailGenerativeAnswerAIPromptId?: string;
211755
+ /**
211756
+ * @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
211757
+ */
211758
+ EmailQueryReformulationAIPromptId?: string;
211759
+ /**
211760
+ * @minLength `1`
211761
+ */
211762
+ Locale?: string;
211763
+ };
211764
+ /**
211765
+ * Type definition for `AWS::Wisdom::AIAgent.EmailOverviewAIAgentConfiguration`.
211766
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-emailoverviewaiagentconfiguration.html}
211767
+ */
211768
+ export type WisdomAIAgentEmailOverviewAIAgentConfiguration = {
211769
+ /**
211770
+ * @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
211771
+ */
211772
+ EmailOverviewAIPromptId?: string;
211773
+ /**
211774
+ * @minLength `1`
211775
+ */
211776
+ Locale?: string;
211777
+ };
211778
+ /**
211779
+ * Type definition for `AWS::Wisdom::AIAgent.EmailResponseAIAgentConfiguration`.
211780
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-emailresponseaiagentconfiguration.html}
211781
+ */
211782
+ export type WisdomAIAgentEmailResponseAIAgentConfiguration = {
211783
+ AssociationConfigurations?: WisdomAIAgentAssociationConfiguration[];
211784
+ /**
211785
+ * @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
211786
+ */
211787
+ EmailQueryReformulationAIPromptId?: string;
211788
+ /**
211789
+ * @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
211790
+ */
211791
+ EmailResponseAIPromptId?: string;
211792
+ /**
211793
+ * @minLength `1`
211794
+ */
211795
+ Locale?: string;
211796
+ };
210993
211797
  /**
210994
211798
  * Type definition for `AWS::Wisdom::AIAgent.KnowledgeBaseAssociationConfigurationData`.
210995
211799
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-knowledgebaseassociationconfigurationdata.html}
@@ -215262,6 +216066,7 @@ export interface ResourceTypes {
215262
216066
  "AWS::CloudFront::AnycastIpList": CloudFrontAnycastIpListProps;
215263
216067
  "AWS::CloudFront::CachePolicy": CloudFrontCachePolicyProps;
215264
216068
  "AWS::CloudFront::CloudFrontOriginAccessIdentity": CloudFrontCloudFrontOriginAccessIdentityProps;
216069
+ "AWS::CloudFront::ConnectionFunction": CloudFrontConnectionFunctionProps;
215265
216070
  "AWS::CloudFront::ConnectionGroup": CloudFrontConnectionGroupProps;
215266
216071
  "AWS::CloudFront::ContinuousDeploymentPolicy": CloudFrontContinuousDeploymentPolicyProps;
215267
216072
  "AWS::CloudFront::Distribution": CloudFrontDistributionProps;
@@ -215315,6 +216120,7 @@ export interface ResourceTypes {
215315
216120
  "AWS::Cognito::IdentityPoolRoleAttachment": CognitoIdentityPoolRoleAttachmentProps;
215316
216121
  "AWS::Cognito::LogDeliveryConfiguration": CognitoLogDeliveryConfigurationProps;
215317
216122
  "AWS::Cognito::ManagedLoginBranding": CognitoManagedLoginBrandingProps;
216123
+ "AWS::Cognito::Terms": CognitoTermsProps;
215318
216124
  "AWS::Cognito::UserPool": CognitoUserPoolProps;
215319
216125
  "AWS::Cognito::UserPoolClient": CognitoUserPoolClientProps;
215320
216126
  "AWS::Cognito::UserPoolDomain": CognitoUserPoolDomainProps;
@@ -215532,6 +216338,8 @@ export interface ResourceTypes {
215532
216338
  "AWS::EC2::TransitGatewayAttachment": EC2TransitGatewayAttachmentProps;
215533
216339
  "AWS::EC2::TransitGatewayConnect": EC2TransitGatewayConnectProps;
215534
216340
  "AWS::EC2::TransitGatewayConnectPeer": EC2TransitGatewayConnectPeerProps;
216341
+ "AWS::EC2::TransitGatewayMeteringPolicy": EC2TransitGatewayMeteringPolicyProps;
216342
+ "AWS::EC2::TransitGatewayMeteringPolicyEntry": EC2TransitGatewayMeteringPolicyEntryProps;
215535
216343
  "AWS::EC2::TransitGatewayMulticastDomain": EC2TransitGatewayMulticastDomainProps;
215536
216344
  "AWS::EC2::TransitGatewayMulticastDomainAssociation": EC2TransitGatewayMulticastDomainAssociationProps;
215537
216345
  "AWS::EC2::TransitGatewayMulticastGroupMember": EC2TransitGatewayMulticastGroupMemberProps;
@@ -215553,6 +216361,7 @@ export interface ResourceTypes {
215553
216361
  "AWS::EC2::VPCBlockPublicAccessOptions": EC2VPCBlockPublicAccessOptionsProps;
215554
216362
  "AWS::EC2::VPCCidrBlock": EC2VPCCidrBlockProps;
215555
216363
  "AWS::EC2::VPCDHCPOptionsAssociation": EC2VPCDHCPOptionsAssociationProps;
216364
+ "AWS::EC2::VPCEncryptionControl": EC2VPCEncryptionControlProps;
215556
216365
  "AWS::EC2::VPCEndpoint": EC2VPCEndpointProps;
215557
216366
  "AWS::EC2::VPCEndpointConnectionNotification": EC2VPCEndpointConnectionNotificationProps;
215558
216367
  "AWS::EC2::VPCEndpointService": EC2VPCEndpointServiceProps;
@@ -215574,6 +216383,7 @@ export interface ResourceTypes {
215574
216383
  "AWS::ECS::CapacityProvider": ECSCapacityProviderProps;
215575
216384
  "AWS::ECS::Cluster": ECSClusterProps;
215576
216385
  "AWS::ECS::ClusterCapacityProviderAssociations": ECSClusterCapacityProviderAssociationsProps;
216386
+ "AWS::ECS::ExpressGatewayService": ECSExpressGatewayServiceProps;
215577
216387
  "AWS::ECS::PrimaryTaskSet": ECSPrimaryTaskSetProps;
215578
216388
  "AWS::ECS::Service": ECSServiceProps;
215579
216389
  "AWS::ECS::TaskDefinition": ECSTaskDefinitionProps;
@@ -216726,6 +217536,7 @@ export interface AttributeTypes {
216726
217536
  "AWS::CloudFront::AnycastIpList": CloudFrontAnycastIpListAttributes;
216727
217537
  "AWS::CloudFront::CachePolicy": CloudFrontCachePolicyAttributes;
216728
217538
  "AWS::CloudFront::CloudFrontOriginAccessIdentity": CloudFrontCloudFrontOriginAccessIdentityAttributes;
217539
+ "AWS::CloudFront::ConnectionFunction": CloudFrontConnectionFunctionAttributes;
216729
217540
  "AWS::CloudFront::ConnectionGroup": CloudFrontConnectionGroupAttributes;
216730
217541
  "AWS::CloudFront::ContinuousDeploymentPolicy": CloudFrontContinuousDeploymentPolicyAttributes;
216731
217542
  "AWS::CloudFront::Distribution": CloudFrontDistributionAttributes;
@@ -216773,6 +217584,7 @@ export interface AttributeTypes {
216773
217584
  "AWS::Cognito::IdentityPoolRoleAttachment": CognitoIdentityPoolRoleAttachmentAttributes;
216774
217585
  "AWS::Cognito::LogDeliveryConfiguration": CognitoLogDeliveryConfigurationAttributes;
216775
217586
  "AWS::Cognito::ManagedLoginBranding": CognitoManagedLoginBrandingAttributes;
217587
+ "AWS::Cognito::Terms": CognitoTermsAttributes;
216776
217588
  "AWS::Cognito::UserPool": CognitoUserPoolAttributes;
216777
217589
  "AWS::Cognito::UserPoolClient": CognitoUserPoolClientAttributes;
216778
217590
  "AWS::Cognito::UserPoolDomain": CognitoUserPoolDomainAttributes;
@@ -216966,6 +217778,8 @@ export interface AttributeTypes {
216966
217778
  "AWS::EC2::TransitGatewayAttachment": EC2TransitGatewayAttachmentAttributes;
216967
217779
  "AWS::EC2::TransitGatewayConnect": EC2TransitGatewayConnectAttributes;
216968
217780
  "AWS::EC2::TransitGatewayConnectPeer": EC2TransitGatewayConnectPeerAttributes;
217781
+ "AWS::EC2::TransitGatewayMeteringPolicy": EC2TransitGatewayMeteringPolicyAttributes;
217782
+ "AWS::EC2::TransitGatewayMeteringPolicyEntry": EC2TransitGatewayMeteringPolicyEntryAttributes;
216969
217783
  "AWS::EC2::TransitGatewayMulticastDomain": EC2TransitGatewayMulticastDomainAttributes;
216970
217784
  "AWS::EC2::TransitGatewayMulticastDomainAssociation": EC2TransitGatewayMulticastDomainAssociationAttributes;
216971
217785
  "AWS::EC2::TransitGatewayMulticastGroupMember": EC2TransitGatewayMulticastGroupMemberAttributes;
@@ -216982,6 +217796,7 @@ export interface AttributeTypes {
216982
217796
  "AWS::EC2::VPCBlockPublicAccessExclusion": EC2VPCBlockPublicAccessExclusionAttributes;
216983
217797
  "AWS::EC2::VPCBlockPublicAccessOptions": EC2VPCBlockPublicAccessOptionsAttributes;
216984
217798
  "AWS::EC2::VPCCidrBlock": EC2VPCCidrBlockAttributes;
217799
+ "AWS::EC2::VPCEncryptionControl": EC2VPCEncryptionControlAttributes;
216985
217800
  "AWS::EC2::VPCEndpoint": EC2VPCEndpointAttributes;
216986
217801
  "AWS::EC2::VPCEndpointConnectionNotification": EC2VPCEndpointConnectionNotificationAttributes;
216987
217802
  "AWS::EC2::VPCEndpointService": EC2VPCEndpointServiceAttributes;
@@ -216998,6 +217813,7 @@ export interface AttributeTypes {
216998
217813
  "AWS::ECR::Repository": ECRRepositoryAttributes;
216999
217814
  "AWS::ECR::RepositoryCreationTemplate": ECRRepositoryCreationTemplateAttributes;
217000
217815
  "AWS::ECS::Cluster": ECSClusterAttributes;
217816
+ "AWS::ECS::ExpressGatewayService": ECSExpressGatewayServiceAttributes;
217001
217817
  "AWS::ECS::Service": ECSServiceAttributes;
217002
217818
  "AWS::ECS::TaskDefinition": ECSTaskDefinitionAttributes;
217003
217819
  "AWS::ECS::TaskSet": ECSTaskSetAttributes;
@@ -218060,6 +218876,7 @@ export declare const ResourceType: {
218060
218876
  readonly CloudFrontAnycastIpList: "AWS::CloudFront::AnycastIpList";
218061
218877
  readonly CloudFrontCachePolicy: "AWS::CloudFront::CachePolicy";
218062
218878
  readonly CloudFrontCloudFrontOriginAccessIdentity: "AWS::CloudFront::CloudFrontOriginAccessIdentity";
218879
+ readonly CloudFrontConnectionFunction: "AWS::CloudFront::ConnectionFunction";
218063
218880
  readonly CloudFrontConnectionGroup: "AWS::CloudFront::ConnectionGroup";
218064
218881
  readonly CloudFrontContinuousDeploymentPolicy: "AWS::CloudFront::ContinuousDeploymentPolicy";
218065
218882
  readonly CloudFrontDistribution: "AWS::CloudFront::Distribution";
@@ -218113,6 +218930,7 @@ export declare const ResourceType: {
218113
218930
  readonly CognitoIdentityPoolRoleAttachment: "AWS::Cognito::IdentityPoolRoleAttachment";
218114
218931
  readonly CognitoLogDeliveryConfiguration: "AWS::Cognito::LogDeliveryConfiguration";
218115
218932
  readonly CognitoManagedLoginBranding: "AWS::Cognito::ManagedLoginBranding";
218933
+ readonly CognitoTerms: "AWS::Cognito::Terms";
218116
218934
  readonly CognitoUserPool: "AWS::Cognito::UserPool";
218117
218935
  readonly CognitoUserPoolClient: "AWS::Cognito::UserPoolClient";
218118
218936
  readonly CognitoUserPoolDomain: "AWS::Cognito::UserPoolDomain";
@@ -218330,6 +219148,8 @@ export declare const ResourceType: {
218330
219148
  readonly EC2TransitGatewayAttachment: "AWS::EC2::TransitGatewayAttachment";
218331
219149
  readonly EC2TransitGatewayConnect: "AWS::EC2::TransitGatewayConnect";
218332
219150
  readonly EC2TransitGatewayConnectPeer: "AWS::EC2::TransitGatewayConnectPeer";
219151
+ readonly EC2TransitGatewayMeteringPolicy: "AWS::EC2::TransitGatewayMeteringPolicy";
219152
+ readonly EC2TransitGatewayMeteringPolicyEntry: "AWS::EC2::TransitGatewayMeteringPolicyEntry";
218333
219153
  readonly EC2TransitGatewayMulticastDomain: "AWS::EC2::TransitGatewayMulticastDomain";
218334
219154
  readonly EC2TransitGatewayMulticastDomainAssociation: "AWS::EC2::TransitGatewayMulticastDomainAssociation";
218335
219155
  readonly EC2TransitGatewayMulticastGroupMember: "AWS::EC2::TransitGatewayMulticastGroupMember";
@@ -218351,6 +219171,7 @@ export declare const ResourceType: {
218351
219171
  readonly EC2VPCBlockPublicAccessOptions: "AWS::EC2::VPCBlockPublicAccessOptions";
218352
219172
  readonly EC2VPCCidrBlock: "AWS::EC2::VPCCidrBlock";
218353
219173
  readonly EC2VPCDHCPOptionsAssociation: "AWS::EC2::VPCDHCPOptionsAssociation";
219174
+ readonly EC2VPCEncryptionControl: "AWS::EC2::VPCEncryptionControl";
218354
219175
  readonly EC2VPCEndpoint: "AWS::EC2::VPCEndpoint";
218355
219176
  readonly EC2VPCEndpointConnectionNotification: "AWS::EC2::VPCEndpointConnectionNotification";
218356
219177
  readonly EC2VPCEndpointService: "AWS::EC2::VPCEndpointService";
@@ -218372,6 +219193,7 @@ export declare const ResourceType: {
218372
219193
  readonly ECSCapacityProvider: "AWS::ECS::CapacityProvider";
218373
219194
  readonly ECSCluster: "AWS::ECS::Cluster";
218374
219195
  readonly ECSClusterCapacityProviderAssociations: "AWS::ECS::ClusterCapacityProviderAssociations";
219196
+ readonly ECSExpressGatewayService: "AWS::ECS::ExpressGatewayService";
218375
219197
  readonly ECSPrimaryTaskSet: "AWS::ECS::PrimaryTaskSet";
218376
219198
  readonly ECSService: "AWS::ECS::Service";
218377
219199
  readonly ECSTaskDefinition: "AWS::ECS::TaskDefinition";