@awboost/cfn-resource-types 0.1.426 → 0.1.427
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.
|
@@ -87,7 +87,15 @@ export type ChatbotMicrosoftTeamsChannelConfigurationAttributes = {
|
|
|
87
87
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-microsoftteamschannelconfiguration-tag.html}
|
|
88
88
|
*/
|
|
89
89
|
export type Tag = {
|
|
90
|
+
/**
|
|
91
|
+
* @minLength `1`
|
|
92
|
+
* @maxLength `128`
|
|
93
|
+
*/
|
|
90
94
|
Key: string;
|
|
95
|
+
/**
|
|
96
|
+
* @minLength `0`
|
|
97
|
+
* @maxLength `256`
|
|
98
|
+
*/
|
|
91
99
|
Value: string;
|
|
92
100
|
};
|
|
93
101
|
/**
|
|
@@ -73,7 +73,15 @@ export type ChatbotSlackChannelConfigurationAttributes = {
|
|
|
73
73
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-slackchannelconfiguration-tag.html}
|
|
74
74
|
*/
|
|
75
75
|
export type Tag = {
|
|
76
|
+
/**
|
|
77
|
+
* @minLength `1`
|
|
78
|
+
* @maxLength `128`
|
|
79
|
+
*/
|
|
76
80
|
Key: string;
|
|
81
|
+
/**
|
|
82
|
+
* @minLength `0`
|
|
83
|
+
* @maxLength `256`
|
|
84
|
+
*/
|
|
77
85
|
Value: string;
|
|
78
86
|
};
|
|
79
87
|
/**
|
package/lib/AWS-ECS-Service.d.ts
CHANGED
|
@@ -419,6 +419,7 @@ export type DeploymentController = {
|
|
|
419
419
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentlifecyclehook.html}
|
|
420
420
|
*/
|
|
421
421
|
export type DeploymentLifecycleHook = {
|
|
422
|
+
HookDetails?: string | Record<string, any>;
|
|
422
423
|
/**
|
|
423
424
|
* The Amazon Resource Name (ARN) of the hook target. Currently, only Lambda function ARNs are supported.
|
|
424
425
|
You must provide this parameter when configuring a deployment lifecycle hook.
|
|
@@ -32,6 +32,11 @@ export type EVSEnvironmentProperties = {
|
|
|
32
32
|
ExpansionVlan1: InitialVlanInfo;
|
|
33
33
|
ExpansionVlan2: InitialVlanInfo;
|
|
34
34
|
Hcx: InitialVlanInfo;
|
|
35
|
+
/**
|
|
36
|
+
* @pattern `^acl-[a-zA-Z0-9_-]+$`
|
|
37
|
+
*/
|
|
38
|
+
HcxNetworkAclId?: string;
|
|
39
|
+
IsHcxPublic?: boolean;
|
|
35
40
|
NsxUpLink: InitialVlanInfo;
|
|
36
41
|
VMotion: InitialVlanInfo;
|
|
37
42
|
VSan: InitialVlanInfo;
|
|
@@ -7,10 +7,6 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
7
7
|
*/
|
|
8
8
|
export type VpcLatticeResourceGatewayProperties = {
|
|
9
9
|
IpAddressType?: "IPV4" | "IPV6" | "DUALSTACK";
|
|
10
|
-
/**
|
|
11
|
-
* The number of IPv4 addresses to allocate per ENI for the resource gateway
|
|
12
|
-
*/
|
|
13
|
-
Ipv4AddressesPerEni?: number;
|
|
14
10
|
/**
|
|
15
11
|
* @minLength `3`
|
|
16
12
|
* @maxLength `40`
|