@awboost/cfn-resource-types 0.1.440 → 0.1.442
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/AWS-ARCRegionSwitch-Plan.d.ts +1 -0
- package/lib/AWS-ApplicationSignals-GroupingConfiguration.d.ts +52 -0
- package/lib/AWS-ApplicationSignals-GroupingConfiguration.js +12 -0
- package/lib/AWS-BedrockAgentCore-BrowserCustom.d.ts +28 -1
- package/lib/AWS-BedrockAgentCore-CodeInterpreterCustom.d.ts +28 -1
- package/lib/AWS-BedrockAgentCore-Gateway.d.ts +163 -0
- package/lib/AWS-BedrockAgentCore-Gateway.js +12 -0
- package/lib/AWS-BedrockAgentCore-GatewayTarget.d.ts +224 -0
- package/lib/AWS-BedrockAgentCore-GatewayTarget.js +12 -0
- package/lib/AWS-BedrockAgentCore-Runtime.d.ts +24 -1
- package/lib/AWS-ImageBuilder-Image.d.ts +15 -0
- package/lib/AWS-ImageBuilder-ImagePipeline.d.ts +32 -1
- package/lib/AWS-ImageBuilder-ImageRecipe.d.ts +4 -0
- package/lib/AWS-MediaLive-Channel.d.ts +6 -0
- package/lib/AWS-Neptune-EventSubscription.d.ts +32 -6
- package/lib/AWS-ObservabilityAdmin-OrganizationCentralizationRule.d.ts +152 -0
- package/lib/AWS-ObservabilityAdmin-OrganizationCentralizationRule.js +13 -0
- package/lib/AWS-PCS-Queue.d.ts +24 -0
- package/lib/AWS-S3-Bucket.d.ts +42 -22
- package/lib/AWS-ServiceCatalog-PortfolioShare.d.ts +14 -8
- package/package.json +1 -1
|
@@ -0,0 +1,52 @@
|
|
|
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::ApplicationSignals::GroupingConfiguration
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationsignals-groupingconfiguration.html}
|
|
6
|
+
*/
|
|
7
|
+
export type ApplicationSignalsGroupingConfigurationProperties = {
|
|
8
|
+
GroupingAttributeDefinitions: GroupingAttributeDefinition[];
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* Attribute type definition for `AWS::ApplicationSignals::GroupingConfiguration`.
|
|
12
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationsignals-groupingconfiguration.html#aws-resource-applicationsignals-groupingconfiguration-return-values}
|
|
13
|
+
*/
|
|
14
|
+
export type ApplicationSignalsGroupingConfigurationAttributes = {
|
|
15
|
+
/**
|
|
16
|
+
* The identifier for the specified AWS account.
|
|
17
|
+
* @minLength `12`
|
|
18
|
+
* @maxLength `12`
|
|
19
|
+
* @pattern `^[0-9]{12}$`
|
|
20
|
+
*/
|
|
21
|
+
AccountId: string;
|
|
22
|
+
UpdatedAt: string;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Type definition for `AWS::ApplicationSignals::GroupingConfiguration.GroupingAttributeDefinition`.
|
|
26
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-groupingconfiguration-groupingattributedefinition.html}
|
|
27
|
+
*/
|
|
28
|
+
export type GroupingAttributeDefinition = {
|
|
29
|
+
/**
|
|
30
|
+
* @minLength `1`
|
|
31
|
+
* @maxLength `128`
|
|
32
|
+
*/
|
|
33
|
+
DefaultGroupingValue?: string;
|
|
34
|
+
/**
|
|
35
|
+
* @minLength `1`
|
|
36
|
+
* @maxLength `128`
|
|
37
|
+
*/
|
|
38
|
+
GroupingName: string;
|
|
39
|
+
/**
|
|
40
|
+
* @minLength `1`
|
|
41
|
+
*/
|
|
42
|
+
GroupingSourceKeys: string[];
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* Resource Type definition for AWS::ApplicationSignals::GroupingConfiguration
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationsignals-groupingconfiguration.html}
|
|
47
|
+
*/
|
|
48
|
+
export declare class ApplicationSignalsGroupingConfiguration extends $Resource<"AWS::ApplicationSignals::GroupingConfiguration", ApplicationSignalsGroupingConfigurationProperties, ApplicationSignalsGroupingConfigurationAttributes> {
|
|
49
|
+
static readonly Type = "AWS::ApplicationSignals::GroupingConfiguration";
|
|
50
|
+
constructor(logicalId: string, properties: ApplicationSignalsGroupingConfigurationProperties, options?: $ResourceOptions);
|
|
51
|
+
}
|
|
52
|
+
//# sourceMappingURL=AWS-ApplicationSignals-GroupingConfiguration.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::ApplicationSignals::GroupingConfiguration
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationsignals-groupingconfiguration.html}
|
|
5
|
+
*/
|
|
6
|
+
export class ApplicationSignalsGroupingConfiguration extends $Resource {
|
|
7
|
+
static Type = "AWS::ApplicationSignals::GroupingConfiguration";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, ApplicationSignalsGroupingConfiguration.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-ApplicationSignals-GroupingConfiguration.js.map
|
|
@@ -50,6 +50,10 @@ export type BedrockAgentCoreBrowserCustomAttributes = {
|
|
|
50
50
|
* Timestamp when the browser was created.
|
|
51
51
|
*/
|
|
52
52
|
CreatedAt: string;
|
|
53
|
+
/**
|
|
54
|
+
* The reason for failure if the browser creation or operation failed.
|
|
55
|
+
*/
|
|
56
|
+
FailureReason: string;
|
|
53
57
|
/**
|
|
54
58
|
* Timestamp when the browser was last updated.
|
|
55
59
|
*/
|
|
@@ -69,13 +73,17 @@ export type BrowserNetworkConfiguration = {
|
|
|
69
73
|
* Network modes supported by browser
|
|
70
74
|
*/
|
|
71
75
|
NetworkMode: BrowserNetworkMode;
|
|
76
|
+
/**
|
|
77
|
+
* Network mode configuration for VPC
|
|
78
|
+
*/
|
|
79
|
+
VpcConfig?: VpcConfig;
|
|
72
80
|
};
|
|
73
81
|
/**
|
|
74
82
|
* Type definition for `AWS::BedrockAgentCore::BrowserCustom.BrowserNetworkMode`.
|
|
75
83
|
* Network modes supported by browser
|
|
76
84
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-browsernetworkmode.html}
|
|
77
85
|
*/
|
|
78
|
-
export type BrowserNetworkMode = "PUBLIC";
|
|
86
|
+
export type BrowserNetworkMode = "PUBLIC" | "VPC";
|
|
79
87
|
/**
|
|
80
88
|
* Type definition for `AWS::BedrockAgentCore::BrowserCustom.BrowserStatus`.
|
|
81
89
|
* Status of browser
|
|
@@ -115,6 +123,25 @@ export type S3Location = {
|
|
|
115
123
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-tagsmap.html}
|
|
116
124
|
*/
|
|
117
125
|
export type TagsMap = Record<string, string>;
|
|
126
|
+
/**
|
|
127
|
+
* Type definition for `AWS::BedrockAgentCore::BrowserCustom.VpcConfig`.
|
|
128
|
+
* Network mode configuration for VPC
|
|
129
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-vpcconfig.html}
|
|
130
|
+
*/
|
|
131
|
+
export type VpcConfig = {
|
|
132
|
+
/**
|
|
133
|
+
* Security groups for VPC
|
|
134
|
+
* @minLength `1`
|
|
135
|
+
* @maxLength `16`
|
|
136
|
+
*/
|
|
137
|
+
SecurityGroups: string[];
|
|
138
|
+
/**
|
|
139
|
+
* Subnets for VPC
|
|
140
|
+
* @minLength `1`
|
|
141
|
+
* @maxLength `16`
|
|
142
|
+
*/
|
|
143
|
+
Subnets: string[];
|
|
144
|
+
};
|
|
118
145
|
/**
|
|
119
146
|
* Resource definition for AWS::BedrockAgentCore::BrowserCustom
|
|
120
147
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html}
|
|
@@ -46,6 +46,10 @@ export type BedrockAgentCoreCodeInterpreterCustomAttributes = {
|
|
|
46
46
|
* Timestamp when the code interpreter was created.
|
|
47
47
|
*/
|
|
48
48
|
CreatedAt: string;
|
|
49
|
+
/**
|
|
50
|
+
* The reason for failure if the code interpreter creation or operation failed.
|
|
51
|
+
*/
|
|
52
|
+
FailureReason: string;
|
|
49
53
|
/**
|
|
50
54
|
* Timestamp when the code interpreter was last updated.
|
|
51
55
|
*/
|
|
@@ -65,13 +69,17 @@ export type CodeInterpreterNetworkConfiguration = {
|
|
|
65
69
|
* Network modes supported by code interpreter
|
|
66
70
|
*/
|
|
67
71
|
NetworkMode: CodeInterpreterNetworkMode;
|
|
72
|
+
/**
|
|
73
|
+
* Network mode configuration for VPC
|
|
74
|
+
*/
|
|
75
|
+
VpcConfig?: VpcConfig;
|
|
68
76
|
};
|
|
69
77
|
/**
|
|
70
78
|
* Type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom.CodeInterpreterNetworkMode`.
|
|
71
79
|
* Network modes supported by code interpreter
|
|
72
80
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-codeinterpreternetworkmode.html}
|
|
73
81
|
*/
|
|
74
|
-
export type CodeInterpreterNetworkMode = "PUBLIC" | "SANDBOX";
|
|
82
|
+
export type CodeInterpreterNetworkMode = "PUBLIC" | "SANDBOX" | "VPC";
|
|
75
83
|
/**
|
|
76
84
|
* Type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom.CodeInterpreterStatus`.
|
|
77
85
|
* Status of Code interpreter
|
|
@@ -84,6 +92,25 @@ export type CodeInterpreterStatus = "CREATING" | "CREATE_FAILED" | "READY" | "DE
|
|
|
84
92
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-tagsmap.html}
|
|
85
93
|
*/
|
|
86
94
|
export type TagsMap = Record<string, string>;
|
|
95
|
+
/**
|
|
96
|
+
* Type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom.VpcConfig`.
|
|
97
|
+
* Network mode configuration for VPC
|
|
98
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-vpcconfig.html}
|
|
99
|
+
*/
|
|
100
|
+
export type VpcConfig = {
|
|
101
|
+
/**
|
|
102
|
+
* Security groups for VPC
|
|
103
|
+
* @minLength `1`
|
|
104
|
+
* @maxLength `16`
|
|
105
|
+
*/
|
|
106
|
+
SecurityGroups: string[];
|
|
107
|
+
/**
|
|
108
|
+
* Subnets for VPC
|
|
109
|
+
* @minLength `1`
|
|
110
|
+
* @maxLength `16`
|
|
111
|
+
*/
|
|
112
|
+
Subnets: string[];
|
|
113
|
+
};
|
|
87
114
|
/**
|
|
88
115
|
* Resource definition for AWS::BedrockAgentCore::CodeInterpreterCustom
|
|
89
116
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html}
|
|
@@ -0,0 +1,163 @@
|
|
|
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::BedrockAgentCore::Gateway Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gateway.html}
|
|
6
|
+
*/
|
|
7
|
+
export type BedrockAgentCoreGatewayProperties = {
|
|
8
|
+
AuthorizerConfiguration?: AuthorizerConfiguration;
|
|
9
|
+
AuthorizerType: AuthorizerType;
|
|
10
|
+
/**
|
|
11
|
+
* @minLength `1`
|
|
12
|
+
* @maxLength `200`
|
|
13
|
+
*/
|
|
14
|
+
Description?: string;
|
|
15
|
+
ExceptionLevel?: ExceptionLevel;
|
|
16
|
+
/**
|
|
17
|
+
* @minLength `1`
|
|
18
|
+
* @maxLength `2048`
|
|
19
|
+
* @pattern `^arn:aws(|-cn|-us-gov):kms:[a-zA-Z0-9-]*:[0-9]{12}:key/[a-zA-Z0-9-]{36}$`
|
|
20
|
+
*/
|
|
21
|
+
KmsKeyArn?: string;
|
|
22
|
+
/**
|
|
23
|
+
* @pattern `^([0-9a-zA-Z][-]?){1,100}$`
|
|
24
|
+
*/
|
|
25
|
+
Name: string;
|
|
26
|
+
ProtocolConfiguration?: GatewayProtocolConfiguration;
|
|
27
|
+
ProtocolType: GatewayProtocolType;
|
|
28
|
+
/**
|
|
29
|
+
* @minLength `1`
|
|
30
|
+
* @maxLength `2048`
|
|
31
|
+
* @pattern `^arn:aws(-[^:]+)?:iam::([0-9]{12})?:role/.+$`
|
|
32
|
+
*/
|
|
33
|
+
RoleArn: string;
|
|
34
|
+
Tags?: TagsMap;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Attribute type definition for `AWS::BedrockAgentCore::Gateway`.
|
|
38
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gateway.html#aws-resource-bedrockagentcore-gateway-return-values}
|
|
39
|
+
*/
|
|
40
|
+
export type BedrockAgentCoreGatewayAttributes = {
|
|
41
|
+
CreatedAt: string;
|
|
42
|
+
/**
|
|
43
|
+
* @pattern `^arn:aws(|-cn|-us-gov):bedrock-agentcore:[a-z0-9-]{1,20}:[0-9]{12}:gateway/([0-9a-z][-]?){1,100}-[a-z0-9]{10}$`
|
|
44
|
+
*/
|
|
45
|
+
GatewayArn: string;
|
|
46
|
+
/**
|
|
47
|
+
* @pattern `^([0-9a-z][-]?){1,100}-[0-9a-z]{10}$`
|
|
48
|
+
*/
|
|
49
|
+
GatewayIdentifier: string;
|
|
50
|
+
/**
|
|
51
|
+
* @minLength `1`
|
|
52
|
+
* @maxLength `1024`
|
|
53
|
+
*/
|
|
54
|
+
GatewayUrl: string;
|
|
55
|
+
Status: GatewayStatus;
|
|
56
|
+
/**
|
|
57
|
+
* @maxLength `100`
|
|
58
|
+
*/
|
|
59
|
+
StatusReasons: string[];
|
|
60
|
+
UpdatedAt: string;
|
|
61
|
+
WorkloadIdentityDetails: {
|
|
62
|
+
/**
|
|
63
|
+
* @minLength `1`
|
|
64
|
+
* @maxLength `1024`
|
|
65
|
+
*/
|
|
66
|
+
WorkloadIdentityArn: string;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.AuthorizerConfiguration`.
|
|
71
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-authorizerconfiguration.html}
|
|
72
|
+
*/
|
|
73
|
+
export type AuthorizerConfiguration = {
|
|
74
|
+
CustomJWTAuthorizer: CustomJWTAuthorizerConfiguration;
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.AuthorizerType`.
|
|
78
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-authorizertype.html}
|
|
79
|
+
*/
|
|
80
|
+
export type AuthorizerType = "CUSTOM_JWT" | "AWS_IAM";
|
|
81
|
+
/**
|
|
82
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.CustomJWTAuthorizerConfiguration`.
|
|
83
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-customjwtauthorizerconfiguration.html}
|
|
84
|
+
*/
|
|
85
|
+
export type CustomJWTAuthorizerConfiguration = {
|
|
86
|
+
/**
|
|
87
|
+
* @minLength `1`
|
|
88
|
+
*/
|
|
89
|
+
AllowedAudience?: string[];
|
|
90
|
+
/**
|
|
91
|
+
* @minLength `1`
|
|
92
|
+
*/
|
|
93
|
+
AllowedClients?: string[];
|
|
94
|
+
/**
|
|
95
|
+
* @pattern `^.+/\.well-known/openid-configuration$`
|
|
96
|
+
*/
|
|
97
|
+
DiscoveryUrl: string;
|
|
98
|
+
};
|
|
99
|
+
/**
|
|
100
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.ExceptionLevel`.
|
|
101
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-exceptionlevel.html}
|
|
102
|
+
*/
|
|
103
|
+
export type ExceptionLevel = "DEBUG";
|
|
104
|
+
/**
|
|
105
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.GatewayProtocolConfiguration`.
|
|
106
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayprotocolconfiguration.html}
|
|
107
|
+
*/
|
|
108
|
+
export type GatewayProtocolConfiguration = {
|
|
109
|
+
Mcp: MCPGatewayConfiguration;
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.GatewayProtocolType`.
|
|
113
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayprotocoltype.html}
|
|
114
|
+
*/
|
|
115
|
+
export type GatewayProtocolType = "MCP";
|
|
116
|
+
/**
|
|
117
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.GatewayStatus`.
|
|
118
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewaystatus.html}
|
|
119
|
+
*/
|
|
120
|
+
export type GatewayStatus = "CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED";
|
|
121
|
+
/**
|
|
122
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.MCPGatewayConfiguration`.
|
|
123
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-mcpgatewayconfiguration.html}
|
|
124
|
+
*/
|
|
125
|
+
export type MCPGatewayConfiguration = {
|
|
126
|
+
/**
|
|
127
|
+
* @minLength `1`
|
|
128
|
+
* @maxLength `2048`
|
|
129
|
+
*/
|
|
130
|
+
Instructions?: string;
|
|
131
|
+
SearchType?: SearchType;
|
|
132
|
+
SupportedVersions?: string[];
|
|
133
|
+
};
|
|
134
|
+
/**
|
|
135
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.SearchType`.
|
|
136
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-searchtype.html}
|
|
137
|
+
*/
|
|
138
|
+
export type SearchType = "SEMANTIC";
|
|
139
|
+
/**
|
|
140
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.TagsMap`.
|
|
141
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-tagsmap.html}
|
|
142
|
+
*/
|
|
143
|
+
export type TagsMap = Record<string, string>;
|
|
144
|
+
/**
|
|
145
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.WorkloadIdentityDetails`.
|
|
146
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-workloadidentitydetails.html}
|
|
147
|
+
*/
|
|
148
|
+
export type WorkloadIdentityDetails = {
|
|
149
|
+
/**
|
|
150
|
+
* @minLength `1`
|
|
151
|
+
* @maxLength `1024`
|
|
152
|
+
*/
|
|
153
|
+
WorkloadIdentityArn: string;
|
|
154
|
+
};
|
|
155
|
+
/**
|
|
156
|
+
* Definition of AWS::BedrockAgentCore::Gateway Resource Type
|
|
157
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gateway.html}
|
|
158
|
+
*/
|
|
159
|
+
export declare class BedrockAgentCoreGateway extends $Resource<"AWS::BedrockAgentCore::Gateway", BedrockAgentCoreGatewayProperties, BedrockAgentCoreGatewayAttributes> {
|
|
160
|
+
static readonly Type = "AWS::BedrockAgentCore::Gateway";
|
|
161
|
+
constructor(logicalId: string, properties: BedrockAgentCoreGatewayProperties, options?: $ResourceOptions);
|
|
162
|
+
}
|
|
163
|
+
//# sourceMappingURL=AWS-BedrockAgentCore-Gateway.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::BedrockAgentCore::Gateway Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gateway.html}
|
|
5
|
+
*/
|
|
6
|
+
export class BedrockAgentCoreGateway extends $Resource {
|
|
7
|
+
static Type = "AWS::BedrockAgentCore::Gateway";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, BedrockAgentCoreGateway.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-BedrockAgentCore-Gateway.js.map
|
|
@@ -0,0 +1,224 @@
|
|
|
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::BedrockAgentCore::GatewayTarget Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gatewaytarget.html}
|
|
6
|
+
*/
|
|
7
|
+
export type BedrockAgentCoreGatewayTargetProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `1`
|
|
10
|
+
* @maxLength `1`
|
|
11
|
+
*/
|
|
12
|
+
CredentialProviderConfigurations: CredentialProviderConfiguration[];
|
|
13
|
+
/**
|
|
14
|
+
* @minLength `1`
|
|
15
|
+
* @maxLength `200`
|
|
16
|
+
*/
|
|
17
|
+
Description?: string;
|
|
18
|
+
/**
|
|
19
|
+
* @pattern `^([0-9a-z][-]?){1,100}-[0-9a-z]{10}$`
|
|
20
|
+
*/
|
|
21
|
+
GatewayIdentifier?: string;
|
|
22
|
+
/**
|
|
23
|
+
* @pattern `^([0-9a-zA-Z][-]?){1,100}$`
|
|
24
|
+
*/
|
|
25
|
+
Name: string;
|
|
26
|
+
TargetConfiguration: TargetConfiguration;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Attribute type definition for `AWS::BedrockAgentCore::GatewayTarget`.
|
|
30
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gatewaytarget.html#aws-resource-bedrockagentcore-gatewaytarget-return-values}
|
|
31
|
+
*/
|
|
32
|
+
export type BedrockAgentCoreGatewayTargetAttributes = {
|
|
33
|
+
CreatedAt: string;
|
|
34
|
+
/**
|
|
35
|
+
* @pattern `^arn:aws(|-cn|-us-gov):bedrock-agentcore:[a-z0-9-]{1,20}:[0-9]{12}:gateway/([0-9a-z][-]?){1,100}-[a-z0-9]{10}$`
|
|
36
|
+
*/
|
|
37
|
+
GatewayArn: string;
|
|
38
|
+
Status: TargetStatus;
|
|
39
|
+
/**
|
|
40
|
+
* @maxLength `100`
|
|
41
|
+
*/
|
|
42
|
+
StatusReasons: string[];
|
|
43
|
+
/**
|
|
44
|
+
* @pattern `^[0-9a-zA-Z]{10}$`
|
|
45
|
+
*/
|
|
46
|
+
TargetId: string;
|
|
47
|
+
UpdatedAt: string;
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.ApiKeyCredentialLocation`.
|
|
51
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apikeycredentiallocation.html}
|
|
52
|
+
*/
|
|
53
|
+
export type ApiKeyCredentialLocation = "HEADER" | "QUERY_PARAMETER";
|
|
54
|
+
/**
|
|
55
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.ApiKeyCredentialProvider`.
|
|
56
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apikeycredentialprovider.html}
|
|
57
|
+
*/
|
|
58
|
+
export type ApiKeyCredentialProvider = {
|
|
59
|
+
CredentialLocation?: ApiKeyCredentialLocation;
|
|
60
|
+
/**
|
|
61
|
+
* @minLength `1`
|
|
62
|
+
* @maxLength `64`
|
|
63
|
+
*/
|
|
64
|
+
CredentialParameterName?: string;
|
|
65
|
+
/**
|
|
66
|
+
* @minLength `1`
|
|
67
|
+
* @maxLength `64`
|
|
68
|
+
*/
|
|
69
|
+
CredentialPrefix?: string;
|
|
70
|
+
/**
|
|
71
|
+
* @pattern `^arn:([^:]*):([^:]*):([^:]*):([0-9]{12})?:(.+)$`
|
|
72
|
+
*/
|
|
73
|
+
ProviderArn: string;
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.ApiSchemaConfiguration`.
|
|
77
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apischemaconfiguration.html}
|
|
78
|
+
*/
|
|
79
|
+
export type ApiSchemaConfiguration = {
|
|
80
|
+
S3: S3Configuration;
|
|
81
|
+
} | {
|
|
82
|
+
InlinePayload: string;
|
|
83
|
+
};
|
|
84
|
+
/**
|
|
85
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.CredentialProvider`.
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-credentialprovider.html}
|
|
87
|
+
*/
|
|
88
|
+
export type CredentialProvider = {
|
|
89
|
+
OauthCredentialProvider: OAuthCredentialProvider;
|
|
90
|
+
} | {
|
|
91
|
+
ApiKeyCredentialProvider: ApiKeyCredentialProvider;
|
|
92
|
+
};
|
|
93
|
+
/**
|
|
94
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.CredentialProviderConfiguration`.
|
|
95
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-credentialproviderconfiguration.html}
|
|
96
|
+
*/
|
|
97
|
+
export type CredentialProviderConfiguration = {
|
|
98
|
+
CredentialProvider?: CredentialProvider;
|
|
99
|
+
CredentialProviderType: CredentialProviderType;
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.CredentialProviderType`.
|
|
103
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-credentialprovidertype.html}
|
|
104
|
+
*/
|
|
105
|
+
export type CredentialProviderType = "GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY";
|
|
106
|
+
/**
|
|
107
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.McpLambdaTargetConfiguration`.
|
|
108
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-mcplambdatargetconfiguration.html}
|
|
109
|
+
*/
|
|
110
|
+
export type McpLambdaTargetConfiguration = {
|
|
111
|
+
/**
|
|
112
|
+
* @minLength `1`
|
|
113
|
+
* @maxLength `170`
|
|
114
|
+
* @pattern `^arn:(aws[a-zA-Z-]*)?:lambda:([a-z]{2}(-gov)?-[a-z]+-\d{1}):(\d{12}):function:([a-zA-Z0-9-_.]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
|
|
115
|
+
*/
|
|
116
|
+
LambdaArn: string;
|
|
117
|
+
ToolSchema: ToolSchema;
|
|
118
|
+
};
|
|
119
|
+
/**
|
|
120
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.McpTargetConfiguration`.
|
|
121
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-mcptargetconfiguration.html}
|
|
122
|
+
*/
|
|
123
|
+
export type McpTargetConfiguration = {
|
|
124
|
+
OpenApiSchema: ApiSchemaConfiguration;
|
|
125
|
+
} | {
|
|
126
|
+
SmithyModel: ApiSchemaConfiguration;
|
|
127
|
+
} | {
|
|
128
|
+
Lambda: McpLambdaTargetConfiguration;
|
|
129
|
+
};
|
|
130
|
+
/**
|
|
131
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.OAuthCredentialProvider`.
|
|
132
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-oauthcredentialprovider.html}
|
|
133
|
+
*/
|
|
134
|
+
export type OAuthCredentialProvider = {
|
|
135
|
+
CustomParameters?: OAuthCustomParameters;
|
|
136
|
+
/**
|
|
137
|
+
* @pattern `^arn:([^:]*):([^:]*):([^:]*):([0-9]{12})?:(.+)$`
|
|
138
|
+
*/
|
|
139
|
+
ProviderArn: string;
|
|
140
|
+
/**
|
|
141
|
+
* @maxLength `100`
|
|
142
|
+
*/
|
|
143
|
+
Scopes: string[];
|
|
144
|
+
};
|
|
145
|
+
/**
|
|
146
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.OAuthCustomParameters`.
|
|
147
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-oauthcustomparameters.html}
|
|
148
|
+
*/
|
|
149
|
+
export type OAuthCustomParameters = Record<string, string>;
|
|
150
|
+
/**
|
|
151
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.S3Configuration`.
|
|
152
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-s3configuration.html}
|
|
153
|
+
*/
|
|
154
|
+
export type S3Configuration = {
|
|
155
|
+
/**
|
|
156
|
+
* @pattern `^[0-9]{12}$`
|
|
157
|
+
*/
|
|
158
|
+
BucketOwnerAccountId?: string;
|
|
159
|
+
/**
|
|
160
|
+
* @pattern `^s3://.{1,2043}$`
|
|
161
|
+
*/
|
|
162
|
+
Uri?: string;
|
|
163
|
+
};
|
|
164
|
+
/**
|
|
165
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.SchemaDefinition`.
|
|
166
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-schemadefinition.html}
|
|
167
|
+
*/
|
|
168
|
+
export type SchemaDefinition = {
|
|
169
|
+
Description?: string;
|
|
170
|
+
Items?: SchemaDefinition;
|
|
171
|
+
Properties?: SchemaProperties;
|
|
172
|
+
Required?: string[];
|
|
173
|
+
Type: SchemaType;
|
|
174
|
+
};
|
|
175
|
+
/**
|
|
176
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.SchemaProperties`.
|
|
177
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-schemaproperties.html}
|
|
178
|
+
*/
|
|
179
|
+
export type SchemaProperties = Record<string, SchemaDefinition>;
|
|
180
|
+
/**
|
|
181
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.SchemaType`.
|
|
182
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-schematype.html}
|
|
183
|
+
*/
|
|
184
|
+
export type SchemaType = "string" | "number" | "object" | "array" | "boolean" | "integer";
|
|
185
|
+
/**
|
|
186
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.TargetConfiguration`.
|
|
187
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-targetconfiguration.html}
|
|
188
|
+
*/
|
|
189
|
+
export type TargetConfiguration = {
|
|
190
|
+
Mcp: McpTargetConfiguration;
|
|
191
|
+
};
|
|
192
|
+
/**
|
|
193
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.TargetStatus`.
|
|
194
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-targetstatus.html}
|
|
195
|
+
*/
|
|
196
|
+
export type TargetStatus = "CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED";
|
|
197
|
+
/**
|
|
198
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.ToolDefinition`.
|
|
199
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-tooldefinition.html}
|
|
200
|
+
*/
|
|
201
|
+
export type ToolDefinition = {
|
|
202
|
+
Description: string;
|
|
203
|
+
InputSchema: SchemaDefinition;
|
|
204
|
+
Name: string;
|
|
205
|
+
OutputSchema?: SchemaDefinition;
|
|
206
|
+
};
|
|
207
|
+
/**
|
|
208
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.ToolSchema`.
|
|
209
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-toolschema.html}
|
|
210
|
+
*/
|
|
211
|
+
export type ToolSchema = {
|
|
212
|
+
S3: S3Configuration;
|
|
213
|
+
} | {
|
|
214
|
+
InlinePayload: ToolDefinition[];
|
|
215
|
+
};
|
|
216
|
+
/**
|
|
217
|
+
* Definition of AWS::BedrockAgentCore::GatewayTarget Resource Type
|
|
218
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gatewaytarget.html}
|
|
219
|
+
*/
|
|
220
|
+
export declare class BedrockAgentCoreGatewayTarget extends $Resource<"AWS::BedrockAgentCore::GatewayTarget", BedrockAgentCoreGatewayTargetProperties, BedrockAgentCoreGatewayTargetAttributes> {
|
|
221
|
+
static readonly Type = "AWS::BedrockAgentCore::GatewayTarget";
|
|
222
|
+
constructor(logicalId: string, properties: BedrockAgentCoreGatewayTargetProperties, options?: $ResourceOptions);
|
|
223
|
+
}
|
|
224
|
+
//# sourceMappingURL=AWS-BedrockAgentCore-GatewayTarget.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::BedrockAgentCore::GatewayTarget Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gatewaytarget.html}
|
|
5
|
+
*/
|
|
6
|
+
export class BedrockAgentCoreGatewayTarget extends $Resource {
|
|
7
|
+
static Type = "AWS::BedrockAgentCore::GatewayTarget";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, BedrockAgentCoreGatewayTarget.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-BedrockAgentCore-GatewayTarget.js.map
|
|
@@ -166,13 +166,17 @@ export type NetworkConfiguration = {
|
|
|
166
166
|
* Network mode configuration type
|
|
167
167
|
*/
|
|
168
168
|
NetworkMode: NetworkMode;
|
|
169
|
+
/**
|
|
170
|
+
* Network mode configuration for VPC
|
|
171
|
+
*/
|
|
172
|
+
NetworkModeConfig?: VpcConfig;
|
|
169
173
|
};
|
|
170
174
|
/**
|
|
171
175
|
* Type definition for `AWS::BedrockAgentCore::Runtime.NetworkMode`.
|
|
172
176
|
* Network mode configuration type
|
|
173
177
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-networkmode.html}
|
|
174
178
|
*/
|
|
175
|
-
export type NetworkMode = "PUBLIC";
|
|
179
|
+
export type NetworkMode = "PUBLIC" | "VPC";
|
|
176
180
|
/**
|
|
177
181
|
* Type definition for `AWS::BedrockAgentCore::Runtime.ProtocolConfiguration`.
|
|
178
182
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-protocolconfiguration.html}
|
|
@@ -184,6 +188,25 @@ export type ProtocolConfiguration = "MCP" | "HTTP";
|
|
|
184
188
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-tagsmap.html}
|
|
185
189
|
*/
|
|
186
190
|
export type TagsMap = Record<string, string>;
|
|
191
|
+
/**
|
|
192
|
+
* Type definition for `AWS::BedrockAgentCore::Runtime.VpcConfig`.
|
|
193
|
+
* Network mode configuration for VPC
|
|
194
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-vpcconfig.html}
|
|
195
|
+
*/
|
|
196
|
+
export type VpcConfig = {
|
|
197
|
+
/**
|
|
198
|
+
* Security groups for VPC
|
|
199
|
+
* @minLength `1`
|
|
200
|
+
* @maxLength `16`
|
|
201
|
+
*/
|
|
202
|
+
SecurityGroups: string[];
|
|
203
|
+
/**
|
|
204
|
+
* Subnets for VPC
|
|
205
|
+
* @minLength `1`
|
|
206
|
+
* @maxLength `16`
|
|
207
|
+
*/
|
|
208
|
+
Subnets: string[];
|
|
209
|
+
};
|
|
187
210
|
/**
|
|
188
211
|
* Type definition for `AWS::BedrockAgentCore::Runtime.WorkloadIdentityDetails`.
|
|
189
212
|
* Configuration for workload identity
|
|
@@ -37,6 +37,10 @@ export type ImageBuilderImageProperties = {
|
|
|
37
37
|
* The Amazon Resource Name (ARN) of the infrastructure configuration.
|
|
38
38
|
*/
|
|
39
39
|
InfrastructureConfigurationArn?: string;
|
|
40
|
+
/**
|
|
41
|
+
* The logging configuration settings for the image.
|
|
42
|
+
*/
|
|
43
|
+
LoggingConfiguration?: ImageLoggingConfiguration;
|
|
40
44
|
/**
|
|
41
45
|
* The tags associated with the image.
|
|
42
46
|
*/
|
|
@@ -83,6 +87,17 @@ export type EcrConfiguration = {
|
|
|
83
87
|
*/
|
|
84
88
|
RepositoryName?: string;
|
|
85
89
|
};
|
|
90
|
+
/**
|
|
91
|
+
* Type definition for `AWS::ImageBuilder::Image.ImageLoggingConfiguration`.
|
|
92
|
+
* The logging configuration settings for the image.
|
|
93
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imageloggingconfiguration.html}
|
|
94
|
+
*/
|
|
95
|
+
export type ImageLoggingConfiguration = {
|
|
96
|
+
/**
|
|
97
|
+
* The name of the log group for image build logs.
|
|
98
|
+
*/
|
|
99
|
+
LogGroupName?: string;
|
|
100
|
+
};
|
|
86
101
|
/**
|
|
87
102
|
* Type definition for `AWS::ImageBuilder::Image.ImageScanningConfiguration`.
|
|
88
103
|
* Contains settings for Image Builder image resource and container image scans.
|