@awboost/cfntypes 0.100.335 → 0.100.337
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.
|
@@ -2714,6 +2714,7 @@ export type ApiGatewayDocumentationVersionProps = {
|
|
|
2714
2714
|
export type ApiGatewayDomainNameProps = {
|
|
2715
2715
|
CertificateArn?: string;
|
|
2716
2716
|
DomainName?: string;
|
|
2717
|
+
EndpointAccessMode?: string;
|
|
2717
2718
|
/**
|
|
2718
2719
|
* The endpoint configuration of this DomainName showing the endpoint types and IP address types of the domain name.
|
|
2719
2720
|
*/
|
|
@@ -2820,6 +2821,7 @@ export type ApiGatewayDomainNameAccessAssociationTag = {
|
|
|
2820
2821
|
export type ApiGatewayDomainNameV2Props = {
|
|
2821
2822
|
CertificateArn?: string;
|
|
2822
2823
|
DomainName?: string;
|
|
2824
|
+
EndpointAccessMode?: string;
|
|
2823
2825
|
EndpointConfiguration?: ApiGatewayDomainNameV2EndpointConfiguration;
|
|
2824
2826
|
Policy?: Record<string, any> | string;
|
|
2825
2827
|
/**
|
|
@@ -2914,9 +2916,11 @@ export type ApiGatewayMethodIntegration = {
|
|
|
2914
2916
|
Credentials?: string;
|
|
2915
2917
|
IntegrationHttpMethod?: string;
|
|
2916
2918
|
IntegrationResponses?: ApiGatewayMethodIntegrationResponse[];
|
|
2919
|
+
IntegrationTarget?: string;
|
|
2917
2920
|
PassthroughBehavior?: "WHEN_NO_MATCH" | "WHEN_NO_TEMPLATES" | "NEVER";
|
|
2918
2921
|
RequestParameters?: Record<string, string>;
|
|
2919
2922
|
RequestTemplates?: Record<string, string>;
|
|
2923
|
+
ResponseTransferMode?: "BUFFERED" | "STREAM";
|
|
2920
2924
|
/**
|
|
2921
2925
|
* @min `50`
|
|
2922
2926
|
*/
|
|
@@ -3012,6 +3016,7 @@ export type ApiGatewayRestApiProps = {
|
|
|
3012
3016
|
CloneFrom?: string;
|
|
3013
3017
|
Description?: string;
|
|
3014
3018
|
DisableExecuteApiEndpoint?: boolean;
|
|
3019
|
+
EndpointAccessMode?: string;
|
|
3015
3020
|
/**
|
|
3016
3021
|
* A list of the endpoint types and IP address types of the API. Use this property when creating an API. When importing an existing API, specify the endpoint configuration types using the ``Parameters`` property.
|
|
3017
3022
|
*/
|
|
@@ -3036,6 +3041,7 @@ export type ApiGatewayRestApiProps = {
|
|
|
3036
3041
|
* A policy document that contains the permissions for the ``RestApi`` resource. To set the ARN for the policy, use the ``!Join`` intrinsic function with ``""`` as delimiter and values of ``"execute-api:/"`` and ``"*"``.
|
|
3037
3042
|
*/
|
|
3038
3043
|
Policy?: Record<string, any> | string;
|
|
3044
|
+
SecurityPolicy?: string;
|
|
3039
3045
|
Tags?: ApiGatewayRestApiTag[];
|
|
3040
3046
|
};
|
|
3041
3047
|
/**
|
|
@@ -20547,11 +20553,26 @@ export type BedrockDataAutomationProjectAudioExtractionCategoryType = "AUDIO_CON
|
|
|
20547
20553
|
export type BedrockDataAutomationProjectAudioExtractionCategoryTypeConfiguration = {
|
|
20548
20554
|
Transcript?: BedrockDataAutomationProjectTranscriptConfiguration;
|
|
20549
20555
|
};
|
|
20556
|
+
/**
|
|
20557
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.AudioGenerativeOutputLanguage`.
|
|
20558
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiogenerativeoutputlanguage.html}
|
|
20559
|
+
*/
|
|
20560
|
+
export type BedrockDataAutomationProjectAudioGenerativeOutputLanguage = "DEFAULT" | "EN";
|
|
20561
|
+
/**
|
|
20562
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.AudioLanguageConfiguration`.
|
|
20563
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiolanguageconfiguration.html}
|
|
20564
|
+
*/
|
|
20565
|
+
export type BedrockDataAutomationProjectAudioLanguageConfiguration = {
|
|
20566
|
+
GenerativeOutputLanguage?: BedrockDataAutomationProjectAudioGenerativeOutputLanguage;
|
|
20567
|
+
IdentifyMultipleLanguages?: boolean;
|
|
20568
|
+
InputLanguages?: BedrockDataAutomationProjectLanguage[];
|
|
20569
|
+
};
|
|
20550
20570
|
/**
|
|
20551
20571
|
* Type definition for `AWS::Bedrock::DataAutomationProject.AudioOverrideConfiguration`.
|
|
20552
20572
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiooverrideconfiguration.html}
|
|
20553
20573
|
*/
|
|
20554
20574
|
export type BedrockDataAutomationProjectAudioOverrideConfiguration = {
|
|
20575
|
+
LanguageConfiguration?: BedrockDataAutomationProjectAudioLanguageConfiguration;
|
|
20555
20576
|
ModalityProcessing?: BedrockDataAutomationProjectModalityProcessingConfiguration;
|
|
20556
20577
|
};
|
|
20557
20578
|
/**
|
|
@@ -20776,6 +20797,11 @@ export type BedrockDataAutomationProjectImageStandardOutputConfiguration = {
|
|
|
20776
20797
|
Extraction?: BedrockDataAutomationProjectImageStandardExtraction;
|
|
20777
20798
|
GenerativeField?: BedrockDataAutomationProjectImageStandardGenerativeField;
|
|
20778
20799
|
};
|
|
20800
|
+
/**
|
|
20801
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.Language`.
|
|
20802
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-language.html}
|
|
20803
|
+
*/
|
|
20804
|
+
export type BedrockDataAutomationProjectLanguage = "EN" | "DE" | "ES" | "FR" | "IT" | "PT" | "JA" | "KO" | "CN" | "TW" | "HK";
|
|
20779
20805
|
/**
|
|
20780
20806
|
* Type definition for `AWS::Bedrock::DataAutomationProject.ModalityProcessingConfiguration`.
|
|
20781
20807
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-modalityprocessingconfiguration.html}
|
|
@@ -28098,7 +28124,7 @@ export type BillingConductorBillingGroupProps = {
|
|
|
28098
28124
|
* This account will act as a virtual payer account of the billing group
|
|
28099
28125
|
* @pattern `[0-9]{12}`
|
|
28100
28126
|
*/
|
|
28101
|
-
PrimaryAccountId
|
|
28127
|
+
PrimaryAccountId?: string;
|
|
28102
28128
|
Tags?: BillingConductorBillingGroupTag[];
|
|
28103
28129
|
};
|
|
28104
28130
|
/**
|
|
@@ -28108,7 +28134,7 @@ export type BillingConductorBillingGroupProps = {
|
|
|
28108
28134
|
export type BillingConductorBillingGroupAttributes = {
|
|
28109
28135
|
/**
|
|
28110
28136
|
* Billing Group ARN
|
|
28111
|
-
* @pattern `arn:aws(-cn)?:billingconductor::[0-9]{12}:billinggroup/?[
|
|
28137
|
+
* @pattern `arn:aws(-cn)?:billingconductor::[0-9]{12}:billinggroup/?[a-zA-Z0-9]{10,12}`
|
|
28112
28138
|
*/
|
|
28113
28139
|
Arn: string;
|
|
28114
28140
|
/**
|
|
@@ -28135,7 +28161,11 @@ export type BillingConductorBillingGroupAccountGrouping = {
|
|
|
28135
28161
|
/**
|
|
28136
28162
|
* @minLength `1`
|
|
28137
28163
|
*/
|
|
28138
|
-
LinkedAccountIds
|
|
28164
|
+
LinkedAccountIds?: string[];
|
|
28165
|
+
/**
|
|
28166
|
+
* @pattern `arn:[a-z0-9][a-z0-9-.]{0,62}:organizations::[0-9]{12}:transfer/o-[a-z0-9]{10,32}/(billing)/(inbound|outbound)/rt-[0-9a-z]{8,32}`
|
|
28167
|
+
*/
|
|
28168
|
+
ResponsibilityTransferArn?: string;
|
|
28139
28169
|
};
|
|
28140
28170
|
/**
|
|
28141
28171
|
* Type definition for `AWS::BillingConductor::BillingGroup.BillingGroupStatus`.
|
|
@@ -28182,7 +28212,7 @@ export type BillingConductorCustomLineItemProps = {
|
|
|
28182
28212
|
AccountId?: string;
|
|
28183
28213
|
/**
|
|
28184
28214
|
* Billing Group ARN
|
|
28185
|
-
* @pattern `arn:aws(-cn)?:billingconductor::[0-9]{12}:billinggroup/?[
|
|
28215
|
+
* @pattern `arn:aws(-cn)?:billingconductor::[0-9]{12}:billinggroup/?[a-zA-Z0-9]{10,12}`
|
|
28186
28216
|
*/
|
|
28187
28217
|
BillingGroupArn: string;
|
|
28188
28218
|
BillingPeriodRange?: BillingConductorCustomLineItemBillingPeriodRange;
|
|
@@ -32938,6 +32968,64 @@ export type CloudFrontCloudFrontOriginAccessIdentityCloudFrontOriginAccessIdenti
|
|
|
32938
32968
|
*/
|
|
32939
32969
|
Comment: string;
|
|
32940
32970
|
};
|
|
32971
|
+
/**
|
|
32972
|
+
* Resource Type definition for AWS::CloudFront::ConnectionFunction
|
|
32973
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectionfunction.html}
|
|
32974
|
+
*/
|
|
32975
|
+
export type CloudFrontConnectionFunctionProps = {
|
|
32976
|
+
AutoPublish?: boolean;
|
|
32977
|
+
ConnectionFunctionCode: string;
|
|
32978
|
+
ConnectionFunctionConfig: CloudFrontConnectionFunctionConnectionFunctionConfig;
|
|
32979
|
+
Name: string;
|
|
32980
|
+
Tags?: CloudFrontConnectionFunctionTag[];
|
|
32981
|
+
};
|
|
32982
|
+
/**
|
|
32983
|
+
* Attribute type definition for `AWS::CloudFront::ConnectionFunction`.
|
|
32984
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectionfunction.html#aws-resource-cloudfront-connectionfunction-return-values}
|
|
32985
|
+
*/
|
|
32986
|
+
export type CloudFrontConnectionFunctionAttributes = {
|
|
32987
|
+
ConnectionFunctionArn: string;
|
|
32988
|
+
CreatedTime: string;
|
|
32989
|
+
ETag: string;
|
|
32990
|
+
Id: string;
|
|
32991
|
+
LastModifiedTime: string;
|
|
32992
|
+
Stage: "DEVELOPMENT" | "LIVE";
|
|
32993
|
+
Status: "UNPUBLISHED" | "DEPLOYED" | "UNASSOCIATED" | "PUBLISHING" | "IN_PROGRESS";
|
|
32994
|
+
};
|
|
32995
|
+
/**
|
|
32996
|
+
* Type definition for `AWS::CloudFront::ConnectionFunction.ConnectionFunctionConfig`.
|
|
32997
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-connectionfunction-connectionfunctionconfig.html}
|
|
32998
|
+
*/
|
|
32999
|
+
export type CloudFrontConnectionFunctionConnectionFunctionConfig = {
|
|
33000
|
+
Comment: string;
|
|
33001
|
+
KeyValueStoreAssociations?: CloudFrontConnectionFunctionKeyValueStoreAssociation[];
|
|
33002
|
+
Runtime: "cloudfront-js-2.0";
|
|
33003
|
+
};
|
|
33004
|
+
/**
|
|
33005
|
+
* Type definition for `AWS::CloudFront::ConnectionFunction.KeyValueStoreAssociation`.
|
|
33006
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-connectionfunction-keyvaluestoreassociation.html}
|
|
33007
|
+
*/
|
|
33008
|
+
export type CloudFrontConnectionFunctionKeyValueStoreAssociation = {
|
|
33009
|
+
KeyValueStoreARN: string;
|
|
33010
|
+
};
|
|
33011
|
+
/**
|
|
33012
|
+
* Type definition for `AWS::CloudFront::ConnectionFunction.Tag`.
|
|
33013
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-connectionfunction-tag.html}
|
|
33014
|
+
*/
|
|
33015
|
+
export type CloudFrontConnectionFunctionTag = {
|
|
33016
|
+
/**
|
|
33017
|
+
* @minLength `1`
|
|
33018
|
+
* @maxLength `128`
|
|
33019
|
+
* @pattern `^[a-zA-Z0-9 _.:/=+\-@]{1,128}\Z`
|
|
33020
|
+
*/
|
|
33021
|
+
Key: string;
|
|
33022
|
+
/**
|
|
33023
|
+
* @minLength `0`
|
|
33024
|
+
* @maxLength `256`
|
|
33025
|
+
* @pattern `^[a-zA-Z0-9 _.:/=+\-@]{0,256}\Z`
|
|
33026
|
+
*/
|
|
33027
|
+
Value: string;
|
|
33028
|
+
};
|
|
32941
33029
|
/**
|
|
32942
33030
|
* Resource type definition for `AWS::CloudFront::ConnectionGroup`.
|
|
32943
33031
|
* 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.
|
|
@@ -35830,6 +35918,11 @@ export type CloudTrailTrailProps = {
|
|
|
35830
35918
|
* The advanced event selectors that were used to select events for the data store.
|
|
35831
35919
|
*/
|
|
35832
35920
|
AdvancedEventSelectors?: CloudTrailTrailAdvancedEventSelector[];
|
|
35921
|
+
/**
|
|
35922
|
+
* Specifies the aggregation configuration to aggregate CloudTrail Events. A maximum of 1 aggregation configuration is allowed.
|
|
35923
|
+
* @maxLength `1`
|
|
35924
|
+
*/
|
|
35925
|
+
AggregationConfigurations?: CloudTrailTrailAggregationConfiguration[];
|
|
35833
35926
|
/**
|
|
35834
35927
|
* 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.
|
|
35835
35928
|
*/
|
|
@@ -35963,6 +36056,23 @@ export type CloudTrailTrailAdvancedFieldSelector = {
|
|
|
35963
36056
|
*/
|
|
35964
36057
|
StartsWith?: string[];
|
|
35965
36058
|
};
|
|
36059
|
+
/**
|
|
36060
|
+
* Type definition for `AWS::CloudTrail::Trail.AggregationConfiguration`.
|
|
36061
|
+
* Configure to add aggregation rules to aggregate CloudTrail Events.
|
|
36062
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-trail-aggregationconfiguration.html}
|
|
36063
|
+
*/
|
|
36064
|
+
export type CloudTrailTrailAggregationConfiguration = {
|
|
36065
|
+
/**
|
|
36066
|
+
* The category of events to be aggregated.
|
|
36067
|
+
*/
|
|
36068
|
+
EventCategory: "Data";
|
|
36069
|
+
/**
|
|
36070
|
+
* Contains all templates in an aggregation configuration.
|
|
36071
|
+
* @minLength `1`
|
|
36072
|
+
* @maxLength `50`
|
|
36073
|
+
*/
|
|
36074
|
+
Templates: CloudTrailTrailTemplate[];
|
|
36075
|
+
};
|
|
35966
36076
|
/**
|
|
35967
36077
|
* Type definition for `AWS::CloudTrail::Trail.DataResource`.
|
|
35968
36078
|
* 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.
|
|
@@ -36004,11 +36114,21 @@ export type CloudTrailTrailEventSelector = {
|
|
|
36004
36114
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-trail-insightselector.html}
|
|
36005
36115
|
*/
|
|
36006
36116
|
export type CloudTrailTrailInsightSelector = {
|
|
36117
|
+
/**
|
|
36118
|
+
* The categories of events for which to log insights. By default, insights are logged for management events only.
|
|
36119
|
+
*/
|
|
36120
|
+
EventCategories?: CloudTrailTrailSourceEventCategory[];
|
|
36007
36121
|
/**
|
|
36008
36122
|
* The type of insight to log on a trail.
|
|
36009
36123
|
*/
|
|
36010
36124
|
InsightType?: string;
|
|
36011
36125
|
};
|
|
36126
|
+
/**
|
|
36127
|
+
* Type definition for `AWS::CloudTrail::Trail.SourceEventCategory`.
|
|
36128
|
+
* Event category for an insight selector.
|
|
36129
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-trail-sourceeventcategory.html}
|
|
36130
|
+
*/
|
|
36131
|
+
export type CloudTrailTrailSourceEventCategory = "Management" | "Data";
|
|
36012
36132
|
/**
|
|
36013
36133
|
* Type definition for `AWS::CloudTrail::Trail.Tag`.
|
|
36014
36134
|
* An arbitrary set of tags (key-value pairs) for this trail.
|
|
@@ -36024,6 +36144,12 @@ export type CloudTrailTrailTag = {
|
|
|
36024
36144
|
*/
|
|
36025
36145
|
Value: string;
|
|
36026
36146
|
};
|
|
36147
|
+
/**
|
|
36148
|
+
* Type definition for `AWS::CloudTrail::Trail.Template`.
|
|
36149
|
+
* A template used to configure aggregation rules.
|
|
36150
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-trail-template.html}
|
|
36151
|
+
*/
|
|
36152
|
+
export type CloudTrailTrailTemplate = "API_ACTIVITY" | "RESOURCE_ACCESS" | "USER_ACTIONS";
|
|
36027
36153
|
/**
|
|
36028
36154
|
* The ``AWS::CloudWatch::Alarm`` type specifies an alarm and associates it with the specified metric or metric math expression.
|
|
36029
36155
|
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.
|
|
@@ -45606,6 +45732,10 @@ export type CustomerProfilesCalculatedAttributeDefinitionValueRange = {
|
|
|
45606
45732
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-domain.html}
|
|
45607
45733
|
*/
|
|
45608
45734
|
export type CustomerProfilesDomainProps = {
|
|
45735
|
+
/**
|
|
45736
|
+
* Configuration and status of the data store for the domain.
|
|
45737
|
+
*/
|
|
45738
|
+
DataStore?: CustomerProfilesDomainDataStore;
|
|
45609
45739
|
/**
|
|
45610
45740
|
* The URL of the SQS dead letter queue
|
|
45611
45741
|
* @minLength `0`
|
|
@@ -45655,6 +45785,26 @@ export type CustomerProfilesDomainAttributes = {
|
|
|
45655
45785
|
* The time of this integration got created
|
|
45656
45786
|
*/
|
|
45657
45787
|
CreatedAt: string;
|
|
45788
|
+
/**
|
|
45789
|
+
* Configuration and status of the data store for the domain.
|
|
45790
|
+
*/
|
|
45791
|
+
DataStore: {
|
|
45792
|
+
/**
|
|
45793
|
+
* Progress information for data store setup.
|
|
45794
|
+
*/
|
|
45795
|
+
Readiness: {
|
|
45796
|
+
/**
|
|
45797
|
+
* A message describing the current progress.
|
|
45798
|
+
*/
|
|
45799
|
+
Message: string;
|
|
45800
|
+
/**
|
|
45801
|
+
* The percentage of progress completed.
|
|
45802
|
+
* @min `0`
|
|
45803
|
+
* @max `100`
|
|
45804
|
+
*/
|
|
45805
|
+
ProgressPercentage: number;
|
|
45806
|
+
};
|
|
45807
|
+
};
|
|
45658
45808
|
/**
|
|
45659
45809
|
* The time of this integration got last updated at
|
|
45660
45810
|
*/
|
|
@@ -45771,6 +45921,17 @@ export type CustomerProfilesDomainConsolidation = {
|
|
|
45771
45921
|
*/
|
|
45772
45922
|
MatchingAttributesList: string[][];
|
|
45773
45923
|
};
|
|
45924
|
+
/**
|
|
45925
|
+
* Type definition for `AWS::CustomerProfiles::Domain.DataStore`.
|
|
45926
|
+
* Configuration and status of the data store for the domain.
|
|
45927
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-datastore.html}
|
|
45928
|
+
*/
|
|
45929
|
+
export type CustomerProfilesDomainDataStore = {
|
|
45930
|
+
/**
|
|
45931
|
+
* Whether the data store is enabled.
|
|
45932
|
+
*/
|
|
45933
|
+
Enabled?: boolean;
|
|
45934
|
+
};
|
|
45774
45935
|
/**
|
|
45775
45936
|
* Type definition for `AWS::CustomerProfiles::Domain.DomainStats`.
|
|
45776
45937
|
* Usage-specific statistics about the domain.
|
|
@@ -45859,6 +46020,23 @@ export type CustomerProfilesDomainMatchingRule = {
|
|
|
45859
46020
|
*/
|
|
45860
46021
|
Rule: string[];
|
|
45861
46022
|
};
|
|
46023
|
+
/**
|
|
46024
|
+
* Type definition for `AWS::CustomerProfiles::Domain.Readiness`.
|
|
46025
|
+
* Progress information for data store setup.
|
|
46026
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-readiness.html}
|
|
46027
|
+
*/
|
|
46028
|
+
export type CustomerProfilesDomainReadiness = {
|
|
46029
|
+
/**
|
|
46030
|
+
* A message describing the current progress.
|
|
46031
|
+
*/
|
|
46032
|
+
Message?: string;
|
|
46033
|
+
/**
|
|
46034
|
+
* The percentage of progress completed.
|
|
46035
|
+
* @min `0`
|
|
46036
|
+
* @max `100`
|
|
46037
|
+
*/
|
|
46038
|
+
ProgressPercentage?: number;
|
|
46039
|
+
};
|
|
45862
46040
|
/**
|
|
45863
46041
|
* Type definition for `AWS::CustomerProfiles::Domain.RuleBasedMatching`.
|
|
45864
46042
|
* 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.
|
|
@@ -56191,6 +56369,10 @@ export type DSQLClusterAttributes = {
|
|
|
56191
56369
|
*/
|
|
56192
56370
|
KmsKeyArn: string;
|
|
56193
56371
|
};
|
|
56372
|
+
/**
|
|
56373
|
+
* The DSQL cluster endpoint.
|
|
56374
|
+
*/
|
|
56375
|
+
Endpoint: string;
|
|
56194
56376
|
/**
|
|
56195
56377
|
* The ID of the created cluster.
|
|
56196
56378
|
*/
|
|
@@ -61120,6 +61302,8 @@ export type EC2NatGatewayProps = {
|
|
|
61120
61302
|
* [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.
|
|
61121
61303
|
*/
|
|
61122
61304
|
AllocationId?: string;
|
|
61305
|
+
AvailabilityMode?: string;
|
|
61306
|
+
AvailabilityZoneAddresses?: EC2NatGatewayAvailabilityZoneAddress[];
|
|
61123
61307
|
/**
|
|
61124
61308
|
* Indicates whether the NAT gateway supports public or private connectivity. The default is public connectivity.
|
|
61125
61309
|
*/
|
|
@@ -61165,8 +61349,20 @@ export type EC2NatGatewayProps = {
|
|
|
61165
61349
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#aws-resource-ec2-natgateway-return-values}
|
|
61166
61350
|
*/
|
|
61167
61351
|
export type EC2NatGatewayAttributes = {
|
|
61352
|
+
AutoProvisionZones: string;
|
|
61353
|
+
AutoScalingIps: string;
|
|
61168
61354
|
EniId: string;
|
|
61169
61355
|
NatGatewayId: string;
|
|
61356
|
+
RouteTableId: string;
|
|
61357
|
+
};
|
|
61358
|
+
/**
|
|
61359
|
+
* Type definition for `AWS::EC2::NatGateway.AvailabilityZoneAddress`.
|
|
61360
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-natgateway-availabilityzoneaddress.html}
|
|
61361
|
+
*/
|
|
61362
|
+
export type EC2NatGatewayAvailabilityZoneAddress = {
|
|
61363
|
+
AllocationIds: string[];
|
|
61364
|
+
AvailabilityZone?: string;
|
|
61365
|
+
AvailabilityZoneId?: string;
|
|
61170
61366
|
};
|
|
61171
61367
|
/**
|
|
61172
61368
|
* Type definition for `AWS::EC2::NatGateway.Tag`.
|
|
@@ -66167,6 +66363,12 @@ export type EC2VPCEndpointDnsOptionsSpecification = {
|
|
|
66167
66363
|
* Indicates whether to enable private DNS only for inbound endpoints. This option is available only for services that support both gateway and interface endpoints. It routes traffic that originates from the VPC to the gateway endpoint and traffic that originates from on-premises to the interface endpoint.
|
|
66168
66364
|
*/
|
|
66169
66365
|
PrivateDnsOnlyForInboundResolverEndpoint?: "OnlyInboundResolver" | "AllResolvers" | "NotSpecified";
|
|
66366
|
+
PrivateDnsPreference?: "VERIFIED_DOMAINS_ONLY" | "ALL_DOMAINS" | "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS" | "SPECIFIED_DOMAINS_ONLY";
|
|
66367
|
+
/**
|
|
66368
|
+
* @minLength `1`
|
|
66369
|
+
* @maxLength `10`
|
|
66370
|
+
*/
|
|
66371
|
+
PrivateDnsSpecifiedDomains?: string[];
|
|
66170
66372
|
};
|
|
66171
66373
|
/**
|
|
66172
66374
|
* Type definition for `AWS::EC2::VPCEndpoint.Tag`.
|
|
@@ -66345,6 +66547,46 @@ export type EC2VPCPeeringConnectionTag = {
|
|
|
66345
66547
|
*/
|
|
66346
66548
|
Value: string;
|
|
66347
66549
|
};
|
|
66550
|
+
/**
|
|
66551
|
+
* Resource Type definition for AWS::EC2::VPNConcentrator
|
|
66552
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html}
|
|
66553
|
+
*/
|
|
66554
|
+
export type EC2VPNConcentratorProps = {
|
|
66555
|
+
/**
|
|
66556
|
+
* Any tags assigned to the VPN concentrator.
|
|
66557
|
+
*/
|
|
66558
|
+
Tags?: EC2VPNConcentratorTag[];
|
|
66559
|
+
/**
|
|
66560
|
+
* The ID of the transit gateway
|
|
66561
|
+
*/
|
|
66562
|
+
TransitGatewayId: string;
|
|
66563
|
+
/**
|
|
66564
|
+
* The type of VPN concentrator
|
|
66565
|
+
*/
|
|
66566
|
+
Type: string;
|
|
66567
|
+
};
|
|
66568
|
+
/**
|
|
66569
|
+
* Attribute type definition for `AWS::EC2::VPNConcentrator`.
|
|
66570
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html#aws-resource-ec2-vpnconcentrator-return-values}
|
|
66571
|
+
*/
|
|
66572
|
+
export type EC2VPNConcentratorAttributes = {
|
|
66573
|
+
/**
|
|
66574
|
+
* The ID of the transit gateway attachment
|
|
66575
|
+
*/
|
|
66576
|
+
TransitGatewayAttachmentId: string;
|
|
66577
|
+
/**
|
|
66578
|
+
* The provider-assigned unique ID for this managed resource
|
|
66579
|
+
*/
|
|
66580
|
+
VpnConcentratorId: string;
|
|
66581
|
+
};
|
|
66582
|
+
/**
|
|
66583
|
+
* Type definition for `AWS::EC2::VPNConcentrator.Tag`.
|
|
66584
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconcentrator-tag.html}
|
|
66585
|
+
*/
|
|
66586
|
+
export type EC2VPNConcentratorTag = {
|
|
66587
|
+
Key: string;
|
|
66588
|
+
Value: string;
|
|
66589
|
+
};
|
|
66348
66590
|
/**
|
|
66349
66591
|
* Resource type definition for `AWS::EC2::VPNConnection`.
|
|
66350
66592
|
* Specifies a VPN connection between a virtual private gateway and a VPN customer gateway or a transit gateway and a VPN customer gateway.
|
|
@@ -66412,6 +66654,7 @@ export type EC2VPNConnectionProps = {
|
|
|
66412
66654
|
Required if ``OutsideIpAddressType`` is set to ``PrivateIpv4``.
|
|
66413
66655
|
*/
|
|
66414
66656
|
TransportTransitGatewayAttachmentId?: string;
|
|
66657
|
+
TunnelBandwidth?: "standard" | "large";
|
|
66415
66658
|
/**
|
|
66416
66659
|
* Indicate whether the VPN tunnels process IPv4 or IPv6 traffic.
|
|
66417
66660
|
Default: ``ipv4``
|
|
@@ -66421,6 +66664,7 @@ export type EC2VPNConnectionProps = {
|
|
|
66421
66664
|
* The type of VPN connection.
|
|
66422
66665
|
*/
|
|
66423
66666
|
Type: string;
|
|
66667
|
+
VpnConcentratorId?: string;
|
|
66424
66668
|
/**
|
|
66425
66669
|
* The ID of the virtual private gateway at the AWS side of the VPN connection.
|
|
66426
66670
|
You must specify either ``TransitGatewayId`` or ``VpnGatewayId``, but not both.
|
|
@@ -66444,6 +66688,9 @@ export type EC2VPNConnectionAttributes = {
|
|
|
66444
66688
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-cloudwatchlogoptionsspecification.html}
|
|
66445
66689
|
*/
|
|
66446
66690
|
export type EC2VPNConnectionCloudwatchLogOptionsSpecification = {
|
|
66691
|
+
BgpLogEnabled?: boolean;
|
|
66692
|
+
BgpLogGroupArn?: string;
|
|
66693
|
+
BgpLogOutputFormat?: "json" | "text";
|
|
66447
66694
|
/**
|
|
66448
66695
|
* Enable or disable VPN tunnel logging feature. Default value is ``False``.
|
|
66449
66696
|
Valid values: ``True`` | ``False``
|
|
@@ -67487,6 +67734,17 @@ export type ECSCapacityProviderManagedInstancesNetworkConfiguration = {
|
|
|
67487
67734
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedinstancesprovider.html}
|
|
67488
67735
|
*/
|
|
67489
67736
|
export type ECSCapacityProviderManagedInstancesProvider = {
|
|
67737
|
+
/**
|
|
67738
|
+
* Defines how Amazon ECS Managed Instances optimizes the infrastructure in your capacity provider. Configure it to turn on or off the infrastructure optimization in your capacity provider, and to control the idle EC2 instances optimization delay.
|
|
67739
|
+
*/
|
|
67740
|
+
InfrastructureOptimization?: {
|
|
67741
|
+
/**
|
|
67742
|
+
* This parameter defines the number of seconds Amazon ECS Managed Instances waits before optimizing EC2 instances that have become idle or underutilized. A longer delay increases the likelihood of placing new tasks on idle instances, reducing startup time. A shorter delay helps reduce infrastructure costs by optimizing idle instances more quickly. Valid values are: Not set (null) - Uses the default optimization behavior, `-1` - Disables automatic infrastructure optimization, `0` to `3600` (inclusive) - Specifies the number of seconds to wait before optimizing instances.
|
|
67743
|
+
* @min `-1`
|
|
67744
|
+
* @max `3600`
|
|
67745
|
+
*/
|
|
67746
|
+
ScaleInAfter?: number;
|
|
67747
|
+
};
|
|
67490
67748
|
InfrastructureRoleArn: string;
|
|
67491
67749
|
InstanceLaunchTemplate: ECSCapacityProviderInstanceLaunchTemplate;
|
|
67492
67750
|
PropagateTags?: "CAPACITY_PROVIDER" | "NONE";
|
|
@@ -74010,6 +74268,10 @@ export type ElasticLoadBalancingV2TargetGroupProps = {
|
|
|
74010
74268
|
* The tags.
|
|
74011
74269
|
*/
|
|
74012
74270
|
Tags?: ElasticLoadBalancingV2TargetGroupTag[];
|
|
74271
|
+
/**
|
|
74272
|
+
* The port that the target control agent uses to communicate the available capacity of targets to the load balancer.
|
|
74273
|
+
*/
|
|
74274
|
+
TargetControlPort?: number;
|
|
74013
74275
|
/**
|
|
74014
74276
|
* The attributes.
|
|
74015
74277
|
*/
|
|
@@ -76388,7 +76650,7 @@ export type EntityResolutionMatchingWorkflowRuleBasedProperties = {
|
|
|
76388
76650
|
MatchPurpose?: "IDENTIFIER_GENERATION" | "INDEXING";
|
|
76389
76651
|
/**
|
|
76390
76652
|
* @minLength `1`
|
|
76391
|
-
* @maxLength `
|
|
76653
|
+
* @maxLength `25`
|
|
76392
76654
|
*/
|
|
76393
76655
|
Rules: EntityResolutionMatchingWorkflowRule[];
|
|
76394
76656
|
};
|
|
@@ -76412,7 +76674,7 @@ export type EntityResolutionMatchingWorkflowRuleCondition = {
|
|
|
76412
76674
|
export type EntityResolutionMatchingWorkflowRuleConditionProperties = {
|
|
76413
76675
|
/**
|
|
76414
76676
|
* @minLength `1`
|
|
76415
|
-
* @maxLength `
|
|
76677
|
+
* @maxLength `25`
|
|
76416
76678
|
*/
|
|
76417
76679
|
Rules: EntityResolutionMatchingWorkflowRuleCondition[];
|
|
76418
76680
|
};
|
|
@@ -106960,6 +107222,9 @@ export type KMSKeyProps = {
|
|
|
106960
107222
|
+ ``ECC_NIST_P256`` (secp256r1)
|
|
106961
107223
|
+ ``ECC_NIST_P384`` (secp384r1)
|
|
106962
107224
|
+ ``ECC_NIST_P521`` (secp521r1)
|
|
107225
|
+
+ ``ECC_NIST_EDWARDS25519`` (ed25519) - signing and verification only
|
|
107226
|
+
+ *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.
|
|
107227
|
+
|
|
106963
107228
|
|
|
106964
107229
|
+ Other asymmetric elliptic curve key pairs (signing and verification)
|
|
106965
107230
|
+ ``ECC_SECG_P256K1`` (secp256k1), commonly used for cryptocurrencies.
|
|
@@ -108142,6 +108407,9 @@ export type LambdaEventSourceMappingProps = {
|
|
|
108142
108407
|
* @pattern `(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()`
|
|
108143
108408
|
*/
|
|
108144
108409
|
KmsKeyArn?: string;
|
|
108410
|
+
/**
|
|
108411
|
+
* The function's Amazon CloudWatch Logs configuration settings.
|
|
108412
|
+
*/
|
|
108145
108413
|
LoggingConfig?: LambdaEventSourceMappingLoggingConfig;
|
|
108146
108414
|
/**
|
|
108147
108415
|
* The maximum amount of time, in seconds, that Lambda spends gathering records before invoking the function.
|
|
@@ -108176,7 +108444,7 @@ export type LambdaEventSourceMappingProps = {
|
|
|
108176
108444
|
*/
|
|
108177
108445
|
ParallelizationFactor?: number;
|
|
108178
108446
|
/**
|
|
108179
|
-
* (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).
|
|
108447
|
+
* (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).
|
|
108180
108448
|
*/
|
|
108181
108449
|
ProvisionedPollerConfig?: LambdaEventSourceMappingProvisionedPollerConfig;
|
|
108182
108450
|
/**
|
|
@@ -108186,7 +108454,7 @@ export type LambdaEventSourceMappingProps = {
|
|
|
108186
108454
|
*/
|
|
108187
108455
|
Queues?: string[];
|
|
108188
108456
|
/**
|
|
108189
|
-
*
|
|
108457
|
+
* 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.
|
|
108190
108458
|
*/
|
|
108191
108459
|
ScalingConfig?: LambdaEventSourceMappingScalingConfig;
|
|
108192
108460
|
/**
|
|
@@ -108347,11 +108615,12 @@ export type LambdaEventSourceMappingFilterCriteria = {
|
|
|
108347
108615
|
};
|
|
108348
108616
|
/**
|
|
108349
108617
|
* Type definition for `AWS::Lambda::EventSourceMapping.LoggingConfig`.
|
|
108618
|
+
* The function's Amazon CloudWatch Logs configuration settings.
|
|
108350
108619
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-loggingconfig.html}
|
|
108351
108620
|
*/
|
|
108352
108621
|
export type LambdaEventSourceMappingLoggingConfig = {
|
|
108353
108622
|
/**
|
|
108354
|
-
*
|
|
108623
|
+
* 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.
|
|
108355
108624
|
*/
|
|
108356
108625
|
SystemLogLevel?: "DEBUG" | "INFO" | "WARN";
|
|
108357
108626
|
};
|
|
@@ -108387,18 +108656,18 @@ export type LambdaEventSourceMappingOnFailure = {
|
|
|
108387
108656
|
};
|
|
108388
108657
|
/**
|
|
108389
108658
|
* Type definition for `AWS::Lambda::EventSourceMapping.ProvisionedPollerConfig`.
|
|
108390
|
-
* The [provisioned mode](https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode) configuration for the event source. Use
|
|
108659
|
+
* 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.
|
|
108391
108660
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-provisionedpollerconfig.html}
|
|
108392
108661
|
*/
|
|
108393
108662
|
export type LambdaEventSourceMappingProvisionedPollerConfig = {
|
|
108394
108663
|
/**
|
|
108395
|
-
* The maximum number of event pollers this event source can scale up to.
|
|
108664
|
+
* 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.
|
|
108396
108665
|
* @min `1`
|
|
108397
108666
|
* @max `2000`
|
|
108398
108667
|
*/
|
|
108399
108668
|
MaximumPollers?: number;
|
|
108400
108669
|
/**
|
|
108401
|
-
* The minimum number of event pollers this event source can scale down to.
|
|
108670
|
+
* 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.
|
|
108402
108671
|
* @min `1`
|
|
108403
108672
|
* @max `200`
|
|
108404
108673
|
*/
|
|
@@ -108691,6 +108960,7 @@ export type LambdaFunctionProps = {
|
|
|
108691
108960
|
You must have the ``lambda:TagResource``, ``lambda:UntagResource``, and ``lambda:ListTags`` permissions for your [principal](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html) to manage the CFN stack. If you don't have these permissions, there might be unexpected behavior with stack-level tags propagating to the resource during resource creation and update.
|
|
108692
108961
|
*/
|
|
108693
108962
|
Tags?: LambdaFunctionTag[];
|
|
108963
|
+
TenancyConfig?: LambdaFunctionTenancyConfig;
|
|
108694
108964
|
/**
|
|
108695
108965
|
* The amount of time (in seconds) that Lambda allows a function to run before stopping it. The default is 3 seconds. The maximum allowed value is 900 seconds. For more information, see [Lambda execution environment](https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html).
|
|
108696
108966
|
* @min `1`
|
|
@@ -108929,6 +109199,16 @@ export type LambdaFunctionTag = {
|
|
|
108929
109199
|
*/
|
|
108930
109200
|
Value?: string;
|
|
108931
109201
|
};
|
|
109202
|
+
/**
|
|
109203
|
+
* Type definition for `AWS::Lambda::Function.TenancyConfig`.
|
|
109204
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tenancyconfig.html}
|
|
109205
|
+
*/
|
|
109206
|
+
export type LambdaFunctionTenancyConfig = {
|
|
109207
|
+
/**
|
|
109208
|
+
* Determines how your Lambda function isolates execution environments between tenants.
|
|
109209
|
+
*/
|
|
109210
|
+
TenantIsolationMode: "PER_TENANT";
|
|
109211
|
+
};
|
|
108932
109212
|
/**
|
|
108933
109213
|
* Type definition for `AWS::Lambda::Function.TracingConfig`.
|
|
108934
109214
|
* The function's [](https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html) tracing configuration. To sample and record incoming requests, set ``Mode`` to ``Active``.
|
|
@@ -125772,10 +126052,6 @@ export type MSKClusterProps = {
|
|
|
125772
126052
|
*/
|
|
125773
126053
|
ClusterName: string;
|
|
125774
126054
|
ConfigurationInfo?: MSKClusterConfigurationInfo;
|
|
125775
|
-
/**
|
|
125776
|
-
* The current version of the MSK cluster
|
|
125777
|
-
*/
|
|
125778
|
-
CurrentVersion?: string;
|
|
125779
126055
|
EncryptionInfo?: MSKClusterEncryptionInfo;
|
|
125780
126056
|
/**
|
|
125781
126057
|
* @minLength `7`
|
|
@@ -125790,6 +126066,7 @@ export type MSKClusterProps = {
|
|
|
125790
126066
|
LoggingInfo?: MSKClusterLoggingInfo;
|
|
125791
126067
|
NumberOfBrokerNodes: number;
|
|
125792
126068
|
OpenMonitoring?: MSKClusterOpenMonitoring;
|
|
126069
|
+
Rebalancing?: MSKClusterRebalancing;
|
|
125793
126070
|
/**
|
|
125794
126071
|
* @minLength `5`
|
|
125795
126072
|
* @maxLength `6`
|
|
@@ -125806,6 +126083,10 @@ export type MSKClusterProps = {
|
|
|
125806
126083
|
*/
|
|
125807
126084
|
export type MSKClusterAttributes = {
|
|
125808
126085
|
Arn: string;
|
|
126086
|
+
/**
|
|
126087
|
+
* The current version of the MSK cluster
|
|
126088
|
+
*/
|
|
126089
|
+
CurrentVersion: string;
|
|
125809
126090
|
};
|
|
125810
126091
|
/**
|
|
125811
126092
|
* Type definition for `AWS::MSK::Cluster.BrokerLogs`.
|
|
@@ -125974,6 +126255,13 @@ export type MSKClusterPublicAccess = {
|
|
|
125974
126255
|
*/
|
|
125975
126256
|
Type?: string;
|
|
125976
126257
|
};
|
|
126258
|
+
/**
|
|
126259
|
+
* Type definition for `AWS::MSK::Cluster.Rebalancing`.
|
|
126260
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-rebalancing.html}
|
|
126261
|
+
*/
|
|
126262
|
+
export type MSKClusterRebalancing = {
|
|
126263
|
+
Status: "PAUSED" | "ACTIVE";
|
|
126264
|
+
};
|
|
125977
126265
|
/**
|
|
125978
126266
|
* Type definition for `AWS::MSK::Cluster.S3`.
|
|
125979
126267
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html}
|
|
@@ -133488,6 +133776,7 @@ export type OpenSearchServiceApplicationTag = {
|
|
|
133488
133776
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-domain.html}
|
|
133489
133777
|
*/
|
|
133490
133778
|
export type OpenSearchServiceDomainProps = {
|
|
133779
|
+
AIMLOptions?: OpenSearchServiceDomainAIMLOptions;
|
|
133491
133780
|
AccessPolicies?: Record<string, any>;
|
|
133492
133781
|
AdvancedOptions?: Record<string, string>;
|
|
133493
133782
|
AdvancedSecurityOptions?: OpenSearchServiceDomainAdvancedSecurityOptionsInput;
|
|
@@ -133566,6 +133855,13 @@ export type OpenSearchServiceDomainAdvancedSecurityOptionsInput = {
|
|
|
133566
133855
|
MasterUserOptions?: OpenSearchServiceDomainMasterUserOptions;
|
|
133567
133856
|
SAMLOptions?: OpenSearchServiceDomainSAMLOptions;
|
|
133568
133857
|
};
|
|
133858
|
+
/**
|
|
133859
|
+
* Type definition for `AWS::OpenSearchService::Domain.AIMLOptions`.
|
|
133860
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-aimloptions.html}
|
|
133861
|
+
*/
|
|
133862
|
+
export type OpenSearchServiceDomainAIMLOptions = {
|
|
133863
|
+
S3VectorsEngine?: OpenSearchServiceDomainS3VectorsEngine;
|
|
133864
|
+
};
|
|
133569
133865
|
/**
|
|
133570
133866
|
* Type definition for `AWS::OpenSearchService::Domain.ClusterConfig`.
|
|
133571
133867
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-clusterconfig.html}
|
|
@@ -133748,6 +134044,16 @@ export type OpenSearchServiceDomainOffPeakWindowOptions = {
|
|
|
133748
134044
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-roleskeyidctype.html}
|
|
133749
134045
|
*/
|
|
133750
134046
|
export type OpenSearchServiceDomainRolesKeyIdcType = "GroupName" | "GroupId";
|
|
134047
|
+
/**
|
|
134048
|
+
* Type definition for `AWS::OpenSearchService::Domain.S3VectorsEngine`.
|
|
134049
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-s3vectorsengine.html}
|
|
134050
|
+
*/
|
|
134051
|
+
export type OpenSearchServiceDomainS3VectorsEngine = {
|
|
134052
|
+
/**
|
|
134053
|
+
* Whether to enable S3 vectors engine.
|
|
134054
|
+
*/
|
|
134055
|
+
Enabled: boolean;
|
|
134056
|
+
};
|
|
133751
134057
|
/**
|
|
133752
134058
|
* Type definition for `AWS::OpenSearchService::Domain.SAMLOptions`.
|
|
133753
134059
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-samloptions.html}
|
|
@@ -179332,6 +179638,7 @@ export type RUMAppMonitorProps = {
|
|
|
179332
179638
|
* @pattern `[\.\-_/#A-Za-z0-9]+`
|
|
179333
179639
|
*/
|
|
179334
179640
|
Name: string;
|
|
179641
|
+
Platform?: "Web" | "Android" | "iOS";
|
|
179335
179642
|
/**
|
|
179336
179643
|
* A structure that defines resource policy attached to your app monitor.
|
|
179337
179644
|
*/
|
|
@@ -179515,11 +179822,57 @@ export type RUMAppMonitorMetricDefinition = {
|
|
|
179515
179822
|
|
|
179516
179823
|
WebVitalsLargestContentfulPaint
|
|
179517
179824
|
|
|
179825
|
+
WebVitalsInteractionToNextPaint
|
|
179826
|
+
|
|
179518
179827
|
JsErrorCount
|
|
179519
179828
|
|
|
179520
179829
|
HttpErrorCount
|
|
179521
179830
|
|
|
179522
179831
|
SessionCount
|
|
179832
|
+
|
|
179833
|
+
PageViewCount
|
|
179834
|
+
|
|
179835
|
+
Http4xxCount
|
|
179836
|
+
|
|
179837
|
+
Http5xxCount
|
|
179838
|
+
|
|
179839
|
+
SessionDuration
|
|
179840
|
+
|
|
179841
|
+
PageViewCountPerSession
|
|
179842
|
+
|
|
179843
|
+
JsErrorCountPerSession
|
|
179844
|
+
|
|
179845
|
+
Http4xxCountPerSession
|
|
179846
|
+
|
|
179847
|
+
Http5xxCountPerSession
|
|
179848
|
+
|
|
179849
|
+
JsErrorCountPerPageView
|
|
179850
|
+
|
|
179851
|
+
Http4xxCountPerPageView
|
|
179852
|
+
|
|
179853
|
+
Http5xxCountPerPageView
|
|
179854
|
+
|
|
179855
|
+
TimeOnPage
|
|
179856
|
+
|
|
179857
|
+
ColdLaunchTime
|
|
179858
|
+
|
|
179859
|
+
WarmLaunchTime
|
|
179860
|
+
|
|
179861
|
+
CrashCount
|
|
179862
|
+
|
|
179863
|
+
ANRCount
|
|
179864
|
+
|
|
179865
|
+
AppHangCount
|
|
179866
|
+
|
|
179867
|
+
ScreenLoadCount
|
|
179868
|
+
|
|
179869
|
+
ScreenLoadTime
|
|
179870
|
+
|
|
179871
|
+
NetworkLatency
|
|
179872
|
+
|
|
179873
|
+
SpanPayloadSize
|
|
179874
|
+
|
|
179875
|
+
LogEventPayloadSize
|
|
179523
179876
|
* @minLength `1`
|
|
179524
179877
|
* @maxLength `255`
|
|
179525
179878
|
*/
|
|
@@ -180136,6 +180489,16 @@ export type S3BucketAnalyticsConfiguration = {
|
|
|
180136
180489
|
*/
|
|
180137
180490
|
TagFilters?: S3BucketTagFilter[];
|
|
180138
180491
|
};
|
|
180492
|
+
/**
|
|
180493
|
+
* Type definition for `AWS::S3::Bucket.BlockedEncryptionTypes`.
|
|
180494
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-blockedencryptiontypes.html}
|
|
180495
|
+
*/
|
|
180496
|
+
export type S3BucketBlockedEncryptionTypes = {
|
|
180497
|
+
/**
|
|
180498
|
+
* List of encryption types.
|
|
180499
|
+
*/
|
|
180500
|
+
EncryptionType?: ("NONE" | "SSE-C")[];
|
|
180501
|
+
};
|
|
180139
180502
|
/**
|
|
180140
180503
|
* Type definition for `AWS::S3::Bucket.BucketEncryption`.
|
|
180141
180504
|
* 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*.
|
|
@@ -181162,6 +181525,7 @@ export type S3BucketServerSideEncryptionByDefault = {
|
|
|
181162
181525
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-serversideencryptionrule.html}
|
|
181163
181526
|
*/
|
|
181164
181527
|
export type S3BucketServerSideEncryptionRule = {
|
|
181528
|
+
BlockedEncryptionTypes?: S3BucketBlockedEncryptionTypes;
|
|
181165
181529
|
/**
|
|
181166
181530
|
* 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.
|
|
181167
181531
|
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*.
|
|
@@ -190827,6 +191191,12 @@ export type SageMakerNotebookInstanceLifecycleConfigNotebookInstanceLifecycleHoo
|
|
|
190827
191191
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html}
|
|
190828
191192
|
*/
|
|
190829
191193
|
export type SageMakerPartnerAppProps = {
|
|
191194
|
+
/**
|
|
191195
|
+
* The version of the PartnerApp.
|
|
191196
|
+
* @minLength `1`
|
|
191197
|
+
* @maxLength `64`
|
|
191198
|
+
*/
|
|
191199
|
+
AppVersion?: string;
|
|
190830
191200
|
/**
|
|
190831
191201
|
* A collection of settings that specify the maintenance schedule for the PartnerApp.
|
|
190832
191202
|
*/
|
|
@@ -190842,6 +191212,10 @@ export type SageMakerPartnerAppProps = {
|
|
|
190842
191212
|
* @pattern `^[a-zA-Z0-9-]+$`
|
|
190843
191213
|
*/
|
|
190844
191214
|
ClientToken?: string;
|
|
191215
|
+
/**
|
|
191216
|
+
* Enables automatic minor version upgrades for the PartnerApp.
|
|
191217
|
+
*/
|
|
191218
|
+
EnableAutoMinorVersionUpgrade?: boolean;
|
|
190845
191219
|
/**
|
|
190846
191220
|
* Enables IAM Session based Identity for PartnerApp.
|
|
190847
191221
|
*/
|
|
@@ -190904,6 +191278,10 @@ export type SageMakerPartnerAppAttributes = {
|
|
|
190904
191278
|
* @maxLength `2048`
|
|
190905
191279
|
*/
|
|
190906
191280
|
BaseUrl: string;
|
|
191281
|
+
/**
|
|
191282
|
+
* The end-of-life date for the current version of the PartnerApp.
|
|
191283
|
+
*/
|
|
191284
|
+
CurrentVersionEolDate: string;
|
|
190907
191285
|
};
|
|
190908
191286
|
/**
|
|
190909
191287
|
* Type definition for `AWS::SageMaker::PartnerApp.PartnerAppConfig`.
|
|
@@ -215123,6 +215501,7 @@ export interface ResourceTypes {
|
|
|
215123
215501
|
"AWS::CloudFront::AnycastIpList": CloudFrontAnycastIpListProps;
|
|
215124
215502
|
"AWS::CloudFront::CachePolicy": CloudFrontCachePolicyProps;
|
|
215125
215503
|
"AWS::CloudFront::CloudFrontOriginAccessIdentity": CloudFrontCloudFrontOriginAccessIdentityProps;
|
|
215504
|
+
"AWS::CloudFront::ConnectionFunction": CloudFrontConnectionFunctionProps;
|
|
215126
215505
|
"AWS::CloudFront::ConnectionGroup": CloudFrontConnectionGroupProps;
|
|
215127
215506
|
"AWS::CloudFront::ContinuousDeploymentPolicy": CloudFrontContinuousDeploymentPolicyProps;
|
|
215128
215507
|
"AWS::CloudFront::Distribution": CloudFrontDistributionProps;
|
|
@@ -215420,6 +215799,7 @@ export interface ResourceTypes {
|
|
|
215420
215799
|
"AWS::EC2::VPCEndpointServicePermissions": EC2VPCEndpointServicePermissionsProps;
|
|
215421
215800
|
"AWS::EC2::VPCGatewayAttachment": EC2VPCGatewayAttachmentProps;
|
|
215422
215801
|
"AWS::EC2::VPCPeeringConnection": EC2VPCPeeringConnectionProps;
|
|
215802
|
+
"AWS::EC2::VPNConcentrator": EC2VPNConcentratorProps;
|
|
215423
215803
|
"AWS::EC2::VPNConnection": EC2VPNConnectionProps;
|
|
215424
215804
|
"AWS::EC2::VPNConnectionRoute": EC2VPNConnectionRouteProps;
|
|
215425
215805
|
"AWS::EC2::VPNGateway": EC2VPNGatewayProps;
|
|
@@ -216586,6 +216966,7 @@ export interface AttributeTypes {
|
|
|
216586
216966
|
"AWS::CloudFront::AnycastIpList": CloudFrontAnycastIpListAttributes;
|
|
216587
216967
|
"AWS::CloudFront::CachePolicy": CloudFrontCachePolicyAttributes;
|
|
216588
216968
|
"AWS::CloudFront::CloudFrontOriginAccessIdentity": CloudFrontCloudFrontOriginAccessIdentityAttributes;
|
|
216969
|
+
"AWS::CloudFront::ConnectionFunction": CloudFrontConnectionFunctionAttributes;
|
|
216589
216970
|
"AWS::CloudFront::ConnectionGroup": CloudFrontConnectionGroupAttributes;
|
|
216590
216971
|
"AWS::CloudFront::ContinuousDeploymentPolicy": CloudFrontContinuousDeploymentPolicyAttributes;
|
|
216591
216972
|
"AWS::CloudFront::Distribution": CloudFrontDistributionAttributes;
|
|
@@ -216847,6 +217228,7 @@ export interface AttributeTypes {
|
|
|
216847
217228
|
"AWS::EC2::VPCEndpointService": EC2VPCEndpointServiceAttributes;
|
|
216848
217229
|
"AWS::EC2::VPCGatewayAttachment": EC2VPCGatewayAttachmentAttributes;
|
|
216849
217230
|
"AWS::EC2::VPCPeeringConnection": EC2VPCPeeringConnectionAttributes;
|
|
217231
|
+
"AWS::EC2::VPNConcentrator": EC2VPNConcentratorAttributes;
|
|
216850
217232
|
"AWS::EC2::VPNConnection": EC2VPNConnectionAttributes;
|
|
216851
217233
|
"AWS::EC2::VPNGateway": EC2VPNGatewayAttributes;
|
|
216852
217234
|
"AWS::EC2::VPNGatewayRoutePropagation": EC2VPNGatewayRoutePropagationAttributes;
|
|
@@ -217919,6 +218301,7 @@ export declare const ResourceType: {
|
|
|
217919
218301
|
readonly CloudFrontAnycastIpList: "AWS::CloudFront::AnycastIpList";
|
|
217920
218302
|
readonly CloudFrontCachePolicy: "AWS::CloudFront::CachePolicy";
|
|
217921
218303
|
readonly CloudFrontCloudFrontOriginAccessIdentity: "AWS::CloudFront::CloudFrontOriginAccessIdentity";
|
|
218304
|
+
readonly CloudFrontConnectionFunction: "AWS::CloudFront::ConnectionFunction";
|
|
217922
218305
|
readonly CloudFrontConnectionGroup: "AWS::CloudFront::ConnectionGroup";
|
|
217923
218306
|
readonly CloudFrontContinuousDeploymentPolicy: "AWS::CloudFront::ContinuousDeploymentPolicy";
|
|
217924
218307
|
readonly CloudFrontDistribution: "AWS::CloudFront::Distribution";
|
|
@@ -218216,6 +218599,7 @@ export declare const ResourceType: {
|
|
|
218216
218599
|
readonly EC2VPCEndpointServicePermissions: "AWS::EC2::VPCEndpointServicePermissions";
|
|
218217
218600
|
readonly EC2VPCGatewayAttachment: "AWS::EC2::VPCGatewayAttachment";
|
|
218218
218601
|
readonly EC2VPCPeeringConnection: "AWS::EC2::VPCPeeringConnection";
|
|
218602
|
+
readonly EC2VPNConcentrator: "AWS::EC2::VPNConcentrator";
|
|
218219
218603
|
readonly EC2VPNConnection: "AWS::EC2::VPNConnection";
|
|
218220
218604
|
readonly EC2VPNConnectionRoute: "AWS::EC2::VPNConnectionRoute";
|
|
218221
218605
|
readonly EC2VPNGateway: "AWS::EC2::VPNGateway";
|