@awboost/cfn-resource-types 0.1.471 → 0.1.473

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.
@@ -32,7 +32,7 @@ export type AppConfigDeploymentProperties = {
32
32
  EnvironmentId: string;
33
33
  /**
34
34
  * The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
35
- * @pattern `^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}|alias/[a-zA-Z0-9/_-]{1,250}|arn:aws[a-zA-Z-]*:kms:[a-z]{2}(-gov|-iso(b?))?-[a-z]+-\d{1}:\d{12}:(key/[0-9a-f-]{36}|alias/[a-zA-Z0-9/_-]{1,250})$`
35
+ * @pattern `^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}|alias/[a-zA-Z0-9/_-]{1,250}|arn:aws[a-zA-Z-]*:kms:((eusc-)?[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(key/[0-9a-f-]{36}|alias/[a-zA-Z0-9/_-]{1,250})$`
36
36
  */
37
37
  KmsKeyIdentifier?: string;
38
38
  /**
@@ -13,6 +13,7 @@ export type BackupLogicallyAirGappedBackupVaultProperties = {
13
13
  BackupVaultTags?: Record<string, string>;
14
14
  MaxRetentionDays: number;
15
15
  MinRetentionDays: number;
16
+ MpaApprovalTeamArn?: string;
16
17
  Notifications?: NotificationObjectType;
17
18
  };
18
19
  /**
@@ -5,6 +5,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html}
6
6
  */
7
7
  export type BedrockAgentCoreBrowserCustomProperties = {
8
+ /**
9
+ * Browser signing configuration.
10
+ */
11
+ BrowserSigning?: BrowserSigning;
8
12
  /**
9
13
  * The description of the browser.
10
14
  */
@@ -84,6 +88,14 @@ export type BrowserNetworkConfiguration = {
84
88
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-browsernetworkmode.html}
85
89
  */
86
90
  export type BrowserNetworkMode = "PUBLIC" | "VPC";
91
+ /**
92
+ * Type definition for `AWS::BedrockAgentCore::BrowserCustom.BrowserSigning`.
93
+ * Browser signing configuration
94
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-browsersigning.html}
95
+ */
96
+ export type BrowserSigning = {
97
+ Enabled?: boolean;
98
+ };
87
99
  /**
88
100
  * Type definition for `AWS::BedrockAgentCore::BrowserCustom.BrowserStatus`.
89
101
  * Status of browser
@@ -28,6 +28,10 @@ export type BedrockAgentCoreRuntimeProperties = {
28
28
  * Environment variables for the agent runtime
29
29
  */
30
30
  EnvironmentVariables?: EnvironmentVariablesMap;
31
+ /**
32
+ * Lifecycle configuration for managing runtime sessions
33
+ */
34
+ LifecycleConfiguration?: LifecycleConfiguration;
31
35
  /**
32
36
  * Network access configuration for the Agent
33
37
  */
@@ -36,6 +40,10 @@ export type BedrockAgentCoreRuntimeProperties = {
36
40
  * Protocol configuration for the agent runtime
37
41
  */
38
42
  ProtocolConfiguration?: ProtocolConfiguration;
43
+ /**
44
+ * Configuration for HTTP request headers
45
+ */
46
+ RequestHeaderConfiguration?: RequestHeaderConfiguration;
39
47
  /**
40
48
  * Amazon Resource Name (ARN) of an IAM role
41
49
  * @pattern `arn:aws(-[^:]+)?:iam::([0-9]{12})?:role/.+`
@@ -93,11 +101,21 @@ export type BedrockAgentCoreRuntimeAttributes = {
93
101
  WorkloadIdentityArn: string;
94
102
  };
95
103
  };
104
+ /**
105
+ * Type definition for `AWS::BedrockAgentCore::Runtime.AgentManagedRuntimeType`.
106
+ * Managed runtime types
107
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-agentmanagedruntimetype.html}
108
+ */
109
+ export type AgentManagedRuntimeType = "PYTHON_3_10" | "PYTHON_3_11" | "PYTHON_3_12" | "PYTHON_3_13";
96
110
  /**
97
111
  * Type definition for `AWS::BedrockAgentCore::Runtime.AgentRuntimeArtifact`.
98
112
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-agentruntimeartifact.html}
99
113
  */
100
114
  export type AgentRuntimeArtifact = {
115
+ /**
116
+ * Representation of a code configuration
117
+ */
118
+ CodeConfiguration?: CodeConfiguration;
101
119
  ContainerConfiguration?: ContainerConfiguration;
102
120
  };
103
121
  /**
@@ -116,6 +134,38 @@ export type AuthorizerConfiguration = {
116
134
  */
117
135
  CustomJWTAuthorizer?: CustomJWTAuthorizerConfiguration;
118
136
  };
137
+ /**
138
+ * Type definition for `AWS::BedrockAgentCore::Runtime.Code`.
139
+ * Object represents source code from zip file
140
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-code.html}
141
+ */
142
+ export type Code = {
143
+ /**
144
+ * S3 Location Configuration
145
+ */
146
+ S3?: S3Location;
147
+ };
148
+ /**
149
+ * Type definition for `AWS::BedrockAgentCore::Runtime.CodeConfiguration`.
150
+ * Representation of a code configuration
151
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-codeconfiguration.html}
152
+ */
153
+ export type CodeConfiguration = {
154
+ /**
155
+ * Object represents source code from zip file
156
+ */
157
+ Code: Code;
158
+ /**
159
+ * List of entry points
160
+ * @minLength `1`
161
+ * @maxLength `2`
162
+ */
163
+ EntryPoint: string[];
164
+ /**
165
+ * Managed runtime types
166
+ */
167
+ Runtime: AgentManagedRuntimeType;
168
+ };
119
169
  /**
120
170
  * Type definition for `AWS::BedrockAgentCore::Runtime.ContainerConfiguration`.
121
171
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-containerconfiguration.html}
@@ -157,6 +207,25 @@ export type CustomJWTAuthorizerConfiguration = {
157
207
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-environmentvariablesmap.html}
158
208
  */
159
209
  export type EnvironmentVariablesMap = Record<string, string>;
210
+ /**
211
+ * Type definition for `AWS::BedrockAgentCore::Runtime.LifecycleConfiguration`.
212
+ * Configuration for managing the lifecycle of runtime sessions and resources
213
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-lifecycleconfiguration.html}
214
+ */
215
+ export type LifecycleConfiguration = {
216
+ /**
217
+ * Timeout in seconds for idle runtime sessions
218
+ * @min `60`
219
+ * @max `28800`
220
+ */
221
+ IdleRuntimeSessionTimeout?: number;
222
+ /**
223
+ * Maximum lifetime in seconds for runtime sessions
224
+ * @min `60`
225
+ * @max `28800`
226
+ */
227
+ MaxLifetime?: number;
228
+ };
160
229
  /**
161
230
  * Type definition for `AWS::BedrockAgentCore::Runtime.NetworkConfiguration`.
162
231
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-networkconfiguration.html}
@@ -182,6 +251,43 @@ export type NetworkMode = "PUBLIC" | "VPC";
182
251
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-protocolconfiguration.html}
183
252
  */
184
253
  export type ProtocolConfiguration = "MCP" | "HTTP" | "A2A";
254
+ /**
255
+ * Type definition for `AWS::BedrockAgentCore::Runtime.RequestHeaderConfiguration`.
256
+ * Configuration for HTTP request headers
257
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-requestheaderconfiguration.html}
258
+ */
259
+ export type RequestHeaderConfiguration = {
260
+ /**
261
+ * List of allowed HTTP headers for agent runtime requests
262
+ * @minLength `1`
263
+ * @maxLength `20`
264
+ */
265
+ RequestHeaderAllowlist?: string[];
266
+ };
267
+ /**
268
+ * Type definition for `AWS::BedrockAgentCore::Runtime.S3Location`.
269
+ * S3 Location Configuration
270
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-s3location.html}
271
+ */
272
+ export type S3Location = {
273
+ /**
274
+ * S3 bucket name
275
+ * @pattern `^[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]$`
276
+ */
277
+ Bucket: string;
278
+ /**
279
+ * S3 object key prefix
280
+ * @minLength `1`
281
+ * @maxLength `1024`
282
+ */
283
+ Prefix: string;
284
+ /**
285
+ * S3 object version ID
286
+ * @minLength `3`
287
+ * @maxLength `1024`
288
+ */
289
+ VersionId?: string;
290
+ };
185
291
  /**
186
292
  * Type definition for `AWS::BedrockAgentCore::Runtime.TagsMap`.
187
293
  * A map of tag keys and values
@@ -12,6 +12,7 @@ export type EC2TransitGatewayProperties = {
12
12
  DefaultRouteTablePropagation?: string;
13
13
  Description?: string;
14
14
  DnsSupport?: string;
15
+ EncryptionSupport?: "disable" | "enable";
15
16
  MulticastSupport?: string;
16
17
  PropagationDefaultRouteTableId?: string;
17
18
  SecurityGroupReferencingSupport?: string;
@@ -24,6 +25,7 @@ export type EC2TransitGatewayProperties = {
24
25
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#aws-resource-ec2-transitgateway-return-values}
25
26
  */
26
27
  export type EC2TransitGatewayAttributes = {
28
+ EncryptionSupportState: string;
27
29
  Id: string;
28
30
  TransitGatewayArn: string;
29
31
  };
@@ -33,6 +33,10 @@ export type S3TablesTableProperties = {
33
33
  * The name for the table.
34
34
  */
35
35
  TableName: string;
36
+ /**
37
+ * User tags (key-value pairs) to associate with the table.
38
+ */
39
+ Tags?: Tag[];
36
40
  /**
37
41
  * Indicates that you don't want to specify a schema for the table. This property is mutually exclusive to 'IcebergMetadata', and its only possible value is 'Yes'.
38
42
  */
@@ -140,6 +144,23 @@ export type SnapshotManagement = {
140
144
  */
141
145
  Status?: "enabled" | "disabled";
142
146
  };
147
+ /**
148
+ * Type definition for `AWS::S3Tables::Table.Tag`.
149
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-tag.html}
150
+ */
151
+ export type Tag = {
152
+ /**
153
+ * Tag key must be between 1 to 128 characters in length. Tag key cannot start with 'aws:' and can only contain alphanumeric characters, spaces, _, ., /, =, +, -, and @.
154
+ * @minLength `1`
155
+ * @maxLength `128`
156
+ */
157
+ Key: string;
158
+ /**
159
+ * Tag value must be between 0 to 256 characters in length. Tag value can only contain alphanumeric characters, spaces, _, ., /, =, +, -, and @.
160
+ * @maxLength `256`
161
+ */
162
+ Value: string;
163
+ };
143
164
  /**
144
165
  * Type definition for `AWS::S3Tables::Table.WithoutMetadata`.
145
166
  * Indicates that you don't want to specify a schema for the table. This property is mutually exclusive to 'IcebergMetadata', and its only possible value is 'Yes'.
@@ -16,6 +16,10 @@ export type S3TablesTableBucketProperties = {
16
16
  * @maxLength `63`
17
17
  */
18
18
  TableBucketName: string;
19
+ /**
20
+ * User tags (key-value pairs) to associate with the table bucket.
21
+ */
22
+ Tags?: Tag[];
19
23
  /**
20
24
  * Settings governing the Unreferenced File Removal maintenance action. Unreferenced file removal identifies and deletes all objects that are not referenced by any table snapshots.
21
25
  */
@@ -46,6 +50,23 @@ export type EncryptionConfiguration = {
46
50
  */
47
51
  SSEAlgorithm?: "AES256" | "aws:kms";
48
52
  };
53
+ /**
54
+ * Type definition for `AWS::S3Tables::TableBucket.Tag`.
55
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucket-tag.html}
56
+ */
57
+ export type Tag = {
58
+ /**
59
+ * Tag key must be between 1 to 128 characters in length. Tag key cannot start with 'aws:' and can only contain alphanumeric characters, spaces, _, ., /, =, +, -, and @.
60
+ * @minLength `1`
61
+ * @maxLength `128`
62
+ */
63
+ Key: string;
64
+ /**
65
+ * Tag value must be between 0 to 256 characters in length. Tag value can only contain alphanumeric characters, spaces, _, ., /, =, +, -, and @.
66
+ * @maxLength `256`
67
+ */
68
+ Value: string;
69
+ };
49
70
  /**
50
71
  * Type definition for `AWS::S3Tables::TableBucket.UnreferencedFileRemoval`.
51
72
  * Settings governing the Unreferenced File Removal maintenance action. Unreferenced file removal identifies and deletes all objects that are not referenced by any table snapshots.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.471",
3
+ "version": "0.1.473",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },