@awboost/cfn-resource-types 0.1.300 → 0.1.301
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-EC2-RouteServer.d.ts +76 -0
- package/lib/AWS-EC2-RouteServer.js +13 -0
- package/lib/AWS-EC2-RouteServerAssociation.d.ts +27 -0
- package/lib/AWS-EC2-RouteServerAssociation.js +13 -0
- package/lib/AWS-EC2-RouteServerEndpoint.d.ts +76 -0
- package/lib/AWS-EC2-RouteServerEndpoint.js +13 -0
- package/lib/AWS-EC2-RouteServerPeer.d.ts +105 -0
- package/lib/AWS-EC2-RouteServerPeer.js +13 -0
- package/lib/AWS-EC2-RouteServerPropagation.d.ts +27 -0
- package/lib/AWS-EC2-RouteServerPropagation.js +13 -0
- package/lib/AWS-RDS-DBInstance.d.ts +0 -2
- package/package.json +1 -1
|
@@ -0,0 +1,76 @@
|
|
|
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::RouteServer`.
|
|
5
|
+
* VPC Route Server
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserver.html}
|
|
7
|
+
*/
|
|
8
|
+
export type EC2RouteServerProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The Amazon-side ASN of the Route Server.
|
|
11
|
+
* @min `1`
|
|
12
|
+
* @max `4294967294`
|
|
13
|
+
*/
|
|
14
|
+
AmazonSideAsn: number;
|
|
15
|
+
/**
|
|
16
|
+
* Whether to enable persistent routes
|
|
17
|
+
*/
|
|
18
|
+
PersistRoutes?: "enable" | "disable";
|
|
19
|
+
/**
|
|
20
|
+
* The duration of persistent routes in minutes
|
|
21
|
+
* @min `0`
|
|
22
|
+
* @max `5`
|
|
23
|
+
*/
|
|
24
|
+
PersistRoutesDuration?: number;
|
|
25
|
+
/**
|
|
26
|
+
* Whether to enable SNS notifications
|
|
27
|
+
*/
|
|
28
|
+
SnsNotificationsEnabled?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* An array of key-value pairs to apply to this resource.
|
|
31
|
+
*/
|
|
32
|
+
Tags?: Tag[];
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Attribute type definition for `AWS::EC2::RouteServer`.
|
|
36
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserver.html#aws-resource-ec2-routeserver-return-values}
|
|
37
|
+
*/
|
|
38
|
+
export type EC2RouteServerAttributes = {
|
|
39
|
+
/**
|
|
40
|
+
* The Amazon Resource Name (ARN) of the Route Server.
|
|
41
|
+
*/
|
|
42
|
+
Arn: string;
|
|
43
|
+
/**
|
|
44
|
+
* The ID of the Route Server.
|
|
45
|
+
*/
|
|
46
|
+
Id: string;
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* Type definition for `AWS::EC2::RouteServer.Tag`.
|
|
50
|
+
* A key-value pair to associate with a resource.
|
|
51
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-routeserver-tag.html}
|
|
52
|
+
*/
|
|
53
|
+
export type Tag = {
|
|
54
|
+
/**
|
|
55
|
+
* 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 -.
|
|
56
|
+
* @minLength `1`
|
|
57
|
+
* @maxLength `128`
|
|
58
|
+
*/
|
|
59
|
+
Key: string;
|
|
60
|
+
/**
|
|
61
|
+
* 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 -.
|
|
62
|
+
* @minLength `0`
|
|
63
|
+
* @maxLength `256`
|
|
64
|
+
*/
|
|
65
|
+
Value: string;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Resource type definition for `AWS::EC2::RouteServer`.
|
|
69
|
+
* VPC Route Server
|
|
70
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserver.html}
|
|
71
|
+
*/
|
|
72
|
+
export declare class EC2RouteServer extends $Resource<"AWS::EC2::RouteServer", EC2RouteServerProperties, EC2RouteServerAttributes> {
|
|
73
|
+
static readonly Type = "AWS::EC2::RouteServer";
|
|
74
|
+
constructor(logicalId: string, properties: EC2RouteServerProperties, options?: $ResourceOptions);
|
|
75
|
+
}
|
|
76
|
+
//# sourceMappingURL=AWS-EC2-RouteServer.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::RouteServer`.
|
|
4
|
+
* VPC Route Server
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserver.html}
|
|
6
|
+
*/
|
|
7
|
+
export class EC2RouteServer extends $Resource {
|
|
8
|
+
static Type = "AWS::EC2::RouteServer";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, EC2RouteServer.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-EC2-RouteServer.js.map
|
|
@@ -0,0 +1,27 @@
|
|
|
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::RouteServerAssociation`.
|
|
5
|
+
* VPC Route Server Association
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverassociation.html}
|
|
7
|
+
*/
|
|
8
|
+
export type EC2RouteServerAssociationProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* Route Server ID
|
|
11
|
+
*/
|
|
12
|
+
RouteServerId: string;
|
|
13
|
+
/**
|
|
14
|
+
* VPC ID
|
|
15
|
+
*/
|
|
16
|
+
VpcId: string;
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Resource type definition for `AWS::EC2::RouteServerAssociation`.
|
|
20
|
+
* VPC Route Server Association
|
|
21
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverassociation.html}
|
|
22
|
+
*/
|
|
23
|
+
export declare class EC2RouteServerAssociation extends $Resource<"AWS::EC2::RouteServerAssociation", EC2RouteServerAssociationProperties, Record<string, never>> {
|
|
24
|
+
static readonly Type = "AWS::EC2::RouteServerAssociation";
|
|
25
|
+
constructor(logicalId: string, properties: EC2RouteServerAssociationProperties, options?: $ResourceOptions);
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=AWS-EC2-RouteServerAssociation.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::RouteServerAssociation`.
|
|
4
|
+
* VPC Route Server Association
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverassociation.html}
|
|
6
|
+
*/
|
|
7
|
+
export class EC2RouteServerAssociation extends $Resource {
|
|
8
|
+
static Type = "AWS::EC2::RouteServerAssociation";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, EC2RouteServerAssociation.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-EC2-RouteServerAssociation.js.map
|
|
@@ -0,0 +1,76 @@
|
|
|
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::RouteServerEndpoint`.
|
|
5
|
+
* VPC Route Server Endpoint
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverendpoint.html}
|
|
7
|
+
*/
|
|
8
|
+
export type EC2RouteServerEndpointProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* Route Server ID
|
|
11
|
+
*/
|
|
12
|
+
RouteServerId: string;
|
|
13
|
+
/**
|
|
14
|
+
* Subnet ID
|
|
15
|
+
*/
|
|
16
|
+
SubnetId: string;
|
|
17
|
+
/**
|
|
18
|
+
* An array of key-value pairs to apply to this resource.
|
|
19
|
+
*/
|
|
20
|
+
Tags?: Tag[];
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Attribute type definition for `AWS::EC2::RouteServerEndpoint`.
|
|
24
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverendpoint.html#aws-resource-ec2-routeserverendpoint-return-values}
|
|
25
|
+
*/
|
|
26
|
+
export type EC2RouteServerEndpointAttributes = {
|
|
27
|
+
/**
|
|
28
|
+
* The Amazon Resource Name (ARN) of the Route Server Endpoint.
|
|
29
|
+
*/
|
|
30
|
+
Arn: string;
|
|
31
|
+
/**
|
|
32
|
+
* Elastic Network Interface IP address owned by the Route Server Endpoint
|
|
33
|
+
*/
|
|
34
|
+
EniAddress: string;
|
|
35
|
+
/**
|
|
36
|
+
* Elastic Network Interface ID owned by the Route Server Endpoint
|
|
37
|
+
*/
|
|
38
|
+
EniId: string;
|
|
39
|
+
/**
|
|
40
|
+
* The ID of the Route Server Endpoint.
|
|
41
|
+
*/
|
|
42
|
+
Id: string;
|
|
43
|
+
/**
|
|
44
|
+
* VPC ID
|
|
45
|
+
*/
|
|
46
|
+
VpcId: string;
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* Type definition for `AWS::EC2::RouteServerEndpoint.Tag`.
|
|
50
|
+
* A key-value pair to associate with a resource.
|
|
51
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-routeserverendpoint-tag.html}
|
|
52
|
+
*/
|
|
53
|
+
export type Tag = {
|
|
54
|
+
/**
|
|
55
|
+
* 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 -.
|
|
56
|
+
* @minLength `1`
|
|
57
|
+
* @maxLength `128`
|
|
58
|
+
*/
|
|
59
|
+
Key: string;
|
|
60
|
+
/**
|
|
61
|
+
* 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 -.
|
|
62
|
+
* @minLength `0`
|
|
63
|
+
* @maxLength `256`
|
|
64
|
+
*/
|
|
65
|
+
Value: string;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Resource type definition for `AWS::EC2::RouteServerEndpoint`.
|
|
69
|
+
* VPC Route Server Endpoint
|
|
70
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverendpoint.html}
|
|
71
|
+
*/
|
|
72
|
+
export declare class EC2RouteServerEndpoint extends $Resource<"AWS::EC2::RouteServerEndpoint", EC2RouteServerEndpointProperties, EC2RouteServerEndpointAttributes> {
|
|
73
|
+
static readonly Type = "AWS::EC2::RouteServerEndpoint";
|
|
74
|
+
constructor(logicalId: string, properties: EC2RouteServerEndpointProperties, options?: $ResourceOptions);
|
|
75
|
+
}
|
|
76
|
+
//# sourceMappingURL=AWS-EC2-RouteServerEndpoint.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::RouteServerEndpoint`.
|
|
4
|
+
* VPC Route Server Endpoint
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverendpoint.html}
|
|
6
|
+
*/
|
|
7
|
+
export class EC2RouteServerEndpoint extends $Resource {
|
|
8
|
+
static Type = "AWS::EC2::RouteServerEndpoint";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, EC2RouteServerEndpoint.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-EC2-RouteServerEndpoint.js.map
|
|
@@ -0,0 +1,105 @@
|
|
|
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::RouteServerPeer`.
|
|
5
|
+
* VPC Route Server Peer
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpeer.html}
|
|
7
|
+
*/
|
|
8
|
+
export type EC2RouteServerPeerProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* BGP Options
|
|
11
|
+
*/
|
|
12
|
+
BgpOptions: BgpOptions;
|
|
13
|
+
/**
|
|
14
|
+
* IP address of the Route Server Peer
|
|
15
|
+
*/
|
|
16
|
+
PeerAddress: string;
|
|
17
|
+
/**
|
|
18
|
+
* Route Server Endpoint ID
|
|
19
|
+
*/
|
|
20
|
+
RouteServerEndpointId: string;
|
|
21
|
+
/**
|
|
22
|
+
* An array of key-value pairs to apply to this resource.
|
|
23
|
+
*/
|
|
24
|
+
Tags?: Tag[];
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Attribute type definition for `AWS::EC2::RouteServerPeer`.
|
|
28
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpeer.html#aws-resource-ec2-routeserverpeer-return-values}
|
|
29
|
+
*/
|
|
30
|
+
export type EC2RouteServerPeerAttributes = {
|
|
31
|
+
/**
|
|
32
|
+
* The Amazon Resource Name (ARN) of the Route Server Peer.
|
|
33
|
+
*/
|
|
34
|
+
Arn: string;
|
|
35
|
+
/**
|
|
36
|
+
* Elastic Network Interface IP address owned by the Route Server Endpoint
|
|
37
|
+
*/
|
|
38
|
+
EndpointEniAddress: string;
|
|
39
|
+
/**
|
|
40
|
+
* Elastic Network Interface ID owned by the Route Server Endpoint
|
|
41
|
+
*/
|
|
42
|
+
EndpointEniId: string;
|
|
43
|
+
/**
|
|
44
|
+
* The ID of the Route Server Peer.
|
|
45
|
+
*/
|
|
46
|
+
Id: string;
|
|
47
|
+
/**
|
|
48
|
+
* Route Server ID
|
|
49
|
+
*/
|
|
50
|
+
RouteServerId: string;
|
|
51
|
+
/**
|
|
52
|
+
* Subnet ID
|
|
53
|
+
*/
|
|
54
|
+
SubnetId: string;
|
|
55
|
+
/**
|
|
56
|
+
* VPC ID
|
|
57
|
+
*/
|
|
58
|
+
VpcId: string;
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* Type definition for `AWS::EC2::RouteServerPeer.BgpOptions`.
|
|
62
|
+
* BGP Options
|
|
63
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-routeserverpeer-bgpoptions.html}
|
|
64
|
+
*/
|
|
65
|
+
export type BgpOptions = {
|
|
66
|
+
/**
|
|
67
|
+
* BGP ASN of the Route Server Peer
|
|
68
|
+
* @min `1`
|
|
69
|
+
* @max `4294967294`
|
|
70
|
+
*/
|
|
71
|
+
PeerAsn?: number;
|
|
72
|
+
/**
|
|
73
|
+
* BGP Liveness Detection
|
|
74
|
+
*/
|
|
75
|
+
PeerLivenessDetection?: "bfd" | "bgp-keepalive";
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* Type definition for `AWS::EC2::RouteServerPeer.Tag`.
|
|
79
|
+
* A key-value pair to associate with a resource.
|
|
80
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-routeserverpeer-tag.html}
|
|
81
|
+
*/
|
|
82
|
+
export type Tag = {
|
|
83
|
+
/**
|
|
84
|
+
* 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 -.
|
|
85
|
+
* @minLength `1`
|
|
86
|
+
* @maxLength `128`
|
|
87
|
+
*/
|
|
88
|
+
Key: string;
|
|
89
|
+
/**
|
|
90
|
+
* 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 -.
|
|
91
|
+
* @minLength `0`
|
|
92
|
+
* @maxLength `256`
|
|
93
|
+
*/
|
|
94
|
+
Value: string;
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* Resource type definition for `AWS::EC2::RouteServerPeer`.
|
|
98
|
+
* VPC Route Server Peer
|
|
99
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpeer.html}
|
|
100
|
+
*/
|
|
101
|
+
export declare class EC2RouteServerPeer extends $Resource<"AWS::EC2::RouteServerPeer", EC2RouteServerPeerProperties, EC2RouteServerPeerAttributes> {
|
|
102
|
+
static readonly Type = "AWS::EC2::RouteServerPeer";
|
|
103
|
+
constructor(logicalId: string, properties: EC2RouteServerPeerProperties, options?: $ResourceOptions);
|
|
104
|
+
}
|
|
105
|
+
//# sourceMappingURL=AWS-EC2-RouteServerPeer.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::RouteServerPeer`.
|
|
4
|
+
* VPC Route Server Peer
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpeer.html}
|
|
6
|
+
*/
|
|
7
|
+
export class EC2RouteServerPeer extends $Resource {
|
|
8
|
+
static Type = "AWS::EC2::RouteServerPeer";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, EC2RouteServerPeer.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-EC2-RouteServerPeer.js.map
|
|
@@ -0,0 +1,27 @@
|
|
|
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::RouteServerPropagation`.
|
|
5
|
+
* VPC Route Server Propagation
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpropagation.html}
|
|
7
|
+
*/
|
|
8
|
+
export type EC2RouteServerPropagationProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* Route Server ID
|
|
11
|
+
*/
|
|
12
|
+
RouteServerId: string;
|
|
13
|
+
/**
|
|
14
|
+
* Route Table ID
|
|
15
|
+
*/
|
|
16
|
+
RouteTableId: string;
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Resource type definition for `AWS::EC2::RouteServerPropagation`.
|
|
20
|
+
* VPC Route Server Propagation
|
|
21
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpropagation.html}
|
|
22
|
+
*/
|
|
23
|
+
export declare class EC2RouteServerPropagation extends $Resource<"AWS::EC2::RouteServerPropagation", EC2RouteServerPropagationProperties, Record<string, never>> {
|
|
24
|
+
static readonly Type = "AWS::EC2::RouteServerPropagation";
|
|
25
|
+
constructor(logicalId: string, properties: EC2RouteServerPropagationProperties, options?: $ResourceOptions);
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=AWS-EC2-RouteServerPropagation.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::RouteServerPropagation`.
|
|
4
|
+
* VPC Route Server Propagation
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpropagation.html}
|
|
6
|
+
*/
|
|
7
|
+
export class EC2RouteServerPropagation extends $Resource {
|
|
8
|
+
static Type = "AWS::EC2::RouteServerPropagation";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, EC2RouteServerPropagation.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-EC2-RouteServerPropagation.js.map
|
|
@@ -106,7 +106,6 @@ export type RDSDBInstanceProperties = {
|
|
|
106
106
|
AutomaticBackupReplicationRegion?: string;
|
|
107
107
|
/**
|
|
108
108
|
* @min `1`
|
|
109
|
-
* @max `35`
|
|
110
109
|
*/
|
|
111
110
|
AutomaticBackupReplicationRetentionPeriod?: number;
|
|
112
111
|
/**
|
|
@@ -129,7 +128,6 @@ export type RDSDBInstanceProperties = {
|
|
|
129
128
|
+ Must be a value from 0 to 35
|
|
130
129
|
+ Can't be set to 0 if the DB instance is a source to read replicas
|
|
131
130
|
* @min `0`
|
|
132
|
-
* @max `35`
|
|
133
131
|
*/
|
|
134
132
|
BackupRetentionPeriod?: number;
|
|
135
133
|
/**
|