@awboost/cfn-resource-types 0.1.340 → 0.1.342

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.
@@ -26,6 +26,10 @@ export type APSWorkspaceProperties = {
26
26
  * Logging configuration
27
27
  */
28
28
  LoggingConfiguration?: LoggingConfiguration;
29
+ /**
30
+ * Query logging configuration
31
+ */
32
+ QueryLoggingConfiguration?: QueryLoggingConfiguration;
29
33
  /**
30
34
  * An array of key-value pairs to apply to this resource.
31
35
  */
@@ -59,6 +63,19 @@ export type APSWorkspaceAttributes = {
59
63
  */
60
64
  WorkspaceId: string;
61
65
  };
66
+ /**
67
+ * Type definition for `AWS::APS::Workspace.CloudWatchLogDestination`.
68
+ * Represents a cloudwatch logs destination for query logging
69
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-cloudwatchlogdestination.html}
70
+ */
71
+ export type CloudWatchLogDestination = {
72
+ /**
73
+ * The ARN of the CloudWatch Logs log group
74
+ * @minLength `0`
75
+ * @maxLength `512`
76
+ */
77
+ LogGroupArn: string;
78
+ };
62
79
  /**
63
80
  * Type definition for `AWS::APS::Workspace.Label`.
64
81
  * Series label
@@ -118,6 +135,46 @@ export type LoggingConfiguration = {
118
135
  */
119
136
  LogGroupArn?: string;
120
137
  };
138
+ /**
139
+ * Type definition for `AWS::APS::Workspace.LoggingDestination`.
140
+ * Destinations for query logging
141
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-loggingdestination.html}
142
+ */
143
+ export type LoggingDestination = {
144
+ /**
145
+ * Represents a cloudwatch logs destination for query logging
146
+ */
147
+ CloudWatchLogs: CloudWatchLogDestination;
148
+ /**
149
+ * Filters for logging
150
+ */
151
+ Filters: LoggingFilter;
152
+ };
153
+ /**
154
+ * Type definition for `AWS::APS::Workspace.LoggingFilter`.
155
+ * Filters for logging
156
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-loggingfilter.html}
157
+ */
158
+ export type LoggingFilter = {
159
+ /**
160
+ * Query logs with QSP above this limit are vended
161
+ * @min `0`
162
+ */
163
+ QspThreshold: number;
164
+ };
165
+ /**
166
+ * Type definition for `AWS::APS::Workspace.QueryLoggingConfiguration`.
167
+ * Query logging configuration
168
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-queryloggingconfiguration.html}
169
+ */
170
+ export type QueryLoggingConfiguration = {
171
+ /**
172
+ * The destinations configuration for query logging
173
+ * @minLength `1`
174
+ * @maxLength `1`
175
+ */
176
+ Destinations: LoggingDestination[];
177
+ };
121
178
  /**
122
179
  * Type definition for `AWS::APS::Workspace.Tag`.
123
180
  * A key-value pair to associate with a resource.
@@ -267,7 +267,7 @@ export type FlowNode = {
267
267
  Configuration?: FlowNodeConfiguration;
268
268
  /**
269
269
  * List of node inputs in a flow
270
- * @maxLength `5`
270
+ * @maxLength `20`
271
271
  */
272
272
  Inputs?: FlowNodeInput[];
273
273
  /**
@@ -350,6 +350,11 @@ export type FlowNodeConfiguration = {
350
350
  * Retrieval flow node configuration
351
351
  */
352
352
  Retrieval: RetrievalFlowNodeConfiguration;
353
+ } | {
354
+ /**
355
+ * Inline code config strucuture, contains code configs
356
+ */
357
+ InlineCode: InlineCodeFlowNodeConfiguration;
353
358
  };
354
359
  /**
355
360
  * Type definition for `AWS::Bedrock::Flow.FlowNodeInput`.
@@ -400,7 +405,7 @@ export type FlowNodeOutput = {
400
405
  * Flow node types
401
406
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-flownodetype.html}
402
407
  */
403
- export type FlowNodeType = "Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Agent" | "Storage" | "Retrieval" | "Iterator" | "Collector";
408
+ export type FlowNodeType = "Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Agent" | "Storage" | "Retrieval" | "Iterator" | "Collector" | "InlineCode";
404
409
  /**
405
410
  * Type definition for `AWS::Bedrock::Flow.FlowStatus`.
406
411
  * Schema Type for Flow APIs
@@ -436,6 +441,22 @@ export type GuardrailConfiguration = {
436
441
  */
437
442
  GuardrailVersion?: string;
438
443
  };
444
+ /**
445
+ * Type definition for `AWS::Bedrock::Flow.InlineCodeFlowNodeConfiguration`.
446
+ * Inline code config strucuture, contains code configs
447
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-inlinecodeflownodeconfiguration.html}
448
+ */
449
+ export type InlineCodeFlowNodeConfiguration = {
450
+ /**
451
+ * The inline code entered by customers. max size is 5MB.
452
+ * @maxLength `5000000`
453
+ */
454
+ Code: string;
455
+ /**
456
+ * Enum encodes the supported language type
457
+ */
458
+ Language: SupportedLanguages;
459
+ };
439
460
  /**
440
461
  * Type definition for `AWS::Bedrock::Flow.InputFlowNodeConfiguration`.
441
462
  * Input flow node configuration
@@ -728,6 +749,12 @@ export type StorageFlowNodeServiceConfiguration = {
728
749
  */
729
750
  S3?: StorageFlowNodeS3Configuration;
730
751
  };
752
+ /**
753
+ * Type definition for `AWS::Bedrock::Flow.SupportedLanguages`.
754
+ * Enum encodes the supported language type
755
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-supportedlanguages.html}
756
+ */
757
+ export type SupportedLanguages = "Python_3";
731
758
  /**
732
759
  * Type definition for `AWS::Bedrock::Flow.TagsMap`.
733
760
  * A map of tag keys and values
@@ -5,6 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-flowalias.html}
6
6
  */
7
7
  export type BedrockFlowAliasProperties = {
8
+ ConcurrencyConfiguration?: FlowAliasConcurrencyConfiguration;
8
9
  /**
9
10
  * Description of the Resource.
10
11
  * @minLength `1`
@@ -65,6 +66,24 @@ export type BedrockFlowAliasAttributes = {
65
66
  */
66
67
  UpdatedAt: string;
67
68
  };
69
+ /**
70
+ * Type definition for `AWS::Bedrock::FlowAlias.ConcurrencyType`.
71
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowalias-concurrencytype.html}
72
+ */
73
+ export type ConcurrencyType = "Automatic" | "Manual";
74
+ /**
75
+ * Type definition for `AWS::Bedrock::FlowAlias.FlowAliasConcurrencyConfiguration`.
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowalias-flowaliasconcurrencyconfiguration.html}
77
+ */
78
+ export type FlowAliasConcurrencyConfiguration = {
79
+ /**
80
+ * Number of nodes executed concurrently at a time
81
+ * @min `1`
82
+ * @max `100`
83
+ */
84
+ MaxConcurrency?: number;
85
+ Type: ConcurrencyType;
86
+ };
68
87
  /**
69
88
  * Type definition for `AWS::Bedrock::FlowAlias.FlowAliasRoutingConfigurationListItem`.
70
89
  * Details about the routing configuration for a Flow alias.
@@ -391,6 +391,11 @@ export type FlowNodeConfiguration = {
391
391
  * Collector flow node configuration
392
392
  */
393
393
  Collector: CollectorFlowNodeConfiguration;
394
+ } | {
395
+ /**
396
+ * Inline code config strucuture, contains code configs
397
+ */
398
+ InlineCode: InlineCodeFlowNodeConfiguration;
394
399
  };
395
400
  /**
396
401
  * Type definition for `AWS::Bedrock::FlowVersion.FlowNodeInput`.
@@ -441,7 +446,7 @@ export type FlowNodeOutput = {
441
446
  * Flow node types
442
447
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-flownodetype.html}
443
448
  */
444
- export type FlowNodeType = "Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Agent" | "Iterator" | "Collector" | "Storage" | "Retrieval";
449
+ export type FlowNodeType = "Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Agent" | "Iterator" | "Collector" | "Storage" | "Retrieval" | "InlineCode";
445
450
  /**
446
451
  * Type definition for `AWS::Bedrock::FlowVersion.FlowStatus`.
447
452
  * Schema Type for Flow APIs
@@ -466,6 +471,22 @@ export type GuardrailConfiguration = {
466
471
  */
467
472
  GuardrailVersion?: string;
468
473
  };
474
+ /**
475
+ * Type definition for `AWS::Bedrock::FlowVersion.InlineCodeFlowNodeConfiguration`.
476
+ * Inline code config strucuture, contains code configs
477
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-inlinecodeflownodeconfiguration.html}
478
+ */
479
+ export type InlineCodeFlowNodeConfiguration = {
480
+ /**
481
+ * The inline code entered by customers. max size is 5MB.
482
+ * @maxLength `5000000`
483
+ */
484
+ Code: string;
485
+ /**
486
+ * Enum encodes the supported language type
487
+ */
488
+ Language: SupportedLanguages;
489
+ };
469
490
  /**
470
491
  * Type definition for `AWS::Bedrock::FlowVersion.InputFlowNodeConfiguration`.
471
492
  * Input flow node configuration
@@ -732,6 +753,12 @@ export type StorageFlowNodeServiceConfiguration = {
732
753
  */
733
754
  S3?: StorageFlowNodeS3Configuration;
734
755
  };
756
+ /**
757
+ * Type definition for `AWS::Bedrock::FlowVersion.SupportedLanguages`.
758
+ * Enum encodes the supported language type
759
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-supportedlanguages.html}
760
+ */
761
+ export type SupportedLanguages = "Python_3";
735
762
  /**
736
763
  * Type definition for `AWS::Bedrock::FlowVersion.TextPromptTemplateConfiguration`.
737
764
  * Configuration for text prompt template
@@ -248,7 +248,7 @@ export type PromptModelInferenceConfiguration = {
248
248
  /**
249
249
  * Maximum length of output
250
250
  * @min `0`
251
- * @max `4096`
251
+ * @max `512000`
252
252
  */
253
253
  MaxTokens?: number;
254
254
  /**
@@ -1,16 +1,16 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource schema for AWS::DataSync::LocationAzureBlob.
4
+ * Resource Type definition for AWS::DataSync::LocationAzureBlob.
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationazureblob.html}
6
6
  */
7
7
  export type DataSyncLocationAzureBlobProperties = {
8
8
  /**
9
- * The Amazon Resource Names (ARNs) of agents to use for an Azure Blob Location.
9
+ * 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.
10
10
  * @minLength `1`
11
11
  * @maxLength `4`
12
12
  */
13
- AgentArns: string[];
13
+ AgentArns?: string[];
14
14
  /**
15
15
  * Specifies an access tier for the objects you're transferring into your Azure Blob Storage container.
16
16
  */
@@ -18,7 +18,7 @@ export type DataSyncLocationAzureBlobProperties = {
18
18
  /**
19
19
  * The specific authentication type that you want DataSync to use to access your Azure Blob Container.
20
20
  */
21
- AzureBlobAuthenticationType: "SAS";
21
+ AzureBlobAuthenticationType: "SAS" | "NONE";
22
22
  /**
23
23
  * The URL of the Azure Blob container that was described.
24
24
  * @maxLength `325`
@@ -33,6 +33,14 @@ export type DataSyncLocationAzureBlobProperties = {
33
33
  * Specifies a blob type for the objects you're transferring into your Azure Blob Storage container.
34
34
  */
35
35
  AzureBlobType?: "BLOCK";
36
+ /**
37
+ * 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.
38
+ */
39
+ CmkSecretConfig?: CmkSecretConfig;
40
+ /**
41
+ * 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.
42
+ */
43
+ CustomSecretConfig?: CustomSecretConfig;
36
44
  /**
37
45
  * The subdirectory in the Azure Blob Container that is used to read data from the Azure Blob Source Location.
38
46
  * @maxLength `1024`
@@ -50,6 +58,17 @@ export type DataSyncLocationAzureBlobProperties = {
50
58
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationazureblob.html#aws-resource-datasync-locationazureblob-return-values}
51
59
  */
52
60
  export type DataSyncLocationAzureBlobAttributes = {
61
+ /**
62
+ * 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.
63
+ */
64
+ CmkSecretConfig: {
65
+ /**
66
+ * Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.
67
+ * @maxLength `2048`
68
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
69
+ */
70
+ SecretArn: string;
71
+ };
53
72
  /**
54
73
  * The Amazon Resource Name (ARN) of the Azure Blob Location that is created.
55
74
  * @maxLength `128`
@@ -62,6 +81,17 @@ export type DataSyncLocationAzureBlobAttributes = {
62
81
  * @pattern `^(azure-blob)://[a-zA-Z0-9./\-]+$`
63
82
  */
64
83
  LocationUri: string;
84
+ /**
85
+ * 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.
86
+ */
87
+ ManagedSecretConfig: {
88
+ /**
89
+ * Specifies the ARN for an AWS Secrets Manager secret.
90
+ * @maxLength `2048`
91
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
92
+ */
93
+ SecretArn: string;
94
+ };
65
95
  };
66
96
  /**
67
97
  * Type definition for `AWS::DataSync::LocationAzureBlob.AzureBlobSasConfiguration`.
@@ -77,6 +107,51 @@ export type AzureBlobSasConfiguration = {
77
107
  */
78
108
  AzureBlobSasToken: string;
79
109
  };
110
+ /**
111
+ * Type definition for `AWS::DataSync::LocationAzureBlob.CmkSecretConfig`.
112
+ * 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.
113
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationazureblob-cmksecretconfig.html}
114
+ */
115
+ export type CmkSecretConfig = {
116
+ /**
117
+ * 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.
118
+ * @maxLength `2048`
119
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
120
+ */
121
+ KmsKeyArn?: string;
122
+ };
123
+ /**
124
+ * Type definition for `AWS::DataSync::LocationAzureBlob.CustomSecretConfig`.
125
+ * 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.
126
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationazureblob-customsecretconfig.html}
127
+ */
128
+ export type CustomSecretConfig = {
129
+ /**
130
+ * Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
131
+ * @maxLength `2048`
132
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
133
+ */
134
+ SecretAccessRoleArn: string;
135
+ /**
136
+ * Specifies the ARN for a customer created AWS Secrets Manager secret.
137
+ * @maxLength `2048`
138
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
139
+ */
140
+ SecretArn: string;
141
+ };
142
+ /**
143
+ * Type definition for `AWS::DataSync::LocationAzureBlob.ManagedSecretConfig`.
144
+ * 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.
145
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationazureblob-managedsecretconfig.html}
146
+ */
147
+ export type ManagedSecretConfig = {
148
+ /**
149
+ * Specifies the ARN for an AWS Secrets Manager secret.
150
+ * @maxLength `2048`
151
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
152
+ */
153
+ SecretArn: string;
154
+ };
80
155
  /**
81
156
  * Type definition for `AWS::DataSync::LocationAzureBlob.Tag`.
82
157
  * A key-value pair to associate with a resource.
@@ -99,7 +174,7 @@ export type Tag = {
99
174
  Value: string;
100
175
  };
101
176
  /**
102
- * Resource schema for AWS::DataSync::LocationAzureBlob.
177
+ * Resource Type definition for AWS::DataSync::LocationAzureBlob.
103
178
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationazureblob.html}
104
179
  */
105
180
  export declare class DataSyncLocationAzureBlob extends $Resource<"AWS::DataSync::LocationAzureBlob", DataSyncLocationAzureBlobProperties, DataSyncLocationAzureBlobAttributes> {
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource schema for AWS::DataSync::LocationAzureBlob.
3
+ * Resource Type definition for AWS::DataSync::LocationAzureBlob.
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationazureblob.html}
5
5
  */
6
6
  export class DataSyncLocationAzureBlob extends $Resource {
@@ -1,7 +1,7 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource schema for AWS::DataSync::LocationObjectStorage.
4
+ * Resource Type definition for AWS::DataSync::LocationObjectStorage.
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationobjectstorage.html}
6
6
  */
7
7
  export type DataSyncLocationObjectStorageProperties = {
@@ -13,11 +13,11 @@ export type DataSyncLocationObjectStorageProperties = {
13
13
  */
14
14
  AccessKey?: string;
15
15
  /**
16
- * The Amazon Resource Name (ARN) of the agents associated with the self-managed object storage server location.
16
+ * 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.
17
17
  * @minLength `1`
18
18
  * @maxLength `4`
19
19
  */
20
- AgentArns: string[];
20
+ AgentArns?: string[];
21
21
  /**
22
22
  * The name of the bucket on the self-managed object storage server.
23
23
  * @minLength `3`
@@ -25,6 +25,14 @@ export type DataSyncLocationObjectStorageProperties = {
25
25
  * @pattern `^[a-zA-Z0-9_\-\+\./\(\)\$\p{Zs}]+$`
26
26
  */
27
27
  BucketName?: string;
28
+ /**
29
+ * 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.
30
+ */
31
+ CmkSecretConfig?: CmkSecretConfig;
32
+ /**
33
+ * 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.
34
+ */
35
+ CustomSecretConfig?: CustomSecretConfig;
28
36
  /**
29
37
  * Optional. The secret key is used if credentials are required to access the self-managed object storage server.
30
38
  * @minLength `8`
@@ -70,6 +78,17 @@ export type DataSyncLocationObjectStorageProperties = {
70
78
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationobjectstorage.html#aws-resource-datasync-locationobjectstorage-return-values}
71
79
  */
72
80
  export type DataSyncLocationObjectStorageAttributes = {
81
+ /**
82
+ * 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.
83
+ */
84
+ CmkSecretConfig: {
85
+ /**
86
+ * Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.
87
+ * @maxLength `2048`
88
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
89
+ */
90
+ SecretArn: string;
91
+ };
73
92
  /**
74
93
  * The Amazon Resource Name (ARN) of the location that is created.
75
94
  * @maxLength `128`
@@ -82,6 +101,62 @@ export type DataSyncLocationObjectStorageAttributes = {
82
101
  * @pattern `^(efs|nfs|s3|smb|fsxw|object-storage)://[a-zA-Z0-9./\-]+$`
83
102
  */
84
103
  LocationUri: string;
104
+ /**
105
+ * 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.
106
+ */
107
+ ManagedSecretConfig: {
108
+ /**
109
+ * Specifies the ARN for an AWS Secrets Manager secret.
110
+ * @maxLength `2048`
111
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
112
+ */
113
+ SecretArn: string;
114
+ };
115
+ };
116
+ /**
117
+ * Type definition for `AWS::DataSync::LocationObjectStorage.CmkSecretConfig`.
118
+ * 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.
119
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationobjectstorage-cmksecretconfig.html}
120
+ */
121
+ export type CmkSecretConfig = {
122
+ /**
123
+ * 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.
124
+ * @maxLength `2048`
125
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
126
+ */
127
+ KmsKeyArn?: string;
128
+ };
129
+ /**
130
+ * Type definition for `AWS::DataSync::LocationObjectStorage.CustomSecretConfig`.
131
+ * 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.
132
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationobjectstorage-customsecretconfig.html}
133
+ */
134
+ export type CustomSecretConfig = {
135
+ /**
136
+ * Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
137
+ * @maxLength `2048`
138
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
139
+ */
140
+ SecretAccessRoleArn: string;
141
+ /**
142
+ * Specifies the ARN for a customer created AWS Secrets Manager secret.
143
+ * @maxLength `2048`
144
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
145
+ */
146
+ SecretArn: string;
147
+ };
148
+ /**
149
+ * Type definition for `AWS::DataSync::LocationObjectStorage.ManagedSecretConfig`.
150
+ * 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.
151
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationobjectstorage-managedsecretconfig.html}
152
+ */
153
+ export type ManagedSecretConfig = {
154
+ /**
155
+ * Specifies the ARN for an AWS Secrets Manager secret.
156
+ * @maxLength `2048`
157
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
158
+ */
159
+ SecretArn: string;
85
160
  };
86
161
  /**
87
162
  * Type definition for `AWS::DataSync::LocationObjectStorage.Tag`.
@@ -105,7 +180,7 @@ export type Tag = {
105
180
  Value: string;
106
181
  };
107
182
  /**
108
- * Resource schema for AWS::DataSync::LocationObjectStorage.
183
+ * Resource Type definition for AWS::DataSync::LocationObjectStorage.
109
184
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationobjectstorage.html}
110
185
  */
111
186
  export declare class DataSyncLocationObjectStorage extends $Resource<"AWS::DataSync::LocationObjectStorage", DataSyncLocationObjectStorageProperties, DataSyncLocationObjectStorageAttributes> {
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource schema for AWS::DataSync::LocationObjectStorage.
3
+ * Resource Type definition for AWS::DataSync::LocationObjectStorage.
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationobjectstorage.html}
5
5
  */
6
6
  export class DataSyncLocationObjectStorage extends $Resource {
@@ -20,6 +20,7 @@ export type DeadlineFleetProperties = {
20
20
  * @pattern `^farm-[0-9a-f]{32}$`
21
21
  */
22
22
  FarmId: string;
23
+ HostConfiguration?: HostConfiguration;
23
24
  /**
24
25
  * @min `0`
25
26
  * @max `2147483647`
@@ -169,6 +170,7 @@ export type CustomerManagedFleetConfiguration = {
169
170
  * @pattern `^sp-[0-9a-f]{32}$`
170
171
  */
171
172
  StorageProfileId?: string;
173
+ TagPropagationMode?: TagPropagationMode;
172
174
  WorkerCapabilities: CustomerManagedWorkerCapabilities;
173
175
  };
174
176
  /**
@@ -282,6 +284,22 @@ export type FleetConfiguration = {
282
284
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-fleetstatus.html}
283
285
  */
284
286
  export type FleetStatus = "ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED";
287
+ /**
288
+ * Type definition for `AWS::Deadline::Fleet.HostConfiguration`.
289
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-hostconfiguration.html}
290
+ */
291
+ export type HostConfiguration = {
292
+ /**
293
+ * @minLength `0`
294
+ * @maxLength `15000`
295
+ */
296
+ ScriptBody: string;
297
+ /**
298
+ * @min `300`
299
+ * @max `3600`
300
+ */
301
+ ScriptTimeoutSeconds?: number;
302
+ };
285
303
  /**
286
304
  * Type definition for `AWS::Deadline::Fleet.MemoryMiBRange`.
287
305
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-memorymibrange.html}
@@ -369,6 +387,11 @@ export type Tag = {
369
387
  */
370
388
  Value: string;
371
389
  };
390
+ /**
391
+ * Type definition for `AWS::Deadline::Fleet.TagPropagationMode`.
392
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-tagpropagationmode.html}
393
+ */
394
+ export type TagPropagationMode = "NO_PROPAGATION" | "PROPAGATE_TAGS_TO_WORKERS_AT_LAUNCH";
372
395
  /**
373
396
  * Type definition for `AWS::Deadline::Fleet.VCpuCountRange`.
374
397
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-vcpucountrange.html}
@@ -116,6 +116,10 @@ export type EC2InstanceProperties = {
116
116
  * The license configurations.
117
117
  */
118
118
  LicenseSpecifications?: LicenseSpecification[];
119
+ /**
120
+ * The metadata options for the instance
121
+ */
122
+ MetadataOptions?: MetadataOptions;
119
123
  /**
120
124
  * Specifies whether detailed monitoring is enabled for the instance.
121
125
  */
@@ -379,6 +383,34 @@ export type LicenseSpecification = {
379
383
  */
380
384
  LicenseConfigurationArn: string;
381
385
  };
386
+ /**
387
+ * Type definition for `AWS::EC2::Instance.MetadataOptions`.
388
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-metadataoptions.html}
389
+ */
390
+ export type MetadataOptions = {
391
+ /**
392
+ * Enables or disables the HTTP metadata endpoint on your instances. If you specify a value of disabled, you cannot access your instance metadata.
393
+ */
394
+ HttpEndpoint?: "disabled" | "enabled";
395
+ /**
396
+ * 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.
397
+ */
398
+ HttpProtocolIpv6?: "disabled" | "enabled";
399
+ /**
400
+ * The number of network hops that the metadata token can travel. Maximum is 64.
401
+ * @min `1`
402
+ * @max `64`
403
+ */
404
+ HttpPutResponseHopLimit?: number;
405
+ /**
406
+ * Indicates whether IMDSv2 is required.
407
+ */
408
+ HttpTokens?: "optional" | "required";
409
+ /**
410
+ * Indicates whether tags from the instance are propagated to the EBS volumes.
411
+ */
412
+ InstanceMetadataTags?: "disabled" | "enabled";
413
+ };
382
414
  /**
383
415
  * Type definition for `AWS::EC2::Instance.NetworkInterface`.
384
416
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-networkinterface.html}
@@ -169,12 +169,14 @@ export type ExecuteCommandLogConfiguration = {
169
169
  */
170
170
  export type ManagedStorageConfiguration = {
171
171
  /**
172
- * Specify the KMSlong key ID for the Fargate ephemeral storage.
172
+ * Specify the KMSlong key ID for Fargate ephemeral storage.
173
+ 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*.
173
174
  The key must be a single Region key.
174
175
  */
175
176
  FargateEphemeralStorageKmsKeyId?: string;
176
177
  /**
177
- * Specify a KMSlong key ID to encrypt the managed storage.
178
+ * Specify a KMSlong key ID to encrypt Amazon ECS managed storage.
179
+ 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*.
178
180
  The key must be a single Region key.
179
181
  */
180
182
  KmsKeyId?: string;
@@ -786,7 +786,7 @@ export type LogConfiguration = {
786
786
  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:
787
787
  + 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.
788
788
  The following options apply to all supported log drivers.
789
- + 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.
789
+ + 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.
790
790
  To route logs using the ``splunk`` log router, you need to specify a ``splunk-token`` and a ``splunk-url``.
791
791
  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.
792
792
  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``.
@@ -1021,7 +1021,7 @@ export type SystemControl = {
1021
1021
  /**
1022
1022
  * The namespaced kernel parameter to set a ``value`` for.
1023
1023
  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.*"``
1024
- Valid network namespace values: ``Sysctls`` that start with ``"net.*"``
1024
+ Valid network namespace values: ``Sysctls`` that start with ``"net.*"``. Only namespaced ``Sysctls`` that exist within the container starting with "net.* are accepted.
1025
1025
  All of these values are supported by Fargate.
1026
1026
  */
1027
1027
  Value?: string;
@@ -41,9 +41,8 @@ export type ElasticLoadBalancingV2ListenerProperties = {
41
41
  */
42
42
  Protocol?: string;
43
43
  /**
44
- * [HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are supported.
45
- Updating the security policy can result in interruptions if the load balancer is handling a high volume of traffic.
46
- 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*.
44
+ * [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*.
45
+ 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.
47
46
  */
48
47
  SslPolicy?: string;
49
48
  };
@@ -11,8 +11,9 @@ export type ElasticLoadBalancingV2LoadBalancerProperties = {
11
11
  */
12
12
  EnablePrefixForIpv6SourceNat?: string;
13
13
  /**
14
- * Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through privatelink. The default is ``on``.
15
- */
14
+ * Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through privatelink. The default is ``on``.
15
+ 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.
16
+ */
16
17
  EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: string;
17
18
  /**
18
19
  * The IP address type. Internal load balancers must use ``ipv4``.
@@ -21,6 +22,9 @@ export type ElasticLoadBalancingV2LoadBalancerProperties = {
21
22
  [Network Load Balancers and Gateway Load Balancers] The possible values are ``ipv4`` (IPv4 addresses) and ``dualstack`` (IPv4 and IPv6 addresses).
22
23
  */
23
24
  IpAddressType?: string;
25
+ /**
26
+ * The ID of the IPv4 IPAM pool.
27
+ */
24
28
  Ipv4IpamPoolId?: string;
25
29
  /**
26
30
  * The load balancer attributes.
@@ -1,7 +1,7 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * 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.
4
+ * 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.
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-principalpermissions.html}
6
6
  */
7
7
  export type LakeFormationPrincipalPermissionsProperties = {
@@ -319,7 +319,7 @@ export type TableWithColumnsResource = {
319
319
  Name: string;
320
320
  };
321
321
  /**
322
- * 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.
322
+ * 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.
323
323
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-principalpermissions.html}
324
324
  */
325
325
  export declare class LakeFormationPrincipalPermissions extends $Resource<"AWS::LakeFormation::PrincipalPermissions", LakeFormationPrincipalPermissionsProperties, LakeFormationPrincipalPermissionsAttributes> {
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * 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.
3
+ * 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.
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-principalpermissions.html}
5
5
  */
6
6
  export class LakeFormationPrincipalPermissions extends $Resource {
@@ -1062,6 +1062,7 @@ export type Slot = {
1062
1062
  Name: string;
1063
1063
  ObfuscationSetting?: ObfuscationSetting;
1064
1064
  SlotTypeName: string;
1065
+ SubSlotSetting?: SubSlotSetting;
1065
1066
  ValueElicitationSetting: SlotValueElicitationSetting;
1066
1067
  };
1067
1068
  /**
@@ -1232,6 +1233,19 @@ export type SlotValueSelectionSetting = {
1232
1233
  RegexFilter?: SlotValueRegexFilter;
1233
1234
  ResolutionStrategy: SlotValueResolutionStrategy;
1234
1235
  };
1236
+ /**
1237
+ * Type definition for `AWS::Lex::Bot.Specifications`.
1238
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-specifications.html}
1239
+ */
1240
+ export type Specifications = {
1241
+ /**
1242
+ * @minLength `1`
1243
+ * @maxLength `25`
1244
+ * @pattern `^((AMAZON\.)[a-zA-Z_]+?|[0-9a-zA-Z]+)$`
1245
+ */
1246
+ SlotTypeId: string;
1247
+ ValueElicitationSetting: SubSlotValueElicitationSetting;
1248
+ };
1235
1249
  /**
1236
1250
  * Type definition for `AWS::Lex::Bot.SSMLMessage`.
1237
1251
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-ssmlmessage.html}
@@ -1265,6 +1279,19 @@ export type StillWaitingResponseSpecification = {
1265
1279
  */
1266
1280
  TimeoutInSeconds: number;
1267
1281
  };
1282
+ /**
1283
+ * Type definition for `AWS::Lex::Bot.SubSlotSetting`.
1284
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-subslotsetting.html}
1285
+ */
1286
+ export type SubSlotSetting = {
1287
+ /**
1288
+ * @minLength `1`
1289
+ * @maxLength `1000`
1290
+ * @pattern `[0-9A-Za-z_\-\s\(\)]+`
1291
+ */
1292
+ Expression?: string;
1293
+ SlotSpecifications?: Record<string, Specifications>;
1294
+ };
1268
1295
  /**
1269
1296
  * Type definition for `AWS::Lex::Bot.SubSlotTypeComposition`.
1270
1297
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-subslottypecomposition.html}
@@ -1283,6 +1310,16 @@ export type SubSlotTypeComposition = {
1283
1310
  */
1284
1311
  SlotTypeId: string;
1285
1312
  };
1313
+ /**
1314
+ * Type definition for `AWS::Lex::Bot.SubSlotValueElicitationSetting`.
1315
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-subslotvalueelicitationsetting.html}
1316
+ */
1317
+ export type SubSlotValueElicitationSetting = {
1318
+ DefaultValueSpecification?: SlotDefaultValueSpecification;
1319
+ PromptSpecification?: PromptSpecification;
1320
+ SampleUtterances?: SampleUtterance[];
1321
+ WaitAndContinueSpecification?: WaitAndContinueSpecification;
1322
+ };
1286
1323
  /**
1287
1324
  * Type definition for `AWS::Lex::Bot.Tag`.
1288
1325
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-tag.html}
@@ -43,6 +43,10 @@ export type PCSClusterProperties = {
43
43
  * Additional options related to the Slurm scheduler.
44
44
  */
45
45
  SlurmConfiguration?: {
46
+ /**
47
+ * The accounting configuration includes configurable settings for Slurm accounting.
48
+ */
49
+ Accounting?: Accounting;
46
50
  /**
47
51
  * The shared Slurm key for authentication, also known as the cluster secret.
48
52
  */
@@ -115,6 +119,23 @@ export type PCSClusterAttributes = {
115
119
  */
116
120
  Status: "CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED";
117
121
  };
122
+ /**
123
+ * Type definition for `AWS::PCS::Cluster.Accounting`.
124
+ * The accounting configuration includes configurable settings for Slurm accounting.
125
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-accounting.html}
126
+ */
127
+ export type Accounting = {
128
+ /**
129
+ * 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.
130
+ * @min `-1`
131
+ * @max `10000`
132
+ */
133
+ DefaultPurgeTimeInDays?: number;
134
+ /**
135
+ * The default value is `STANDARD`. A value of `STANDARD` means that Slurm accounting is enabled.
136
+ */
137
+ Mode: "STANDARD" | "NONE";
138
+ };
118
139
  /**
119
140
  * Type definition for `AWS::PCS::Cluster.AuthKey`.
120
141
  * The shared Slurm key for authentication, also known as the cluster secret.
@@ -60,7 +60,7 @@ export type KeyAttributes = {
60
60
  * Type definition for `AWS::PaymentCryptography::Key.KeyCheckValueAlgorithm`.
61
61
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keycheckvaluealgorithm.html}
62
62
  */
63
- export type KeyCheckValueAlgorithm = "CMAC" | "ANSI_X9_24" | "HMAC";
63
+ export type KeyCheckValueAlgorithm = "CMAC" | "ANSI_X9_24" | "HMAC" | "SHA_1";
64
64
  /**
65
65
  * Type definition for `AWS::PaymentCryptography::Key.KeyClass`.
66
66
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyclass.html}
@@ -0,0 +1,59 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Definition of AWS::SES::MailManagerAddressList Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html}
6
+ */
7
+ export type SESMailManagerAddressListProperties = {
8
+ /**
9
+ * @minLength `1`
10
+ * @maxLength `255`
11
+ * @pattern `^[a-zA-Z0-9_.-]+$`
12
+ */
13
+ AddressListName?: string;
14
+ /**
15
+ * @minLength `0`
16
+ * @maxLength `200`
17
+ */
18
+ Tags?: Tag[];
19
+ };
20
+ /**
21
+ * Attribute type definition for `AWS::SES::MailManagerAddressList`.
22
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html#aws-resource-ses-mailmanageraddresslist-return-values}
23
+ */
24
+ export type SESMailManagerAddressListAttributes = {
25
+ AddressListArn: string;
26
+ /**
27
+ * @minLength `1`
28
+ * @maxLength `255`
29
+ * @pattern `^[a-zA-Z0-9-]+$`
30
+ */
31
+ AddressListId: string;
32
+ };
33
+ /**
34
+ * Type definition for `AWS::SES::MailManagerAddressList.Tag`.
35
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageraddresslist-tag.html}
36
+ */
37
+ export type Tag = {
38
+ /**
39
+ * @minLength `1`
40
+ * @maxLength `128`
41
+ * @pattern `^[a-zA-Z0-9/_\+=\.:@\-]+$`
42
+ */
43
+ Key: string;
44
+ /**
45
+ * @minLength `0`
46
+ * @maxLength `256`
47
+ * @pattern `^[a-zA-Z0-9/_\+=\.:@\-]*$`
48
+ */
49
+ Value: string;
50
+ };
51
+ /**
52
+ * Definition of AWS::SES::MailManagerAddressList Resource Type
53
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html}
54
+ */
55
+ export declare class SESMailManagerAddressList extends $Resource<"AWS::SES::MailManagerAddressList", SESMailManagerAddressListProperties, SESMailManagerAddressListAttributes> {
56
+ static readonly Type = "AWS::SES::MailManagerAddressList";
57
+ constructor(logicalId: string, properties: SESMailManagerAddressListProperties, options?: $ResourceOptions);
58
+ }
59
+ //# sourceMappingURL=AWS-SES-MailManagerAddressList.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::SES::MailManagerAddressList Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html}
5
+ */
6
+ export class SESMailManagerAddressList extends $Resource {
7
+ static Type = "AWS::SES::MailManagerAddressList";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, SESMailManagerAddressList.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-SES-MailManagerAddressList.js.map
@@ -213,6 +213,8 @@ export type RuleAction = {
213
213
  DeliverToMailbox: DeliverToMailboxAction;
214
214
  } | {
215
215
  DeliverToQBusiness: DeliverToQBusinessAction;
216
+ } | {
217
+ PublishToSns: SnsAction;
216
218
  };
217
219
  /**
218
220
  * Type definition for `AWS::SES::MailManagerRuleSet.RuleBooleanEmailAttribute`.
@@ -454,6 +456,37 @@ export type SendAction = {
454
456
  */
455
457
  RoleArn: string;
456
458
  };
459
+ /**
460
+ * Type definition for `AWS::SES::MailManagerRuleSet.SnsAction`.
461
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsaction.html}
462
+ */
463
+ export type SnsAction = {
464
+ ActionFailurePolicy?: ActionFailurePolicy;
465
+ Encoding?: SnsNotificationEncoding;
466
+ PayloadType?: SnsNotificationPayloadType;
467
+ /**
468
+ * @minLength `20`
469
+ * @maxLength `2048`
470
+ * @pattern `^[a-zA-Z0-9:_/+=,@.#-]+$`
471
+ */
472
+ RoleArn: string;
473
+ /**
474
+ * @minLength `20`
475
+ * @maxLength `2048`
476
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov):sns:[a-z]{2}-[a-z]+-\d{1}:\d{12}:[\w\-]{1,256}$`
477
+ */
478
+ TopicArn: string;
479
+ };
480
+ /**
481
+ * Type definition for `AWS::SES::MailManagerRuleSet.SnsNotificationEncoding`.
482
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsnotificationencoding.html}
483
+ */
484
+ export type SnsNotificationEncoding = "UTF-8" | "BASE64";
485
+ /**
486
+ * Type definition for `AWS::SES::MailManagerRuleSet.SnsNotificationPayloadType`.
487
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsnotificationpayloadtype.html}
488
+ */
489
+ export type SnsNotificationPayloadType = "CONTENT" | "HEADERS";
457
490
  /**
458
491
  * Type definition for `AWS::SES::MailManagerRuleSet.Tag`.
459
492
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-tag.html}
@@ -117,7 +117,7 @@ export type HierarchicalChunkingLevelConfiguration = {
117
117
  * Type definition for `AWS::Wisdom::KnowledgeBase.KnowledgeBaseType`.
118
118
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-knowledgebasetype.html}
119
119
  */
120
- export type KnowledgeBaseType = "EXTERNAL" | "CUSTOM" | "MESSAGE_TEMPLATES" | "MANAGED";
120
+ export type KnowledgeBaseType = "EXTERNAL" | "CUSTOM" | "MESSAGE_TEMPLATES" | "MANAGED" | "QUICK_RESPONSES";
121
121
  /**
122
122
  * Type definition for `AWS::Wisdom::KnowledgeBase.ManagedSourceConfiguration`.
123
123
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-managedsourceconfiguration.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.340",
3
+ "version": "0.1.342",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },