@awboost/cfntypes 0.100.182 → 0.100.183
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/resources.generated.d.ts +12 -12
- package/package.json +1 -1
@@ -37183,7 +37183,7 @@ export type ConnectInstanceProps = {
|
|
37183
37183
|
/**
|
37184
37184
|
* Alias of the new directory created as part of new instance creation.
|
37185
37185
|
* @minLength `1`
|
37186
|
-
* @maxLength `
|
37186
|
+
* @maxLength `45`
|
37187
37187
|
* @pattern `^(?!d-)([\da-zA-Z]+)([-]*[\da-zA-Z])*$`
|
37188
37188
|
*/
|
37189
37189
|
InstanceAlias?: string;
|
@@ -59262,8 +59262,8 @@ export type EC2VPCProps = {
|
|
59262
59262
|
EnableDnsSupport?: boolean;
|
59263
59263
|
/**
|
59264
59264
|
* The allowed tenancy of instances launched into the VPC.
|
59265
|
-
+
|
59266
|
-
+
|
59265
|
+
+ ``default``: An instance launched into the VPC runs on shared hardware by default, unless you explicitly specify a different tenancy during instance launch.
|
59266
|
+
+ ``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.
|
59267
59267
|
|
59268
59268
|
Updating ``InstanceTenancy`` requires no replacement only if you are updating its value from ``dedicated`` to ``default``. Updating ``InstanceTenancy`` from ``default`` to ``dedicated`` requires replacement.
|
59269
59269
|
*/
|
@@ -162082,9 +162082,9 @@ export type Route53HealthCheckHealthCheckTag = {
|
|
162082
162082
|
The ``CreateHostedZone`` request requires the caller to have an ``ec2:DescribeVpcs`` permission.
|
162083
162083
|
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.
|
162084
162084
|
The following are the supported partitions:
|
162085
|
-
+
|
162086
|
-
+
|
162087
|
-
+
|
162085
|
+
+ ``aws`` - AWS-Regions
|
162086
|
+
+ ``aws-cn`` - China Regions
|
162087
|
+
+ ``aws-us-gov`` - govcloud-us-region
|
162088
162088
|
|
162089
162089
|
For more information, see [Access Management](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) in the *General Reference*.
|
162090
162090
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html}
|
@@ -162151,17 +162151,17 @@ export type Route53HostedZoneHostedZoneConfig = {
|
|
162151
162151
|
export type Route53HostedZoneHostedZoneTag = {
|
162152
162152
|
/**
|
162153
162153
|
* The value of ``Key`` depends on the operation that you want to perform:
|
162154
|
-
+
|
162155
|
-
+
|
162156
|
-
+
|
162157
|
-
+
|
162154
|
+
+ *Add a tag to a health check or hosted zone*: ``Key`` is the name that you want to give the new tag.
|
162155
|
+
+ *Edit a tag*: ``Key`` is the name of the tag that you want to change the ``Value`` for.
|
162156
|
+
+ *Delete a key*: ``Key`` is the name of the tag you want to remove.
|
162157
|
+
+ *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.
|
162158
162158
|
* @maxLength `128`
|
162159
162159
|
*/
|
162160
162160
|
Key: string;
|
162161
162161
|
/**
|
162162
162162
|
* The value of ``Value`` depends on the operation that you want to perform:
|
162163
|
-
+
|
162164
|
-
+
|
162163
|
+
+ *Add a tag to a health check or hosted zone*: ``Value`` is the value that you want to give the new tag.
|
162164
|
+
+ *Edit a tag*: ``Value`` is the new value that you want to assign the tag.
|
162165
162165
|
* @maxLength `256`
|
162166
162166
|
*/
|
162167
162167
|
Value: string;
|