@awboost/cfn-resource-types 0.1.326 → 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.
- package/lib/AWS-Connect-Instance.d.ts +1 -1
- package/lib/AWS-DataZone-DomainUnit.d.ts +84 -0
- package/lib/AWS-DataZone-DomainUnit.js +13 -0
- package/lib/AWS-DataZone-Owner.d.ts +76 -0
- package/lib/AWS-DataZone-Owner.js +13 -0
- package/lib/AWS-EC2-VPC.d.ts +2 -2
- package/lib/AWS-Route53-HostedZone.d.ts +12 -12
- package/lib/AWS-Route53-HostedZone.js +3 -3
- package/package.json +1 -1
|
@@ -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 `
|
|
26
|
+
* @maxLength `45`
|
|
27
27
|
* @pattern `^(?!d-)([\da-zA-Z]+)([-]*[\da-zA-Z])*$`
|
|
28
28
|
*/
|
|
29
29
|
InstanceAlias?: string;
|
|
@@ -0,0 +1,84 @@
|
|
|
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::DataZone::DomainUnit`.
|
|
5
|
+
* A domain unit enables you to easily organize your assets and other domain entities under specific business units and teams.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html}
|
|
7
|
+
*/
|
|
8
|
+
export type DataZoneDomainUnitProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The description of the domain unit.
|
|
11
|
+
* @minLength `0`
|
|
12
|
+
* @maxLength `2048`
|
|
13
|
+
*/
|
|
14
|
+
Description?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The ID of the domain where you want to create a domain unit.
|
|
17
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
18
|
+
*/
|
|
19
|
+
DomainIdentifier: string;
|
|
20
|
+
/**
|
|
21
|
+
* The name of the domain unit.
|
|
22
|
+
* @minLength `1`
|
|
23
|
+
* @maxLength `128`
|
|
24
|
+
* @pattern `^[\w -]+$`
|
|
25
|
+
*/
|
|
26
|
+
Name: string;
|
|
27
|
+
/**
|
|
28
|
+
* The ID of the parent domain unit.
|
|
29
|
+
* @minLength `1`
|
|
30
|
+
* @maxLength `256`
|
|
31
|
+
* @pattern `^[a-z0-9_-]+$`
|
|
32
|
+
*/
|
|
33
|
+
ParentDomainUnitIdentifier: string;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Attribute type definition for `AWS::DataZone::DomainUnit`.
|
|
37
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html#aws-resource-datazone-domainunit-return-values}
|
|
38
|
+
*/
|
|
39
|
+
export type DataZoneDomainUnitAttributes = {
|
|
40
|
+
/**
|
|
41
|
+
* The timestamp at which the domain unit was created.
|
|
42
|
+
*/
|
|
43
|
+
CreatedAt: string;
|
|
44
|
+
/**
|
|
45
|
+
* The ID of the domain where the domain unit was created.
|
|
46
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
47
|
+
*/
|
|
48
|
+
DomainId: string;
|
|
49
|
+
/**
|
|
50
|
+
* The ID of the domain unit.
|
|
51
|
+
* @minLength `1`
|
|
52
|
+
* @maxLength `256`
|
|
53
|
+
* @pattern `^[a-z0-9_-]+$`
|
|
54
|
+
*/
|
|
55
|
+
Id: string;
|
|
56
|
+
/**
|
|
57
|
+
* The identifier of the domain unit that you want to get.
|
|
58
|
+
* @minLength `1`
|
|
59
|
+
* @maxLength `256`
|
|
60
|
+
* @pattern `^[a-z0-9_-]+$`
|
|
61
|
+
*/
|
|
62
|
+
Identifier: string;
|
|
63
|
+
/**
|
|
64
|
+
* The timestamp at which the domain unit was last updated.
|
|
65
|
+
*/
|
|
66
|
+
LastUpdatedAt: string;
|
|
67
|
+
/**
|
|
68
|
+
* The ID of the parent domain unit.
|
|
69
|
+
* @minLength `1`
|
|
70
|
+
* @maxLength `256`
|
|
71
|
+
* @pattern `^[a-z0-9_-]+$`
|
|
72
|
+
*/
|
|
73
|
+
ParentDomainUnitId: string;
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* Resource type definition for `AWS::DataZone::DomainUnit`.
|
|
77
|
+
* A domain unit enables you to easily organize your assets and other domain entities under specific business units and teams.
|
|
78
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html}
|
|
79
|
+
*/
|
|
80
|
+
export declare class DataZoneDomainUnit extends $Resource<"AWS::DataZone::DomainUnit", DataZoneDomainUnitProperties, DataZoneDomainUnitAttributes> {
|
|
81
|
+
static readonly Type = "AWS::DataZone::DomainUnit";
|
|
82
|
+
constructor(logicalId: string, properties: DataZoneDomainUnitProperties, options?: $ResourceOptions);
|
|
83
|
+
}
|
|
84
|
+
//# sourceMappingURL=AWS-DataZone-DomainUnit.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::DataZone::DomainUnit`.
|
|
4
|
+
* A domain unit enables you to easily organize your assets and other domain entities under specific business units and teams.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html}
|
|
6
|
+
*/
|
|
7
|
+
export class DataZoneDomainUnit extends $Resource {
|
|
8
|
+
static Type = "AWS::DataZone::DomainUnit";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, DataZoneDomainUnit.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-DataZone-DomainUnit.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::DataZone::Owner`.
|
|
5
|
+
* A owner can set up authorization permissions on their resources.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html}
|
|
7
|
+
*/
|
|
8
|
+
export type DataZoneOwnerProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The ID of the domain in which you want to add the entity owner.
|
|
11
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
12
|
+
*/
|
|
13
|
+
DomainIdentifier: string;
|
|
14
|
+
/**
|
|
15
|
+
* The ID of the entity to which you want to add an owner.
|
|
16
|
+
*/
|
|
17
|
+
EntityIdentifier: string;
|
|
18
|
+
/**
|
|
19
|
+
* The type of an entity.
|
|
20
|
+
*/
|
|
21
|
+
EntityType: "DOMAIN_UNIT";
|
|
22
|
+
/**
|
|
23
|
+
* The owner that you want to add to the entity.
|
|
24
|
+
*/
|
|
25
|
+
Owner: OwnerProperties;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* Type definition for `AWS::DataZone::Owner.OwnerGroupProperties`.
|
|
29
|
+
* The properties of the domain unit owners group.
|
|
30
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownergroupproperties.html}
|
|
31
|
+
*/
|
|
32
|
+
export type OwnerGroupProperties = {
|
|
33
|
+
/**
|
|
34
|
+
* The ID of the domain unit owners group.
|
|
35
|
+
* @pattern `(^([0-9a-f]{10}-|)[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}$|[\p{L}\p{M}\p{S}\p{N}\p{P}\t\n\r ]+)`
|
|
36
|
+
*/
|
|
37
|
+
GroupIdentifier?: string;
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Type definition for `AWS::DataZone::Owner.OwnerProperties`.
|
|
41
|
+
* The properties of a domain unit's owner.
|
|
42
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownerproperties.html}
|
|
43
|
+
*/
|
|
44
|
+
export type OwnerProperties = {
|
|
45
|
+
/**
|
|
46
|
+
* The properties of the domain unit owners group.
|
|
47
|
+
*/
|
|
48
|
+
Group?: OwnerGroupProperties;
|
|
49
|
+
} | {
|
|
50
|
+
/**
|
|
51
|
+
* The properties of the owner user.
|
|
52
|
+
*/
|
|
53
|
+
User?: OwnerUserProperties;
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* Type definition for `AWS::DataZone::Owner.OwnerUserProperties`.
|
|
57
|
+
* The properties of the owner user.
|
|
58
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-owneruserproperties.html}
|
|
59
|
+
*/
|
|
60
|
+
export type OwnerUserProperties = {
|
|
61
|
+
/**
|
|
62
|
+
* The ID of the owner user.
|
|
63
|
+
* @pattern `(^([0-9a-f]{10}-|)[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}$|^[a-zA-Z_0-9+=,.@-]+$|^arn:aws:iam::\d{12}:.+$)`
|
|
64
|
+
*/
|
|
65
|
+
UserIdentifier?: string;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Resource type definition for `AWS::DataZone::Owner`.
|
|
69
|
+
* A owner can set up authorization permissions on their resources.
|
|
70
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html}
|
|
71
|
+
*/
|
|
72
|
+
export declare class DataZoneOwner extends $Resource<"AWS::DataZone::Owner", DataZoneOwnerProperties, Record<string, never>> {
|
|
73
|
+
static readonly Type = "AWS::DataZone::Owner";
|
|
74
|
+
constructor(logicalId: string, properties: DataZoneOwnerProperties, options?: $ResourceOptions);
|
|
75
|
+
}
|
|
76
|
+
//# sourceMappingURL=AWS-DataZone-Owner.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::DataZone::Owner`.
|
|
4
|
+
* A owner can set up authorization permissions on their resources.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html}
|
|
6
|
+
*/
|
|
7
|
+
export class DataZoneOwner extends $Resource {
|
|
8
|
+
static Type = "AWS::DataZone::Owner";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, DataZoneOwner.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-DataZone-Owner.js.map
|
package/lib/AWS-EC2-VPC.d.ts
CHANGED
|
@@ -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
|
-
+
|
|
27
|
-
+
|
|
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
|
-
+
|
|
17
|
-
+
|
|
18
|
-
+
|
|
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
|
-
+
|
|
86
|
-
+
|
|
87
|
-
+
|
|
88
|
-
+
|
|
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
|
-
+
|
|
95
|
-
+
|
|
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
|
-
+
|
|
143
|
-
+
|
|
144
|
-
+
|
|
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
|
-
+
|
|
16
|
-
+
|
|
17
|
-
+
|
|
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}
|