@awboost/cfn-resource-types 0.1.327 → 0.1.328

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.
@@ -23,7 +23,7 @@ export type ConnectInstanceProperties = {
23
23
  /**
24
24
  * Alias of the new directory created as part of new instance creation.
25
25
  * @minLength `1`
26
- * @maxLength `62`
26
+ * @maxLength `45`
27
27
  * @pattern `^(?!d-)([\da-zA-Z]+)([-]*[\da-zA-Z])*$`
28
28
  */
29
29
  InstanceAlias?: string;
@@ -23,8 +23,8 @@ export type EC2VPCProperties = {
23
23
  EnableDnsSupport?: boolean;
24
24
  /**
25
25
  * The allowed tenancy of instances launched into the VPC.
26
- + ``default``: An instance launched into the VPC runs on shared hardware by default, unless you explicitly specify a different tenancy during instance launch.
27
- + ``dedicated``: An instance launched into the VPC runs on dedicated hardware by default, unless you explicitly specify a tenancy of ``host`` during instance launch. You cannot specify a tenancy of ``default`` during instance launch.
26
+ + ``default``: An instance launched into the VPC runs on shared hardware by default, unless you explicitly specify a different tenancy during instance launch.
27
+ + ``dedicated``: An instance launched into the VPC runs on dedicated hardware by default, unless you explicitly specify a tenancy of ``host`` during instance launch. You cannot specify a tenancy of ``default`` during instance launch.
28
28
 
29
29
  Updating ``InstanceTenancy`` requires no replacement only if you are updating its value from ``dedicated`` to ``default``. Updating ``InstanceTenancy`` from ``default`` to ``dedicated`` requires replacement.
30
30
  */
@@ -13,9 +13,9 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
13
13
  The ``CreateHostedZone`` request requires the caller to have an ``ec2:DescribeVpcs`` permission.
14
14
  When creating private hosted zones, the Amazon VPC must belong to the same partition where the hosted zone is created. A partition is a group of AWS-Regions. Each AWS-account is scoped to one partition.
15
15
  The following are the supported partitions:
16
- + ``aws`` - AWS-Regions
17
- + ``aws-cn`` - China Regions
18
- + ``aws-us-gov`` - govcloud-us-region
16
+ + ``aws`` - AWS-Regions
17
+ + ``aws-cn`` - China Regions
18
+ + ``aws-us-gov`` - govcloud-us-region
19
19
 
20
20
  For more information, see [Access Management](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) in the *General Reference*.
21
21
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html}
@@ -82,17 +82,17 @@ export type HostedZoneConfig = {
82
82
  export type HostedZoneTag = {
83
83
  /**
84
84
  * The value of ``Key`` depends on the operation that you want to perform:
85
- + *Add a tag to a health check or hosted zone*: ``Key`` is the name that you want to give the new tag.
86
- + *Edit a tag*: ``Key`` is the name of the tag that you want to change the ``Value`` for.
87
- + *Delete a key*: ``Key`` is the name of the tag you want to remove.
88
- + *Give a name to a health check*: Edit the default ``Name`` tag. In the Amazon Route 53 console, the list of your health checks includes a *Name* column that lets you see the name that you've given to each health check.
85
+ + *Add a tag to a health check or hosted zone*: ``Key`` is the name that you want to give the new tag.
86
+ + *Edit a tag*: ``Key`` is the name of the tag that you want to change the ``Value`` for.
87
+ + *Delete a key*: ``Key`` is the name of the tag you want to remove.
88
+ + *Give a name to a health check*: Edit the default ``Name`` tag. In the Amazon Route 53 console, the list of your health checks includes a *Name* column that lets you see the name that you've given to each health check.
89
89
  * @maxLength `128`
90
90
  */
91
91
  Key: string;
92
92
  /**
93
93
  * The value of ``Value`` depends on the operation that you want to perform:
94
- + *Add a tag to a health check or hosted zone*: ``Value`` is the value that you want to give the new tag.
95
- + *Edit a tag*: ``Value`` is the new value that you want to assign the tag.
94
+ + *Add a tag to a health check or hosted zone*: ``Value`` is the value that you want to give the new tag.
95
+ + *Edit a tag*: ``Value`` is the new value that you want to assign the tag.
96
96
  * @maxLength `256`
97
97
  */
98
98
  Value: string;
@@ -139,9 +139,9 @@ export type VPC = {
139
139
  The ``CreateHostedZone`` request requires the caller to have an ``ec2:DescribeVpcs`` permission.
140
140
  When creating private hosted zones, the Amazon VPC must belong to the same partition where the hosted zone is created. A partition is a group of AWS-Regions. Each AWS-account is scoped to one partition.
141
141
  The following are the supported partitions:
142
- + ``aws`` - AWS-Regions
143
- + ``aws-cn`` - China Regions
144
- + ``aws-us-gov`` - govcloud-us-region
142
+ + ``aws`` - AWS-Regions
143
+ + ``aws-cn`` - China Regions
144
+ + ``aws-us-gov`` - govcloud-us-region
145
145
 
146
146
  For more information, see [Access Management](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) in the *General Reference*.
147
147
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html}
@@ -12,9 +12,9 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
12
12
  The ``CreateHostedZone`` request requires the caller to have an ``ec2:DescribeVpcs`` permission.
13
13
  When creating private hosted zones, the Amazon VPC must belong to the same partition where the hosted zone is created. A partition is a group of AWS-Regions. Each AWS-account is scoped to one partition.
14
14
  The following are the supported partitions:
15
- + ``aws`` - AWS-Regions
16
- + ``aws-cn`` - China Regions
17
- + ``aws-us-gov`` - govcloud-us-region
15
+ + ``aws`` - AWS-Regions
16
+ + ``aws-cn`` - China Regions
17
+ + ``aws-us-gov`` - govcloud-us-region
18
18
 
19
19
  For more information, see [Access Management](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) in the *General Reference*.
20
20
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.327",
3
+ "version": "0.1.328",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },