@awboost/cfn-resource-types 0.1.122 → 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-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-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-StudioLifecycleConfig.d.ts +70 -0
- package/lib/AWS-SageMaker-StudioLifecycleConfig.js +12 -0
- 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
|
|
@@ -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}
|
|
@@ -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
|
/**
|
|
@@ -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
|