@awboost/cfn-resource-types 0.1.144 → 0.1.145
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.
|
@@ -38,7 +38,7 @@ export type DMSInstanceProfileProperties = {
|
|
|
38
38
|
/**
|
|
39
39
|
* The property describes a network type for the instance profile.
|
|
40
40
|
*/
|
|
41
|
-
NetworkType?: "IPV4" | "
|
|
41
|
+
NetworkType?: "IPV4" | "DUAL";
|
|
42
42
|
/**
|
|
43
43
|
* The property describes the publicly accessible of the instance profile
|
|
44
44
|
*/
|
|
@@ -0,0 +1,90 @@
|
|
|
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::DataZone::EnvironmentActions Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentactions.html}
|
|
6
|
+
*/
|
|
7
|
+
export type DataZoneEnvironmentActionsProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The description of the Amazon DataZone environment action.
|
|
10
|
+
* @maxLength `2048`
|
|
11
|
+
*/
|
|
12
|
+
Description?: string;
|
|
13
|
+
/**
|
|
14
|
+
* The identifier of the Amazon DataZone domain in which the environment would be created.
|
|
15
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
16
|
+
*/
|
|
17
|
+
DomainIdentifier?: string;
|
|
18
|
+
/**
|
|
19
|
+
* The identifier of the Amazon DataZone environment in which the action is taking place
|
|
20
|
+
* @minLength `1`
|
|
21
|
+
* @maxLength `36`
|
|
22
|
+
* @pattern `[a-zA-Z0-9_-]{1,36}$`
|
|
23
|
+
*/
|
|
24
|
+
EnvironmentIdentifier?: string;
|
|
25
|
+
/**
|
|
26
|
+
* The ID of the Amazon DataZone environment action.
|
|
27
|
+
* @minLength `1`
|
|
28
|
+
* @maxLength `36`
|
|
29
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
30
|
+
*/
|
|
31
|
+
Identifier?: string;
|
|
32
|
+
/**
|
|
33
|
+
* The name of the environment action.
|
|
34
|
+
* @minLength `1`
|
|
35
|
+
* @maxLength `64`
|
|
36
|
+
* @pattern `^[\w -]+$`
|
|
37
|
+
*/
|
|
38
|
+
Name: string;
|
|
39
|
+
/**
|
|
40
|
+
* The parameters of the environment action.
|
|
41
|
+
*/
|
|
42
|
+
Parameters?: AwsConsoleLinkParameters;
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* Attribute type definition for `AWS::DataZone::EnvironmentActions`.
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentactions.html#aws-resource-datazone-environmentactions-return-values}
|
|
47
|
+
*/
|
|
48
|
+
export type DataZoneEnvironmentActionsAttributes = {
|
|
49
|
+
/**
|
|
50
|
+
* The identifier of the Amazon DataZone domain in which the environment is created.
|
|
51
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
52
|
+
*/
|
|
53
|
+
DomainId: string;
|
|
54
|
+
/**
|
|
55
|
+
* The identifier of the Amazon DataZone environment in which the action is taking place
|
|
56
|
+
* @minLength `1`
|
|
57
|
+
* @maxLength `36`
|
|
58
|
+
* @pattern `[a-zA-Z0-9_-]{1,36}$`
|
|
59
|
+
*/
|
|
60
|
+
EnvironmentId: string;
|
|
61
|
+
/**
|
|
62
|
+
* The ID of the Amazon DataZone environment action.
|
|
63
|
+
* @minLength `1`
|
|
64
|
+
* @maxLength `36`
|
|
65
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
66
|
+
*/
|
|
67
|
+
Id: string;
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* Type definition for `AWS::DataZone::EnvironmentActions.AwsConsoleLinkParameters`.
|
|
71
|
+
* The parameters of the console link specified as part of the environment action
|
|
72
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentactions-awsconsolelinkparameters.html}
|
|
73
|
+
*/
|
|
74
|
+
export type AwsConsoleLinkParameters = {
|
|
75
|
+
/**
|
|
76
|
+
* The URI of the console link specified as part of the environment action.
|
|
77
|
+
* @minLength `1`
|
|
78
|
+
* @maxLength `2048`
|
|
79
|
+
*/
|
|
80
|
+
Uri?: string;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* Definition of AWS::DataZone::EnvironmentActions Resource Type
|
|
84
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentactions.html}
|
|
85
|
+
*/
|
|
86
|
+
export declare class DataZoneEnvironmentActions extends $Resource<"AWS::DataZone::EnvironmentActions", DataZoneEnvironmentActionsProperties, DataZoneEnvironmentActionsAttributes> {
|
|
87
|
+
static readonly Type = "AWS::DataZone::EnvironmentActions";
|
|
88
|
+
constructor(logicalId: string, properties: DataZoneEnvironmentActionsProperties, options?: $ResourceOptions);
|
|
89
|
+
}
|
|
90
|
+
//# sourceMappingURL=AWS-DataZone-EnvironmentActions.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::DataZone::EnvironmentActions Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentactions.html}
|
|
5
|
+
*/
|
|
6
|
+
export class DataZoneEnvironmentActions extends $Resource {
|
|
7
|
+
static Type = "AWS::DataZone::EnvironmentActions";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, DataZoneEnvironmentActions.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-DataZone-EnvironmentActions.js.map
|
package/lib/AWS-EC2-Subnet.d.ts
CHANGED
|
@@ -97,9 +97,6 @@ export type EC2SubnetProperties = {
|
|
|
97
97
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#aws-resource-ec2-subnet-return-values}
|
|
98
98
|
*/
|
|
99
99
|
export type EC2SubnetAttributes = {
|
|
100
|
-
/**
|
|
101
|
-
* The IPv6 network ranges for the subnet, in CIDR notation.
|
|
102
|
-
*/
|
|
103
100
|
Ipv6CidrBlocks: string[];
|
|
104
101
|
NetworkAclAssociationId: string;
|
|
105
102
|
SubnetId: string;
|