@awboost/cfntypes 0.100.194 → 0.100.196
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/resources.generated.d.ts +504 -169
- package/lib/resources.generated.js +12 -23
- package/lib/resources.generated.js.map +1 -1
- package/package.json +1 -1
@@ -12891,6 +12891,10 @@ export type APSWorkspaceProps = {
|
|
12891
12891
|
* Logging configuration
|
12892
12892
|
*/
|
12893
12893
|
LoggingConfiguration?: APSWorkspaceLoggingConfiguration;
|
12894
|
+
/**
|
12895
|
+
* Query logging configuration
|
12896
|
+
*/
|
12897
|
+
QueryLoggingConfiguration?: APSWorkspaceQueryLoggingConfiguration;
|
12894
12898
|
/**
|
12895
12899
|
* An array of key-value pairs to apply to this resource.
|
12896
12900
|
*/
|
@@ -12924,6 +12928,19 @@ export type APSWorkspaceAttributes = {
|
|
12924
12928
|
*/
|
12925
12929
|
WorkspaceId: string;
|
12926
12930
|
};
|
12931
|
+
/**
|
12932
|
+
* Type definition for `AWS::APS::Workspace.CloudWatchLogDestination`.
|
12933
|
+
* Represents a cloudwatch logs destination for query logging
|
12934
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-cloudwatchlogdestination.html}
|
12935
|
+
*/
|
12936
|
+
export type APSWorkspaceCloudWatchLogDestination = {
|
12937
|
+
/**
|
12938
|
+
* The ARN of the CloudWatch Logs log group
|
12939
|
+
* @minLength `0`
|
12940
|
+
* @maxLength `512`
|
12941
|
+
*/
|
12942
|
+
LogGroupArn: string;
|
12943
|
+
};
|
12927
12944
|
/**
|
12928
12945
|
* Type definition for `AWS::APS::Workspace.Label`.
|
12929
12946
|
* Series label
|
@@ -12983,6 +13000,46 @@ export type APSWorkspaceLoggingConfiguration = {
|
|
12983
13000
|
*/
|
12984
13001
|
LogGroupArn?: string;
|
12985
13002
|
};
|
13003
|
+
/**
|
13004
|
+
* Type definition for `AWS::APS::Workspace.LoggingDestination`.
|
13005
|
+
* Destinations for query logging
|
13006
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-loggingdestination.html}
|
13007
|
+
*/
|
13008
|
+
export type APSWorkspaceLoggingDestination = {
|
13009
|
+
/**
|
13010
|
+
* Represents a cloudwatch logs destination for query logging
|
13011
|
+
*/
|
13012
|
+
CloudWatchLogs: APSWorkspaceCloudWatchLogDestination;
|
13013
|
+
/**
|
13014
|
+
* Filters for logging
|
13015
|
+
*/
|
13016
|
+
Filters: APSWorkspaceLoggingFilter;
|
13017
|
+
};
|
13018
|
+
/**
|
13019
|
+
* Type definition for `AWS::APS::Workspace.LoggingFilter`.
|
13020
|
+
* Filters for logging
|
13021
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-loggingfilter.html}
|
13022
|
+
*/
|
13023
|
+
export type APSWorkspaceLoggingFilter = {
|
13024
|
+
/**
|
13025
|
+
* Query logs with QSP above this limit are vended
|
13026
|
+
* @min `0`
|
13027
|
+
*/
|
13028
|
+
QspThreshold: number;
|
13029
|
+
};
|
13030
|
+
/**
|
13031
|
+
* Type definition for `AWS::APS::Workspace.QueryLoggingConfiguration`.
|
13032
|
+
* Query logging configuration
|
13033
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-queryloggingconfiguration.html}
|
13034
|
+
*/
|
13035
|
+
export type APSWorkspaceQueryLoggingConfiguration = {
|
13036
|
+
/**
|
13037
|
+
* The destinations configuration for query logging
|
13038
|
+
* @minLength `1`
|
13039
|
+
* @maxLength `1`
|
13040
|
+
*/
|
13041
|
+
Destinations: APSWorkspaceLoggingDestination[];
|
13042
|
+
};
|
12986
13043
|
/**
|
12987
13044
|
* Type definition for `AWS::APS::Workspace.Tag`.
|
12988
13045
|
* A key-value pair to associate with a resource.
|
@@ -20096,7 +20153,7 @@ export type BedrockFlowFlowNode = {
|
|
20096
20153
|
Configuration?: BedrockFlowFlowNodeConfiguration;
|
20097
20154
|
/**
|
20098
20155
|
* List of node inputs in a flow
|
20099
|
-
* @maxLength `
|
20156
|
+
* @maxLength `20`
|
20100
20157
|
*/
|
20101
20158
|
Inputs?: BedrockFlowFlowNodeInput[];
|
20102
20159
|
/**
|
@@ -20179,6 +20236,11 @@ export type BedrockFlowFlowNodeConfiguration = {
|
|
20179
20236
|
* Retrieval flow node configuration
|
20180
20237
|
*/
|
20181
20238
|
Retrieval: BedrockFlowRetrievalFlowNodeConfiguration;
|
20239
|
+
} | {
|
20240
|
+
/**
|
20241
|
+
* Inline code config strucuture, contains code configs
|
20242
|
+
*/
|
20243
|
+
InlineCode: BedrockFlowInlineCodeFlowNodeConfiguration;
|
20182
20244
|
};
|
20183
20245
|
/**
|
20184
20246
|
* Type definition for `AWS::Bedrock::Flow.FlowNodeInput`.
|
@@ -20229,7 +20291,7 @@ export type BedrockFlowFlowNodeOutput = {
|
|
20229
20291
|
* Flow node types
|
20230
20292
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-flownodetype.html}
|
20231
20293
|
*/
|
20232
|
-
export type BedrockFlowFlowNodeType = "Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Agent" | "Storage" | "Retrieval" | "Iterator" | "Collector";
|
20294
|
+
export type BedrockFlowFlowNodeType = "Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Agent" | "Storage" | "Retrieval" | "Iterator" | "Collector" | "InlineCode";
|
20233
20295
|
/**
|
20234
20296
|
* Type definition for `AWS::Bedrock::Flow.FlowStatus`.
|
20235
20297
|
* Schema Type for Flow APIs
|
@@ -20265,6 +20327,22 @@ export type BedrockFlowGuardrailConfiguration = {
|
|
20265
20327
|
*/
|
20266
20328
|
GuardrailVersion?: string;
|
20267
20329
|
};
|
20330
|
+
/**
|
20331
|
+
* Type definition for `AWS::Bedrock::Flow.InlineCodeFlowNodeConfiguration`.
|
20332
|
+
* Inline code config strucuture, contains code configs
|
20333
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-inlinecodeflownodeconfiguration.html}
|
20334
|
+
*/
|
20335
|
+
export type BedrockFlowInlineCodeFlowNodeConfiguration = {
|
20336
|
+
/**
|
20337
|
+
* The inline code entered by customers. max size is 5MB.
|
20338
|
+
* @maxLength `5000000`
|
20339
|
+
*/
|
20340
|
+
Code: string;
|
20341
|
+
/**
|
20342
|
+
* Enum encodes the supported language type
|
20343
|
+
*/
|
20344
|
+
Language: BedrockFlowSupportedLanguages;
|
20345
|
+
};
|
20268
20346
|
/**
|
20269
20347
|
* Type definition for `AWS::Bedrock::Flow.InputFlowNodeConfiguration`.
|
20270
20348
|
* Input flow node configuration
|
@@ -20557,6 +20635,12 @@ export type BedrockFlowStorageFlowNodeServiceConfiguration = {
|
|
20557
20635
|
*/
|
20558
20636
|
S3?: BedrockFlowStorageFlowNodeS3Configuration;
|
20559
20637
|
};
|
20638
|
+
/**
|
20639
|
+
* Type definition for `AWS::Bedrock::Flow.SupportedLanguages`.
|
20640
|
+
* Enum encodes the supported language type
|
20641
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-supportedlanguages.html}
|
20642
|
+
*/
|
20643
|
+
export type BedrockFlowSupportedLanguages = "Python_3";
|
20560
20644
|
/**
|
20561
20645
|
* Type definition for `AWS::Bedrock::Flow.TagsMap`.
|
20562
20646
|
* A map of tag keys and values
|
@@ -20587,6 +20671,7 @@ export type BedrockFlowTextPromptTemplateConfiguration = {
|
|
20587
20671
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-flowalias.html}
|
20588
20672
|
*/
|
20589
20673
|
export type BedrockFlowAliasProps = {
|
20674
|
+
ConcurrencyConfiguration?: BedrockFlowAliasFlowAliasConcurrencyConfiguration;
|
20590
20675
|
/**
|
20591
20676
|
* Description of the Resource.
|
20592
20677
|
* @minLength `1`
|
@@ -20647,6 +20732,24 @@ export type BedrockFlowAliasAttributes = {
|
|
20647
20732
|
*/
|
20648
20733
|
UpdatedAt: string;
|
20649
20734
|
};
|
20735
|
+
/**
|
20736
|
+
* Type definition for `AWS::Bedrock::FlowAlias.ConcurrencyType`.
|
20737
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowalias-concurrencytype.html}
|
20738
|
+
*/
|
20739
|
+
export type BedrockFlowAliasConcurrencyType = "Automatic" | "Manual";
|
20740
|
+
/**
|
20741
|
+
* Type definition for `AWS::Bedrock::FlowAlias.FlowAliasConcurrencyConfiguration`.
|
20742
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowalias-flowaliasconcurrencyconfiguration.html}
|
20743
|
+
*/
|
20744
|
+
export type BedrockFlowAliasFlowAliasConcurrencyConfiguration = {
|
20745
|
+
/**
|
20746
|
+
* Number of nodes executed concurrently at a time
|
20747
|
+
* @min `1`
|
20748
|
+
* @max `100`
|
20749
|
+
*/
|
20750
|
+
MaxConcurrency?: number;
|
20751
|
+
Type: BedrockFlowAliasConcurrencyType;
|
20752
|
+
};
|
20650
20753
|
/**
|
20651
20754
|
* Type definition for `AWS::Bedrock::FlowAlias.FlowAliasRoutingConfigurationListItem`.
|
20652
20755
|
* Details about the routing configuration for a Flow alias.
|
@@ -21058,6 +21161,11 @@ export type BedrockFlowVersionFlowNodeConfiguration = {
|
|
21058
21161
|
* Collector flow node configuration
|
21059
21162
|
*/
|
21060
21163
|
Collector: BedrockFlowVersionCollectorFlowNodeConfiguration;
|
21164
|
+
} | {
|
21165
|
+
/**
|
21166
|
+
* Inline code config strucuture, contains code configs
|
21167
|
+
*/
|
21168
|
+
InlineCode: BedrockFlowVersionInlineCodeFlowNodeConfiguration;
|
21061
21169
|
};
|
21062
21170
|
/**
|
21063
21171
|
* Type definition for `AWS::Bedrock::FlowVersion.FlowNodeInput`.
|
@@ -21108,7 +21216,7 @@ export type BedrockFlowVersionFlowNodeOutput = {
|
|
21108
21216
|
* Flow node types
|
21109
21217
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-flownodetype.html}
|
21110
21218
|
*/
|
21111
|
-
export type BedrockFlowVersionFlowNodeType = "Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Agent" | "Iterator" | "Collector" | "Storage" | "Retrieval";
|
21219
|
+
export type BedrockFlowVersionFlowNodeType = "Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Agent" | "Iterator" | "Collector" | "Storage" | "Retrieval" | "InlineCode";
|
21112
21220
|
/**
|
21113
21221
|
* Type definition for `AWS::Bedrock::FlowVersion.FlowStatus`.
|
21114
21222
|
* Schema Type for Flow APIs
|
@@ -21133,6 +21241,22 @@ export type BedrockFlowVersionGuardrailConfiguration = {
|
|
21133
21241
|
*/
|
21134
21242
|
GuardrailVersion?: string;
|
21135
21243
|
};
|
21244
|
+
/**
|
21245
|
+
* Type definition for `AWS::Bedrock::FlowVersion.InlineCodeFlowNodeConfiguration`.
|
21246
|
+
* Inline code config strucuture, contains code configs
|
21247
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-inlinecodeflownodeconfiguration.html}
|
21248
|
+
*/
|
21249
|
+
export type BedrockFlowVersionInlineCodeFlowNodeConfiguration = {
|
21250
|
+
/**
|
21251
|
+
* The inline code entered by customers. max size is 5MB.
|
21252
|
+
* @maxLength `5000000`
|
21253
|
+
*/
|
21254
|
+
Code: string;
|
21255
|
+
/**
|
21256
|
+
* Enum encodes the supported language type
|
21257
|
+
*/
|
21258
|
+
Language: BedrockFlowVersionSupportedLanguages;
|
21259
|
+
};
|
21136
21260
|
/**
|
21137
21261
|
* Type definition for `AWS::Bedrock::FlowVersion.InputFlowNodeConfiguration`.
|
21138
21262
|
* Input flow node configuration
|
@@ -21399,6 +21523,12 @@ export type BedrockFlowVersionStorageFlowNodeServiceConfiguration = {
|
|
21399
21523
|
*/
|
21400
21524
|
S3?: BedrockFlowVersionStorageFlowNodeS3Configuration;
|
21401
21525
|
};
|
21526
|
+
/**
|
21527
|
+
* Type definition for `AWS::Bedrock::FlowVersion.SupportedLanguages`.
|
21528
|
+
* Enum encodes the supported language type
|
21529
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-supportedlanguages.html}
|
21530
|
+
*/
|
21531
|
+
export type BedrockFlowVersionSupportedLanguages = "Python_3";
|
21402
21532
|
/**
|
21403
21533
|
* Type definition for `AWS::Bedrock::FlowVersion.TextPromptTemplateConfiguration`.
|
21404
21534
|
* Configuration for text prompt template
|
@@ -23188,7 +23318,7 @@ export type BedrockPromptPromptModelInferenceConfiguration = {
|
|
23188
23318
|
/**
|
23189
23319
|
* Maximum length of output
|
23190
23320
|
* @min `0`
|
23191
|
-
* @max `
|
23321
|
+
* @max `512000`
|
23192
23322
|
*/
|
23193
23323
|
MaxTokens?: number;
|
23194
23324
|
/**
|
@@ -43787,16 +43917,16 @@ export type DataSyncAgentTag = {
|
|
43787
43917
|
Value: string;
|
43788
43918
|
};
|
43789
43919
|
/**
|
43790
|
-
* Resource
|
43920
|
+
* Resource Type definition for AWS::DataSync::LocationAzureBlob.
|
43791
43921
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationazureblob.html}
|
43792
43922
|
*/
|
43793
43923
|
export type DataSyncLocationAzureBlobProps = {
|
43794
43924
|
/**
|
43795
|
-
*
|
43925
|
+
* Specifies the Amazon Resource Name (ARN) of the DataSync agent that can connect with your Azure Blob Storage container. If you are setting up an agentless cross-cloud transfer, you do not need to specify a value for this parameter.
|
43796
43926
|
* @minLength `1`
|
43797
43927
|
* @maxLength `4`
|
43798
43928
|
*/
|
43799
|
-
AgentArns
|
43929
|
+
AgentArns?: string[];
|
43800
43930
|
/**
|
43801
43931
|
* Specifies an access tier for the objects you're transferring into your Azure Blob Storage container.
|
43802
43932
|
*/
|
@@ -43804,7 +43934,7 @@ export type DataSyncLocationAzureBlobProps = {
|
|
43804
43934
|
/**
|
43805
43935
|
* The specific authentication type that you want DataSync to use to access your Azure Blob Container.
|
43806
43936
|
*/
|
43807
|
-
AzureBlobAuthenticationType: "SAS";
|
43937
|
+
AzureBlobAuthenticationType: "SAS" | "NONE";
|
43808
43938
|
/**
|
43809
43939
|
* The URL of the Azure Blob container that was described.
|
43810
43940
|
* @maxLength `325`
|
@@ -43819,6 +43949,14 @@ export type DataSyncLocationAzureBlobProps = {
|
|
43819
43949
|
* Specifies a blob type for the objects you're transferring into your Azure Blob Storage container.
|
43820
43950
|
*/
|
43821
43951
|
AzureBlobType?: "BLOCK";
|
43952
|
+
/**
|
43953
|
+
* Specifies configuration information for a DataSync-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location, and a customer-managed AWS KMS key.
|
43954
|
+
*/
|
43955
|
+
CmkSecretConfig?: DataSyncLocationAzureBlobCmkSecretConfig;
|
43956
|
+
/**
|
43957
|
+
* Specifies configuration information for a customer-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location, and an IAM role that DataSync can assume and access the customer-managed secret.
|
43958
|
+
*/
|
43959
|
+
CustomSecretConfig?: DataSyncLocationAzureBlobCustomSecretConfig;
|
43822
43960
|
/**
|
43823
43961
|
* The subdirectory in the Azure Blob Container that is used to read data from the Azure Blob Source Location.
|
43824
43962
|
* @maxLength `1024`
|
@@ -43836,6 +43974,17 @@ export type DataSyncLocationAzureBlobProps = {
|
|
43836
43974
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationazureblob.html#aws-resource-datasync-locationazureblob-return-values}
|
43837
43975
|
*/
|
43838
43976
|
export type DataSyncLocationAzureBlobAttributes = {
|
43977
|
+
/**
|
43978
|
+
* Specifies configuration information for a DataSync-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location, and a customer-managed AWS KMS key.
|
43979
|
+
*/
|
43980
|
+
CmkSecretConfig: {
|
43981
|
+
/**
|
43982
|
+
* Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.
|
43983
|
+
* @maxLength `2048`
|
43984
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
43985
|
+
*/
|
43986
|
+
SecretArn: string;
|
43987
|
+
};
|
43839
43988
|
/**
|
43840
43989
|
* The Amazon Resource Name (ARN) of the Azure Blob Location that is created.
|
43841
43990
|
* @maxLength `128`
|
@@ -43848,6 +43997,17 @@ export type DataSyncLocationAzureBlobAttributes = {
|
|
43848
43997
|
* @pattern `^(azure-blob)://[a-zA-Z0-9./\-]+$`
|
43849
43998
|
*/
|
43850
43999
|
LocationUri: string;
|
44000
|
+
/**
|
44001
|
+
* Specifies configuration information for a DataSync-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location. DataSync uses the default AWS-managed KMS key to encrypt this secret in AWS Secrets Manager.
|
44002
|
+
*/
|
44003
|
+
ManagedSecretConfig: {
|
44004
|
+
/**
|
44005
|
+
* Specifies the ARN for an AWS Secrets Manager secret.
|
44006
|
+
* @maxLength `2048`
|
44007
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
44008
|
+
*/
|
44009
|
+
SecretArn: string;
|
44010
|
+
};
|
43851
44011
|
};
|
43852
44012
|
/**
|
43853
44013
|
* Type definition for `AWS::DataSync::LocationAzureBlob.AzureBlobSasConfiguration`.
|
@@ -43863,6 +44023,51 @@ export type DataSyncLocationAzureBlobAzureBlobSasConfiguration = {
|
|
43863
44023
|
*/
|
43864
44024
|
AzureBlobSasToken: string;
|
43865
44025
|
};
|
44026
|
+
/**
|
44027
|
+
* Type definition for `AWS::DataSync::LocationAzureBlob.CmkSecretConfig`.
|
44028
|
+
* Specifies configuration information for a DataSync-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location, and a customer-managed AWS KMS key.
|
44029
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationazureblob-cmksecretconfig.html}
|
44030
|
+
*/
|
44031
|
+
export type DataSyncLocationAzureBlobCmkSecretConfig = {
|
44032
|
+
/**
|
44033
|
+
* Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager.
|
44034
|
+
* @maxLength `2048`
|
44035
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
44036
|
+
*/
|
44037
|
+
KmsKeyArn?: string;
|
44038
|
+
};
|
44039
|
+
/**
|
44040
|
+
* Type definition for `AWS::DataSync::LocationAzureBlob.CustomSecretConfig`.
|
44041
|
+
* Specifies configuration information for a customer-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location, and an IAM role that DataSync can assume and access the customer-managed secret.
|
44042
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationazureblob-customsecretconfig.html}
|
44043
|
+
*/
|
44044
|
+
export type DataSyncLocationAzureBlobCustomSecretConfig = {
|
44045
|
+
/**
|
44046
|
+
* Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
|
44047
|
+
* @maxLength `2048`
|
44048
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
44049
|
+
*/
|
44050
|
+
SecretAccessRoleArn: string;
|
44051
|
+
/**
|
44052
|
+
* Specifies the ARN for a customer created AWS Secrets Manager secret.
|
44053
|
+
* @maxLength `2048`
|
44054
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
44055
|
+
*/
|
44056
|
+
SecretArn: string;
|
44057
|
+
};
|
44058
|
+
/**
|
44059
|
+
* Type definition for `AWS::DataSync::LocationAzureBlob.ManagedSecretConfig`.
|
44060
|
+
* Specifies configuration information for a DataSync-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location. DataSync uses the default AWS-managed KMS key to encrypt this secret in AWS Secrets Manager.
|
44061
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationazureblob-managedsecretconfig.html}
|
44062
|
+
*/
|
44063
|
+
export type DataSyncLocationAzureBlobManagedSecretConfig = {
|
44064
|
+
/**
|
44065
|
+
* Specifies the ARN for an AWS Secrets Manager secret.
|
44066
|
+
* @maxLength `2048`
|
44067
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
44068
|
+
*/
|
44069
|
+
SecretArn: string;
|
44070
|
+
};
|
43866
44071
|
/**
|
43867
44072
|
* Type definition for `AWS::DataSync::LocationAzureBlob.Tag`.
|
43868
44073
|
* A key-value pair to associate with a resource.
|
@@ -44645,7 +44850,7 @@ export type DataSyncLocationNFSTag = {
|
|
44645
44850
|
Value: string;
|
44646
44851
|
};
|
44647
44852
|
/**
|
44648
|
-
* Resource
|
44853
|
+
* Resource Type definition for AWS::DataSync::LocationObjectStorage.
|
44649
44854
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationobjectstorage.html}
|
44650
44855
|
*/
|
44651
44856
|
export type DataSyncLocationObjectStorageProps = {
|
@@ -44657,11 +44862,11 @@ export type DataSyncLocationObjectStorageProps = {
|
|
44657
44862
|
*/
|
44658
44863
|
AccessKey?: string;
|
44659
44864
|
/**
|
44660
|
-
*
|
44865
|
+
* Specifies the Amazon Resource Names (ARNs) of the DataSync agents that can connect with your object storage system. If you are setting up an agentless cross-cloud transfer, you do not need to specify a value for this parameter.
|
44661
44866
|
* @minLength `1`
|
44662
44867
|
* @maxLength `4`
|
44663
44868
|
*/
|
44664
|
-
AgentArns
|
44869
|
+
AgentArns?: string[];
|
44665
44870
|
/**
|
44666
44871
|
* The name of the bucket on the self-managed object storage server.
|
44667
44872
|
* @minLength `3`
|
@@ -44669,6 +44874,14 @@ export type DataSyncLocationObjectStorageProps = {
|
|
44669
44874
|
* @pattern `^[a-zA-Z0-9_\-\+\./\(\)\$\p{Zs}]+$`
|
44670
44875
|
*/
|
44671
44876
|
BucketName?: string;
|
44877
|
+
/**
|
44878
|
+
* Specifies configuration information for a DataSync-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location, and a customer-managed AWS KMS key.
|
44879
|
+
*/
|
44880
|
+
CmkSecretConfig?: DataSyncLocationObjectStorageCmkSecretConfig;
|
44881
|
+
/**
|
44882
|
+
* Specifies configuration information for a customer-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location, and an IAM role that DataSync can assume and access the customer-managed secret.
|
44883
|
+
*/
|
44884
|
+
CustomSecretConfig?: DataSyncLocationObjectStorageCustomSecretConfig;
|
44672
44885
|
/**
|
44673
44886
|
* Optional. The secret key is used if credentials are required to access the self-managed object storage server.
|
44674
44887
|
* @minLength `8`
|
@@ -44714,6 +44927,17 @@ export type DataSyncLocationObjectStorageProps = {
|
|
44714
44927
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationobjectstorage.html#aws-resource-datasync-locationobjectstorage-return-values}
|
44715
44928
|
*/
|
44716
44929
|
export type DataSyncLocationObjectStorageAttributes = {
|
44930
|
+
/**
|
44931
|
+
* Specifies configuration information for a DataSync-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location, and a customer-managed AWS KMS key.
|
44932
|
+
*/
|
44933
|
+
CmkSecretConfig: {
|
44934
|
+
/**
|
44935
|
+
* Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.
|
44936
|
+
* @maxLength `2048`
|
44937
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
44938
|
+
*/
|
44939
|
+
SecretArn: string;
|
44940
|
+
};
|
44717
44941
|
/**
|
44718
44942
|
* The Amazon Resource Name (ARN) of the location that is created.
|
44719
44943
|
* @maxLength `128`
|
@@ -44726,6 +44950,62 @@ export type DataSyncLocationObjectStorageAttributes = {
|
|
44726
44950
|
* @pattern `^(efs|nfs|s3|smb|fsxw|object-storage)://[a-zA-Z0-9./\-]+$`
|
44727
44951
|
*/
|
44728
44952
|
LocationUri: string;
|
44953
|
+
/**
|
44954
|
+
* Specifies configuration information for a DataSync-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location. DataSync uses the default AWS-managed KMS key to encrypt this secret in AWS Secrets Manager.
|
44955
|
+
*/
|
44956
|
+
ManagedSecretConfig: {
|
44957
|
+
/**
|
44958
|
+
* Specifies the ARN for an AWS Secrets Manager secret.
|
44959
|
+
* @maxLength `2048`
|
44960
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
44961
|
+
*/
|
44962
|
+
SecretArn: string;
|
44963
|
+
};
|
44964
|
+
};
|
44965
|
+
/**
|
44966
|
+
* Type definition for `AWS::DataSync::LocationObjectStorage.CmkSecretConfig`.
|
44967
|
+
* Specifies configuration information for a DataSync-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location, and a customer-managed AWS KMS key.
|
44968
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationobjectstorage-cmksecretconfig.html}
|
44969
|
+
*/
|
44970
|
+
export type DataSyncLocationObjectStorageCmkSecretConfig = {
|
44971
|
+
/**
|
44972
|
+
* Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager.
|
44973
|
+
* @maxLength `2048`
|
44974
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
44975
|
+
*/
|
44976
|
+
KmsKeyArn?: string;
|
44977
|
+
};
|
44978
|
+
/**
|
44979
|
+
* Type definition for `AWS::DataSync::LocationObjectStorage.CustomSecretConfig`.
|
44980
|
+
* Specifies configuration information for a customer-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location, and an IAM role that DataSync can assume and access the customer-managed secret.
|
44981
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationobjectstorage-customsecretconfig.html}
|
44982
|
+
*/
|
44983
|
+
export type DataSyncLocationObjectStorageCustomSecretConfig = {
|
44984
|
+
/**
|
44985
|
+
* Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
|
44986
|
+
* @maxLength `2048`
|
44987
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
44988
|
+
*/
|
44989
|
+
SecretAccessRoleArn: string;
|
44990
|
+
/**
|
44991
|
+
* Specifies the ARN for a customer created AWS Secrets Manager secret.
|
44992
|
+
* @maxLength `2048`
|
44993
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
44994
|
+
*/
|
44995
|
+
SecretArn: string;
|
44996
|
+
};
|
44997
|
+
/**
|
44998
|
+
* Type definition for `AWS::DataSync::LocationObjectStorage.ManagedSecretConfig`.
|
44999
|
+
* Specifies configuration information for a DataSync-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location. DataSync uses the default AWS-managed KMS key to encrypt this secret in AWS Secrets Manager.
|
45000
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationobjectstorage-managedsecretconfig.html}
|
45001
|
+
*/
|
45002
|
+
export type DataSyncLocationObjectStorageManagedSecretConfig = {
|
45003
|
+
/**
|
45004
|
+
* Specifies the ARN for an AWS Secrets Manager secret.
|
45005
|
+
* @maxLength `2048`
|
45006
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
45007
|
+
*/
|
45008
|
+
SecretArn: string;
|
44729
45009
|
};
|
44730
45010
|
/**
|
44731
45011
|
* Type definition for `AWS::DataSync::LocationObjectStorage.Tag`.
|
@@ -47597,6 +47877,7 @@ export type DeadlineFleetProps = {
|
|
47597
47877
|
* @pattern `^farm-[0-9a-f]{32}$`
|
47598
47878
|
*/
|
47599
47879
|
FarmId: string;
|
47880
|
+
HostConfiguration?: DeadlineFleetHostConfiguration;
|
47600
47881
|
/**
|
47601
47882
|
* @min `0`
|
47602
47883
|
* @max `2147483647`
|
@@ -47746,6 +48027,7 @@ export type DeadlineFleetCustomerManagedFleetConfiguration = {
|
|
47746
48027
|
* @pattern `^sp-[0-9a-f]{32}$`
|
47747
48028
|
*/
|
47748
48029
|
StorageProfileId?: string;
|
48030
|
+
TagPropagationMode?: DeadlineFleetTagPropagationMode;
|
47749
48031
|
WorkerCapabilities: DeadlineFleetCustomerManagedWorkerCapabilities;
|
47750
48032
|
};
|
47751
48033
|
/**
|
@@ -47859,6 +48141,22 @@ export type DeadlineFleetFleetConfiguration = {
|
|
47859
48141
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-fleetstatus.html}
|
47860
48142
|
*/
|
47861
48143
|
export type DeadlineFleetFleetStatus = "ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED";
|
48144
|
+
/**
|
48145
|
+
* Type definition for `AWS::Deadline::Fleet.HostConfiguration`.
|
48146
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-hostconfiguration.html}
|
48147
|
+
*/
|
48148
|
+
export type DeadlineFleetHostConfiguration = {
|
48149
|
+
/**
|
48150
|
+
* @minLength `0`
|
48151
|
+
* @maxLength `15000`
|
48152
|
+
*/
|
48153
|
+
ScriptBody: string;
|
48154
|
+
/**
|
48155
|
+
* @min `300`
|
48156
|
+
* @max `3600`
|
48157
|
+
*/
|
48158
|
+
ScriptTimeoutSeconds?: number;
|
48159
|
+
};
|
47862
48160
|
/**
|
47863
48161
|
* Type definition for `AWS::Deadline::Fleet.MemoryMiBRange`.
|
47864
48162
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-memorymibrange.html}
|
@@ -47946,6 +48244,11 @@ export type DeadlineFleetTag = {
|
|
47946
48244
|
*/
|
47947
48245
|
Value: string;
|
47948
48246
|
};
|
48247
|
+
/**
|
48248
|
+
* Type definition for `AWS::Deadline::Fleet.TagPropagationMode`.
|
48249
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-tagpropagationmode.html}
|
48250
|
+
*/
|
48251
|
+
export type DeadlineFleetTagPropagationMode = "NO_PROPAGATION" | "PROPAGATE_TAGS_TO_WORKERS_AT_LAUNCH";
|
47949
48252
|
/**
|
47950
48253
|
* Type definition for `AWS::Deadline::Fleet.VCpuCountRange`.
|
47951
48254
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-vcpucountrange.html}
|
@@ -52483,6 +52786,10 @@ export type EC2InstanceProps = {
|
|
52483
52786
|
* The license configurations.
|
52484
52787
|
*/
|
52485
52788
|
LicenseSpecifications?: EC2InstanceLicenseSpecification[];
|
52789
|
+
/**
|
52790
|
+
* The metadata options for the instance
|
52791
|
+
*/
|
52792
|
+
MetadataOptions?: EC2InstanceMetadataOptions;
|
52486
52793
|
/**
|
52487
52794
|
* Specifies whether detailed monitoring is enabled for the instance.
|
52488
52795
|
*/
|
@@ -52746,6 +53053,34 @@ export type EC2InstanceLicenseSpecification = {
|
|
52746
53053
|
*/
|
52747
53054
|
LicenseConfigurationArn: string;
|
52748
53055
|
};
|
53056
|
+
/**
|
53057
|
+
* Type definition for `AWS::EC2::Instance.MetadataOptions`.
|
53058
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-metadataoptions.html}
|
53059
|
+
*/
|
53060
|
+
export type EC2InstanceMetadataOptions = {
|
53061
|
+
/**
|
53062
|
+
* Enables or disables the HTTP metadata endpoint on your instances. If you specify a value of disabled, you cannot access your instance metadata.
|
53063
|
+
*/
|
53064
|
+
HttpEndpoint?: "disabled" | "enabled";
|
53065
|
+
/**
|
53066
|
+
* Enables or disables the IPv6 endpoint for the instance metadata service. To use this option, the instance must be a Nitro-based instance launched in a subnet that supports IPv6.
|
53067
|
+
*/
|
53068
|
+
HttpProtocolIpv6?: "disabled" | "enabled";
|
53069
|
+
/**
|
53070
|
+
* The number of network hops that the metadata token can travel. Maximum is 64.
|
53071
|
+
* @min `1`
|
53072
|
+
* @max `64`
|
53073
|
+
*/
|
53074
|
+
HttpPutResponseHopLimit?: number;
|
53075
|
+
/**
|
53076
|
+
* Indicates whether IMDSv2 is required.
|
53077
|
+
*/
|
53078
|
+
HttpTokens?: "optional" | "required";
|
53079
|
+
/**
|
53080
|
+
* Indicates whether tags from the instance are propagated to the EBS volumes.
|
53081
|
+
*/
|
53082
|
+
InstanceMetadataTags?: "disabled" | "enabled";
|
53083
|
+
};
|
52749
53084
|
/**
|
52750
53085
|
* Type definition for `AWS::EC2::Instance.NetworkInterface`.
|
52751
53086
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-networkinterface.html}
|
@@ -61238,12 +61573,14 @@ export type ECSClusterExecuteCommandLogConfiguration = {
|
|
61238
61573
|
*/
|
61239
61574
|
export type ECSClusterManagedStorageConfiguration = {
|
61240
61575
|
/**
|
61241
|
-
* Specify the KMSlong key ID for
|
61576
|
+
* Specify the KMSlong key ID for Fargate ephemeral storage.
|
61577
|
+
When you specify a ``fargateEphemeralStorageKmsKeyId``, AWS Fargate uses the key to encrypt data at rest in ephemeral storage. For more information about Fargate ephemeral storage encryption, see [Customer managed keys for Fargate ephemeral storage for Amazon ECS](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/fargate-storage-encryption.html) in the *Amazon Elastic Container Service Developer Guide*.
|
61242
61578
|
The key must be a single Region key.
|
61243
61579
|
*/
|
61244
61580
|
FargateEphemeralStorageKmsKeyId?: string;
|
61245
61581
|
/**
|
61246
|
-
* Specify a KMSlong key ID to encrypt
|
61582
|
+
* Specify a KMSlong key ID to encrypt Amazon ECS managed storage.
|
61583
|
+
When you specify a ``kmsKeyId``, Amazon ECS uses the key to encrypt data volumes managed by Amazon ECS that are attached to tasks in the cluster. The following data volumes are managed by Amazon ECS: Amazon EBS. For more information about encryption of Amazon EBS volumes attached to Amazon ECS tasks, see [Encrypt data stored in Amazon EBS volumes for Amazon ECS](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ebs-kms-encryption.html) in the *Amazon Elastic Container Service Developer Guide*.
|
61247
61584
|
The key must be a single Region key.
|
61248
61585
|
*/
|
61249
61586
|
KmsKeyId?: string;
|
@@ -62896,7 +63233,7 @@ export type ECSTaskDefinitionLogConfiguration = {
|
|
62896
63233
|
The options you can specify depend on the log driver. Some of the options you can specify when you use the ``awslogs`` log driver to route logs to Amazon CloudWatch include the following:
|
62897
63234
|
+ awslogs-create-group Required: No Specify whether you want the log group to be created automatically. If this option isn't specified, it defaults to false. Your IAM policy must include the logs:CreateLogGroup permission before you attempt to use awslogs-create-group. + awslogs-region Required: Yes Specify the Region that the awslogs log driver is to send your Docker logs to. You can choose to send all of your logs from clusters in different Regions to a single region in CloudWatch Logs. This is so that they're all visible in one location. Otherwise, you can separate them by Region for more granularity. Make sure that the specified log group exists in the Region that you specify with this option. + awslogs-group Required: Yes Make sure to specify a log group that the awslogs log driver sends its log streams to. + awslogs-stream-prefix Required: Yes, when using Fargate.Optional when using EC2. Use the awslogs-stream-prefix option to associate a log stream with the specified prefix, the container name, and the ID of the Amazon ECS task that the container belongs to. If you specify a prefix with this option, then the log stream takes the format prefix-name/container-name/ecs-task-id. If you don't specify a prefix with this option, then the log stream is named after the container ID that's assigned by the Docker daemon on the container instance. Because it's difficult to trace logs back to the container that sent them with just the Docker container ID (which is only available on the container instance), we recommend that you specify a prefix with this option. For Amazon ECS services, you can use the service name as the prefix. Doing so, you can trace log streams to the service that the container belongs to, the name of the container that sent them, and the ID of the task that the container belongs to. You must specify a stream-prefix for your logs to have your logs appear in the Log pane when using the Amazon ECS console. + awslogs-datetime-format Required: No This option defines a multiline start pattern in Python strftime format. A log message consists of a line that matches the pattern and any following lines that don’t match the pattern. The matched line is the delimiter between log messages. One example of a use case for using this format is for parsing output such as a stack dump, which might otherwise be logged in multiple entries. The correct pattern allows it to be captured in a single entry. For more information, see awslogs-datetime-format. You cannot configure both the awslogs-datetime-format and awslogs-multiline-pattern options. Multiline logging performs regular expression parsing and matching of all log messages. This might have a negative impact on logging performance. + awslogs-multiline-pattern Required: No This option defines a multiline start pattern that uses a regular expression. A log message consists of a line that matches the pattern and any following lines that don’t match the pattern. The matched line is the delimiter between log messages. For more information, see awslogs-multiline-pattern. This option is ignored if awslogs-datetime-format is also configured. You cannot configure both the awslogs-datetime-format and awslogs-multiline-pattern options. Multiline logging performs regular expression parsing and matching of all log messages. This might have a negative impact on logging performance.
|
62898
63235
|
The following options apply to all supported log drivers.
|
62899
|
-
+ mode Required: No Valid values: non-blocking | blocking This option defines the delivery mode of log messages from the container to the log driver specified using logDriver. The delivery mode you choose affects application availability when the flow of logs from container is interrupted. If you use the blocking mode and the flow of logs is interrupted, calls from container code to write to the stdout and stderr streams will block. The logging thread of the application will block as a result. This may cause the application to become unresponsive and lead to container healthcheck failure. If you use the non-blocking mode, the container's logs are instead stored in an in-memory intermediate buffer configured with the max-buffer-size option. This prevents the application from becoming unresponsive when logs cannot be sent. We recommend using this mode if you want to ensure service availability and are okay with some log loss. For more information, see Preventing log loss with non-blocking mode in the awslogs container log driver. You can set a default mode for all containers in a specific Region by using the defaultLogDriverMode account setting. If you don't specify the mode option or configure the account setting, Amazon ECS will default to the blocking mode. For more information about the account setting, see Default log driver mode in the Amazon Elastic Container Service Developer Guide. + max-buffer-size Required: No Default value: 1m When non-blocking mode is used, the max-buffer-size log option controls the size of the buffer that's used for intermediate message storage. Make sure to specify an adequate buffer size based on your application. When the buffer fills up, further logs cannot be stored. Logs that cannot be stored are lost.
|
63236
|
+
+ mode Required: No Valid values: non-blocking | blocking This option defines the delivery mode of log messages from the container to the log driver specified using logDriver. The delivery mode you choose affects application availability when the flow of logs from container is interrupted. If you use the blocking mode and the flow of logs is interrupted, calls from container code to write to the stdout and stderr streams will block. The logging thread of the application will block as a result. This may cause the application to become unresponsive and lead to container healthcheck failure. If you use the non-blocking mode, the container's logs are instead stored in an in-memory intermediate buffer configured with the max-buffer-size option. This prevents the application from becoming unresponsive when logs cannot be sent. We recommend using this mode if you want to ensure service availability and are okay with some log loss. For more information, see Preventing log loss with non-blocking mode in the awslogs container log driver. You can set a default mode for all containers in a specific Region by using the defaultLogDriverMode account setting. If you don't specify the mode option or configure the account setting, Amazon ECS will default to the blocking mode. For more information about the account setting, see Default log driver mode in the Amazon Elastic Container Service Developer Guide. On June 25, 2025, Amazon ECS is changing the default log driver mode from blocking to non-blocking to prioritize task availability over logging. To continue using the blocking mode after this change, do one of the following: Set the mode option in your container definition's logConfiguration as blocking. Set the defaultLogDriverMode account setting to blocking. + max-buffer-size Required: No Default value: 1m When non-blocking mode is used, the max-buffer-size log option controls the size of the buffer that's used for intermediate message storage. Make sure to specify an adequate buffer size based on your application. When the buffer fills up, further logs cannot be stored. Logs that cannot be stored are lost.
|
62900
63237
|
To route logs using the ``splunk`` log router, you need to specify a ``splunk-token`` and a ``splunk-url``.
|
62901
63238
|
When you use the ``awsfirelens`` log router to route logs to an AWS Service or AWS Partner Network destination for log storage and analytics, you can set the ``log-driver-buffer-limit`` option to limit the number of events that are buffered in memory, before being sent to the log router container. It can help to resolve potential log loss issue because high throughput might result in memory running out for the buffer inside of Docker.
|
62902
63239
|
Other options you can specify when using ``awsfirelens`` to route logs depend on the destination. When you export logs to Amazon Data Firehose, you can specify the AWS Region with ``region`` and a name for the log stream with ``delivery_stream``.
|
@@ -63131,7 +63468,7 @@ export type ECSTaskDefinitionSystemControl = {
|
|
63131
63468
|
/**
|
63132
63469
|
* The namespaced kernel parameter to set a ``value`` for.
|
63133
63470
|
Valid IPC namespace values: ``"kernel.msgmax" | "kernel.msgmnb" | "kernel.msgmni" | "kernel.sem" | "kernel.shmall" | "kernel.shmmax" | "kernel.shmmni" | "kernel.shm_rmid_forced"``, and ``Sysctls`` that start with ``"fs.mqueue.*"``
|
63134
|
-
Valid network namespace values: ``Sysctls`` that start with ``"net.*"``
|
63471
|
+
Valid network namespace values: ``Sysctls`` that start with ``"net.*"``. Only namespaced ``Sysctls`` that exist within the container starting with "net.* are accepted.
|
63135
63472
|
All of these values are supported by Fargate.
|
63136
63473
|
*/
|
63137
63474
|
Value?: string;
|
@@ -66034,9 +66371,8 @@ export type ElasticLoadBalancingV2ListenerProps = {
|
|
66034
66371
|
*/
|
66035
66372
|
Protocol?: string;
|
66036
66373
|
/**
|
66037
|
-
* [HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are supported.
|
66038
|
-
Updating the security policy can result in interruptions if the load balancer is handling a high volume of traffic.
|
66039
|
-
For more information, see [Security policies](https://docs.aws.amazon.com/elasticloadbalancing/latest/application/create-https-listener.html#describe-ssl-policies) in the *Application Load Balancers Guide* and [Security policies](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html#describe-ssl-policies) in the *Network Load Balancers Guide*.
|
66374
|
+
* [HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are supported. For more information, see [Security policies](https://docs.aws.amazon.com/elasticloadbalancing/latest/application/describe-ssl-policies.html) in the *Application Load Balancers Guide* and [Security policies](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/describe-ssl-policies.html) in the *Network Load Balancers Guide*.
|
66375
|
+
Updating the security policy can result in interruptions if the load balancer is handling a high volume of traffic. To decrease the possibility of an interruption if your load balancer is handling a high volume of traffic, create an additional load balancer or request an LCU reservation.
|
66040
66376
|
*/
|
66041
66377
|
SslPolicy?: string;
|
66042
66378
|
};
|
@@ -66832,8 +67168,9 @@ export type ElasticLoadBalancingV2LoadBalancerProps = {
|
|
66832
67168
|
*/
|
66833
67169
|
EnablePrefixForIpv6SourceNat?: string;
|
66834
67170
|
/**
|
66835
|
-
|
66836
|
-
|
67171
|
+
* Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through privatelink. The default is ``on``.
|
67172
|
+
You can't configure this property on a Network Load Balancer unless you associated a security group with the load balancer when you created it.
|
67173
|
+
*/
|
66837
67174
|
EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: string;
|
66838
67175
|
/**
|
66839
67176
|
* The IP address type. Internal load balancers must use ``ipv4``.
|
@@ -66842,6 +67179,9 @@ export type ElasticLoadBalancingV2LoadBalancerProps = {
|
|
66842
67179
|
[Network Load Balancers and Gateway Load Balancers] The possible values are ``ipv4`` (IPv4 addresses) and ``dualstack`` (IPv4 and IPv6 addresses).
|
66843
67180
|
*/
|
66844
67181
|
IpAddressType?: string;
|
67182
|
+
/**
|
67183
|
+
* The ID of the IPv4 IPAM pool.
|
67184
|
+
*/
|
66845
67185
|
Ipv4IpamPoolId?: string;
|
66846
67186
|
/**
|
66847
67187
|
* The load balancer attributes.
|
@@ -98655,7 +98995,7 @@ export type LakeFormationPermissionsTableWithColumnsResource = {
|
|
98655
98995
|
Name?: string;
|
98656
98996
|
};
|
98657
98997
|
/**
|
98658
|
-
* The ``AWS::LakeFormation::PrincipalPermissions`` resource represents the permissions that a principal has on a GLUDC resource (such as GLUlong databases or GLUlong tables). When you create a ``PrincipalPermissions`` resource, the permissions are granted via the LFlong
|
98998
|
+
* The ``AWS::LakeFormation::PrincipalPermissions`` resource represents the permissions that a principal has on a GLUDC resource (such as GLUlong databases or GLUlong tables). When you create a ``PrincipalPermissions`` resource, the permissions are granted via the LFlong``GrantPermissions`` API operation. When you delete a ``PrincipalPermissions`` resource, the permissions on principal-resource pair are revoked via the LFlong``RevokePermissions`` API operation.
|
98659
98999
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-principalpermissions.html}
|
98660
99000
|
*/
|
98661
99001
|
export type LakeFormationPrincipalPermissionsProps = {
|
@@ -101688,6 +102028,7 @@ export type LexBotSlot = {
|
|
101688
102028
|
Name: string;
|
101689
102029
|
ObfuscationSetting?: LexBotObfuscationSetting;
|
101690
102030
|
SlotTypeName: string;
|
102031
|
+
SubSlotSetting?: LexBotSubSlotSetting;
|
101691
102032
|
ValueElicitationSetting: LexBotSlotValueElicitationSetting;
|
101692
102033
|
};
|
101693
102034
|
/**
|
@@ -101858,6 +102199,19 @@ export type LexBotSlotValueSelectionSetting = {
|
|
101858
102199
|
RegexFilter?: LexBotSlotValueRegexFilter;
|
101859
102200
|
ResolutionStrategy: LexBotSlotValueResolutionStrategy;
|
101860
102201
|
};
|
102202
|
+
/**
|
102203
|
+
* Type definition for `AWS::Lex::Bot.Specifications`.
|
102204
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-specifications.html}
|
102205
|
+
*/
|
102206
|
+
export type LexBotSpecifications = {
|
102207
|
+
/**
|
102208
|
+
* @minLength `1`
|
102209
|
+
* @maxLength `25`
|
102210
|
+
* @pattern `^((AMAZON\.)[a-zA-Z_]+?|[0-9a-zA-Z]+)$`
|
102211
|
+
*/
|
102212
|
+
SlotTypeId: string;
|
102213
|
+
ValueElicitationSetting: LexBotSubSlotValueElicitationSetting;
|
102214
|
+
};
|
101861
102215
|
/**
|
101862
102216
|
* Type definition for `AWS::Lex::Bot.SSMLMessage`.
|
101863
102217
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-ssmlmessage.html}
|
@@ -101891,6 +102245,19 @@ export type LexBotStillWaitingResponseSpecification = {
|
|
101891
102245
|
*/
|
101892
102246
|
TimeoutInSeconds: number;
|
101893
102247
|
};
|
102248
|
+
/**
|
102249
|
+
* Type definition for `AWS::Lex::Bot.SubSlotSetting`.
|
102250
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-subslotsetting.html}
|
102251
|
+
*/
|
102252
|
+
export type LexBotSubSlotSetting = {
|
102253
|
+
/**
|
102254
|
+
* @minLength `1`
|
102255
|
+
* @maxLength `1000`
|
102256
|
+
* @pattern `[0-9A-Za-z_\-\s\(\)]+`
|
102257
|
+
*/
|
102258
|
+
Expression?: string;
|
102259
|
+
SlotSpecifications?: Record<string, LexBotSpecifications>;
|
102260
|
+
};
|
101894
102261
|
/**
|
101895
102262
|
* Type definition for `AWS::Lex::Bot.SubSlotTypeComposition`.
|
101896
102263
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-subslottypecomposition.html}
|
@@ -101909,6 +102276,16 @@ export type LexBotSubSlotTypeComposition = {
|
|
101909
102276
|
*/
|
101910
102277
|
SlotTypeId: string;
|
101911
102278
|
};
|
102279
|
+
/**
|
102280
|
+
* Type definition for `AWS::Lex::Bot.SubSlotValueElicitationSetting`.
|
102281
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-subslotvalueelicitationsetting.html}
|
102282
|
+
*/
|
102283
|
+
export type LexBotSubSlotValueElicitationSetting = {
|
102284
|
+
DefaultValueSpecification?: LexBotSlotDefaultValueSpecification;
|
102285
|
+
PromptSpecification?: LexBotPromptSpecification;
|
102286
|
+
SampleUtterances?: LexBotSampleUtterance[];
|
102287
|
+
WaitAndContinueSpecification?: LexBotWaitAndContinueSpecification;
|
102288
|
+
};
|
101912
102289
|
/**
|
101913
102290
|
* Type definition for `AWS::Lex::Bot.Tag`.
|
101914
102291
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-tag.html}
|
@@ -114766,147 +115143,6 @@ export type MemoryDBUserTag = {
|
|
114766
115143
|
*/
|
114767
115144
|
Value?: string;
|
114768
115145
|
};
|
114769
|
-
/**
|
114770
|
-
* Resource Type definition for AWS::MPA::ApprovalTeam.
|
114771
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-approvalteam.html}
|
114772
|
-
*/
|
114773
|
-
export type MPAApprovalTeamProps = {
|
114774
|
-
ApprovalStrategy: MPAApprovalTeamApprovalStrategy;
|
114775
|
-
/**
|
114776
|
-
* @minLength `1`
|
114777
|
-
*/
|
114778
|
-
Approvers: MPAApprovalTeamApprover[];
|
114779
|
-
Description: string;
|
114780
|
-
Name: string;
|
114781
|
-
/**
|
114782
|
-
* @minLength `1`
|
114783
|
-
*/
|
114784
|
-
Policies: MPAApprovalTeamPolicy[];
|
114785
|
-
Tags?: MPAApprovalTeamTag[];
|
114786
|
-
};
|
114787
|
-
/**
|
114788
|
-
* Attribute type definition for `AWS::MPA::ApprovalTeam`.
|
114789
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-approvalteam.html#aws-resource-mpa-approvalteam-return-values}
|
114790
|
-
*/
|
114791
|
-
export type MPAApprovalTeamAttributes = {
|
114792
|
-
/**
|
114793
|
-
* @minLength `1`
|
114794
|
-
*/
|
114795
|
-
Approvers: {
|
114796
|
-
ApproverId: string;
|
114797
|
-
PrimaryIdentityStatus: string;
|
114798
|
-
ResponseTime: string;
|
114799
|
-
}[];
|
114800
|
-
Arn: string;
|
114801
|
-
CreationTime: string;
|
114802
|
-
LastUpdateTime: string;
|
114803
|
-
NumberOfApprovers: number;
|
114804
|
-
Status: string;
|
114805
|
-
StatusCode: string;
|
114806
|
-
StatusMessage: string;
|
114807
|
-
UpdateSessionArn: string;
|
114808
|
-
VersionId: string;
|
114809
|
-
};
|
114810
|
-
/**
|
114811
|
-
* Type definition for `AWS::MPA::ApprovalTeam.ApprovalStrategy`.
|
114812
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-approvalteam-approvalstrategy.html}
|
114813
|
-
*/
|
114814
|
-
export type MPAApprovalTeamApprovalStrategy = {
|
114815
|
-
MofN: MPAApprovalTeamMofNApprovalStrategy;
|
114816
|
-
};
|
114817
|
-
/**
|
114818
|
-
* Type definition for `AWS::MPA::ApprovalTeam.Approver`.
|
114819
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-approvalteam-approver.html}
|
114820
|
-
*/
|
114821
|
-
export type MPAApprovalTeamApprover = {
|
114822
|
-
PrimaryIdentityId: string;
|
114823
|
-
PrimaryIdentitySourceArn: string;
|
114824
|
-
};
|
114825
|
-
/**
|
114826
|
-
* Type definition for `AWS::MPA::ApprovalTeam.MofNApprovalStrategy`.
|
114827
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-approvalteam-mofnapprovalstrategy.html}
|
114828
|
-
*/
|
114829
|
-
export type MPAApprovalTeamMofNApprovalStrategy = {
|
114830
|
-
MinApprovalsRequired: number;
|
114831
|
-
};
|
114832
|
-
/**
|
114833
|
-
* Type definition for `AWS::MPA::ApprovalTeam.Policy`.
|
114834
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-approvalteam-policy.html}
|
114835
|
-
*/
|
114836
|
-
export type MPAApprovalTeamPolicy = {
|
114837
|
-
PolicyArn: string;
|
114838
|
-
};
|
114839
|
-
/**
|
114840
|
-
* Type definition for `AWS::MPA::ApprovalTeam.Tag`.
|
114841
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-approvalteam-tag.html}
|
114842
|
-
*/
|
114843
|
-
export type MPAApprovalTeamTag = {
|
114844
|
-
/**
|
114845
|
-
* 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 -.
|
114846
|
-
*/
|
114847
|
-
Key: string;
|
114848
|
-
/**
|
114849
|
-
* 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 -.
|
114850
|
-
*/
|
114851
|
-
Value: string;
|
114852
|
-
};
|
114853
|
-
/**
|
114854
|
-
* Resource Type definition for AWS::MPA::IdentitySource.
|
114855
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-identitysource.html}
|
114856
|
-
*/
|
114857
|
-
export type MPAIdentitySourceProps = {
|
114858
|
-
IdentitySourceParameters: MPAIdentitySourceIdentitySourceParameters;
|
114859
|
-
Tags?: MPAIdentitySourceTag[];
|
114860
|
-
};
|
114861
|
-
/**
|
114862
|
-
* Attribute type definition for `AWS::MPA::IdentitySource`.
|
114863
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-identitysource.html#aws-resource-mpa-identitysource-return-values}
|
114864
|
-
*/
|
114865
|
-
export type MPAIdentitySourceAttributes = {
|
114866
|
-
CreationTime: string;
|
114867
|
-
IdentitySourceArn: string;
|
114868
|
-
IdentitySourceParameters: {
|
114869
|
-
IamIdentityCenter: {
|
114870
|
-
ApprovalPortalUrl: string;
|
114871
|
-
};
|
114872
|
-
};
|
114873
|
-
IdentitySourceType: string;
|
114874
|
-
Status: string;
|
114875
|
-
StatusCode: string;
|
114876
|
-
StatusMessage: string;
|
114877
|
-
};
|
114878
|
-
/**
|
114879
|
-
* Type definition for `AWS::MPA::IdentitySource.IamIdentityCenter`.
|
114880
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-identitysource-iamidentitycenter.html}
|
114881
|
-
*/
|
114882
|
-
export type MPAIdentitySourceIamIdentityCenter = {
|
114883
|
-
/**
|
114884
|
-
* @pattern `^arn:.+:sso:::instance/(?:sso)?ins-[a-zA-Z0-9-.]{16}$`
|
114885
|
-
*/
|
114886
|
-
InstanceArn: string;
|
114887
|
-
Region: string;
|
114888
|
-
};
|
114889
|
-
/**
|
114890
|
-
* Type definition for `AWS::MPA::IdentitySource.IdentitySourceParameters`.
|
114891
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-identitysource-identitysourceparameters.html}
|
114892
|
-
*/
|
114893
|
-
export type MPAIdentitySourceIdentitySourceParameters = {
|
114894
|
-
IamIdentityCenter: MPAIdentitySourceIamIdentityCenter;
|
114895
|
-
};
|
114896
|
-
/**
|
114897
|
-
* Type definition for `AWS::MPA::IdentitySource.Tag`.
|
114898
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-identitysource-tag.html}
|
114899
|
-
*/
|
114900
|
-
export type MPAIdentitySourceTag = {
|
114901
|
-
/**
|
114902
|
-
* 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 -.
|
114903
|
-
*/
|
114904
|
-
Key: string;
|
114905
|
-
/**
|
114906
|
-
* 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 -.
|
114907
|
-
*/
|
114908
|
-
Value: string;
|
114909
|
-
};
|
114910
115146
|
/**
|
114911
115147
|
* Resource Type definition for AWS::MSK::BatchScramSecret
|
114912
115148
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-batchscramsecret.html}
|
@@ -123133,6 +123369,10 @@ export type PCSClusterProps = {
|
|
123133
123369
|
* Additional options related to the Slurm scheduler.
|
123134
123370
|
*/
|
123135
123371
|
SlurmConfiguration?: {
|
123372
|
+
/**
|
123373
|
+
* The accounting configuration includes configurable settings for Slurm accounting.
|
123374
|
+
*/
|
123375
|
+
Accounting?: PCSClusterAccounting;
|
123136
123376
|
/**
|
123137
123377
|
* The shared Slurm key for authentication, also known as the cluster secret.
|
123138
123378
|
*/
|
@@ -123205,6 +123445,23 @@ export type PCSClusterAttributes = {
|
|
123205
123445
|
*/
|
123206
123446
|
Status: "CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED";
|
123207
123447
|
};
|
123448
|
+
/**
|
123449
|
+
* Type definition for `AWS::PCS::Cluster.Accounting`.
|
123450
|
+
* The accounting configuration includes configurable settings for Slurm accounting.
|
123451
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-accounting.html}
|
123452
|
+
*/
|
123453
|
+
export type PCSClusterAccounting = {
|
123454
|
+
/**
|
123455
|
+
* The default value for all purge settings for `slurmdbd.conf`. For more information, see the [slurmdbd.conf documentation at SchedMD](https://slurm.schedmd.com/slurmdbd.conf.html). The default value is `-1`. A value of `-1` means there is no purge time and records persist as long as the cluster exists.
|
123456
|
+
* @min `-1`
|
123457
|
+
* @max `10000`
|
123458
|
+
*/
|
123459
|
+
DefaultPurgeTimeInDays?: number;
|
123460
|
+
/**
|
123461
|
+
* The default value is `STANDARD`. A value of `STANDARD` means that Slurm accounting is enabled.
|
123462
|
+
*/
|
123463
|
+
Mode: "STANDARD" | "NONE";
|
123464
|
+
};
|
123208
123465
|
/**
|
123209
123466
|
* Type definition for `AWS::PCS::Cluster.AuthKey`.
|
123210
123467
|
* The shared Slurm key for authentication, also known as the cluster secret.
|
@@ -180792,6 +181049,54 @@ export type SESMailManagerAddonSubscriptionTag = {
|
|
180792
181049
|
*/
|
180793
181050
|
Value: string;
|
180794
181051
|
};
|
181052
|
+
/**
|
181053
|
+
* Definition of AWS::SES::MailManagerAddressList Resource Type
|
181054
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html}
|
181055
|
+
*/
|
181056
|
+
export type SESMailManagerAddressListProps = {
|
181057
|
+
/**
|
181058
|
+
* @minLength `1`
|
181059
|
+
* @maxLength `255`
|
181060
|
+
* @pattern `^[a-zA-Z0-9_.-]+$`
|
181061
|
+
*/
|
181062
|
+
AddressListName?: string;
|
181063
|
+
/**
|
181064
|
+
* @minLength `0`
|
181065
|
+
* @maxLength `200`
|
181066
|
+
*/
|
181067
|
+
Tags?: SESMailManagerAddressListTag[];
|
181068
|
+
};
|
181069
|
+
/**
|
181070
|
+
* Attribute type definition for `AWS::SES::MailManagerAddressList`.
|
181071
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html#aws-resource-ses-mailmanageraddresslist-return-values}
|
181072
|
+
*/
|
181073
|
+
export type SESMailManagerAddressListAttributes = {
|
181074
|
+
AddressListArn: string;
|
181075
|
+
/**
|
181076
|
+
* @minLength `1`
|
181077
|
+
* @maxLength `255`
|
181078
|
+
* @pattern `^[a-zA-Z0-9-]+$`
|
181079
|
+
*/
|
181080
|
+
AddressListId: string;
|
181081
|
+
};
|
181082
|
+
/**
|
181083
|
+
* Type definition for `AWS::SES::MailManagerAddressList.Tag`.
|
181084
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageraddresslist-tag.html}
|
181085
|
+
*/
|
181086
|
+
export type SESMailManagerAddressListTag = {
|
181087
|
+
/**
|
181088
|
+
* @minLength `1`
|
181089
|
+
* @maxLength `128`
|
181090
|
+
* @pattern `^[a-zA-Z0-9/_\+=\.:@\-]+$`
|
181091
|
+
*/
|
181092
|
+
Key: string;
|
181093
|
+
/**
|
181094
|
+
* @minLength `0`
|
181095
|
+
* @maxLength `256`
|
181096
|
+
* @pattern `^[a-zA-Z0-9/_\+=\.:@\-]*$`
|
181097
|
+
*/
|
181098
|
+
Value: string;
|
181099
|
+
};
|
180795
181100
|
/**
|
180796
181101
|
* Definition of AWS::SES::MailManagerArchive Resource Type
|
180797
181102
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerarchive.html}
|
@@ -181273,6 +181578,8 @@ export type SESMailManagerRuleSetRuleAction = {
|
|
181273
181578
|
DeliverToMailbox: SESMailManagerRuleSetDeliverToMailboxAction;
|
181274
181579
|
} | {
|
181275
181580
|
DeliverToQBusiness: SESMailManagerRuleSetDeliverToQBusinessAction;
|
181581
|
+
} | {
|
181582
|
+
PublishToSns: SESMailManagerRuleSetSnsAction;
|
181276
181583
|
};
|
181277
181584
|
/**
|
181278
181585
|
* Type definition for `AWS::SES::MailManagerRuleSet.RuleBooleanEmailAttribute`.
|
@@ -181514,6 +181821,37 @@ export type SESMailManagerRuleSetSendAction = {
|
|
181514
181821
|
*/
|
181515
181822
|
RoleArn: string;
|
181516
181823
|
};
|
181824
|
+
/**
|
181825
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.SnsAction`.
|
181826
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsaction.html}
|
181827
|
+
*/
|
181828
|
+
export type SESMailManagerRuleSetSnsAction = {
|
181829
|
+
ActionFailurePolicy?: SESMailManagerRuleSetActionFailurePolicy;
|
181830
|
+
Encoding?: SESMailManagerRuleSetSnsNotificationEncoding;
|
181831
|
+
PayloadType?: SESMailManagerRuleSetSnsNotificationPayloadType;
|
181832
|
+
/**
|
181833
|
+
* @minLength `20`
|
181834
|
+
* @maxLength `2048`
|
181835
|
+
* @pattern `^[a-zA-Z0-9:_/+=,@.#-]+$`
|
181836
|
+
*/
|
181837
|
+
RoleArn: string;
|
181838
|
+
/**
|
181839
|
+
* @minLength `20`
|
181840
|
+
* @maxLength `2048`
|
181841
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov):sns:[a-z]{2}-[a-z]+-\d{1}:\d{12}:[\w\-]{1,256}$`
|
181842
|
+
*/
|
181843
|
+
TopicArn: string;
|
181844
|
+
};
|
181845
|
+
/**
|
181846
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.SnsNotificationEncoding`.
|
181847
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsnotificationencoding.html}
|
181848
|
+
*/
|
181849
|
+
export type SESMailManagerRuleSetSnsNotificationEncoding = "UTF-8" | "BASE64";
|
181850
|
+
/**
|
181851
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.SnsNotificationPayloadType`.
|
181852
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsnotificationpayloadtype.html}
|
181853
|
+
*/
|
181854
|
+
export type SESMailManagerRuleSetSnsNotificationPayloadType = "CONTENT" | "HEADERS";
|
181517
181855
|
/**
|
181518
181856
|
* Type definition for `AWS::SES::MailManagerRuleSet.Tag`.
|
181519
181857
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-tag.html}
|
@@ -193469,7 +193807,7 @@ export type WisdomKnowledgeBaseHierarchicalChunkingLevelConfiguration = {
|
|
193469
193807
|
* Type definition for `AWS::Wisdom::KnowledgeBase.KnowledgeBaseType`.
|
193470
193808
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-knowledgebasetype.html}
|
193471
193809
|
*/
|
193472
|
-
export type WisdomKnowledgeBaseKnowledgeBaseType = "EXTERNAL" | "CUSTOM" | "MESSAGE_TEMPLATES" | "MANAGED";
|
193810
|
+
export type WisdomKnowledgeBaseKnowledgeBaseType = "EXTERNAL" | "CUSTOM" | "MESSAGE_TEMPLATES" | "MANAGED" | "QUICK_RESPONSES";
|
193473
193811
|
/**
|
193474
193812
|
* Type definition for `AWS::Wisdom::KnowledgeBase.ManagedSourceConfiguration`.
|
193475
193813
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-managedsourceconfiguration.html}
|
@@ -196760,8 +197098,6 @@ export interface ResourceTypes {
|
|
196760
197098
|
"AWS::MemoryDB::ParameterGroup": MemoryDBParameterGroupProps;
|
196761
197099
|
"AWS::MemoryDB::SubnetGroup": MemoryDBSubnetGroupProps;
|
196762
197100
|
"AWS::MemoryDB::User": MemoryDBUserProps;
|
196763
|
-
"AWS::MPA::ApprovalTeam": MPAApprovalTeamProps;
|
196764
|
-
"AWS::MPA::IdentitySource": MPAIdentitySourceProps;
|
196765
197101
|
"AWS::MSK::BatchScramSecret": MSKBatchScramSecretProps;
|
196766
197102
|
"AWS::MSK::Cluster": MSKClusterProps;
|
196767
197103
|
"AWS::MSK::ClusterPolicy": MSKClusterPolicyProps;
|
@@ -197095,6 +197431,7 @@ export interface ResourceTypes {
|
|
197095
197431
|
"AWS::SES::EmailIdentity": SESEmailIdentityProps;
|
197096
197432
|
"AWS::SES::MailManagerAddonInstance": SESMailManagerAddonInstanceProps;
|
197097
197433
|
"AWS::SES::MailManagerAddonSubscription": SESMailManagerAddonSubscriptionProps;
|
197434
|
+
"AWS::SES::MailManagerAddressList": SESMailManagerAddressListProps;
|
197098
197435
|
"AWS::SES::MailManagerArchive": SESMailManagerArchiveProps;
|
197099
197436
|
"AWS::SES::MailManagerIngressPoint": SESMailManagerIngressPointProps;
|
197100
197437
|
"AWS::SES::MailManagerRelay": SESMailManagerRelayProps;
|
@@ -198057,8 +198394,6 @@ export interface AttributeTypes {
|
|
198057
198394
|
"AWS::MemoryDB::ParameterGroup": MemoryDBParameterGroupAttributes;
|
198058
198395
|
"AWS::MemoryDB::SubnetGroup": MemoryDBSubnetGroupAttributes;
|
198059
198396
|
"AWS::MemoryDB::User": MemoryDBUserAttributes;
|
198060
|
-
"AWS::MPA::ApprovalTeam": MPAApprovalTeamAttributes;
|
198061
|
-
"AWS::MPA::IdentitySource": MPAIdentitySourceAttributes;
|
198062
198397
|
"AWS::MSK::Cluster": MSKClusterAttributes;
|
198063
198398
|
"AWS::MSK::ClusterPolicy": MSKClusterPolicyAttributes;
|
198064
198399
|
"AWS::MSK::Configuration": MSKConfigurationAttributes;
|
@@ -198351,6 +198686,7 @@ export interface AttributeTypes {
|
|
198351
198686
|
"AWS::SES::EmailIdentity": SESEmailIdentityAttributes;
|
198352
198687
|
"AWS::SES::MailManagerAddonInstance": SESMailManagerAddonInstanceAttributes;
|
198353
198688
|
"AWS::SES::MailManagerAddonSubscription": SESMailManagerAddonSubscriptionAttributes;
|
198689
|
+
"AWS::SES::MailManagerAddressList": SESMailManagerAddressListAttributes;
|
198354
198690
|
"AWS::SES::MailManagerArchive": SESMailManagerArchiveAttributes;
|
198355
198691
|
"AWS::SES::MailManagerIngressPoint": SESMailManagerIngressPointAttributes;
|
198356
198692
|
"AWS::SES::MailManagerRelay": SESMailManagerRelayAttributes;
|
@@ -199402,8 +199738,6 @@ export declare const ResourceType: {
|
|
199402
199738
|
readonly MemoryDBParameterGroup: "AWS::MemoryDB::ParameterGroup";
|
199403
199739
|
readonly MemoryDBSubnetGroup: "AWS::MemoryDB::SubnetGroup";
|
199404
199740
|
readonly MemoryDBUser: "AWS::MemoryDB::User";
|
199405
|
-
readonly MPAApprovalTeam: "AWS::MPA::ApprovalTeam";
|
199406
|
-
readonly MPAIdentitySource: "AWS::MPA::IdentitySource";
|
199407
199741
|
readonly MSKBatchScramSecret: "AWS::MSK::BatchScramSecret";
|
199408
199742
|
readonly MSKCluster: "AWS::MSK::Cluster";
|
199409
199743
|
readonly MSKClusterPolicy: "AWS::MSK::ClusterPolicy";
|
@@ -199737,6 +200071,7 @@ export declare const ResourceType: {
|
|
199737
200071
|
readonly SESEmailIdentity: "AWS::SES::EmailIdentity";
|
199738
200072
|
readonly SESMailManagerAddonInstance: "AWS::SES::MailManagerAddonInstance";
|
199739
200073
|
readonly SESMailManagerAddonSubscription: "AWS::SES::MailManagerAddonSubscription";
|
200074
|
+
readonly SESMailManagerAddressList: "AWS::SES::MailManagerAddressList";
|
199740
200075
|
readonly SESMailManagerArchive: "AWS::SES::MailManagerArchive";
|
199741
200076
|
readonly SESMailManagerIngressPoint: "AWS::SES::MailManagerIngressPoint";
|
199742
200077
|
readonly SESMailManagerRelay: "AWS::SES::MailManagerRelay";
|