@awboost/cfn-resource-types 0.1.362 → 0.1.363
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.
|
@@ -19,6 +19,7 @@ export type DataZoneProjectProfileProperties = {
|
|
|
19
19
|
* @pattern `^[a-z0-9_\-]+$`
|
|
20
20
|
*/
|
|
21
21
|
DomainUnitIdentifier?: string;
|
|
22
|
+
EnvironmentConfigurations?: EnvironmentConfiguration[];
|
|
22
23
|
/**
|
|
23
24
|
* @minLength `1`
|
|
24
25
|
* @maxLength `64`
|
|
@@ -44,6 +45,22 @@ export type DataZoneProjectProfileAttributes = {
|
|
|
44
45
|
* @pattern `^[a-z0-9_\-]+$`
|
|
45
46
|
*/
|
|
46
47
|
DomainUnitId: string;
|
|
48
|
+
EnvironmentConfigurations: {
|
|
49
|
+
ConfigurationParameters: {
|
|
50
|
+
ResolvedParameters: {
|
|
51
|
+
IsEditable: boolean;
|
|
52
|
+
/**
|
|
53
|
+
* @pattern `^[a-zA-Z_][a-zA-Z0-9_]*$`
|
|
54
|
+
*/
|
|
55
|
+
Name: string;
|
|
56
|
+
Value: string;
|
|
57
|
+
}[];
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
61
|
+
*/
|
|
62
|
+
Id: string;
|
|
63
|
+
}[];
|
|
47
64
|
/**
|
|
48
65
|
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
49
66
|
*/
|
|
@@ -54,6 +71,81 @@ export type DataZoneProjectProfileAttributes = {
|
|
|
54
71
|
Identifier: string;
|
|
55
72
|
LastUpdatedAt: string;
|
|
56
73
|
};
|
|
74
|
+
/**
|
|
75
|
+
* Type definition for `AWS::DataZone::ProjectProfile.AwsAccount`.
|
|
76
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-awsaccount.html}
|
|
77
|
+
*/
|
|
78
|
+
export type AwsAccount = {
|
|
79
|
+
/**
|
|
80
|
+
* @pattern `^\d{12}$`
|
|
81
|
+
*/
|
|
82
|
+
AwsAccountId: string;
|
|
83
|
+
};
|
|
84
|
+
/**
|
|
85
|
+
* Type definition for `AWS::DataZone::ProjectProfile.DeploymentMode`.
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-deploymentmode.html}
|
|
87
|
+
*/
|
|
88
|
+
export type DeploymentMode = "ON_CREATE" | "ON_DEMAND";
|
|
89
|
+
/**
|
|
90
|
+
* Type definition for `AWS::DataZone::ProjectProfile.EnvironmentConfiguration`.
|
|
91
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html}
|
|
92
|
+
*/
|
|
93
|
+
export type EnvironmentConfiguration = {
|
|
94
|
+
AwsAccount?: AwsAccount;
|
|
95
|
+
AwsRegion: Region;
|
|
96
|
+
ConfigurationParameters?: EnvironmentConfigurationParametersDetails;
|
|
97
|
+
DeploymentMode?: DeploymentMode;
|
|
98
|
+
/**
|
|
99
|
+
* @min `0`
|
|
100
|
+
* @max `16`
|
|
101
|
+
*/
|
|
102
|
+
DeploymentOrder?: number;
|
|
103
|
+
/**
|
|
104
|
+
* @maxLength `2048`
|
|
105
|
+
*/
|
|
106
|
+
Description?: string;
|
|
107
|
+
/**
|
|
108
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
109
|
+
*/
|
|
110
|
+
EnvironmentBlueprintId: string;
|
|
111
|
+
/**
|
|
112
|
+
* @minLength `1`
|
|
113
|
+
* @maxLength `64`
|
|
114
|
+
* @pattern `^[\w -]+$`
|
|
115
|
+
*/
|
|
116
|
+
Name: string;
|
|
117
|
+
};
|
|
118
|
+
/**
|
|
119
|
+
* Type definition for `AWS::DataZone::ProjectProfile.EnvironmentConfigurationParameter`.
|
|
120
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparameter.html}
|
|
121
|
+
*/
|
|
122
|
+
export type EnvironmentConfigurationParameter = {
|
|
123
|
+
IsEditable?: boolean;
|
|
124
|
+
/**
|
|
125
|
+
* @pattern `^[a-zA-Z_][a-zA-Z0-9_]*$`
|
|
126
|
+
*/
|
|
127
|
+
Name?: string;
|
|
128
|
+
Value?: string;
|
|
129
|
+
};
|
|
130
|
+
/**
|
|
131
|
+
* Type definition for `AWS::DataZone::ProjectProfile.EnvironmentConfigurationParametersDetails`.
|
|
132
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.html}
|
|
133
|
+
*/
|
|
134
|
+
export type EnvironmentConfigurationParametersDetails = {
|
|
135
|
+
ParameterOverrides?: EnvironmentConfigurationParameter[];
|
|
136
|
+
};
|
|
137
|
+
/**
|
|
138
|
+
* Type definition for `AWS::DataZone::ProjectProfile.Region`.
|
|
139
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-region.html}
|
|
140
|
+
*/
|
|
141
|
+
export type Region = {
|
|
142
|
+
/**
|
|
143
|
+
* @minLength `4`
|
|
144
|
+
* @maxLength `16`
|
|
145
|
+
* @pattern `^[a-z]{2}-?(iso|gov)?-{1}[a-z]*-{1}[0-9]$`
|
|
146
|
+
*/
|
|
147
|
+
RegionName: string;
|
|
148
|
+
};
|
|
57
149
|
/**
|
|
58
150
|
* Type definition for `AWS::DataZone::ProjectProfile.Status`.
|
|
59
151
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-status.html}
|
|
@@ -396,6 +396,7 @@ export type DataSourceConfiguration = {
|
|
|
396
396
|
* SharePoint configuration
|
|
397
397
|
*/
|
|
398
398
|
SharePointConfiguration?: SharePointConfiguration;
|
|
399
|
+
TemplateConfiguration?: TemplateConfiguration;
|
|
399
400
|
WebCrawlerConfiguration?: WebCrawlerConfiguration;
|
|
400
401
|
WorkDocsConfiguration?: WorkDocsConfiguration;
|
|
401
402
|
};
|
|
@@ -1003,12 +1004,19 @@ export type Tag = {
|
|
|
1003
1004
|
*/
|
|
1004
1005
|
Value: string;
|
|
1005
1006
|
};
|
|
1007
|
+
/**
|
|
1008
|
+
* Type definition for `AWS::Kendra::DataSource.TemplateConfiguration`.
|
|
1009
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-templateconfiguration.html}
|
|
1010
|
+
*/
|
|
1011
|
+
export type TemplateConfiguration = {
|
|
1012
|
+
Template: Record<string, any>;
|
|
1013
|
+
};
|
|
1006
1014
|
/**
|
|
1007
1015
|
* Type definition for `AWS::Kendra::DataSource.Type`.
|
|
1008
1016
|
* Data source type
|
|
1009
1017
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-type.html}
|
|
1010
1018
|
*/
|
|
1011
|
-
export type Type = "S3" | "SHAREPOINT" | "SALESFORCE" | "ONEDRIVE" | "SERVICENOW" | "DATABASE" | "CUSTOM" | "CONFLUENCE" | "GOOGLEDRIVE" | "WEBCRAWLER" | "WORKDOCS";
|
|
1019
|
+
export type Type = "S3" | "SHAREPOINT" | "SALESFORCE" | "ONEDRIVE" | "SERVICENOW" | "DATABASE" | "CUSTOM" | "CONFLUENCE" | "GOOGLEDRIVE" | "WEBCRAWLER" | "WORKDOCS" | "TEMPLATE";
|
|
1012
1020
|
/**
|
|
1013
1021
|
* Type definition for `AWS::Kendra::DataSource.WebCrawlerAuthenticationConfiguration`.
|
|
1014
1022
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-webcrawlerauthenticationconfiguration.html}
|