@awboost/cfn-resource-types 0.1.121 → 0.1.123
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-Bedrock-Guardrail.d.ts +38 -0
- package/lib/AWS-CleanRooms-IdMappingTable.d.ts +129 -0
- package/lib/AWS-CleanRooms-IdMappingTable.js +13 -0
- package/lib/AWS-CleanRooms-IdNamespaceAssociation.d.ts +120 -0
- package/lib/AWS-CleanRooms-IdNamespaceAssociation.js +13 -0
- package/lib/AWS-EC2-VPNConnection.d.ts +43 -11
- package/lib/AWS-EC2-VPNConnection.js +5 -1
- package/lib/AWS-EC2-VPNConnectionRoute.d.ts +6 -2
- package/lib/AWS-EC2-VPNConnectionRoute.js +3 -1
- package/lib/AWS-EMRServerless-Application.d.ts +15 -0
- package/lib/AWS-Glue-Trigger.d.ts +84 -8
- package/lib/AWS-InspectorV2-CisScanConfiguration.d.ts +4 -4
- package/lib/AWS-Panorama-ApplicationInstance.d.ts +18 -5
- package/lib/AWS-Panorama-ApplicationInstance.js +1 -1
- package/lib/AWS-Panorama-Package.d.ts +24 -2
- package/lib/AWS-Panorama-Package.js +1 -1
- package/lib/AWS-Panorama-PackageVersion.d.ts +10 -2
- package/lib/AWS-Panorama-PackageVersion.js +1 -1
- package/lib/AWS-SNS-Topic.d.ts +24 -0
- package/lib/AWS-SageMaker-Domain.d.ts +1 -1
- package/lib/AWS-SageMaker-StudioLifecycleConfig.d.ts +70 -0
- package/lib/AWS-SageMaker-StudioLifecycleConfig.js +12 -0
- package/lib/AWS-SageMaker-UserProfile.d.ts +1 -1
- package/package.json +1 -1
|
@@ -21,6 +21,10 @@ export type BedrockGuardrailProperties = {
|
|
|
21
21
|
* Content policy config for a guardrail.
|
|
22
22
|
*/
|
|
23
23
|
ContentPolicyConfig?: ContentPolicyConfig;
|
|
24
|
+
/**
|
|
25
|
+
* Contextual grounding policy config for a guardrail.
|
|
26
|
+
*/
|
|
27
|
+
ContextualGroundingPolicyConfig?: ContextualGroundingPolicyConfig;
|
|
24
28
|
/**
|
|
25
29
|
* Description of the guardrail or its version
|
|
26
30
|
* @minLength `1`
|
|
@@ -143,6 +147,40 @@ export type ContentPolicyConfig = {
|
|
|
143
147
|
*/
|
|
144
148
|
FiltersConfig: ContentFilterConfig[];
|
|
145
149
|
};
|
|
150
|
+
/**
|
|
151
|
+
* Type definition for `AWS::Bedrock::Guardrail.ContextualGroundingFilterConfig`.
|
|
152
|
+
* A config for grounding filter.
|
|
153
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-contextualgroundingfilterconfig.html}
|
|
154
|
+
*/
|
|
155
|
+
export type ContextualGroundingFilterConfig = {
|
|
156
|
+
/**
|
|
157
|
+
* The threshold for this filter.
|
|
158
|
+
* @min `0`
|
|
159
|
+
*/
|
|
160
|
+
Threshold: number;
|
|
161
|
+
/**
|
|
162
|
+
* Type of contextual grounding filter
|
|
163
|
+
*/
|
|
164
|
+
Type: ContextualGroundingFilterType;
|
|
165
|
+
};
|
|
166
|
+
/**
|
|
167
|
+
* Type definition for `AWS::Bedrock::Guardrail.ContextualGroundingFilterType`.
|
|
168
|
+
* Type of contextual grounding filter
|
|
169
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-contextualgroundingfiltertype.html}
|
|
170
|
+
*/
|
|
171
|
+
export type ContextualGroundingFilterType = "GROUNDING" | "RELEVANCE";
|
|
172
|
+
/**
|
|
173
|
+
* Type definition for `AWS::Bedrock::Guardrail.ContextualGroundingPolicyConfig`.
|
|
174
|
+
* Contextual grounding policy config for a guardrail.
|
|
175
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-contextualgroundingpolicyconfig.html}
|
|
176
|
+
*/
|
|
177
|
+
export type ContextualGroundingPolicyConfig = {
|
|
178
|
+
/**
|
|
179
|
+
* List of contextual grounding filter configs.
|
|
180
|
+
* @minLength `1`
|
|
181
|
+
*/
|
|
182
|
+
FiltersConfig: ContextualGroundingFilterConfig[];
|
|
183
|
+
};
|
|
146
184
|
/**
|
|
147
185
|
* Type definition for `AWS::Bedrock::Guardrail.FilterStrength`.
|
|
148
186
|
* Strength for filters
|
|
@@ -0,0 +1,129 @@
|
|
|
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::CleanRooms::IdMappingTable`.
|
|
5
|
+
* Represents an association between an ID mapping workflow and a collaboration
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html}
|
|
7
|
+
*/
|
|
8
|
+
export type CleanRoomsIdMappingTableProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* @maxLength `255`
|
|
11
|
+
* @pattern `^[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t\r\n]*$`
|
|
12
|
+
*/
|
|
13
|
+
Description?: string;
|
|
14
|
+
InputReferenceConfig: IdMappingTableInputReferenceConfig;
|
|
15
|
+
/**
|
|
16
|
+
* @minLength `4`
|
|
17
|
+
* @maxLength `2048`
|
|
18
|
+
*/
|
|
19
|
+
KmsKeyArn?: string;
|
|
20
|
+
/**
|
|
21
|
+
* @minLength `36`
|
|
22
|
+
* @maxLength `36`
|
|
23
|
+
* @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
|
|
24
|
+
*/
|
|
25
|
+
MembershipIdentifier: string;
|
|
26
|
+
/**
|
|
27
|
+
* @maxLength `128`
|
|
28
|
+
* @pattern `^[a-zA-Z0-9_](([a-zA-Z0-9_ ]+-)*([a-zA-Z0-9_ ]+))?$`
|
|
29
|
+
*/
|
|
30
|
+
Name: string;
|
|
31
|
+
Tags?: Tag[];
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* Attribute type definition for `AWS::CleanRooms::IdMappingTable`.
|
|
35
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html#aws-resource-cleanrooms-idmappingtable-return-values}
|
|
36
|
+
*/
|
|
37
|
+
export type CleanRoomsIdMappingTableAttributes = {
|
|
38
|
+
/**
|
|
39
|
+
* @maxLength `200`
|
|
40
|
+
*/
|
|
41
|
+
Arn: string;
|
|
42
|
+
/**
|
|
43
|
+
* @maxLength `100`
|
|
44
|
+
*/
|
|
45
|
+
CollaborationArn: string;
|
|
46
|
+
/**
|
|
47
|
+
* @minLength `36`
|
|
48
|
+
* @maxLength `36`
|
|
49
|
+
* @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
|
|
50
|
+
*/
|
|
51
|
+
CollaborationIdentifier: string;
|
|
52
|
+
/**
|
|
53
|
+
* @minLength `36`
|
|
54
|
+
* @maxLength `36`
|
|
55
|
+
* @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
|
|
56
|
+
*/
|
|
57
|
+
IdMappingTableIdentifier: string;
|
|
58
|
+
InputReferenceProperties: {
|
|
59
|
+
/**
|
|
60
|
+
* @minLength `2`
|
|
61
|
+
* @maxLength `2`
|
|
62
|
+
*/
|
|
63
|
+
IdMappingTableInputSource: {
|
|
64
|
+
IdNamespaceAssociationId: string;
|
|
65
|
+
Type: "SOURCE" | "TARGET";
|
|
66
|
+
}[];
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* @maxLength `100`
|
|
70
|
+
*/
|
|
71
|
+
MembershipArn: string;
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* Type definition for `AWS::CleanRooms::IdMappingTable.IdMappingTableInputReferenceConfig`.
|
|
75
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idmappingtable-idmappingtableinputreferenceconfig.html}
|
|
76
|
+
*/
|
|
77
|
+
export type IdMappingTableInputReferenceConfig = {
|
|
78
|
+
/**
|
|
79
|
+
* @minLength `20`
|
|
80
|
+
* @maxLength `2048`
|
|
81
|
+
*/
|
|
82
|
+
InputReferenceArn: string;
|
|
83
|
+
ManageResourcePolicies: boolean;
|
|
84
|
+
};
|
|
85
|
+
/**
|
|
86
|
+
* Type definition for `AWS::CleanRooms::IdMappingTable.IdMappingTableInputReferenceProperties`.
|
|
87
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idmappingtable-idmappingtableinputreferenceproperties.html}
|
|
88
|
+
*/
|
|
89
|
+
export type IdMappingTableInputReferenceProperties = {
|
|
90
|
+
/**
|
|
91
|
+
* @minLength `2`
|
|
92
|
+
* @maxLength `2`
|
|
93
|
+
*/
|
|
94
|
+
IdMappingTableInputSource: IdMappingTableInputSource[];
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* Type definition for `AWS::CleanRooms::IdMappingTable.IdMappingTableInputSource`.
|
|
98
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idmappingtable-idmappingtableinputsource.html}
|
|
99
|
+
*/
|
|
100
|
+
export type IdMappingTableInputSource = {
|
|
101
|
+
IdNamespaceAssociationId: string;
|
|
102
|
+
Type: "SOURCE" | "TARGET";
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* Type definition for `AWS::CleanRooms::IdMappingTable.Tag`.
|
|
106
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idmappingtable-tag.html}
|
|
107
|
+
*/
|
|
108
|
+
export type Tag = {
|
|
109
|
+
/**
|
|
110
|
+
* @minLength `1`
|
|
111
|
+
* @maxLength `128`
|
|
112
|
+
*/
|
|
113
|
+
Key: string;
|
|
114
|
+
/**
|
|
115
|
+
* @minLength `1`
|
|
116
|
+
* @maxLength `256`
|
|
117
|
+
*/
|
|
118
|
+
Value: string;
|
|
119
|
+
};
|
|
120
|
+
/**
|
|
121
|
+
* Resource type definition for `AWS::CleanRooms::IdMappingTable`.
|
|
122
|
+
* Represents an association between an ID mapping workflow and a collaboration
|
|
123
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html}
|
|
124
|
+
*/
|
|
125
|
+
export declare class CleanRoomsIdMappingTable extends $Resource<"AWS::CleanRooms::IdMappingTable", CleanRoomsIdMappingTableProperties, CleanRoomsIdMappingTableAttributes> {
|
|
126
|
+
static readonly Type = "AWS::CleanRooms::IdMappingTable";
|
|
127
|
+
constructor(logicalId: string, properties: CleanRoomsIdMappingTableProperties, options?: $ResourceOptions);
|
|
128
|
+
}
|
|
129
|
+
//# sourceMappingURL=AWS-CleanRooms-IdMappingTable.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::CleanRooms::IdMappingTable`.
|
|
4
|
+
* Represents an association between an ID mapping workflow and a collaboration
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html}
|
|
6
|
+
*/
|
|
7
|
+
export class CleanRoomsIdMappingTable extends $Resource {
|
|
8
|
+
static Type = "AWS::CleanRooms::IdMappingTable";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, CleanRoomsIdMappingTable.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-CleanRooms-IdMappingTable.js.map
|
|
@@ -0,0 +1,120 @@
|
|
|
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::CleanRooms::IdNamespaceAssociation`.
|
|
5
|
+
* Represents an association between an ID namespace and a collaboration
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html}
|
|
7
|
+
*/
|
|
8
|
+
export type CleanRoomsIdNamespaceAssociationProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* @maxLength `255`
|
|
11
|
+
* @pattern `^[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t\r\n]*$`
|
|
12
|
+
*/
|
|
13
|
+
Description?: string;
|
|
14
|
+
IdMappingConfig?: IdMappingConfig;
|
|
15
|
+
InputReferenceConfig: IdNamespaceAssociationInputReferenceConfig;
|
|
16
|
+
/**
|
|
17
|
+
* @minLength `36`
|
|
18
|
+
* @maxLength `36`
|
|
19
|
+
* @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
|
|
20
|
+
*/
|
|
21
|
+
MembershipIdentifier: string;
|
|
22
|
+
/**
|
|
23
|
+
* @minLength `1`
|
|
24
|
+
* @maxLength `100`
|
|
25
|
+
* @pattern `^(?!\s*$)[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t]*$`
|
|
26
|
+
*/
|
|
27
|
+
Name: string;
|
|
28
|
+
Tags?: Tag[];
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* Attribute type definition for `AWS::CleanRooms::IdNamespaceAssociation`.
|
|
32
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html#aws-resource-cleanrooms-idnamespaceassociation-return-values}
|
|
33
|
+
*/
|
|
34
|
+
export type CleanRoomsIdNamespaceAssociationAttributes = {
|
|
35
|
+
/**
|
|
36
|
+
* @maxLength `256`
|
|
37
|
+
*/
|
|
38
|
+
Arn: string;
|
|
39
|
+
/**
|
|
40
|
+
* @maxLength `100`
|
|
41
|
+
*/
|
|
42
|
+
CollaborationArn: string;
|
|
43
|
+
/**
|
|
44
|
+
* @minLength `36`
|
|
45
|
+
* @maxLength `36`
|
|
46
|
+
* @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
|
|
47
|
+
*/
|
|
48
|
+
CollaborationIdentifier: string;
|
|
49
|
+
/**
|
|
50
|
+
* @minLength `36`
|
|
51
|
+
* @maxLength `36`
|
|
52
|
+
* @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
|
|
53
|
+
*/
|
|
54
|
+
IdNamespaceAssociationIdentifier: string;
|
|
55
|
+
InputReferenceProperties: {
|
|
56
|
+
IdMappingWorkflowsSupported: Record<string, any>[];
|
|
57
|
+
IdNamespaceType: "SOURCE" | "TARGET";
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* @maxLength `100`
|
|
61
|
+
*/
|
|
62
|
+
MembershipArn: string;
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* Type definition for `AWS::CleanRooms::IdNamespaceAssociation.Document`.
|
|
66
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-document.html}
|
|
67
|
+
*/
|
|
68
|
+
export type Document = Record<string, any>;
|
|
69
|
+
/**
|
|
70
|
+
* Type definition for `AWS::CleanRooms::IdNamespaceAssociation.IdMappingConfig`.
|
|
71
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idmappingconfig.html}
|
|
72
|
+
*/
|
|
73
|
+
export type IdMappingConfig = {
|
|
74
|
+
AllowUseAsDimensionColumn: boolean;
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* Type definition for `AWS::CleanRooms::IdNamespaceAssociation.IdNamespaceAssociationInputReferenceConfig`.
|
|
78
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceconfig.html}
|
|
79
|
+
*/
|
|
80
|
+
export type IdNamespaceAssociationInputReferenceConfig = {
|
|
81
|
+
/**
|
|
82
|
+
* @maxLength `256`
|
|
83
|
+
*/
|
|
84
|
+
InputReferenceArn: string;
|
|
85
|
+
ManageResourcePolicies: boolean;
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* Type definition for `AWS::CleanRooms::IdNamespaceAssociation.IdNamespaceAssociationInputReferenceProperties`.
|
|
89
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceproperties.html}
|
|
90
|
+
*/
|
|
91
|
+
export type IdNamespaceAssociationInputReferenceProperties = {
|
|
92
|
+
IdMappingWorkflowsSupported?: Document[];
|
|
93
|
+
IdNamespaceType?: "SOURCE" | "TARGET";
|
|
94
|
+
};
|
|
95
|
+
/**
|
|
96
|
+
* Type definition for `AWS::CleanRooms::IdNamespaceAssociation.Tag`.
|
|
97
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-tag.html}
|
|
98
|
+
*/
|
|
99
|
+
export type Tag = {
|
|
100
|
+
/**
|
|
101
|
+
* @minLength `1`
|
|
102
|
+
* @maxLength `128`
|
|
103
|
+
*/
|
|
104
|
+
Key: string;
|
|
105
|
+
/**
|
|
106
|
+
* @minLength `1`
|
|
107
|
+
* @maxLength `256`
|
|
108
|
+
*/
|
|
109
|
+
Value: string;
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* Resource type definition for `AWS::CleanRooms::IdNamespaceAssociation`.
|
|
113
|
+
* Represents an association between an ID namespace and a collaboration
|
|
114
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html}
|
|
115
|
+
*/
|
|
116
|
+
export declare class CleanRoomsIdNamespaceAssociation extends $Resource<"AWS::CleanRooms::IdNamespaceAssociation", CleanRoomsIdNamespaceAssociationProperties, CleanRoomsIdNamespaceAssociationAttributes> {
|
|
117
|
+
static readonly Type = "AWS::CleanRooms::IdNamespaceAssociation";
|
|
118
|
+
constructor(logicalId: string, properties: CleanRoomsIdNamespaceAssociationProperties, options?: $ResourceOptions);
|
|
119
|
+
}
|
|
120
|
+
//# sourceMappingURL=AWS-CleanRooms-IdNamespaceAssociation.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::CleanRooms::IdNamespaceAssociation`.
|
|
4
|
+
* Represents an association between an ID namespace and a collaboration
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html}
|
|
6
|
+
*/
|
|
7
|
+
export class CleanRoomsIdNamespaceAssociation extends $Resource {
|
|
8
|
+
static Type = "AWS::CleanRooms::IdNamespaceAssociation";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, CleanRoomsIdNamespaceAssociation.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-CleanRooms-IdNamespaceAssociation.js.map
|
|
@@ -1,7 +1,11 @@
|
|
|
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
|
|
4
|
+
* Resource type definition for `AWS::EC2::VPNConnection`.
|
|
5
|
+
* Specifies a VPN connection between a virtual private gateway and a VPN customer gateway or a transit gateway and a VPN customer gateway.
|
|
6
|
+
To specify a VPN connection between a transit gateway and customer gateway, use the ``TransitGatewayId`` and ``CustomerGatewayId`` properties.
|
|
7
|
+
To specify a VPN connection between a virtual private gateway and customer gateway, use the ``VpnGatewayId`` and ``CustomerGatewayId`` properties.
|
|
8
|
+
For more information, see [](https://docs.aws.amazon.com/vpn/latest/s2svpn/VPC_VPN.html) in the *User Guide*.
|
|
5
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnection.html}
|
|
6
10
|
*/
|
|
7
11
|
export type EC2VPNConnectionProperties = {
|
|
@@ -9,25 +13,29 @@ export type EC2VPNConnectionProperties = {
|
|
|
9
13
|
* The ID of the customer gateway at your end of the VPN connection.
|
|
10
14
|
*/
|
|
11
15
|
CustomerGatewayId: string;
|
|
16
|
+
EnableAcceleration?: boolean;
|
|
12
17
|
/**
|
|
13
|
-
|
|
14
|
-
|
|
18
|
+
* Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don't support BGP.
|
|
19
|
+
If you are creating a VPN connection for a device that does not support Border Gateway Protocol (BGP), you must specify ``true``.
|
|
20
|
+
*/
|
|
15
21
|
StaticRoutesOnly?: boolean;
|
|
16
22
|
/**
|
|
17
23
|
* Any tags assigned to the VPN connection.
|
|
18
24
|
*/
|
|
19
25
|
Tags?: Tag[];
|
|
20
26
|
/**
|
|
21
|
-
|
|
22
|
-
|
|
27
|
+
* The ID of the transit gateway associated with the VPN connection.
|
|
28
|
+
You must specify either ``TransitGatewayId`` or ``VpnGatewayId``, but not both.
|
|
29
|
+
*/
|
|
23
30
|
TransitGatewayId?: string;
|
|
24
31
|
/**
|
|
25
32
|
* The type of VPN connection.
|
|
26
33
|
*/
|
|
27
34
|
Type: string;
|
|
28
35
|
/**
|
|
29
|
-
|
|
30
|
-
|
|
36
|
+
* The ID of the virtual private gateway at the AWS side of the VPN connection.
|
|
37
|
+
You must specify either ``TransitGatewayId`` or ``VpnGatewayId``, but not both.
|
|
38
|
+
*/
|
|
31
39
|
VpnGatewayId?: string;
|
|
32
40
|
/**
|
|
33
41
|
* The tunnel options for the VPN connection.
|
|
@@ -39,29 +47,53 @@ export type EC2VPNConnectionProperties = {
|
|
|
39
47
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnection.html#aws-resource-ec2-vpnconnection-return-values}
|
|
40
48
|
*/
|
|
41
49
|
export type EC2VPNConnectionAttributes = {
|
|
42
|
-
/**
|
|
43
|
-
* The provider-assigned unique ID for this managed resource
|
|
44
|
-
*/
|
|
45
50
|
VpnConnectionId: string;
|
|
46
51
|
};
|
|
47
52
|
/**
|
|
48
53
|
* Type definition for `AWS::EC2::VPNConnection.Tag`.
|
|
54
|
+
* Specifies a tag. For more information, see [Add tags to a resource](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#cloudformation-add-tag-specifications).
|
|
49
55
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-tag.html}
|
|
50
56
|
*/
|
|
51
57
|
export type Tag = {
|
|
58
|
+
/**
|
|
59
|
+
* The tag key.
|
|
60
|
+
*/
|
|
52
61
|
Key: string;
|
|
62
|
+
/**
|
|
63
|
+
* The tag value.
|
|
64
|
+
*/
|
|
53
65
|
Value: string;
|
|
54
66
|
};
|
|
55
67
|
/**
|
|
56
68
|
* Type definition for `AWS::EC2::VPNConnection.VpnTunnelOptionsSpecification`.
|
|
69
|
+
* The tunnel options for a single VPN tunnel.
|
|
57
70
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-vpntunneloptionsspecification.html}
|
|
58
71
|
*/
|
|
59
72
|
export type VpnTunnelOptionsSpecification = {
|
|
73
|
+
/**
|
|
74
|
+
* The pre-shared key (PSK) to establish initial authentication between the virtual private gateway and customer gateway.
|
|
75
|
+
Constraints: Allowed characters are alphanumeric characters, periods (.), and underscores (_). Must be between 8 and 64 characters in length and cannot start with zero (0).
|
|
76
|
+
*/
|
|
60
77
|
PreSharedKey?: string;
|
|
78
|
+
/**
|
|
79
|
+
* The range of inside IP addresses for the tunnel. Any specified CIDR blocks must be unique across all VPN connections that use the same virtual private gateway.
|
|
80
|
+
Constraints: A size /30 CIDR block from the ``169.254.0.0/16`` range. The following CIDR blocks are reserved and cannot be used:
|
|
81
|
+
+ ``169.254.0.0/30``
|
|
82
|
+
+ ``169.254.1.0/30``
|
|
83
|
+
+ ``169.254.2.0/30``
|
|
84
|
+
+ ``169.254.3.0/30``
|
|
85
|
+
+ ``169.254.4.0/30``
|
|
86
|
+
+ ``169.254.5.0/30``
|
|
87
|
+
+ ``169.254.169.252/30``
|
|
88
|
+
*/
|
|
61
89
|
TunnelInsideCidr?: string;
|
|
62
90
|
};
|
|
63
91
|
/**
|
|
64
|
-
* Resource
|
|
92
|
+
* Resource type definition for `AWS::EC2::VPNConnection`.
|
|
93
|
+
* Specifies a VPN connection between a virtual private gateway and a VPN customer gateway or a transit gateway and a VPN customer gateway.
|
|
94
|
+
To specify a VPN connection between a transit gateway and customer gateway, use the ``TransitGatewayId`` and ``CustomerGatewayId`` properties.
|
|
95
|
+
To specify a VPN connection between a virtual private gateway and customer gateway, use the ``VpnGatewayId`` and ``CustomerGatewayId`` properties.
|
|
96
|
+
For more information, see [](https://docs.aws.amazon.com/vpn/latest/s2svpn/VPC_VPN.html) in the *User Guide*.
|
|
65
97
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnection.html}
|
|
66
98
|
*/
|
|
67
99
|
export declare class EC2VPNConnection extends $Resource<"AWS::EC2::VPNConnection", EC2VPNConnectionProperties, EC2VPNConnectionAttributes> {
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource type definition for `AWS::EC2::VPNConnection`.
|
|
4
|
+
* Specifies a VPN connection between a virtual private gateway and a VPN customer gateway or a transit gateway and a VPN customer gateway.
|
|
5
|
+
To specify a VPN connection between a transit gateway and customer gateway, use the ``TransitGatewayId`` and ``CustomerGatewayId`` properties.
|
|
6
|
+
To specify a VPN connection between a virtual private gateway and customer gateway, use the ``VpnGatewayId`` and ``CustomerGatewayId`` properties.
|
|
7
|
+
For more information, see [](https://docs.aws.amazon.com/vpn/latest/s2svpn/VPC_VPN.html) in the *User Guide*.
|
|
4
8
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnection.html}
|
|
5
9
|
*/
|
|
6
10
|
export class EC2VPNConnection extends $Resource {
|
|
@@ -1,7 +1,9 @@
|
|
|
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
|
|
4
|
+
* Resource type definition for `AWS::EC2::VPNConnectionRoute`.
|
|
5
|
+
* Specifies a static route for a VPN connection between an existing virtual private gateway and a VPN customer gateway. The static route allows traffic to be routed from the virtual private gateway to the VPN customer gateway.
|
|
6
|
+
For more information, see [](https://docs.aws.amazon.com/vpn/latest/s2svpn/VPC_VPN.html) in the *User Guide*.
|
|
5
7
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnectionroute.html}
|
|
6
8
|
*/
|
|
7
9
|
export type EC2VPNConnectionRouteProperties = {
|
|
@@ -15,7 +17,9 @@ export type EC2VPNConnectionRouteProperties = {
|
|
|
15
17
|
VpnConnectionId: string;
|
|
16
18
|
};
|
|
17
19
|
/**
|
|
18
|
-
* Resource
|
|
20
|
+
* Resource type definition for `AWS::EC2::VPNConnectionRoute`.
|
|
21
|
+
* Specifies a static route for a VPN connection between an existing virtual private gateway and a VPN customer gateway. The static route allows traffic to be routed from the virtual private gateway to the VPN customer gateway.
|
|
22
|
+
For more information, see [](https://docs.aws.amazon.com/vpn/latest/s2svpn/VPC_VPN.html) in the *User Guide*.
|
|
19
23
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnectionroute.html}
|
|
20
24
|
*/
|
|
21
25
|
export declare class EC2VPNConnectionRoute extends $Resource<"AWS::EC2::VPNConnectionRoute", EC2VPNConnectionRouteProperties, Record<string, never>> {
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource type definition for `AWS::EC2::VPNConnectionRoute`.
|
|
4
|
+
* Specifies a static route for a VPN connection between an existing virtual private gateway and a VPN customer gateway. The static route allows traffic to be routed from the virtual private gateway to the VPN customer gateway.
|
|
5
|
+
For more information, see [](https://docs.aws.amazon.com/vpn/latest/s2svpn/VPC_VPN.html) in the *User Guide*.
|
|
4
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnectionroute.html}
|
|
5
7
|
*/
|
|
6
8
|
export class EC2VPNConnectionRoute extends $Resource {
|
|
@@ -25,6 +25,7 @@ export type EMRServerlessApplicationProperties = {
|
|
|
25
25
|
* Initial capacity initialized when an Application is started.
|
|
26
26
|
*/
|
|
27
27
|
InitialCapacity?: InitialCapacityConfigKeyValuePair[];
|
|
28
|
+
InteractiveConfiguration?: InteractiveConfiguration;
|
|
28
29
|
/**
|
|
29
30
|
* Maximum allowed cumulative resources for an Application. No new resources will be created once the limit is hit.
|
|
30
31
|
*/
|
|
@@ -209,6 +210,20 @@ export type InitialCapacityConfigKeyValuePair = {
|
|
|
209
210
|
Key: string;
|
|
210
211
|
Value: InitialCapacityConfig;
|
|
211
212
|
};
|
|
213
|
+
/**
|
|
214
|
+
* Type definition for `AWS::EMRServerless::Application.InteractiveConfiguration`.
|
|
215
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-interactiveconfiguration.html}
|
|
216
|
+
*/
|
|
217
|
+
export type InteractiveConfiguration = {
|
|
218
|
+
/**
|
|
219
|
+
* Enables an Apache Livy endpoint that you can connect to and run interactive jobs
|
|
220
|
+
*/
|
|
221
|
+
LivyEndpointEnabled?: boolean;
|
|
222
|
+
/**
|
|
223
|
+
* Enabled you to connect an Application to Amazon EMR Studio to run interactive workloads in a notebook
|
|
224
|
+
*/
|
|
225
|
+
StudioEnabled?: boolean;
|
|
226
|
+
};
|
|
212
227
|
/**
|
|
213
228
|
* Type definition for `AWS::EMRServerless::Application.LogTypeMapKeyValuePair`.
|
|
214
229
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-logtypemapkeyvaluepair.html}
|
|
@@ -5,75 +5,151 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html}
|
|
6
6
|
*/
|
|
7
7
|
export type GlueTriggerProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The actions initiated by this trigger.
|
|
10
|
+
*/
|
|
8
11
|
Actions: Action[];
|
|
12
|
+
/**
|
|
13
|
+
* A description of this trigger.
|
|
14
|
+
*/
|
|
9
15
|
Description?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
|
|
18
|
+
*/
|
|
10
19
|
EventBatchingCondition?: EventBatchingCondition;
|
|
20
|
+
/**
|
|
21
|
+
* The name of the trigger.
|
|
22
|
+
*/
|
|
11
23
|
Name?: string;
|
|
24
|
+
/**
|
|
25
|
+
* The predicate of this trigger, which defines when it will fire.
|
|
26
|
+
*/
|
|
12
27
|
Predicate?: Predicate;
|
|
28
|
+
/**
|
|
29
|
+
* A cron expression used to specify the schedule.
|
|
30
|
+
*/
|
|
13
31
|
Schedule?: string;
|
|
32
|
+
/**
|
|
33
|
+
* Set to true to start SCHEDULED and CONDITIONAL triggers when created. True is not supported for ON_DEMAND triggers.
|
|
34
|
+
*/
|
|
14
35
|
StartOnCreation?: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* The tags to use with this trigger.
|
|
38
|
+
*/
|
|
15
39
|
Tags?: Record<string, any>;
|
|
40
|
+
/**
|
|
41
|
+
* The type of trigger that this is.
|
|
42
|
+
*/
|
|
16
43
|
Type: string;
|
|
44
|
+
/**
|
|
45
|
+
* The name of the workflow associated with the trigger.
|
|
46
|
+
*/
|
|
17
47
|
WorkflowName?: string;
|
|
18
48
|
};
|
|
19
|
-
/**
|
|
20
|
-
* Attribute type definition for `AWS::Glue::Trigger`.
|
|
21
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#aws-resource-glue-trigger-return-values}
|
|
22
|
-
*/
|
|
23
|
-
export type GlueTriggerAttributes = {
|
|
24
|
-
Id: string;
|
|
25
|
-
};
|
|
26
49
|
/**
|
|
27
50
|
* Type definition for `AWS::Glue::Trigger.Action`.
|
|
51
|
+
* The actions initiated by this trigger.
|
|
28
52
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-action.html}
|
|
29
53
|
*/
|
|
30
54
|
export type Action = {
|
|
55
|
+
/**
|
|
56
|
+
* The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.
|
|
57
|
+
*/
|
|
31
58
|
Arguments?: Record<string, any>;
|
|
59
|
+
/**
|
|
60
|
+
* The name of the crawler to be used with this action.
|
|
61
|
+
*/
|
|
32
62
|
CrawlerName?: string;
|
|
63
|
+
/**
|
|
64
|
+
* The name of a job to be executed.
|
|
65
|
+
*/
|
|
33
66
|
JobName?: string;
|
|
67
|
+
/**
|
|
68
|
+
* Specifies configuration properties of a job run notification.
|
|
69
|
+
*/
|
|
34
70
|
NotificationProperty?: NotificationProperty;
|
|
71
|
+
/**
|
|
72
|
+
* The name of the SecurityConfiguration structure to be used with this action.
|
|
73
|
+
*/
|
|
35
74
|
SecurityConfiguration?: string;
|
|
75
|
+
/**
|
|
76
|
+
* The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.
|
|
77
|
+
*/
|
|
36
78
|
Timeout?: number;
|
|
37
79
|
};
|
|
38
80
|
/**
|
|
39
81
|
* Type definition for `AWS::Glue::Trigger.Condition`.
|
|
82
|
+
* Defines a condition under which a trigger fires.
|
|
40
83
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-condition.html}
|
|
41
84
|
*/
|
|
42
85
|
export type Condition = {
|
|
86
|
+
/**
|
|
87
|
+
* The state of the crawler to which this condition applies.
|
|
88
|
+
*/
|
|
43
89
|
CrawlState?: string;
|
|
90
|
+
/**
|
|
91
|
+
* The name of the crawler to which this condition applies.
|
|
92
|
+
*/
|
|
44
93
|
CrawlerName?: string;
|
|
94
|
+
/**
|
|
95
|
+
* The name of the job whose JobRuns this condition applies to, and on which this trigger waits.
|
|
96
|
+
*/
|
|
45
97
|
JobName?: string;
|
|
98
|
+
/**
|
|
99
|
+
* A logical operator.
|
|
100
|
+
*/
|
|
46
101
|
LogicalOperator?: string;
|
|
102
|
+
/**
|
|
103
|
+
* The condition state. Currently, the values supported are SUCCEEDED, STOPPED, TIMEOUT, and FAILED.
|
|
104
|
+
*/
|
|
47
105
|
State?: string;
|
|
48
106
|
};
|
|
49
107
|
/**
|
|
50
108
|
* Type definition for `AWS::Glue::Trigger.EventBatchingCondition`.
|
|
109
|
+
* Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
|
|
51
110
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-eventbatchingcondition.html}
|
|
52
111
|
*/
|
|
53
112
|
export type EventBatchingCondition = {
|
|
113
|
+
/**
|
|
114
|
+
* Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
|
|
115
|
+
*/
|
|
54
116
|
BatchSize: number;
|
|
117
|
+
/**
|
|
118
|
+
* Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
|
|
119
|
+
*/
|
|
55
120
|
BatchWindow?: number;
|
|
56
121
|
};
|
|
57
122
|
/**
|
|
58
123
|
* Type definition for `AWS::Glue::Trigger.NotificationProperty`.
|
|
124
|
+
* Specifies configuration properties of a job run notification.
|
|
59
125
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-notificationproperty.html}
|
|
60
126
|
*/
|
|
61
127
|
export type NotificationProperty = {
|
|
128
|
+
/**
|
|
129
|
+
* After a job run starts, the number of minutes to wait before sending a job run delay notification
|
|
130
|
+
*/
|
|
62
131
|
NotifyDelayAfter?: number;
|
|
63
132
|
};
|
|
64
133
|
/**
|
|
65
134
|
* Type definition for `AWS::Glue::Trigger.Predicate`.
|
|
135
|
+
* The predicate of this trigger, which defines when it will fire.
|
|
66
136
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html}
|
|
67
137
|
*/
|
|
68
138
|
export type Predicate = {
|
|
139
|
+
/**
|
|
140
|
+
* A list of the conditions that determine when the trigger will fire.
|
|
141
|
+
*/
|
|
69
142
|
Conditions?: Condition[];
|
|
143
|
+
/**
|
|
144
|
+
* An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.
|
|
145
|
+
*/
|
|
70
146
|
Logical?: string;
|
|
71
147
|
};
|
|
72
148
|
/**
|
|
73
149
|
* Resource Type definition for AWS::Glue::Trigger
|
|
74
150
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html}
|
|
75
151
|
*/
|
|
76
|
-
export declare class GlueTrigger extends $Resource<"AWS::Glue::Trigger", GlueTriggerProperties,
|
|
152
|
+
export declare class GlueTrigger extends $Resource<"AWS::Glue::Trigger", GlueTriggerProperties, Record<string, never>> {
|
|
77
153
|
static readonly Type = "AWS::Glue::Trigger";
|
|
78
154
|
constructor(logicalId: string, properties: GlueTriggerProperties, options?: $ResourceOptions);
|
|
79
155
|
}
|
|
@@ -10,14 +10,14 @@ export type InspectorV2CisScanConfigurationProperties = {
|
|
|
10
10
|
* Name of the scan
|
|
11
11
|
* @minLength `1`
|
|
12
12
|
*/
|
|
13
|
-
ScanName
|
|
13
|
+
ScanName: string;
|
|
14
14
|
/**
|
|
15
15
|
* Choose a Schedule cadence
|
|
16
16
|
*/
|
|
17
|
-
Schedule
|
|
18
|
-
SecurityLevel
|
|
17
|
+
Schedule: Schedule;
|
|
18
|
+
SecurityLevel: CisSecurityLevel;
|
|
19
19
|
Tags?: CisTagMap;
|
|
20
|
-
Targets
|
|
20
|
+
Targets: CisTargets;
|
|
21
21
|
};
|
|
22
22
|
/**
|
|
23
23
|
* Attribute type definition for `AWS::InspectorV2::CisScanConfiguration`.
|
|
@@ -2,44 +2,55 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
4
|
* Resource type definition for `AWS::Panorama::ApplicationInstance`.
|
|
5
|
-
*
|
|
5
|
+
* Creates an application instance and deploys it to a device.
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-applicationinstance.html}
|
|
7
7
|
*/
|
|
8
8
|
export type PanoramaApplicationInstanceProperties = {
|
|
9
9
|
/**
|
|
10
|
+
* The ID of an application instance to replace with the new instance.
|
|
10
11
|
* @minLength `1`
|
|
11
12
|
* @maxLength `255`
|
|
12
13
|
* @pattern `^[a-zA-Z0-9\-\_]+$`
|
|
13
14
|
*/
|
|
14
15
|
ApplicationInstanceIdToReplace?: string;
|
|
15
16
|
/**
|
|
17
|
+
* The device's ID.
|
|
16
18
|
* @minLength `1`
|
|
17
19
|
* @maxLength `255`
|
|
18
20
|
* @pattern `^[a-zA-Z0-9\-\_]+$`
|
|
19
21
|
*/
|
|
20
22
|
DefaultRuntimeContextDevice: string;
|
|
21
23
|
/**
|
|
24
|
+
* A description for the application instance.
|
|
22
25
|
* @minLength `0`
|
|
23
26
|
* @maxLength `255`
|
|
24
27
|
* @pattern `^.*$`
|
|
25
28
|
*/
|
|
26
29
|
Description?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Setting overrides for the application manifest.
|
|
32
|
+
*/
|
|
27
33
|
ManifestOverridesPayload?: ManifestOverridesPayload;
|
|
34
|
+
/**
|
|
35
|
+
* The application's manifest document.
|
|
36
|
+
*/
|
|
28
37
|
ManifestPayload: ManifestPayload;
|
|
29
38
|
/**
|
|
39
|
+
* A name for the application instance.
|
|
30
40
|
* @minLength `1`
|
|
31
41
|
* @maxLength `255`
|
|
32
42
|
* @pattern `^[a-zA-Z0-9\-\_]+$`
|
|
33
43
|
*/
|
|
34
44
|
Name?: string;
|
|
35
45
|
/**
|
|
46
|
+
* The ARN of a runtime role for the application instance.
|
|
36
47
|
* @minLength `1`
|
|
37
48
|
* @maxLength `255`
|
|
38
49
|
* @pattern `^arn:[a-z0-9][-.a-z0-9]{0,62}:iam::[0-9]{12}:role/.+$`
|
|
39
50
|
*/
|
|
40
51
|
RuntimeRoleArn?: string;
|
|
41
52
|
/**
|
|
42
|
-
*
|
|
53
|
+
* Tags for the application instance.
|
|
43
54
|
*/
|
|
44
55
|
Tags?: Tag[];
|
|
45
56
|
};
|
|
@@ -87,10 +98,12 @@ export type ApplicationInstanceHealthStatus = "RUNNING" | "ERROR" | "NOT_AVAILAB
|
|
|
87
98
|
export type ApplicationInstanceStatus = "DEPLOYMENT_PENDING" | "DEPLOYMENT_REQUESTED" | "DEPLOYMENT_IN_PROGRESS" | "DEPLOYMENT_ERROR" | "DEPLOYMENT_SUCCEEDED" | "REMOVAL_PENDING" | "REMOVAL_REQUESTED" | "REMOVAL_IN_PROGRESS" | "REMOVAL_FAILED" | "REMOVAL_SUCCEEDED";
|
|
88
99
|
/**
|
|
89
100
|
* Type definition for `AWS::Panorama::ApplicationInstance.ManifestOverridesPayload`.
|
|
101
|
+
* Parameter overrides for an application instance. This is a JSON document that has a single key (``PayloadData``) where the value is an escaped string representation of the overrides document.
|
|
90
102
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-panorama-applicationinstance-manifestoverridespayload.html}
|
|
91
103
|
*/
|
|
92
104
|
export type ManifestOverridesPayload = {
|
|
93
105
|
/**
|
|
106
|
+
* The overrides document.
|
|
94
107
|
* @minLength `0`
|
|
95
108
|
* @maxLength `51200`
|
|
96
109
|
* @pattern `^.+$`
|
|
@@ -99,10 +112,12 @@ export type ManifestOverridesPayload = {
|
|
|
99
112
|
};
|
|
100
113
|
/**
|
|
101
114
|
* Type definition for `AWS::Panorama::ApplicationInstance.ManifestPayload`.
|
|
115
|
+
* A application verion's manifest file. This is a JSON document that has a single key (``PayloadData``) where the value is an escaped string representation of the application manifest (``graph.json``). This file is located in the ``graphs`` folder in your application source.
|
|
102
116
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-panorama-applicationinstance-manifestpayload.html}
|
|
103
117
|
*/
|
|
104
118
|
export type ManifestPayload = {
|
|
105
119
|
/**
|
|
120
|
+
* The application manifest.
|
|
106
121
|
* @minLength `1`
|
|
107
122
|
* @maxLength `51200`
|
|
108
123
|
* @pattern `^.+$`
|
|
@@ -115,14 +130,12 @@ export type ManifestPayload = {
|
|
|
115
130
|
*/
|
|
116
131
|
export type Tag = {
|
|
117
132
|
/**
|
|
118
|
-
* A string used to identify this tag
|
|
119
133
|
* @minLength `1`
|
|
120
134
|
* @maxLength `128`
|
|
121
135
|
* @pattern `^.+$`
|
|
122
136
|
*/
|
|
123
137
|
Key: string;
|
|
124
138
|
/**
|
|
125
|
-
* A string containing the value for the tag
|
|
126
139
|
* @minLength `0`
|
|
127
140
|
* @maxLength `256`
|
|
128
141
|
* @pattern `^.+$`
|
|
@@ -131,7 +144,7 @@ export type Tag = {
|
|
|
131
144
|
};
|
|
132
145
|
/**
|
|
133
146
|
* Resource type definition for `AWS::Panorama::ApplicationInstance`.
|
|
134
|
-
*
|
|
147
|
+
* Creates an application instance and deploys it to a device.
|
|
135
148
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-applicationinstance.html}
|
|
136
149
|
*/
|
|
137
150
|
export declare class PanoramaApplicationInstance extends $Resource<"AWS::Panorama::ApplicationInstance", PanoramaApplicationInstanceProperties, PanoramaApplicationInstanceAttributes> {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
3
|
* Resource type definition for `AWS::Panorama::ApplicationInstance`.
|
|
4
|
-
*
|
|
4
|
+
* Creates an application instance and deploys it to a device.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-applicationinstance.html}
|
|
6
6
|
*/
|
|
7
7
|
export class PanoramaApplicationInstance extends $Resource {
|
|
@@ -2,16 +2,20 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
4
|
* Resource type definition for `AWS::Panorama::Package`.
|
|
5
|
-
*
|
|
5
|
+
* Creates a package and storage location in an Amazon S3 access point.
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-package.html}
|
|
7
7
|
*/
|
|
8
8
|
export type PanoramaPackageProperties = {
|
|
9
9
|
/**
|
|
10
|
+
* A name for the package.
|
|
10
11
|
* @minLength `1`
|
|
11
12
|
* @maxLength `128`
|
|
12
13
|
* @pattern `^[a-zA-Z0-9\-\_]+$`
|
|
13
14
|
*/
|
|
14
15
|
PackageName: string;
|
|
16
|
+
/**
|
|
17
|
+
* Tags for the package.
|
|
18
|
+
*/
|
|
15
19
|
Tags?: Tag[];
|
|
16
20
|
};
|
|
17
21
|
/**
|
|
@@ -31,11 +35,29 @@ export type PanoramaPackageAttributes = {
|
|
|
31
35
|
* @pattern `^[a-zA-Z0-9\-\_\/]+$`
|
|
32
36
|
*/
|
|
33
37
|
PackageId: string;
|
|
38
|
+
/**
|
|
39
|
+
* A storage location.
|
|
40
|
+
*/
|
|
34
41
|
StorageLocation: {
|
|
42
|
+
/**
|
|
43
|
+
* The location's binary prefix.
|
|
44
|
+
*/
|
|
35
45
|
BinaryPrefixLocation: string;
|
|
46
|
+
/**
|
|
47
|
+
* The location's bucket.
|
|
48
|
+
*/
|
|
36
49
|
Bucket: string;
|
|
50
|
+
/**
|
|
51
|
+
* The location's generated prefix.
|
|
52
|
+
*/
|
|
37
53
|
GeneratedPrefixLocation: string;
|
|
54
|
+
/**
|
|
55
|
+
* The location's manifest prefix.
|
|
56
|
+
*/
|
|
38
57
|
ManifestPrefixLocation: string;
|
|
58
|
+
/**
|
|
59
|
+
* The location's repo prefix.
|
|
60
|
+
*/
|
|
39
61
|
RepoPrefixLocation: string;
|
|
40
62
|
};
|
|
41
63
|
};
|
|
@@ -59,7 +81,7 @@ export type Tag = {
|
|
|
59
81
|
};
|
|
60
82
|
/**
|
|
61
83
|
* Resource type definition for `AWS::Panorama::Package`.
|
|
62
|
-
*
|
|
84
|
+
* Creates a package and storage location in an Amazon S3 access point.
|
|
63
85
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-package.html}
|
|
64
86
|
*/
|
|
65
87
|
export declare class PanoramaPackage extends $Resource<"AWS::Panorama::Package", PanoramaPackageProperties, PanoramaPackageAttributes> {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
3
|
* Resource type definition for `AWS::Panorama::Package`.
|
|
4
|
-
*
|
|
4
|
+
* Creates a package and storage location in an Amazon S3 access point.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-package.html}
|
|
6
6
|
*/
|
|
7
7
|
export class PanoramaPackage extends $Resource {
|
|
@@ -2,36 +2,44 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
4
|
* Resource type definition for `AWS::Panorama::PackageVersion`.
|
|
5
|
-
*
|
|
5
|
+
* Registers a package version.
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-packageversion.html}
|
|
7
7
|
*/
|
|
8
8
|
export type PanoramaPackageVersionProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* Whether to mark the new version as the latest version.
|
|
11
|
+
*/
|
|
9
12
|
MarkLatest?: boolean;
|
|
10
13
|
/**
|
|
14
|
+
* An owner account.
|
|
11
15
|
* @minLength `1`
|
|
12
16
|
* @maxLength `12`
|
|
13
17
|
* @pattern `^[0-9a-z\_]+$`
|
|
14
18
|
*/
|
|
15
19
|
OwnerAccount?: string;
|
|
16
20
|
/**
|
|
21
|
+
* A package ID.
|
|
17
22
|
* @minLength `1`
|
|
18
23
|
* @maxLength `255`
|
|
19
24
|
* @pattern `^[a-zA-Z0-9\-\_\/]+$`
|
|
20
25
|
*/
|
|
21
26
|
PackageId: string;
|
|
22
27
|
/**
|
|
28
|
+
* A package version.
|
|
23
29
|
* @minLength `1`
|
|
24
30
|
* @maxLength `255`
|
|
25
31
|
* @pattern `^([0-9]+)\.([0-9]+)$`
|
|
26
32
|
*/
|
|
27
33
|
PackageVersion: string;
|
|
28
34
|
/**
|
|
35
|
+
* A patch version.
|
|
29
36
|
* @minLength `1`
|
|
30
37
|
* @maxLength `255`
|
|
31
38
|
* @pattern `^[a-z0-9]+$`
|
|
32
39
|
*/
|
|
33
40
|
PatchVersion: string;
|
|
34
41
|
/**
|
|
42
|
+
* If the version was marked latest, the new version to maker as latest.
|
|
35
43
|
* @minLength `1`
|
|
36
44
|
* @maxLength `255`
|
|
37
45
|
* @pattern `^[a-z0-9]+$`
|
|
@@ -70,7 +78,7 @@ export type PanoramaPackageVersionAttributes = {
|
|
|
70
78
|
export type PackageVersionStatus = "REGISTER_PENDING" | "REGISTER_COMPLETED" | "FAILED" | "DELETING";
|
|
71
79
|
/**
|
|
72
80
|
* Resource type definition for `AWS::Panorama::PackageVersion`.
|
|
73
|
-
*
|
|
81
|
+
* Registers a package version.
|
|
74
82
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-packageversion.html}
|
|
75
83
|
*/
|
|
76
84
|
export declare class PanoramaPackageVersion extends $Resource<"AWS::Panorama::PackageVersion", PanoramaPackageVersionProperties, PanoramaPackageVersionAttributes> {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
3
|
* Resource type definition for `AWS::Panorama::PackageVersion`.
|
|
4
|
-
*
|
|
4
|
+
* Registers a package version.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-packageversion.html}
|
|
6
6
|
*/
|
|
7
7
|
export class PanoramaPackageVersion extends $Resource {
|
package/lib/AWS-SNS-Topic.d.ts
CHANGED
|
@@ -25,6 +25,16 @@ export type SNSTopicProperties = {
|
|
|
25
25
|
Length Constraints: Maximum length of 30,720.
|
|
26
26
|
*/
|
|
27
27
|
DataProtectionPolicy?: Record<string, any>;
|
|
28
|
+
/**
|
|
29
|
+
* The ``DeliveryStatusLogging`` configuration enables you to log the delivery status of messages sent from your Amazon SNS topic to subscribed endpoints with the following supported delivery protocols:
|
|
30
|
+
+ HTTP
|
|
31
|
+
+ Amazon Kinesis Data Firehose
|
|
32
|
+
+ AWS Lambda
|
|
33
|
+
+ Platform application endpoint
|
|
34
|
+
+ Amazon Simple Queue Service
|
|
35
|
+
|
|
36
|
+
Once configured, log entries are sent to Amazon CloudWatch Logs.
|
|
37
|
+
*/
|
|
28
38
|
DeliveryStatusLogging?: LoggingConfig[];
|
|
29
39
|
/**
|
|
30
40
|
* The display name to use for an SNS topic with SMS subscriptions. The display name must be maximum 100 characters long, including hyphens (-), underscores (_), spaces, and tabs.
|
|
@@ -73,12 +83,26 @@ export type SNSTopicAttributes = {
|
|
|
73
83
|
};
|
|
74
84
|
/**
|
|
75
85
|
* Type definition for `AWS::SNS::Topic.LoggingConfig`.
|
|
86
|
+
* The ``LoggingConfig`` property type specifies the ``Delivery`` status logging configuration for an [AWS::SNS::Topic](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-topic.html).
|
|
76
87
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic-loggingconfig.html}
|
|
77
88
|
*/
|
|
78
89
|
export type LoggingConfig = {
|
|
90
|
+
/**
|
|
91
|
+
* The IAM role ARN to be used when logging failed message deliveries in Amazon CloudWatch.
|
|
92
|
+
*/
|
|
79
93
|
FailureFeedbackRoleArn?: string;
|
|
94
|
+
/**
|
|
95
|
+
* Indicates one of the supported protocols for the Amazon SNS topic.
|
|
96
|
+
At least one of the other three ``LoggingConfig`` properties is recommend along with ``Protocol``.
|
|
97
|
+
*/
|
|
80
98
|
Protocol: "http/s" | "sqs" | "lambda" | "firehose" | "application";
|
|
99
|
+
/**
|
|
100
|
+
* The IAM role ARN to be used when logging successful message deliveries in Amazon CloudWatch.
|
|
101
|
+
*/
|
|
81
102
|
SuccessFeedbackRoleArn?: string;
|
|
103
|
+
/**
|
|
104
|
+
* The percentage of successful message deliveries to be logged in Amazon CloudWatch. Valid percentage values range from 0 to 100.
|
|
105
|
+
*/
|
|
82
106
|
SuccessFeedbackSampleRate?: string;
|
|
83
107
|
};
|
|
84
108
|
/**
|
|
@@ -392,7 +392,7 @@ export type KernelGatewayAppSettings = {
|
|
|
392
392
|
* Type definition for `AWS::SageMaker::Domain.MlTools`.
|
|
393
393
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-mltools.html}
|
|
394
394
|
*/
|
|
395
|
-
export type MlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "
|
|
395
|
+
export type MlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects";
|
|
396
396
|
/**
|
|
397
397
|
* Type definition for `AWS::SageMaker::Domain.ResourceSpec`.
|
|
398
398
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-resourcespec.html}
|
|
@@ -0,0 +1,70 @@
|
|
|
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::SageMaker::StudioLifecycleConfig
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-studiolifecycleconfig.html}
|
|
6
|
+
*/
|
|
7
|
+
export type SageMakerStudioLifecycleConfigProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The App type that the Lifecycle Configuration is attached to.
|
|
10
|
+
*/
|
|
11
|
+
StudioLifecycleConfigAppType: "JupyterServer" | "KernelGateway" | "CodeEditor" | "JupyterLab";
|
|
12
|
+
/**
|
|
13
|
+
* The content of your Amazon SageMaker Studio Lifecycle Configuration script.
|
|
14
|
+
* @minLength `1`
|
|
15
|
+
* @maxLength `16384`
|
|
16
|
+
* @pattern `[\S\s]+`
|
|
17
|
+
*/
|
|
18
|
+
StudioLifecycleConfigContent: string;
|
|
19
|
+
/**
|
|
20
|
+
* The name of the Amazon SageMaker Studio Lifecycle Configuration.
|
|
21
|
+
* @minLength `1`
|
|
22
|
+
* @maxLength `63`
|
|
23
|
+
* @pattern `^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}`
|
|
24
|
+
*/
|
|
25
|
+
StudioLifecycleConfigName: string;
|
|
26
|
+
/**
|
|
27
|
+
* Tags to be associated with the Lifecycle Configuration.
|
|
28
|
+
* @minLength `0`
|
|
29
|
+
* @maxLength `50`
|
|
30
|
+
*/
|
|
31
|
+
Tags?: Tag[];
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* Attribute type definition for `AWS::SageMaker::StudioLifecycleConfig`.
|
|
35
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-studiolifecycleconfig.html#aws-resource-sagemaker-studiolifecycleconfig-return-values}
|
|
36
|
+
*/
|
|
37
|
+
export type SageMakerStudioLifecycleConfigAttributes = {
|
|
38
|
+
/**
|
|
39
|
+
* The Amazon Resource Name (ARN) of the Lifecycle Configuration.
|
|
40
|
+
* @minLength `1`
|
|
41
|
+
* @maxLength `256`
|
|
42
|
+
* @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*`
|
|
43
|
+
*/
|
|
44
|
+
StudioLifecycleConfigArn: string;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* Type definition for `AWS::SageMaker::StudioLifecycleConfig.Tag`.
|
|
48
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-studiolifecycleconfig-tag.html}
|
|
49
|
+
*/
|
|
50
|
+
export type Tag = {
|
|
51
|
+
/**
|
|
52
|
+
* @minLength `1`
|
|
53
|
+
* @maxLength `128`
|
|
54
|
+
*/
|
|
55
|
+
Key: string;
|
|
56
|
+
/**
|
|
57
|
+
* @minLength `1`
|
|
58
|
+
* @maxLength `128`
|
|
59
|
+
*/
|
|
60
|
+
Value: string;
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* Resource Type definition for AWS::SageMaker::StudioLifecycleConfig
|
|
64
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-studiolifecycleconfig.html}
|
|
65
|
+
*/
|
|
66
|
+
export declare class SageMakerStudioLifecycleConfig extends $Resource<"AWS::SageMaker::StudioLifecycleConfig", SageMakerStudioLifecycleConfigProperties, SageMakerStudioLifecycleConfigAttributes> {
|
|
67
|
+
static readonly Type = "AWS::SageMaker::StudioLifecycleConfig";
|
|
68
|
+
constructor(logicalId: string, properties: SageMakerStudioLifecycleConfigProperties, options?: $ResourceOptions);
|
|
69
|
+
}
|
|
70
|
+
//# sourceMappingURL=AWS-SageMaker-StudioLifecycleConfig.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::SageMaker::StudioLifecycleConfig
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-studiolifecycleconfig.html}
|
|
5
|
+
*/
|
|
6
|
+
export class SageMakerStudioLifecycleConfig extends $Resource {
|
|
7
|
+
static Type = "AWS::SageMaker::StudioLifecycleConfig";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, SageMakerStudioLifecycleConfig.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-SageMaker-StudioLifecycleConfig.js.map
|
|
@@ -256,7 +256,7 @@ export type KernelGatewayAppSettings = {
|
|
|
256
256
|
* Type definition for `AWS::SageMaker::UserProfile.MlTools`.
|
|
257
257
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-mltools.html}
|
|
258
258
|
*/
|
|
259
|
-
export type MlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "
|
|
259
|
+
export type MlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects";
|
|
260
260
|
/**
|
|
261
261
|
* Type definition for `AWS::SageMaker::UserProfile.ResourceSpec`.
|
|
262
262
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-resourcespec.html}
|