@awboost/cfn-resource-types 0.1.326 → 0.1.327
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.
|
@@ -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
|