@awboost/cfn-resource-types 0.1.436 → 0.1.437
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.
|
@@ -0,0 +1,98 @@
|
|
|
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::EC2::LocalGatewayVirtualInterface`.
|
|
5
|
+
* Resource Type definition for Local Gateway Virtual Interface which describes a virtual interface for AWS Outposts local gateways.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterface.html}
|
|
7
|
+
*/
|
|
8
|
+
export type EC2LocalGatewayVirtualInterfaceProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The local address.
|
|
11
|
+
*/
|
|
12
|
+
LocalAddress: string;
|
|
13
|
+
/**
|
|
14
|
+
* The ID of the virtual interface group
|
|
15
|
+
*/
|
|
16
|
+
LocalGatewayVirtualInterfaceGroupId: string;
|
|
17
|
+
/**
|
|
18
|
+
* The Outpost LAG ID.
|
|
19
|
+
*/
|
|
20
|
+
OutpostLagId: string;
|
|
21
|
+
/**
|
|
22
|
+
* The peer address.
|
|
23
|
+
*/
|
|
24
|
+
PeerAddress: string;
|
|
25
|
+
/**
|
|
26
|
+
* The peer BGP ASN.
|
|
27
|
+
*/
|
|
28
|
+
PeerBgpAsn?: number;
|
|
29
|
+
/**
|
|
30
|
+
* The extended 32-bit ASN of the BGP peer for use with larger ASN values.
|
|
31
|
+
*/
|
|
32
|
+
PeerBgpAsnExtended?: number;
|
|
33
|
+
/**
|
|
34
|
+
* An array of key-value pairs to apply to this resource.
|
|
35
|
+
*/
|
|
36
|
+
Tags?: Tag[];
|
|
37
|
+
/**
|
|
38
|
+
* The ID of the VLAN.
|
|
39
|
+
*/
|
|
40
|
+
Vlan: number;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* Attribute type definition for `AWS::EC2::LocalGatewayVirtualInterface`.
|
|
44
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterface.html#aws-resource-ec2-localgatewayvirtualinterface-return-values}
|
|
45
|
+
*/
|
|
46
|
+
export type EC2LocalGatewayVirtualInterfaceAttributes = {
|
|
47
|
+
/**
|
|
48
|
+
* The current state of the local gateway virtual interface
|
|
49
|
+
*/
|
|
50
|
+
ConfigurationState: string;
|
|
51
|
+
/**
|
|
52
|
+
* The Autonomous System Number(ASN) for the local Border Gateway Protocol (BGP)
|
|
53
|
+
*/
|
|
54
|
+
LocalBgpAsn: number;
|
|
55
|
+
/**
|
|
56
|
+
* The ID of the local gateway
|
|
57
|
+
*/
|
|
58
|
+
LocalGatewayId: string;
|
|
59
|
+
/**
|
|
60
|
+
* The ID of the virtual interface
|
|
61
|
+
*/
|
|
62
|
+
LocalGatewayVirtualInterfaceId: string;
|
|
63
|
+
/**
|
|
64
|
+
* The ID of the Amazon Web Services account that owns the local gateway virtual interface group
|
|
65
|
+
*/
|
|
66
|
+
OwnerId: string;
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* Type definition for `AWS::EC2::LocalGatewayVirtualInterface.Tag`.
|
|
70
|
+
* A key-value pair to associate with a resource.
|
|
71
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-localgatewayvirtualinterface-tag.html}
|
|
72
|
+
*/
|
|
73
|
+
export type Tag = {
|
|
74
|
+
/**
|
|
75
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
76
|
+
* @minLength `1`
|
|
77
|
+
* @maxLength `127`
|
|
78
|
+
* @pattern `^(?!aws:.*)`
|
|
79
|
+
*/
|
|
80
|
+
Key?: string;
|
|
81
|
+
/**
|
|
82
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
83
|
+
* @minLength `1`
|
|
84
|
+
* @maxLength `255`
|
|
85
|
+
* @pattern `^(?!aws:.*)`
|
|
86
|
+
*/
|
|
87
|
+
Value?: string;
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* Resource type definition for `AWS::EC2::LocalGatewayVirtualInterface`.
|
|
91
|
+
* Resource Type definition for Local Gateway Virtual Interface which describes a virtual interface for AWS Outposts local gateways.
|
|
92
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterface.html}
|
|
93
|
+
*/
|
|
94
|
+
export declare class EC2LocalGatewayVirtualInterface extends $Resource<"AWS::EC2::LocalGatewayVirtualInterface", EC2LocalGatewayVirtualInterfaceProperties, EC2LocalGatewayVirtualInterfaceAttributes> {
|
|
95
|
+
static readonly Type = "AWS::EC2::LocalGatewayVirtualInterface";
|
|
96
|
+
constructor(logicalId: string, properties: EC2LocalGatewayVirtualInterfaceProperties, options?: $ResourceOptions);
|
|
97
|
+
}
|
|
98
|
+
//# sourceMappingURL=AWS-EC2-LocalGatewayVirtualInterface.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::EC2::LocalGatewayVirtualInterface`.
|
|
4
|
+
* Resource Type definition for Local Gateway Virtual Interface which describes a virtual interface for AWS Outposts local gateways.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterface.html}
|
|
6
|
+
*/
|
|
7
|
+
export class EC2LocalGatewayVirtualInterface extends $Resource {
|
|
8
|
+
static Type = "AWS::EC2::LocalGatewayVirtualInterface";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, EC2LocalGatewayVirtualInterface.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-EC2-LocalGatewayVirtualInterface.js.map
|
|
@@ -0,0 +1,82 @@
|
|
|
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::EC2::LocalGatewayVirtualInterfaceGroup`.
|
|
5
|
+
* Resource Type definition for LocalGatewayVirtualInterfaceGroup which describes a group of LocalGateway VirtualInterfaces
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html}
|
|
7
|
+
*/
|
|
8
|
+
export type EC2LocalGatewayVirtualInterfaceGroupProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The Autonomous System Number(ASN) for the local Border Gateway Protocol (BGP)
|
|
11
|
+
*/
|
|
12
|
+
LocalBgpAsn?: number;
|
|
13
|
+
/**
|
|
14
|
+
* The extended 32-bit ASN for the local BGP configuration
|
|
15
|
+
*/
|
|
16
|
+
LocalBgpAsnExtended?: number;
|
|
17
|
+
/**
|
|
18
|
+
* The ID of the local gateway
|
|
19
|
+
*/
|
|
20
|
+
LocalGatewayId: string;
|
|
21
|
+
/**
|
|
22
|
+
* The tags assigned to the virtual interface group
|
|
23
|
+
*/
|
|
24
|
+
Tags?: Tag[];
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Attribute type definition for `AWS::EC2::LocalGatewayVirtualInterfaceGroup`.
|
|
28
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#aws-resource-ec2-localgatewayvirtualinterfacegroup-return-values}
|
|
29
|
+
*/
|
|
30
|
+
export type EC2LocalGatewayVirtualInterfaceGroupAttributes = {
|
|
31
|
+
/**
|
|
32
|
+
* The current state of the local gateway virtual interface group
|
|
33
|
+
*/
|
|
34
|
+
ConfigurationState: string;
|
|
35
|
+
/**
|
|
36
|
+
* The Amazon Resource Number (ARN) of the local gateway virtual interface group
|
|
37
|
+
*/
|
|
38
|
+
LocalGatewayVirtualInterfaceGroupArn: string;
|
|
39
|
+
/**
|
|
40
|
+
* The ID of the virtual interface group
|
|
41
|
+
*/
|
|
42
|
+
LocalGatewayVirtualInterfaceGroupId: string;
|
|
43
|
+
/**
|
|
44
|
+
* The IDs of the virtual interfaces
|
|
45
|
+
*/
|
|
46
|
+
LocalGatewayVirtualInterfaceIds: string[];
|
|
47
|
+
/**
|
|
48
|
+
* The ID of the Amazon Web Services account that owns the local gateway virtual interface group
|
|
49
|
+
*/
|
|
50
|
+
OwnerId: string;
|
|
51
|
+
};
|
|
52
|
+
/**
|
|
53
|
+
* Type definition for `AWS::EC2::LocalGatewayVirtualInterfaceGroup.Tag`.
|
|
54
|
+
* A key-value pair to associate with a resource.
|
|
55
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-localgatewayvirtualinterfacegroup-tag.html}
|
|
56
|
+
*/
|
|
57
|
+
export type Tag = {
|
|
58
|
+
/**
|
|
59
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
60
|
+
* @minLength `1`
|
|
61
|
+
* @maxLength `127`
|
|
62
|
+
* @pattern `^(?!aws:.*)`
|
|
63
|
+
*/
|
|
64
|
+
Key?: string;
|
|
65
|
+
/**
|
|
66
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
67
|
+
* @minLength `1`
|
|
68
|
+
* @maxLength `255`
|
|
69
|
+
* @pattern `^(?!aws:.*)`
|
|
70
|
+
*/
|
|
71
|
+
Value?: string;
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* Resource type definition for `AWS::EC2::LocalGatewayVirtualInterfaceGroup`.
|
|
75
|
+
* Resource Type definition for LocalGatewayVirtualInterfaceGroup which describes a group of LocalGateway VirtualInterfaces
|
|
76
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html}
|
|
77
|
+
*/
|
|
78
|
+
export declare class EC2LocalGatewayVirtualInterfaceGroup extends $Resource<"AWS::EC2::LocalGatewayVirtualInterfaceGroup", EC2LocalGatewayVirtualInterfaceGroupProperties, EC2LocalGatewayVirtualInterfaceGroupAttributes> {
|
|
79
|
+
static readonly Type = "AWS::EC2::LocalGatewayVirtualInterfaceGroup";
|
|
80
|
+
constructor(logicalId: string, properties: EC2LocalGatewayVirtualInterfaceGroupProperties, options?: $ResourceOptions);
|
|
81
|
+
}
|
|
82
|
+
//# sourceMappingURL=AWS-EC2-LocalGatewayVirtualInterfaceGroup.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::EC2::LocalGatewayVirtualInterfaceGroup`.
|
|
4
|
+
* Resource Type definition for LocalGatewayVirtualInterfaceGroup which describes a group of LocalGateway VirtualInterfaces
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html}
|
|
6
|
+
*/
|
|
7
|
+
export class EC2LocalGatewayVirtualInterfaceGroup extends $Resource {
|
|
8
|
+
static Type = "AWS::EC2::LocalGatewayVirtualInterfaceGroup";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, EC2LocalGatewayVirtualInterfaceGroup.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-EC2-LocalGatewayVirtualInterfaceGroup.js.map
|