@awboost/cfn-resource-types 0.1.346 → 0.1.347
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.
|
@@ -5,8 +5,6 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html}
|
|
6
6
|
*/
|
|
7
7
|
export type DataZoneProjectProfileProperties = {
|
|
8
|
-
AllowedDesignations?: DesignationConfiguration[];
|
|
9
|
-
ChangeLog?: string;
|
|
10
8
|
/**
|
|
11
9
|
* @maxLength `2048`
|
|
12
10
|
*/
|
|
@@ -27,7 +25,6 @@ export type DataZoneProjectProfileProperties = {
|
|
|
27
25
|
* @pattern `^[\w -]+$`
|
|
28
26
|
*/
|
|
29
27
|
Name: string;
|
|
30
|
-
ProjectScopes?: ProjectScope[];
|
|
31
28
|
Status?: Status;
|
|
32
29
|
};
|
|
33
30
|
/**
|
|
@@ -57,31 +54,6 @@ export type DataZoneProjectProfileAttributes = {
|
|
|
57
54
|
Identifier: string;
|
|
58
55
|
LastUpdatedAt: string;
|
|
59
56
|
};
|
|
60
|
-
/**
|
|
61
|
-
* Type definition for `AWS::DataZone::ProjectProfile.DesignationConfiguration`.
|
|
62
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-designationconfiguration.html}
|
|
63
|
-
*/
|
|
64
|
-
export type DesignationConfiguration = {
|
|
65
|
-
/**
|
|
66
|
-
* @minLength `1`
|
|
67
|
-
* @maxLength `36`
|
|
68
|
-
* @pattern `^[a-zA-Z0-9_-]+$`
|
|
69
|
-
*/
|
|
70
|
-
DesignationId: string;
|
|
71
|
-
};
|
|
72
|
-
/**
|
|
73
|
-
* Type definition for `AWS::DataZone::ProjectProfile.ProjectScope`.
|
|
74
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-projectscope.html}
|
|
75
|
-
*/
|
|
76
|
-
export type ProjectScope = {
|
|
77
|
-
/**
|
|
78
|
-
* @minLength `1`
|
|
79
|
-
* @maxLength `64`
|
|
80
|
-
* @pattern `^[\w -]+$`
|
|
81
|
-
*/
|
|
82
|
-
Name: string;
|
|
83
|
-
Policy?: string;
|
|
84
|
-
};
|
|
85
57
|
/**
|
|
86
58
|
* Type definition for `AWS::DataZone::ProjectProfile.Status`.
|
|
87
59
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-status.html}
|