@awboost/cfn-resource-types 0.1.428 → 0.1.430

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.
@@ -0,0 +1,126 @@
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
+ * Resource definition for AWS::BedrockAgentCore::BrowserCustom
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html}
6
+ */
7
+ export type BedrockAgentCoreBrowserCustomProperties = {
8
+ /**
9
+ * The description of the browser.
10
+ */
11
+ Description?: string;
12
+ /**
13
+ * The Amazon Resource Name (ARN) of the IAM role that the browser uses to access resources.
14
+ * @pattern `^arn:aws(-[a-z]+)*:iam::[0-9]{12}:role/.+$`
15
+ */
16
+ ExecutionRoleArn?: string;
17
+ /**
18
+ * The name of the browser.
19
+ */
20
+ Name: string;
21
+ /**
22
+ * Network configuration for browser.
23
+ */
24
+ NetworkConfiguration: BrowserNetworkConfiguration;
25
+ /**
26
+ * Recording configuration for browser.
27
+ */
28
+ RecordingConfig?: RecordingConfig;
29
+ /**
30
+ * A map of tag keys and values
31
+ */
32
+ Tags?: TagsMap;
33
+ };
34
+ /**
35
+ * Attribute type definition for `AWS::BedrockAgentCore::BrowserCustom`.
36
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html#aws-resource-bedrockagentcore-browsercustom-return-values}
37
+ */
38
+ export type BedrockAgentCoreBrowserCustomAttributes = {
39
+ /**
40
+ * The ARN of a Browser resource.
41
+ * @pattern `^arn:(-[^:]+)?:bedrock-agentcore:[a-z0-9-]+:(aws|[0-9]{12}):browser(-custom)?/(aws\.browser\.v1|[a-zA-Z][a-zA-Z0-9_]{0,47}-[a-zA-Z0-9]{10})$`
42
+ */
43
+ BrowserArn: string;
44
+ /**
45
+ * The id of the browser.
46
+ * @pattern `^(aws\.browser\.v1|[a-zA-Z][a-zA-Z0-9_]{0,47}-[a-zA-Z0-9]{10})$`
47
+ */
48
+ BrowserId: string;
49
+ /**
50
+ * Timestamp when the browser was created.
51
+ */
52
+ CreatedAt: string;
53
+ /**
54
+ * Timestamp when the browser was last updated.
55
+ */
56
+ LastUpdatedAt: string;
57
+ /**
58
+ * Status of browser.
59
+ */
60
+ Status: BrowserStatus;
61
+ };
62
+ /**
63
+ * Type definition for `AWS::BedrockAgentCore::BrowserCustom.BrowserNetworkConfiguration`.
64
+ * Network configuration for browser
65
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-browsernetworkconfiguration.html}
66
+ */
67
+ export type BrowserNetworkConfiguration = {
68
+ /**
69
+ * Network modes supported by browser
70
+ */
71
+ NetworkMode: BrowserNetworkMode;
72
+ };
73
+ /**
74
+ * Type definition for `AWS::BedrockAgentCore::BrowserCustom.BrowserNetworkMode`.
75
+ * Network modes supported by browser
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-browsernetworkmode.html}
77
+ */
78
+ export type BrowserNetworkMode = "PUBLIC";
79
+ /**
80
+ * Type definition for `AWS::BedrockAgentCore::BrowserCustom.BrowserStatus`.
81
+ * Status of browser
82
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-browserstatus.html}
83
+ */
84
+ export type BrowserStatus = "CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED";
85
+ /**
86
+ * Type definition for `AWS::BedrockAgentCore::BrowserCustom.RecordingConfig`.
87
+ * Recording configuration for browser
88
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-recordingconfig.html}
89
+ */
90
+ export type RecordingConfig = {
91
+ Enabled?: boolean;
92
+ /**
93
+ * S3 Location Configuration
94
+ */
95
+ S3Location?: S3Location;
96
+ };
97
+ /**
98
+ * Type definition for `AWS::BedrockAgentCore::BrowserCustom.S3Location`.
99
+ * S3 Location Configuration
100
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-s3location.html}
101
+ */
102
+ export type S3Location = {
103
+ /**
104
+ * @pattern `^[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]$`
105
+ */
106
+ Bucket: string;
107
+ /**
108
+ * @minLength `1`
109
+ */
110
+ Prefix: string;
111
+ };
112
+ /**
113
+ * Type definition for `AWS::BedrockAgentCore::BrowserCustom.TagsMap`.
114
+ * A map of tag keys and values
115
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-tagsmap.html}
116
+ */
117
+ export type TagsMap = Record<string, string>;
118
+ /**
119
+ * Resource definition for AWS::BedrockAgentCore::BrowserCustom
120
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html}
121
+ */
122
+ export declare class BedrockAgentCoreBrowserCustom extends $Resource<"AWS::BedrockAgentCore::BrowserCustom", BedrockAgentCoreBrowserCustomProperties, BedrockAgentCoreBrowserCustomAttributes> {
123
+ static readonly Type = "AWS::BedrockAgentCore::BrowserCustom";
124
+ constructor(logicalId: string, properties: BedrockAgentCoreBrowserCustomProperties, options?: $ResourceOptions);
125
+ }
126
+ //# sourceMappingURL=AWS-BedrockAgentCore-BrowserCustom.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource definition for AWS::BedrockAgentCore::BrowserCustom
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html}
5
+ */
6
+ export class BedrockAgentCoreBrowserCustom extends $Resource {
7
+ static Type = "AWS::BedrockAgentCore::BrowserCustom";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, BedrockAgentCoreBrowserCustom.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-BedrockAgentCore-BrowserCustom.js.map
@@ -0,0 +1,95 @@
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
+ * Resource definition for AWS::BedrockAgentCore::CodeInterpreterCustom
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html}
6
+ */
7
+ export type BedrockAgentCoreCodeInterpreterCustomProperties = {
8
+ /**
9
+ * The description of the code interpreter.
10
+ */
11
+ Description?: string;
12
+ /**
13
+ * The ARN of the IAM role that the code interpreter uses to access resources.
14
+ * @pattern `^arn:aws(-[a-z]+)*:iam::[0-9]{12}:role/.+$`
15
+ */
16
+ ExecutionRoleArn?: string;
17
+ /**
18
+ * The name of the code interpreter.
19
+ */
20
+ Name: string;
21
+ /**
22
+ * Network configuration for code interpreter.
23
+ */
24
+ NetworkConfiguration: CodeInterpreterNetworkConfiguration;
25
+ /**
26
+ * A map of tag keys and values
27
+ */
28
+ Tags?: TagsMap;
29
+ };
30
+ /**
31
+ * Attribute type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom`.
32
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html#aws-resource-bedrockagentcore-codeinterpretercustom-return-values}
33
+ */
34
+ export type BedrockAgentCoreCodeInterpreterCustomAttributes = {
35
+ /**
36
+ * The ARN of a CodeInterpreter resource.
37
+ * @pattern `^arn:(-[^:]+)?:bedrock-agentcore:[a-z0-9-]+:(aws|[0-9]{12}):code-interpreter(-custom)?/(aws\.codeinterpreter\.v1|[a-zA-Z][a-zA-Z0-9_]{0,47}-[a-zA-Z0-9]{10})$`
38
+ */
39
+ CodeInterpreterArn: string;
40
+ /**
41
+ * The id of the code interpreter.
42
+ * @pattern `^(aws\.codeinterpreter\.v1|[a-zA-Z][a-zA-Z0-9_]{0,47}-[a-zA-Z0-9]{10})$`
43
+ */
44
+ CodeInterpreterId: string;
45
+ /**
46
+ * Timestamp when the code interpreter was created.
47
+ */
48
+ CreatedAt: string;
49
+ /**
50
+ * Timestamp when the code interpreter was last updated.
51
+ */
52
+ LastUpdatedAt: string;
53
+ /**
54
+ * Status of code interpreter.
55
+ */
56
+ Status: CodeInterpreterStatus;
57
+ };
58
+ /**
59
+ * Type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom.CodeInterpreterNetworkConfiguration`.
60
+ * Network configuration for code interpreter
61
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-codeinterpreternetworkconfiguration.html}
62
+ */
63
+ export type CodeInterpreterNetworkConfiguration = {
64
+ /**
65
+ * Network modes supported by code interpreter
66
+ */
67
+ NetworkMode: CodeInterpreterNetworkMode;
68
+ };
69
+ /**
70
+ * Type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom.CodeInterpreterNetworkMode`.
71
+ * Network modes supported by code interpreter
72
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-codeinterpreternetworkmode.html}
73
+ */
74
+ export type CodeInterpreterNetworkMode = "PUBLIC" | "SANDBOX";
75
+ /**
76
+ * Type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom.CodeInterpreterStatus`.
77
+ * Status of Code interpreter
78
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-codeinterpreterstatus.html}
79
+ */
80
+ export type CodeInterpreterStatus = "CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED";
81
+ /**
82
+ * Type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom.TagsMap`.
83
+ * A map of tag keys and values
84
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-tagsmap.html}
85
+ */
86
+ export type TagsMap = Record<string, string>;
87
+ /**
88
+ * Resource definition for AWS::BedrockAgentCore::CodeInterpreterCustom
89
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html}
90
+ */
91
+ export declare class BedrockAgentCoreCodeInterpreterCustom extends $Resource<"AWS::BedrockAgentCore::CodeInterpreterCustom", BedrockAgentCoreCodeInterpreterCustomProperties, BedrockAgentCoreCodeInterpreterCustomAttributes> {
92
+ static readonly Type = "AWS::BedrockAgentCore::CodeInterpreterCustom";
93
+ constructor(logicalId: string, properties: BedrockAgentCoreCodeInterpreterCustomProperties, options?: $ResourceOptions);
94
+ }
95
+ //# sourceMappingURL=AWS-BedrockAgentCore-CodeInterpreterCustom.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource definition for AWS::BedrockAgentCore::CodeInterpreterCustom
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html}
5
+ */
6
+ export class BedrockAgentCoreCodeInterpreterCustom extends $Resource {
7
+ static Type = "AWS::BedrockAgentCore::CodeInterpreterCustom";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, BedrockAgentCoreCodeInterpreterCustom.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-BedrockAgentCore-CodeInterpreterCustom.js.map
@@ -0,0 +1,208 @@
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
+ * Resource Type definition for AWS::BedrockAgentCore::Runtime
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html}
6
+ */
7
+ export type BedrockAgentCoreRuntimeProperties = {
8
+ /**
9
+ * The artifact of the agent
10
+ */
11
+ AgentRuntimeArtifact: AgentRuntimeArtifact;
12
+ /**
13
+ * Name for a resource
14
+ * @pattern `[a-zA-Z][a-zA-Z0-9_]{0,47}`
15
+ */
16
+ AgentRuntimeName: string;
17
+ /**
18
+ * Authorizer configuration for the agent runtime
19
+ */
20
+ AuthorizerConfiguration?: AuthorizerConfiguration;
21
+ /**
22
+ * Description of the resource
23
+ * @minLength `1`
24
+ * @maxLength `1200`
25
+ */
26
+ Description?: string;
27
+ /**
28
+ * Environment variables for the agent runtime
29
+ */
30
+ EnvironmentVariables?: EnvironmentVariablesMap;
31
+ /**
32
+ * Network access configuration for the Agent
33
+ */
34
+ NetworkConfiguration: NetworkConfiguration;
35
+ /**
36
+ * Protocol configuration for the agent runtime
37
+ */
38
+ ProtocolConfiguration?: ProtocolConfiguration;
39
+ /**
40
+ * Amazon Resource Name (ARN) of an IAM role
41
+ * @pattern `arn:aws(-[^:]+)?:iam::([0-9]{12})?:role/.+`
42
+ */
43
+ RoleArn: string;
44
+ /**
45
+ * A map of tag keys and values
46
+ */
47
+ Tags?: TagsMap;
48
+ };
49
+ /**
50
+ * Attribute type definition for `AWS::BedrockAgentCore::Runtime`.
51
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html#aws-resource-bedrockagentcore-runtime-return-values}
52
+ */
53
+ export type BedrockAgentCoreRuntimeAttributes = {
54
+ /**
55
+ * The Amazon Resource Name(ARN) that uniquely identifies the Agent
56
+ * @maxLength `2048`
57
+ * @pattern `arn:(-[^:]+)?:bedrock-agentcore:[a-z0-9-]+:[0-9]{12}:agent/[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}:([0-9]{0,4}[1-9][0-9]{0,4})`
58
+ */
59
+ AgentRuntimeArn: string;
60
+ /**
61
+ * Identifier for a resource
62
+ * @pattern `[a-zA-Z][a-zA-Z0-9_]{0,99}-[a-zA-Z0-9]{10}`
63
+ */
64
+ AgentRuntimeId: string;
65
+ /**
66
+ * Version of the Agent
67
+ * @minLength `1`
68
+ * @maxLength `5`
69
+ * @pattern `([1-9][0-9]{0,4})`
70
+ */
71
+ AgentRuntimeVersion: string;
72
+ /**
73
+ * Timestamp when the Agent was created
74
+ */
75
+ CreatedAt: string;
76
+ /**
77
+ * When resource was last updated
78
+ */
79
+ LastUpdatedAt: string;
80
+ /**
81
+ * Current status of the agent
82
+ */
83
+ Status: AgentStatus;
84
+ /**
85
+ * Workload identity details for the agent
86
+ */
87
+ WorkloadIdentityDetails: {
88
+ /**
89
+ * ARN of the workload identity
90
+ * @minLength `1`
91
+ * @maxLength `1024`
92
+ */
93
+ WorkloadIdentityArn: string;
94
+ };
95
+ };
96
+ /**
97
+ * Type definition for `AWS::BedrockAgentCore::Runtime.AgentRuntimeArtifact`.
98
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-agentruntimeartifact.html}
99
+ */
100
+ export type AgentRuntimeArtifact = {
101
+ ContainerConfiguration?: ContainerConfiguration;
102
+ };
103
+ /**
104
+ * Type definition for `AWS::BedrockAgentCore::Runtime.AgentStatus`.
105
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-agentstatus.html}
106
+ */
107
+ export type AgentStatus = "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING";
108
+ /**
109
+ * Type definition for `AWS::BedrockAgentCore::Runtime.AuthorizerConfiguration`.
110
+ * Configuration for the authorizer
111
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-authorizerconfiguration.html}
112
+ */
113
+ export type AuthorizerConfiguration = {
114
+ /**
115
+ * Configuration for custom JWT authorizer
116
+ */
117
+ CustomJWTAuthorizer?: CustomJWTAuthorizerConfiguration;
118
+ };
119
+ /**
120
+ * Type definition for `AWS::BedrockAgentCore::Runtime.ContainerConfiguration`.
121
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-containerconfiguration.html}
122
+ */
123
+ export type ContainerConfiguration = {
124
+ /**
125
+ * The ECR URI of the container
126
+ * @minLength `1`
127
+ * @maxLength `1024`
128
+ * @pattern `^\d{12}\.dkr\.ecr\.([a-z0-9-]+)\.amazonaws\.com/((?:[a-z0-9]+(?:[._-][a-z0-9]+)/‍*)*[a-z0-9]+(?:[._-][a-z0-9]+)*)([:@]\S+)$`
129
+ */
130
+ ContainerUri: string;
131
+ };
132
+ /**
133
+ * Type definition for `AWS::BedrockAgentCore::Runtime.CustomJWTAuthorizerConfiguration`.
134
+ * Configuration for custom JWT authorizer
135
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-customjwtauthorizerconfiguration.html}
136
+ */
137
+ export type CustomJWTAuthorizerConfiguration = {
138
+ /**
139
+ * List of allowed audiences
140
+ * @minLength `1`
141
+ */
142
+ AllowedAudience?: string[];
143
+ /**
144
+ * List of allowed clients
145
+ * @minLength `1`
146
+ */
147
+ AllowedClients?: string[];
148
+ /**
149
+ * OpenID Connect discovery URL
150
+ * @pattern `^.+/\.well-known/openid-configuration$`
151
+ */
152
+ DiscoveryUrl: string;
153
+ };
154
+ /**
155
+ * Type definition for `AWS::BedrockAgentCore::Runtime.EnvironmentVariablesMap`.
156
+ * Environment variable attributes
157
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-environmentvariablesmap.html}
158
+ */
159
+ export type EnvironmentVariablesMap = Record<string, string>;
160
+ /**
161
+ * Type definition for `AWS::BedrockAgentCore::Runtime.NetworkConfiguration`.
162
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-networkconfiguration.html}
163
+ */
164
+ export type NetworkConfiguration = {
165
+ /**
166
+ * Network mode configuration type
167
+ */
168
+ NetworkMode: NetworkMode;
169
+ };
170
+ /**
171
+ * Type definition for `AWS::BedrockAgentCore::Runtime.NetworkMode`.
172
+ * Network mode configuration type
173
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-networkmode.html}
174
+ */
175
+ export type NetworkMode = "PUBLIC";
176
+ /**
177
+ * Type definition for `AWS::BedrockAgentCore::Runtime.ProtocolConfiguration`.
178
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-protocolconfiguration.html}
179
+ */
180
+ export type ProtocolConfiguration = "MCP" | "HTTP";
181
+ /**
182
+ * Type definition for `AWS::BedrockAgentCore::Runtime.TagsMap`.
183
+ * A map of tag keys and values
184
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-tagsmap.html}
185
+ */
186
+ export type TagsMap = Record<string, string>;
187
+ /**
188
+ * Type definition for `AWS::BedrockAgentCore::Runtime.WorkloadIdentityDetails`.
189
+ * Configuration for workload identity
190
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-workloadidentitydetails.html}
191
+ */
192
+ export type WorkloadIdentityDetails = {
193
+ /**
194
+ * ARN of the workload identity
195
+ * @minLength `1`
196
+ * @maxLength `1024`
197
+ */
198
+ WorkloadIdentityArn: string;
199
+ };
200
+ /**
201
+ * Resource Type definition for AWS::BedrockAgentCore::Runtime
202
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html}
203
+ */
204
+ export declare class BedrockAgentCoreRuntime extends $Resource<"AWS::BedrockAgentCore::Runtime", BedrockAgentCoreRuntimeProperties, BedrockAgentCoreRuntimeAttributes> {
205
+ static readonly Type = "AWS::BedrockAgentCore::Runtime";
206
+ constructor(logicalId: string, properties: BedrockAgentCoreRuntimeProperties, options?: $ResourceOptions);
207
+ }
208
+ //# sourceMappingURL=AWS-BedrockAgentCore-Runtime.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::BedrockAgentCore::Runtime
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html}
5
+ */
6
+ export class BedrockAgentCoreRuntime extends $Resource {
7
+ static Type = "AWS::BedrockAgentCore::Runtime";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, BedrockAgentCoreRuntime.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-BedrockAgentCore-Runtime.js.map
@@ -0,0 +1,102 @@
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
+ * Resource definition for AWS::BedrockAgentCore::RuntimeEndpoint
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html}
6
+ */
7
+ export type BedrockAgentCoreRuntimeEndpointProperties = {
8
+ /**
9
+ * The ID of the parent Agent Runtime (required for creation)
10
+ * @pattern `^[a-zA-Z][a-zA-Z0-9_]{0,99}-[a-zA-Z0-9]{10}$`
11
+ */
12
+ AgentRuntimeId: string;
13
+ /**
14
+ * The version of the AgentCore Runtime to use for the endpoint.
15
+ * @pattern `^([1-9][0-9]{0,4})$`
16
+ */
17
+ AgentRuntimeVersion?: string;
18
+ /**
19
+ * The description of the AgentCore Runtime endpoint.
20
+ * @minLength `1`
21
+ * @maxLength `256`
22
+ */
23
+ Description?: string;
24
+ /**
25
+ * The name of the Agent Runtime Endpoint
26
+ * @minLength `1`
27
+ * @maxLength `48`
28
+ * @pattern `^[a-zA-Z][a-zA-Z0-9_]{0,47}$`
29
+ */
30
+ Name: string;
31
+ /**
32
+ * A map of tag keys and values
33
+ */
34
+ Tags?: TagsMap;
35
+ };
36
+ /**
37
+ * Attribute type definition for `AWS::BedrockAgentCore::RuntimeEndpoint`.
38
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#aws-resource-bedrockagentcore-runtimeendpoint-return-values}
39
+ */
40
+ export type BedrockAgentCoreRuntimeEndpointAttributes = {
41
+ /**
42
+ * The ARN of the Agent Runtime
43
+ * @pattern `^arn:(-[^:]+)?:bedrock-agentcore:[a-z0-9-]+:[0-9]{12}:agent/[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}:([0-9]{0,4}[1-9][0-9]{0,4})$`
44
+ */
45
+ AgentRuntimeArn: string;
46
+ /**
47
+ * The Amazon Resource Name (ARN) of the AgentCore Runtime.
48
+ * @pattern `^arn:aws:bedrock-agentcore:[a-z0-9-]+:[0-9]{12}:runtime/[a-zA-Z0-9_-]+/runtime-endpoint/[a-zA-Z0-9_-]+$`
49
+ */
50
+ AgentRuntimeEndpointArn: string;
51
+ /**
52
+ * The timestamp when the Agent Runtime Endpoint was created
53
+ */
54
+ CreatedAt: string;
55
+ /**
56
+ * The reason for failure if the endpoint is in a failed state
57
+ */
58
+ FailureReason: string;
59
+ /**
60
+ * The unique identifier of the AgentCore Runtime endpoint.
61
+ * @pattern `^[a-zA-Z0-9_-]+$`
62
+ */
63
+ Id: string;
64
+ /**
65
+ * The timestamp when the Agent Runtime Endpoint was last updated
66
+ */
67
+ LastUpdatedAt: string;
68
+ /**
69
+ * The Live version of the Agent Runtime
70
+ * @pattern `^([1-9][0-9]{0,4})$`
71
+ */
72
+ LiveVersion: string;
73
+ /**
74
+ * The status of the Agent Runtime Endpoint
75
+ */
76
+ Status: AgentRuntimeEndpointStatus;
77
+ /**
78
+ * The target version of the AgentCore Runtime for the endpoint.
79
+ * @pattern `^([1-9][0-9]{0,4})$`
80
+ */
81
+ TargetVersion: string;
82
+ };
83
+ /**
84
+ * Type definition for `AWS::BedrockAgentCore::RuntimeEndpoint.AgentRuntimeEndpointStatus`.
85
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtimeendpoint-agentruntimeendpointstatus.html}
86
+ */
87
+ export type AgentRuntimeEndpointStatus = "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING";
88
+ /**
89
+ * Type definition for `AWS::BedrockAgentCore::RuntimeEndpoint.TagsMap`.
90
+ * A map of tag keys and values
91
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtimeendpoint-tagsmap.html}
92
+ */
93
+ export type TagsMap = Record<string, string>;
94
+ /**
95
+ * Resource definition for AWS::BedrockAgentCore::RuntimeEndpoint
96
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html}
97
+ */
98
+ export declare class BedrockAgentCoreRuntimeEndpoint extends $Resource<"AWS::BedrockAgentCore::RuntimeEndpoint", BedrockAgentCoreRuntimeEndpointProperties, BedrockAgentCoreRuntimeEndpointAttributes> {
99
+ static readonly Type = "AWS::BedrockAgentCore::RuntimeEndpoint";
100
+ constructor(logicalId: string, properties: BedrockAgentCoreRuntimeEndpointProperties, options?: $ResourceOptions);
101
+ }
102
+ //# sourceMappingURL=AWS-BedrockAgentCore-RuntimeEndpoint.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource definition for AWS::BedrockAgentCore::RuntimeEndpoint
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html}
5
+ */
6
+ export class BedrockAgentCoreRuntimeEndpoint extends $Resource {
7
+ static Type = "AWS::BedrockAgentCore::RuntimeEndpoint";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, BedrockAgentCoreRuntimeEndpoint.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-BedrockAgentCore-RuntimeEndpoint.js.map
@@ -59,6 +59,13 @@ export type Ac3Settings = {
59
59
  LfeFilter?: string;
60
60
  MetadataControl?: string;
61
61
  };
62
+ /**
63
+ * Type definition for `AWS::MediaLive::Channel.AdditionalDestinations`.
64
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-additionaldestinations.html}
65
+ */
66
+ export type AdditionalDestinations = {
67
+ Destination?: OutputLocationRef;
68
+ };
62
69
  /**
63
70
  * Type definition for `AWS::MediaLive::Channel.AncillarySourceSettings`.
64
71
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-ancillarysourcesettings.html}
@@ -369,6 +376,7 @@ export type BurnInDestinationSettings = {
369
376
  ShadowOpacity?: number;
370
377
  ShadowXOffset?: number;
371
378
  ShadowYOffset?: number;
379
+ SubtitleRows?: string;
372
380
  TeletextGridControl?: string;
373
381
  XPosition?: number;
374
382
  YPosition?: number;
@@ -474,6 +482,7 @@ export type CmafIngestCaptionLanguageMapping = {
474
482
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestgroupsettings.html}
475
483
  */
476
484
  export type CmafIngestGroupSettings = {
485
+ AdditionalDestinations?: AdditionalDestinations[];
477
486
  CaptionLanguageMappings?: CmafIngestCaptionLanguageMapping[];
478
487
  Destination?: OutputLocationRef;
479
488
  Id3Behavior?: string;
@@ -562,6 +571,7 @@ export type DvbSubDestinationSettings = {
562
571
  ShadowOpacity?: number;
563
572
  ShadowXOffset?: number;
564
573
  ShadowYOffset?: number;
574
+ SubtitleRows?: string;
565
575
  TeletextGridControl?: string;
566
576
  XPosition?: number;
567
577
  YPosition?: number;
@@ -5,29 +5,23 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html}
6
6
  */
7
7
  export type ServiceCatalogPortfolioPrincipalAssociationProperties = {
8
- /**
9
- * The language code.
10
- */
11
8
  AcceptLanguage?: string;
12
- /**
13
- * The portfolio identifier.
14
- */
15
9
  PortfolioId?: string;
16
- /**
17
- * The ARN of the principal (user, role, or group).
18
- * @pattern `arn:(aws|aws-cn|aws-us-gov):iam::[0-9]*:(role|user|group)\/.*`
19
- */
20
10
  PrincipalARN?: string;
21
- /**
22
- * The principal type. The supported value is IAM if you use a fully defined Amazon Resource Name (ARN), or IAM_PATTERN if you use an ARN with no accountID, with or without wildcard characters.
23
- */
24
11
  PrincipalType: string;
25
12
  };
13
+ /**
14
+ * Attribute type definition for `AWS::ServiceCatalog::PortfolioPrincipalAssociation`.
15
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#aws-resource-servicecatalog-portfolioprincipalassociation-return-values}
16
+ */
17
+ export type ServiceCatalogPortfolioPrincipalAssociationAttributes = {
18
+ Id: string;
19
+ };
26
20
  /**
27
21
  * Resource Type definition for AWS::ServiceCatalog::PortfolioPrincipalAssociation
28
22
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html}
29
23
  */
30
- export declare class ServiceCatalogPortfolioPrincipalAssociation extends $Resource<"AWS::ServiceCatalog::PortfolioPrincipalAssociation", ServiceCatalogPortfolioPrincipalAssociationProperties, Record<string, never>> {
24
+ export declare class ServiceCatalogPortfolioPrincipalAssociation extends $Resource<"AWS::ServiceCatalog::PortfolioPrincipalAssociation", ServiceCatalogPortfolioPrincipalAssociationProperties, ServiceCatalogPortfolioPrincipalAssociationAttributes> {
31
25
  static readonly Type = "AWS::ServiceCatalog::PortfolioPrincipalAssociation";
32
26
  constructor(logicalId: string, properties: ServiceCatalogPortfolioPrincipalAssociationProperties, options?: $ResourceOptions);
33
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.428",
3
+ "version": "0.1.430",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },