@awboost/cfn-resource-types 0.1.427 → 0.1.428
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.
|
@@ -18,7 +18,7 @@ export type DataZoneConnectionProperties = {
|
|
|
18
18
|
Description?: string;
|
|
19
19
|
/**
|
|
20
20
|
* The identifier of the domain in which the connection is created.
|
|
21
|
-
* @pattern `^dzd[_][a-zA-Z0-9_-]{1,36}$`
|
|
21
|
+
* @pattern `^dzd[_-][a-zA-Z0-9_-]{1,36}$`
|
|
22
22
|
*/
|
|
23
23
|
DomainIdentifier: string;
|
|
24
24
|
/**
|
|
@@ -46,7 +46,7 @@ export type DataZoneConnectionAttributes = {
|
|
|
46
46
|
ConnectionId: string;
|
|
47
47
|
/**
|
|
48
48
|
* The ID of the domain in which the connection is created.
|
|
49
|
-
* @pattern `^dzd[_][a-zA-Z0-9_-]{1,36}$`
|
|
49
|
+
* @pattern `^dzd[_-][a-zA-Z0-9_-]{1,36}$`
|
|
50
50
|
*/
|
|
51
51
|
DomainId: string;
|
|
52
52
|
/**
|
|
@@ -13,7 +13,7 @@ export type DataZonePolicyGrantProperties = {
|
|
|
13
13
|
DomainIdentifier: string;
|
|
14
14
|
EntityIdentifier: string;
|
|
15
15
|
EntityType: TargetEntityType;
|
|
16
|
-
PolicyType:
|
|
16
|
+
PolicyType: ManagedPolicyType;
|
|
17
17
|
Principal?: PolicyGrantPrincipal;
|
|
18
18
|
};
|
|
19
19
|
/**
|
|
@@ -156,6 +156,11 @@ export type GroupPolicyGrantPrincipal = {
|
|
|
156
156
|
*/
|
|
157
157
|
GroupIdentifier: string;
|
|
158
158
|
};
|
|
159
|
+
/**
|
|
160
|
+
* Type definition for `AWS::DataZone::PolicyGrant.ManagedPolicyType`.
|
|
161
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-policygrant-managedpolicytype.html}
|
|
162
|
+
*/
|
|
163
|
+
export type ManagedPolicyType = "CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT" | "CREATE_ENVIRONMENT_FROM_BLUEPRINT" | "CREATE_PROJECT_FROM_PROJECT_PROFILE";
|
|
159
164
|
/**
|
|
160
165
|
* Type definition for `AWS::DataZone::PolicyGrant.OverrideDomainUnitOwnersPolicyGrantDetail`.
|
|
161
166
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-policygrant-overridedomainunitownerspolicygrantdetail.html}
|
|
@@ -242,7 +247,7 @@ export type ProjectPolicyGrantPrincipal = {
|
|
|
242
247
|
* Type definition for `AWS::DataZone::PolicyGrant.TargetEntityType`.
|
|
243
248
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-policygrant-targetentitytype.html}
|
|
244
249
|
*/
|
|
245
|
-
export type TargetEntityType = "
|
|
250
|
+
export type TargetEntityType = "DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE" | "ASSET_TYPE";
|
|
246
251
|
/**
|
|
247
252
|
* Type definition for `AWS::DataZone::PolicyGrant.Unit`.
|
|
248
253
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-policygrant-unit.html}
|
|
@@ -10,7 +10,7 @@ export type DataZoneProjectProfileProperties = {
|
|
|
10
10
|
*/
|
|
11
11
|
Description?: string;
|
|
12
12
|
/**
|
|
13
|
-
* @pattern `^dzd[_][a-zA-Z0-9_-]{1,36}$`
|
|
13
|
+
* @pattern `^dzd[_-][a-zA-Z0-9_-]{1,36}$`
|
|
14
14
|
*/
|
|
15
15
|
DomainIdentifier?: string;
|
|
16
16
|
/**
|
|
@@ -36,7 +36,7 @@ export type DataZoneProjectProfileAttributes = {
|
|
|
36
36
|
CreatedAt: string;
|
|
37
37
|
CreatedBy: string;
|
|
38
38
|
/**
|
|
39
|
-
* @pattern `^dzd[_][a-zA-Z0-9_-]{1,36}$`
|
|
39
|
+
* @pattern `^dzd[_-][a-zA-Z0-9_-]{1,36}$`
|
|
40
40
|
*/
|
|
41
41
|
DomainId: string;
|
|
42
42
|
/**
|
|
@@ -5,23 +5,29 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ServiceCatalogPortfolioPrincipalAssociationProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The language code.
|
|
10
|
+
*/
|
|
8
11
|
AcceptLanguage?: string;
|
|
9
|
-
|
|
10
|
-
|
|
12
|
+
/**
|
|
13
|
+
* The portfolio identifier.
|
|
14
|
+
*/
|
|
15
|
+
PortfolioId?: string;
|
|
16
|
+
/**
|
|
17
|
+
* The ARN of the principal (user, role, or group).
|
|
18
|
+
* @pattern `arn:(aws|aws-cn|aws-us-gov):iam::[0-9]*:(role|user|group)\/.*`
|
|
19
|
+
*/
|
|
20
|
+
PrincipalARN?: string;
|
|
21
|
+
/**
|
|
22
|
+
* The principal type. The supported value is IAM if you use a fully defined Amazon Resource Name (ARN), or IAM_PATTERN if you use an ARN with no accountID, with or without wildcard characters.
|
|
23
|
+
*/
|
|
11
24
|
PrincipalType: string;
|
|
12
25
|
};
|
|
13
|
-
/**
|
|
14
|
-
* Attribute type definition for `AWS::ServiceCatalog::PortfolioPrincipalAssociation`.
|
|
15
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#aws-resource-servicecatalog-portfolioprincipalassociation-return-values}
|
|
16
|
-
*/
|
|
17
|
-
export type ServiceCatalogPortfolioPrincipalAssociationAttributes = {
|
|
18
|
-
Id: string;
|
|
19
|
-
};
|
|
20
26
|
/**
|
|
21
27
|
* Resource Type definition for AWS::ServiceCatalog::PortfolioPrincipalAssociation
|
|
22
28
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html}
|
|
23
29
|
*/
|
|
24
|
-
export declare class ServiceCatalogPortfolioPrincipalAssociation extends $Resource<"AWS::ServiceCatalog::PortfolioPrincipalAssociation", ServiceCatalogPortfolioPrincipalAssociationProperties,
|
|
30
|
+
export declare class ServiceCatalogPortfolioPrincipalAssociation extends $Resource<"AWS::ServiceCatalog::PortfolioPrincipalAssociation", ServiceCatalogPortfolioPrincipalAssociationProperties, Record<string, never>> {
|
|
25
31
|
static readonly Type = "AWS::ServiceCatalog::PortfolioPrincipalAssociation";
|
|
26
32
|
constructor(logicalId: string, properties: ServiceCatalogPortfolioPrincipalAssociationProperties, options?: $ResourceOptions);
|
|
27
33
|
}
|