@awboost/cfn-resource-types 0.1.429 → 0.1.431

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
@@ -1,22 +1,22 @@
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 type definition for `AWS::EC2::NetworkInterfaceAttachment`.
5
- * Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
4
+ * Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
6
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
7
6
  */
8
7
  export type EC2NetworkInterfaceAttachmentProperties = {
9
8
  /**
10
- * Whether to delete the network interface when the instance terminates. By default, this value is set to ``true``.
9
+ * Whether to delete the network interface when the instance terminates. By default, this value is set to true.
11
10
  */
12
11
  DeleteOnTermination?: boolean;
13
12
  /**
14
- * The network interface's position in the attachment order. For example, the first attached network interface has a ``DeviceIndex`` of 0.
13
+ * The network interface's position in the attachment order. For example, the first attached network interface has a DeviceIndex of 0.
15
14
  */
16
15
  DeviceIndex: string;
17
16
  /**
18
- * Configures ENA Express for the network interface that this action attaches to the instance.
17
+ * The number of ENA queues to be created with the instance.
19
18
  */
19
+ EnaQueueCount?: number;
20
20
  EnaSrdSpecification?: EnaSrdSpecification;
21
21
  /**
22
22
  * The ID of the instance to which you will attach the ENI.
@@ -32,29 +32,23 @@ export type EC2NetworkInterfaceAttachmentProperties = {
32
32
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html#aws-resource-ec2-networkinterfaceattachment-return-values}
33
33
  */
34
34
  export type EC2NetworkInterfaceAttachmentAttributes = {
35
+ /**
36
+ * The ID of the network interface attachment.
37
+ */
35
38
  AttachmentId: string;
36
39
  };
37
40
  /**
38
41
  * Type definition for `AWS::EC2::NetworkInterfaceAttachment.EnaSrdSpecification`.
39
- * ENA Express uses AWS Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled.
40
- To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it.
41
42
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterfaceattachment-enasrdspecification.html}
42
43
  */
43
44
  export type EnaSrdSpecification = {
44
- /**
45
- * Indicates whether ENA Express is enabled for the network interface.
46
- */
47
45
  EnaSrdEnabled?: boolean;
48
- /**
49
- * Configures ENA Express for UDP network traffic.
50
- */
51
46
  EnaSrdUdpSpecification?: {
52
47
  EnaSrdUdpEnabled?: boolean;
53
48
  };
54
49
  };
55
50
  /**
56
- * Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
57
- * Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
51
+ * Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
58
52
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
59
53
  */
60
54
  export declare class EC2NetworkInterfaceAttachment extends $Resource<"AWS::EC2::NetworkInterfaceAttachment", EC2NetworkInterfaceAttachmentProperties, EC2NetworkInterfaceAttachmentAttributes> {
@@ -1,7 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
4
- * Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
3
+ * Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
5
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
6
5
  */
7
6
  export class EC2NetworkInterfaceAttachment extends $Resource {
@@ -39,6 +39,7 @@ export type LambdaPermissionProperties = {
39
39
  * The type of authentication that your function URL uses. Set to ``AWS_IAM`` if you want to restrict access to authenticated users only. Set to ``NONE`` if you want to bypass IAM authentication to create a public endpoint. For more information, see [Security and auth model for Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
40
40
  */
41
41
  FunctionUrlAuthType?: "AWS_IAM" | "NONE";
42
+ InvokedViaFunctionUrl?: boolean;
42
43
  /**
43
44
  * The AWS-service, AWS-account, IAM user, or IAM role that invokes the function. If you specify a service, use ``SourceArn`` or ``SourceAccount`` to limit who can invoke the function through that service.
44
45
  * @minLength `1`
@@ -94,6 +94,10 @@ export type NetworkManagerConnectPeerAttributes = {
94
94
  * The Connect peer Regions where edges are located.
95
95
  */
96
96
  EdgeLocation: string;
97
+ /**
98
+ * Errors from the last modification of the connect peer.
99
+ */
100
+ LastModificationErrors: string[];
97
101
  /**
98
102
  * State of the connect peer.
99
103
  */
@@ -10,6 +10,13 @@ export type OmicsWorkflowProperties = {
10
10
  * @maxLength `64`
11
11
  */
12
12
  Accelerators?: Accelerators;
13
+ ContainerRegistryMap?: ContainerRegistryMap;
14
+ /**
15
+ * @minLength `1`
16
+ * @maxLength `750`
17
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
18
+ */
19
+ ContainerRegistryMapUri?: string;
13
20
  DefinitionRepository?: DefinitionRepository;
14
21
  /**
15
22
  * @minLength `1`
@@ -120,6 +127,14 @@ export type OmicsWorkflowAttributes = {
120
127
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-accelerators.html}
121
128
  */
122
129
  export type Accelerators = "GPU";
130
+ /**
131
+ * Type definition for `AWS::Omics::Workflow.ContainerRegistryMap`.
132
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-containerregistrymap.html}
133
+ */
134
+ export type ContainerRegistryMap = {
135
+ ImageMappings?: ImageMapping[];
136
+ RegistryMappings?: RegistryMapping[];
137
+ };
123
138
  /**
124
139
  * Type definition for `AWS::Omics::Workflow.DefinitionRepository`.
125
140
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-definitionrepository.html}
@@ -142,6 +157,54 @@ export type DefinitionRepository = {
142
157
  fullRepositoryId?: string;
143
158
  sourceReference?: SourceReference;
144
159
  };
160
+ /**
161
+ * Type definition for `AWS::Omics::Workflow.ImageMapping`.
162
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-imagemapping.html}
163
+ */
164
+ export type ImageMapping = {
165
+ /**
166
+ * @minLength `1`
167
+ * @maxLength `750`
168
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
169
+ */
170
+ DestinationImage?: string;
171
+ /**
172
+ * @minLength `1`
173
+ * @maxLength `750`
174
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
175
+ */
176
+ SourceImage?: string;
177
+ };
178
+ /**
179
+ * Type definition for `AWS::Omics::Workflow.RegistryMapping`.
180
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-registrymapping.html}
181
+ */
182
+ export type RegistryMapping = {
183
+ /**
184
+ * @minLength `12`
185
+ * @maxLength `12`
186
+ * @pattern `^[0-9]+$`
187
+ */
188
+ EcrAccountId?: string;
189
+ /**
190
+ * @minLength `1`
191
+ * @maxLength `256`
192
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
193
+ */
194
+ EcrRepositoryPrefix?: string;
195
+ /**
196
+ * @minLength `1`
197
+ * @maxLength `750`
198
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
199
+ */
200
+ UpstreamRegistryUrl?: string;
201
+ /**
202
+ * @minLength `2`
203
+ * @maxLength `30`
204
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
205
+ */
206
+ UpstreamRepositoryPrefix?: string;
207
+ };
145
208
  /**
146
209
  * Type definition for `AWS::Omics::Workflow.SourceReference`.
147
210
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-sourcereference.html}
@@ -10,6 +10,13 @@ export type OmicsWorkflowVersionProperties = {
10
10
  * @maxLength `64`
11
11
  */
12
12
  Accelerators?: Accelerators;
13
+ ContainerRegistryMap?: ContainerRegistryMap;
14
+ /**
15
+ * @minLength `1`
16
+ * @maxLength `750`
17
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
18
+ */
19
+ ContainerRegistryMapUri?: string;
13
20
  DefinitionRepository?: DefinitionRepository;
14
21
  /**
15
22
  * @minLength `1`
@@ -123,6 +130,14 @@ export type OmicsWorkflowVersionAttributes = {
123
130
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-accelerators.html}
124
131
  */
125
132
  export type Accelerators = "GPU";
133
+ /**
134
+ * Type definition for `AWS::Omics::WorkflowVersion.ContainerRegistryMap`.
135
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-containerregistrymap.html}
136
+ */
137
+ export type ContainerRegistryMap = {
138
+ ImageMappings?: ImageMapping[];
139
+ RegistryMappings?: RegistryMapping[];
140
+ };
126
141
  /**
127
142
  * Type definition for `AWS::Omics::WorkflowVersion.DefinitionRepository`.
128
143
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-definitionrepository.html}
@@ -145,6 +160,54 @@ export type DefinitionRepository = {
145
160
  fullRepositoryId?: string;
146
161
  sourceReference?: SourceReference;
147
162
  };
163
+ /**
164
+ * Type definition for `AWS::Omics::WorkflowVersion.ImageMapping`.
165
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-imagemapping.html}
166
+ */
167
+ export type ImageMapping = {
168
+ /**
169
+ * @minLength `1`
170
+ * @maxLength `750`
171
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
172
+ */
173
+ DestinationImage?: string;
174
+ /**
175
+ * @minLength `1`
176
+ * @maxLength `750`
177
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
178
+ */
179
+ SourceImage?: string;
180
+ };
181
+ /**
182
+ * Type definition for `AWS::Omics::WorkflowVersion.RegistryMapping`.
183
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-registrymapping.html}
184
+ */
185
+ export type RegistryMapping = {
186
+ /**
187
+ * @minLength `12`
188
+ * @maxLength `12`
189
+ * @pattern `^[0-9]+$`
190
+ */
191
+ EcrAccountId?: string;
192
+ /**
193
+ * @minLength `1`
194
+ * @maxLength `256`
195
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
196
+ */
197
+ EcrRepositoryPrefix?: string;
198
+ /**
199
+ * @minLength `1`
200
+ * @maxLength `750`
201
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
202
+ */
203
+ UpstreamRegistryUrl?: string;
204
+ /**
205
+ * @minLength `2`
206
+ * @maxLength `30`
207
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
208
+ */
209
+ UpstreamRepositoryPrefix?: string;
210
+ };
148
211
  /**
149
212
  * Type definition for `AWS::Omics::WorkflowVersion.SourceReference`.
150
213
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-sourcereference.html}
@@ -1556,6 +1556,8 @@ export type DashboardPublishOptions = {
1556
1556
  */
1557
1557
  DataPointTooltipOption?: DataPointTooltipOption;
1558
1558
  DataQAEnabledOption?: DataQAEnabledOption;
1559
+ DataStoriesSharingOption?: DataStoriesSharingOption;
1560
+ ExecutiveSummaryOption?: ExecutiveSummaryOption;
1559
1561
  /**
1560
1562
  * <p>Export to .csv option.</p>
1561
1563
  */
@@ -1935,6 +1937,13 @@ export type DataSetReference = {
1935
1937
  */
1936
1938
  DataSetPlaceholder: string;
1937
1939
  };
1940
+ /**
1941
+ * Type definition for `AWS::QuickSight::Dashboard.DataStoriesSharingOption`.
1942
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datastoriessharingoption.html}
1943
+ */
1944
+ export type DataStoriesSharingOption = {
1945
+ AvailabilityStatus?: DashboardBehavior;
1946
+ };
1938
1947
  /**
1939
1948
  * Type definition for `AWS::QuickSight::Dashboard.DateAggregationFunction`.
1940
1949
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dateaggregationfunction.html}
@@ -2401,6 +2410,13 @@ export type ExcludePeriodConfiguration = {
2401
2410
  Granularity: TimeGranularity;
2402
2411
  Status?: WidgetStatus;
2403
2412
  };
2413
+ /**
2414
+ * Type definition for `AWS::QuickSight::Dashboard.ExecutiveSummaryOption`.
2415
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-executivesummaryoption.html}
2416
+ */
2417
+ export type ExecutiveSummaryOption = {
2418
+ AvailabilityStatus?: DashboardBehavior;
2419
+ };
2404
2420
  /**
2405
2421
  * Type definition for `AWS::QuickSight::Dashboard.ExplicitHierarchy`.
2406
2422
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-explicithierarchy.html}
@@ -277,6 +277,7 @@ export type RDSDBClusterProperties = {
277
277
  + Can't manage the master user password with AWS Secrets Manager if ``MasterUserPassword`` is specified.
278
278
  */
279
279
  ManageMasterUserPassword?: boolean;
280
+ MasterUserAuthenticationType?: string;
280
281
  /**
281
282
  * The master password for the DB instance.
282
283
  If you specify the ``SourceDBClusterIdentifier``, ``SnapshotIdentifier``, or ``GlobalClusterIdentifier`` property, don't specify this property. The value is inherited from the source DB cluster, the snapshot, or the primary DB cluster for the global database cluster, respectively.
@@ -510,6 +510,7 @@ export type RDSDBInstanceProperties = {
510
510
  + Can't manage the master user password with AWS Secrets Manager if ``MasterUserPassword`` is specified.
511
511
  */
512
512
  ManageMasterUserPassword?: boolean;
513
+ MasterUserAuthenticationType?: string;
513
514
  /**
514
515
  * The password for the master user. The password can include any printable ASCII character except "/", """, or "@".
515
516
  *Amazon Aurora*
@@ -5,23 +5,28 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html}
6
6
  */
7
7
  export type ServiceCatalogPortfolioProductAssociationProperties = {
8
+ /**
9
+ * The language code.
10
+ */
8
11
  AcceptLanguage?: string;
9
- PortfolioId: string;
10
- ProductId: string;
12
+ /**
13
+ * The portfolio identifier.
14
+ */
15
+ PortfolioId?: string;
16
+ /**
17
+ * The product identifier.
18
+ */
19
+ ProductId?: string;
20
+ /**
21
+ * The identifier of the source portfolio. The source portfolio must be a portfolio imported from a different account than the one creating the association. This account must have previously shared this portfolio with the account creating the association.
22
+ */
11
23
  SourcePortfolioId?: string;
12
24
  };
13
- /**
14
- * Attribute type definition for `AWS::ServiceCatalog::PortfolioProductAssociation`.
15
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#aws-resource-servicecatalog-portfolioproductassociation-return-values}
16
- */
17
- export type ServiceCatalogPortfolioProductAssociationAttributes = {
18
- Id: string;
19
- };
20
25
  /**
21
26
  * Resource Type definition for AWS::ServiceCatalog::PortfolioProductAssociation
22
27
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html}
23
28
  */
24
- export declare class ServiceCatalogPortfolioProductAssociation extends $Resource<"AWS::ServiceCatalog::PortfolioProductAssociation", ServiceCatalogPortfolioProductAssociationProperties, ServiceCatalogPortfolioProductAssociationAttributes> {
29
+ export declare class ServiceCatalogPortfolioProductAssociation extends $Resource<"AWS::ServiceCatalog::PortfolioProductAssociation", ServiceCatalogPortfolioProductAssociationProperties, Record<string, never>> {
25
30
  static readonly Type = "AWS::ServiceCatalog::PortfolioProductAssociation";
26
31
  constructor(logicalId: string, properties: ServiceCatalogPortfolioProductAssociationProperties, options?: $ResourceOptions);
27
32
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.429",
3
+ "version": "0.1.431",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },