@awboost/cfn-resource-types 0.1.514 → 0.1.516

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.
@@ -1,7 +1,8 @@
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 Type definition for AWS::EC2::VPNConcentrator
4
+ * Resource type definition for `AWS::EC2::VPNConcentrator`.
5
+ * Describes a VPN concentrator.
5
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html}
6
7
  */
7
8
  export type EC2VPNConcentratorProperties = {
@@ -10,11 +11,11 @@ export type EC2VPNConcentratorProperties = {
10
11
  */
11
12
  Tags?: Tag[];
12
13
  /**
13
- * The ID of the transit gateway
14
+ * The ID of the transit gateway associated with the VPN concentrator.
14
15
  */
15
16
  TransitGatewayId: string;
16
17
  /**
17
- * The type of VPN concentrator
18
+ * The type of VPN concentrator.
18
19
  */
19
20
  Type: string;
20
21
  };
@@ -23,25 +24,29 @@ export type EC2VPNConcentratorProperties = {
23
24
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html#aws-resource-ec2-vpnconcentrator-return-values}
24
25
  */
25
26
  export type EC2VPNConcentratorAttributes = {
26
- /**
27
- * The ID of the transit gateway attachment
28
- */
29
27
  TransitGatewayAttachmentId: string;
30
- /**
31
- * The provider-assigned unique ID for this managed resource
32
- */
33
28
  VpnConcentratorId: string;
34
29
  };
35
30
  /**
36
31
  * Type definition for `AWS::EC2::VPNConcentrator.Tag`.
32
+ * Describes a tag.
37
33
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconcentrator-tag.html}
38
34
  */
39
35
  export type Tag = {
36
+ /**
37
+ * The key of the tag.
38
+ Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with ``aws:``.
39
+ */
40
40
  Key: string;
41
+ /**
42
+ * The value of the tag.
43
+ Constraints: Tag values are case-sensitive and accept a maximum of 256 Unicode characters.
44
+ */
41
45
  Value: string;
42
46
  };
43
47
  /**
44
- * Resource Type definition for AWS::EC2::VPNConcentrator
48
+ * Resource type definition for `AWS::EC2::VPNConcentrator`.
49
+ * Describes a VPN concentrator.
45
50
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html}
46
51
  */
47
52
  export declare class EC2VPNConcentrator extends $Resource<"AWS::EC2::VPNConcentrator", EC2VPNConcentratorProperties, EC2VPNConcentratorAttributes> {
@@ -1,6 +1,7 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource Type definition for AWS::EC2::VPNConcentrator
3
+ * Resource type definition for `AWS::EC2::VPNConcentrator`.
4
+ * Describes a VPN concentrator.
4
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html}
5
6
  */
6
7
  export class EC2VPNConcentrator extends $Resource {
@@ -67,6 +67,9 @@ export type EC2VPNConnectionProperties = {
67
67
  Required if ``OutsideIpAddressType`` is set to ``PrivateIpv4``.
68
68
  */
69
69
  TransportTransitGatewayAttachmentId?: string;
70
+ /**
71
+ * The desired bandwidth specification for the VPN tunnel, used when creating or modifying VPN connection options to set the tunnel's throughput capacity. ``standard`` supports up to 1.25 Gbps per tunnel, while ``large`` supports up to 5 Gbps per tunnel. The default value is ``standard``. Existing VPN connections without a bandwidth setting will automatically default to ``standard``.
72
+ */
70
73
  TunnelBandwidth?: "standard" | "large";
71
74
  /**
72
75
  * Indicate whether the VPN tunnels process IPv4 or IPv6 traffic.
@@ -77,6 +80,9 @@ export type EC2VPNConnectionProperties = {
77
80
  * The type of VPN connection.
78
81
  */
79
82
  Type: string;
83
+ /**
84
+ * The ID of the VPN connection.
85
+ */
80
86
  VpnConcentratorId?: string;
81
87
  /**
82
88
  * The ID of the virtual private gateway at the AWS side of the VPN connection.
@@ -101,8 +107,19 @@ export type EC2VPNConnectionAttributes = {
101
107
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-cloudwatchlogoptionsspecification.html}
102
108
  */
103
109
  export type CloudwatchLogOptionsSpecification = {
110
+ /**
111
+ * Specifies whether to enable BGP logging for the VPN connection. Default value is ``False``.
112
+ Valid values: ``True`` | ``False``
113
+ */
104
114
  BgpLogEnabled?: boolean;
115
+ /**
116
+ * The Amazon Resource Name (ARN) of the CloudWatch log group where BGP logs will be sent.
117
+ */
105
118
  BgpLogGroupArn?: string;
119
+ /**
120
+ * The desired output format for BGP logs to be sent to CloudWatch. Default format is ``json``.
121
+ Valid values: ``json`` | ``text``
122
+ */
106
123
  BgpLogOutputFormat?: "json" | "text";
107
124
  /**
108
125
  * Enable or disable VPN tunnel logging feature. Default value is ``False``.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.514",
3
+ "version": "0.1.516",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },