@awboost/cfn-resource-types 0.1.2 → 0.1.3
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-Cognito-IdentityPool.d.ts +2 -2
- package/lib/AWS-DataZone-DataSource.d.ts +350 -0
- package/lib/AWS-DataZone-DataSource.js +12 -0
- package/lib/AWS-DataZone-Domain.d.ts +135 -0
- package/lib/AWS-DataZone-Domain.js +13 -0
- package/lib/AWS-DataZone-Environment.d.ts +136 -0
- package/lib/AWS-DataZone-Environment.js +12 -0
- package/lib/AWS-DataZone-EnvironmentBlueprintConfiguration.d.ts +70 -0
- package/lib/AWS-DataZone-EnvironmentBlueprintConfiguration.js +12 -0
- package/lib/AWS-DataZone-EnvironmentProfile.d.ts +113 -0
- package/lib/AWS-DataZone-EnvironmentProfile.js +13 -0
- package/lib/AWS-DataZone-Project.d.ts +70 -0
- package/lib/AWS-DataZone-Project.js +13 -0
- package/lib/AWS-DataZone-SubscriptionTarget.d.ts +121 -0
- package/lib/AWS-DataZone-SubscriptionTarget.js +13 -0
- package/lib/AWS-ImageBuilder-LifecyclePolicy.d.ts +1 -1
- package/lib/AWS-MediaLive-Channel.d.ts +17 -0
- package/lib/AWS-OpenSearchService-Domain.d.ts +8 -0
- package/lib/AWS-RDS-DBCluster.d.ts +1 -1
- package/package.json +4 -4
|
@@ -30,8 +30,8 @@ export type CognitoIdentityPoolAttributes = {
|
|
|
30
30
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitoidentityprovider.html}
|
|
31
31
|
*/
|
|
32
32
|
export type CognitoIdentityProvider = {
|
|
33
|
-
ClientId
|
|
34
|
-
ProviderName
|
|
33
|
+
ClientId: string;
|
|
34
|
+
ProviderName: string;
|
|
35
35
|
ServerSideTokenCheck?: boolean;
|
|
36
36
|
};
|
|
37
37
|
/**
|
|
@@ -0,0 +1,350 @@
|
|
|
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
|
+
* Definition of AWS::DataZone::DataSource Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html}
|
|
6
|
+
*/
|
|
7
|
+
export type DataZoneDataSourceProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The metadata forms that are to be attached to the assets that this data source works with.
|
|
10
|
+
* @minLength `0`
|
|
11
|
+
* @maxLength `10`
|
|
12
|
+
*/
|
|
13
|
+
AssetFormsInput?: FormInput[];
|
|
14
|
+
/**
|
|
15
|
+
* Configuration of the data source. It can be set to either glueRunConfiguration or redshiftRunConfiguration.
|
|
16
|
+
*/
|
|
17
|
+
Configuration?: DataSourceConfigurationInput;
|
|
18
|
+
/**
|
|
19
|
+
* The description of the data source.
|
|
20
|
+
* @maxLength `2048`
|
|
21
|
+
*/
|
|
22
|
+
Description?: string;
|
|
23
|
+
/**
|
|
24
|
+
* The ID of the Amazon DataZone domain where the data source is created.
|
|
25
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
26
|
+
*/
|
|
27
|
+
DomainIdentifier: string;
|
|
28
|
+
/**
|
|
29
|
+
* Specifies whether the data source is enabled.
|
|
30
|
+
*/
|
|
31
|
+
EnableSetting?: EnableSetting;
|
|
32
|
+
/**
|
|
33
|
+
* The unique identifier of the Amazon DataZone environment to which the data source publishes assets.
|
|
34
|
+
*/
|
|
35
|
+
EnvironmentIdentifier: string;
|
|
36
|
+
/**
|
|
37
|
+
* The name of the data source.
|
|
38
|
+
* @minLength `1`
|
|
39
|
+
* @maxLength `256`
|
|
40
|
+
*/
|
|
41
|
+
Name: string;
|
|
42
|
+
/**
|
|
43
|
+
* The identifier of the Amazon DataZone project in which you want to add the data source.
|
|
44
|
+
*/
|
|
45
|
+
ProjectIdentifier: string;
|
|
46
|
+
/**
|
|
47
|
+
* Specifies whether the assets that this data source creates in the inventory are to be also automatically published to the catalog.
|
|
48
|
+
*/
|
|
49
|
+
PublishOnImport?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* Specifies whether the business name generation is to be enabled for this data source.
|
|
52
|
+
*/
|
|
53
|
+
Recommendation?: RecommendationConfiguration;
|
|
54
|
+
/**
|
|
55
|
+
* The schedule of the data source runs.
|
|
56
|
+
*/
|
|
57
|
+
Schedule?: ScheduleConfiguration;
|
|
58
|
+
/**
|
|
59
|
+
* The type of the data source.
|
|
60
|
+
* @minLength `1`
|
|
61
|
+
* @maxLength `256`
|
|
62
|
+
*/
|
|
63
|
+
Type: string;
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* Attribute type definition for `AWS::DataZone::DataSource`.
|
|
67
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html#aws-resource-datazone-datasource-return-values}
|
|
68
|
+
*/
|
|
69
|
+
export type DataZoneDataSourceAttributes = {
|
|
70
|
+
/**
|
|
71
|
+
* The timestamp of when the data source was created.
|
|
72
|
+
*/
|
|
73
|
+
CreatedAt: string;
|
|
74
|
+
/**
|
|
75
|
+
* The ID of the Amazon DataZone domain where the data source is created.
|
|
76
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
77
|
+
*/
|
|
78
|
+
DomainId: string;
|
|
79
|
+
/**
|
|
80
|
+
* The unique identifier of the Amazon DataZone environment to which the data source publishes assets.
|
|
81
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
82
|
+
*/
|
|
83
|
+
EnvironmentId: string;
|
|
84
|
+
/**
|
|
85
|
+
* The unique identifier of the data source.
|
|
86
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
87
|
+
*/
|
|
88
|
+
Id: string;
|
|
89
|
+
/**
|
|
90
|
+
* The number of assets created by the data source during its last run.
|
|
91
|
+
*/
|
|
92
|
+
LastRunAssetCount: number;
|
|
93
|
+
/**
|
|
94
|
+
* The timestamp that specifies when the data source was last run.
|
|
95
|
+
*/
|
|
96
|
+
LastRunAt: string;
|
|
97
|
+
/**
|
|
98
|
+
* The status of the last run of this data source.
|
|
99
|
+
*/
|
|
100
|
+
LastRunStatus: string;
|
|
101
|
+
/**
|
|
102
|
+
* The ID of the Amazon DataZone project to which the data source is added.
|
|
103
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
104
|
+
*/
|
|
105
|
+
ProjectId: string;
|
|
106
|
+
/**
|
|
107
|
+
* The status of the data source.
|
|
108
|
+
*/
|
|
109
|
+
Status: DataSourceStatus;
|
|
110
|
+
/**
|
|
111
|
+
* The timestamp of when this data source was updated.
|
|
112
|
+
*/
|
|
113
|
+
UpdatedAt: string;
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* Type definition for `AWS::DataZone::DataSource.DataSourceConfigurationInput`.
|
|
117
|
+
* Specifies the configuration of the data source. It can be set to either glueRunConfiguration or redshiftRunConfiguration.
|
|
118
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-datasourceconfigurationinput.html}
|
|
119
|
+
*/
|
|
120
|
+
export type DataSourceConfigurationInput = {
|
|
121
|
+
GlueRunConfiguration?: GlueRunConfigurationInput;
|
|
122
|
+
} | {
|
|
123
|
+
/**
|
|
124
|
+
* The configuration details of the Amazon Redshift data source.
|
|
125
|
+
*/
|
|
126
|
+
RedshiftRunConfiguration?: RedshiftRunConfigurationInput;
|
|
127
|
+
};
|
|
128
|
+
/**
|
|
129
|
+
* Type definition for `AWS::DataZone::DataSource.DataSourceStatus`.
|
|
130
|
+
* The status of the data source.
|
|
131
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-datasourcestatus.html}
|
|
132
|
+
*/
|
|
133
|
+
export type DataSourceStatus = "CREATING" | "FAILED_CREATION" | "READY" | "UPDATING" | "FAILED_UPDATE" | "RUNNING" | "DELETING" | "FAILED_DELETION";
|
|
134
|
+
/**
|
|
135
|
+
* Type definition for `AWS::DataZone::DataSource.EnableSetting`.
|
|
136
|
+
* Specifies whether the data source is enabled.
|
|
137
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-enablesetting.html}
|
|
138
|
+
*/
|
|
139
|
+
export type EnableSetting = "ENABLED" | "DISABLED";
|
|
140
|
+
/**
|
|
141
|
+
* Type definition for `AWS::DataZone::DataSource.FilterExpression`.
|
|
142
|
+
* The search filter expression.
|
|
143
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-filterexpression.html}
|
|
144
|
+
*/
|
|
145
|
+
export type FilterExpression = {
|
|
146
|
+
/**
|
|
147
|
+
* @minLength `1`
|
|
148
|
+
* @maxLength `2048`
|
|
149
|
+
*/
|
|
150
|
+
Expression: string;
|
|
151
|
+
/**
|
|
152
|
+
* The search filter expression type.
|
|
153
|
+
*/
|
|
154
|
+
Type: FilterExpressionType;
|
|
155
|
+
};
|
|
156
|
+
/**
|
|
157
|
+
* Type definition for `AWS::DataZone::DataSource.FilterExpressionType`.
|
|
158
|
+
* The search filter expression type.
|
|
159
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-filterexpressiontype.html}
|
|
160
|
+
*/
|
|
161
|
+
export type FilterExpressionType = "INCLUDE" | "EXCLUDE";
|
|
162
|
+
/**
|
|
163
|
+
* Type definition for `AWS::DataZone::DataSource.FormInput`.
|
|
164
|
+
* The details of a metadata form.
|
|
165
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-forminput.html}
|
|
166
|
+
*/
|
|
167
|
+
export type FormInput = {
|
|
168
|
+
/**
|
|
169
|
+
* The content of the metadata form.
|
|
170
|
+
* @maxLength `75000`
|
|
171
|
+
*/
|
|
172
|
+
Content?: string;
|
|
173
|
+
/**
|
|
174
|
+
* The name of the metadata form.
|
|
175
|
+
* @minLength `1`
|
|
176
|
+
* @maxLength `128`
|
|
177
|
+
* @pattern `^(?![0-9_])\w+$|^_\w*[a-zA-Z0-9]\w*$`
|
|
178
|
+
*/
|
|
179
|
+
FormName: string;
|
|
180
|
+
/**
|
|
181
|
+
* The ID of the metadata form type.
|
|
182
|
+
* @minLength `1`
|
|
183
|
+
* @maxLength `385`
|
|
184
|
+
* @pattern `^(?!\.)[\w\.]*\w$`
|
|
185
|
+
*/
|
|
186
|
+
TypeIdentifier?: string;
|
|
187
|
+
/**
|
|
188
|
+
* The revision of the metadata form type.
|
|
189
|
+
* @minLength `1`
|
|
190
|
+
* @maxLength `64`
|
|
191
|
+
*/
|
|
192
|
+
TypeRevision?: string;
|
|
193
|
+
};
|
|
194
|
+
/**
|
|
195
|
+
* Type definition for `AWS::DataZone::DataSource.GlueRunConfigurationInput`.
|
|
196
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-gluerunconfigurationinput.html}
|
|
197
|
+
*/
|
|
198
|
+
export type GlueRunConfigurationInput = {
|
|
199
|
+
/**
|
|
200
|
+
* The data access role included in the configuration details of the AWS Glue data source.
|
|
201
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]{1,128}$`
|
|
202
|
+
*/
|
|
203
|
+
DataAccessRole?: string;
|
|
204
|
+
/**
|
|
205
|
+
* The relational filter configurations included in the configuration details of the AWS Glue data source.
|
|
206
|
+
*/
|
|
207
|
+
RelationalFilterConfigurations: RelationalFilterConfiguration[];
|
|
208
|
+
};
|
|
209
|
+
/**
|
|
210
|
+
* Type definition for `AWS::DataZone::DataSource.RecommendationConfiguration`.
|
|
211
|
+
* The recommendation to be updated as part of the UpdateDataSource action.
|
|
212
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-recommendationconfiguration.html}
|
|
213
|
+
*/
|
|
214
|
+
export type RecommendationConfiguration = {
|
|
215
|
+
/**
|
|
216
|
+
* Specifies whether automatic business name generation is to be enabled or not as part of the recommendation configuration.
|
|
217
|
+
*/
|
|
218
|
+
EnableBusinessNameGeneration?: boolean;
|
|
219
|
+
};
|
|
220
|
+
/**
|
|
221
|
+
* Type definition for `AWS::DataZone::DataSource.RedshiftClusterStorage`.
|
|
222
|
+
* The name of an Amazon Redshift cluster.
|
|
223
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-redshiftclusterstorage.html}
|
|
224
|
+
*/
|
|
225
|
+
export type RedshiftClusterStorage = {
|
|
226
|
+
/**
|
|
227
|
+
* The name of an Amazon Redshift cluster.
|
|
228
|
+
* @minLength `1`
|
|
229
|
+
* @maxLength `63`
|
|
230
|
+
* @pattern `^[0-9a-z].[a-z0-9\-]*$`
|
|
231
|
+
*/
|
|
232
|
+
ClusterName: string;
|
|
233
|
+
};
|
|
234
|
+
/**
|
|
235
|
+
* Type definition for `AWS::DataZone::DataSource.RedshiftCredentialConfiguration`.
|
|
236
|
+
* The ARN of a secret manager for an Amazon Redshift cluster.
|
|
237
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-redshiftcredentialconfiguration.html}
|
|
238
|
+
*/
|
|
239
|
+
export type RedshiftCredentialConfiguration = {
|
|
240
|
+
/**
|
|
241
|
+
* The ARN of a secret manager for an Amazon Redshift cluster.
|
|
242
|
+
* @maxLength `256`
|
|
243
|
+
* @pattern `^arn:aws[^:]*:secretsmanager:[a-z]{2}-?(iso|gov)?-{1}[a-z]*-{1}[0-9]:\d{12}:secret:.*$`
|
|
244
|
+
*/
|
|
245
|
+
SecretManagerArn: string;
|
|
246
|
+
};
|
|
247
|
+
/**
|
|
248
|
+
* Type definition for `AWS::DataZone::DataSource.RedshiftRunConfigurationInput`.
|
|
249
|
+
* The configuration details of the Amazon Redshift data source.
|
|
250
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-redshiftrunconfigurationinput.html}
|
|
251
|
+
*/
|
|
252
|
+
export type RedshiftRunConfigurationInput = {
|
|
253
|
+
/**
|
|
254
|
+
* The data access role included in the configuration details of the Amazon Redshift data source.
|
|
255
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]{1,128}$`
|
|
256
|
+
*/
|
|
257
|
+
DataAccessRole?: string;
|
|
258
|
+
/**
|
|
259
|
+
* The details of the credentials required to access an Amazon Redshift cluster.
|
|
260
|
+
*/
|
|
261
|
+
RedshiftCredentialConfiguration: RedshiftCredentialConfiguration;
|
|
262
|
+
/**
|
|
263
|
+
* The details of the Amazon Redshift storage as part of the configuration of an Amazon Redshift data source run.
|
|
264
|
+
*/
|
|
265
|
+
RedshiftStorage: RedshiftStorage;
|
|
266
|
+
/**
|
|
267
|
+
* The relational filter configurations included in the configuration details of the Amazon Redshift data source.
|
|
268
|
+
*/
|
|
269
|
+
RelationalFilterConfigurations: RelationalFilterConfiguration[];
|
|
270
|
+
};
|
|
271
|
+
/**
|
|
272
|
+
* Type definition for `AWS::DataZone::DataSource.RedshiftServerlessStorage`.
|
|
273
|
+
* The details of the Amazon Redshift Serverless workgroup storage.
|
|
274
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-redshiftserverlessstorage.html}
|
|
275
|
+
*/
|
|
276
|
+
export type RedshiftServerlessStorage = {
|
|
277
|
+
/**
|
|
278
|
+
* The name of the Amazon Redshift Serverless workgroup.
|
|
279
|
+
* @minLength `3`
|
|
280
|
+
* @maxLength `64`
|
|
281
|
+
* @pattern `^[a-z0-9-]+$`
|
|
282
|
+
*/
|
|
283
|
+
WorkgroupName: string;
|
|
284
|
+
};
|
|
285
|
+
/**
|
|
286
|
+
* Type definition for `AWS::DataZone::DataSource.RedshiftStorage`.
|
|
287
|
+
* The details of the Amazon Redshift storage as part of the configuration of an Amazon Redshift data source run.
|
|
288
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-redshiftstorage.html}
|
|
289
|
+
*/
|
|
290
|
+
export type RedshiftStorage = {
|
|
291
|
+
/**
|
|
292
|
+
* The name of an Amazon Redshift cluster.
|
|
293
|
+
*/
|
|
294
|
+
RedshiftClusterSource: RedshiftClusterStorage;
|
|
295
|
+
} | {
|
|
296
|
+
/**
|
|
297
|
+
* The details of the Amazon Redshift Serverless workgroup storage.
|
|
298
|
+
*/
|
|
299
|
+
RedshiftServerlessSource: RedshiftServerlessStorage;
|
|
300
|
+
};
|
|
301
|
+
/**
|
|
302
|
+
* Type definition for `AWS::DataZone::DataSource.RelationalFilterConfiguration`.
|
|
303
|
+
* The relational filter configuration for the data source.
|
|
304
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-relationalfilterconfiguration.html}
|
|
305
|
+
*/
|
|
306
|
+
export type RelationalFilterConfiguration = {
|
|
307
|
+
/**
|
|
308
|
+
* The database name specified in the relational filter configuration for the data source.
|
|
309
|
+
* @minLength `1`
|
|
310
|
+
* @maxLength `128`
|
|
311
|
+
*/
|
|
312
|
+
DatabaseName: string;
|
|
313
|
+
/**
|
|
314
|
+
* The filter expressions specified in the relational filter configuration for the data source.
|
|
315
|
+
*/
|
|
316
|
+
FilterExpressions?: FilterExpression[];
|
|
317
|
+
/**
|
|
318
|
+
* The schema name specified in the relational filter configuration for the data source.
|
|
319
|
+
* @minLength `1`
|
|
320
|
+
* @maxLength `128`
|
|
321
|
+
*/
|
|
322
|
+
SchemaName?: string;
|
|
323
|
+
};
|
|
324
|
+
/**
|
|
325
|
+
* Type definition for `AWS::DataZone::DataSource.ScheduleConfiguration`.
|
|
326
|
+
* The schedule of the data source runs.
|
|
327
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-scheduleconfiguration.html}
|
|
328
|
+
*/
|
|
329
|
+
export type ScheduleConfiguration = {
|
|
330
|
+
/**
|
|
331
|
+
* The schedule of the data source runs.
|
|
332
|
+
* @minLength `1`
|
|
333
|
+
* @maxLength `256`
|
|
334
|
+
* @pattern `cron\((\b[0-5]?[0-9]\b) (\b2[0-3]\b|\b[0-1]?[0-9]\b) (.*){1,5} (.*){1,5} (.*){1,5} (.*){1,5}\)`
|
|
335
|
+
*/
|
|
336
|
+
Schedule?: string;
|
|
337
|
+
/**
|
|
338
|
+
* The timezone of the data source run.
|
|
339
|
+
*/
|
|
340
|
+
Timezone?: string;
|
|
341
|
+
};
|
|
342
|
+
/**
|
|
343
|
+
* Definition of AWS::DataZone::DataSource Resource Type
|
|
344
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html}
|
|
345
|
+
*/
|
|
346
|
+
export declare class DataZoneDataSource extends $Resource<"AWS::DataZone::DataSource", DataZoneDataSourceProperties, DataZoneDataSourceAttributes> {
|
|
347
|
+
static readonly Type = "AWS::DataZone::DataSource";
|
|
348
|
+
constructor(logicalId: string, properties: DataZoneDataSourceProperties, options?: $ResourceOptions);
|
|
349
|
+
}
|
|
350
|
+
//# sourceMappingURL=AWS-DataZone-DataSource.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/Resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::DataZone::DataSource Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html}
|
|
5
|
+
*/
|
|
6
|
+
export class DataZoneDataSource extends $Resource {
|
|
7
|
+
static Type = "AWS::DataZone::DataSource";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, DataZoneDataSource.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-DataZone-DataSource.js.map
|
|
@@ -0,0 +1,135 @@
|
|
|
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::Domain`.
|
|
5
|
+
* A domain is an organizing entity for connecting together assets, users, and their projects
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domain.html}
|
|
7
|
+
*/
|
|
8
|
+
export type DataZoneDomainProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The description of the Amazon DataZone domain.
|
|
11
|
+
*/
|
|
12
|
+
Description?: string;
|
|
13
|
+
/**
|
|
14
|
+
* The domain execution role that is created when an Amazon DataZone domain is created. The domain execution role is created in the AWS account that houses the Amazon DataZone domain.
|
|
15
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]*$`
|
|
16
|
+
*/
|
|
17
|
+
DomainExecutionRole: string;
|
|
18
|
+
/**
|
|
19
|
+
* The identifier of the AWS Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data.
|
|
20
|
+
* @minLength `1`
|
|
21
|
+
* @maxLength `1024`
|
|
22
|
+
* @pattern `^arn:aws(|-cn|-us-gov):kms:[a-zA-Z0-9-]*:[0-9]{12}:key/[a-zA-Z0-9-]{36}$`
|
|
23
|
+
*/
|
|
24
|
+
KmsKeyIdentifier?: string;
|
|
25
|
+
/**
|
|
26
|
+
* The name of the Amazon DataZone domain.
|
|
27
|
+
*/
|
|
28
|
+
Name: string;
|
|
29
|
+
/**
|
|
30
|
+
* The single-sign on configuration of the Amazon DataZone domain.
|
|
31
|
+
*/
|
|
32
|
+
SingleSignOn?: SingleSignOn;
|
|
33
|
+
/**
|
|
34
|
+
* The tags specified for the Amazon DataZone domain.
|
|
35
|
+
*/
|
|
36
|
+
Tags?: Tag[];
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Attribute type definition for `AWS::DataZone::Domain`.
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domain.html#aws-resource-datazone-domain-return-values}
|
|
41
|
+
*/
|
|
42
|
+
export type DataZoneDomainAttributes = {
|
|
43
|
+
/**
|
|
44
|
+
* The ARN of the Amazon DataZone domain.
|
|
45
|
+
* @pattern `^arn:aws(|-cn|-us-gov):datazone:\w+(?:-\w+)+:\d{12}:domain/dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
46
|
+
*/
|
|
47
|
+
Arn: string;
|
|
48
|
+
/**
|
|
49
|
+
* The timestamp of when the Amazon DataZone domain was last updated.
|
|
50
|
+
*/
|
|
51
|
+
CreatedAt: string;
|
|
52
|
+
/**
|
|
53
|
+
* The id of the Amazon DataZone domain.
|
|
54
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
55
|
+
*/
|
|
56
|
+
Id: string;
|
|
57
|
+
/**
|
|
58
|
+
* The timestamp of when the Amazon DataZone domain was last updated.
|
|
59
|
+
*/
|
|
60
|
+
LastUpdatedAt: string;
|
|
61
|
+
/**
|
|
62
|
+
* The identifier of the AWS account that manages the domain.
|
|
63
|
+
*/
|
|
64
|
+
ManagedAccountId: string;
|
|
65
|
+
/**
|
|
66
|
+
* The URL of the data portal for this Amazon DataZone domain.
|
|
67
|
+
*/
|
|
68
|
+
PortalUrl: string;
|
|
69
|
+
/**
|
|
70
|
+
* The status of the Amazon DataZone domain.
|
|
71
|
+
*/
|
|
72
|
+
Status: DomainStatus;
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* Type definition for `AWS::DataZone::Domain.AuthType`.
|
|
76
|
+
* The type of single sign-on in Amazon DataZone.
|
|
77
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-domain-authtype.html}
|
|
78
|
+
*/
|
|
79
|
+
export type AuthType = "IAM_IDC" | "DISABLED";
|
|
80
|
+
/**
|
|
81
|
+
* Type definition for `AWS::DataZone::Domain.DomainStatus`.
|
|
82
|
+
* The status of the Amazon DataZone domain.
|
|
83
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-domain-domainstatus.html}
|
|
84
|
+
*/
|
|
85
|
+
export type DomainStatus = "CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED";
|
|
86
|
+
/**
|
|
87
|
+
* Type definition for `AWS::DataZone::Domain.SingleSignOn`.
|
|
88
|
+
* The single-sign on configuration of the Amazon DataZone domain.
|
|
89
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-domain-singlesignon.html}
|
|
90
|
+
*/
|
|
91
|
+
export type SingleSignOn = {
|
|
92
|
+
/**
|
|
93
|
+
* The type of single sign-on in Amazon DataZone.
|
|
94
|
+
*/
|
|
95
|
+
Type?: AuthType;
|
|
96
|
+
/**
|
|
97
|
+
* The single sign-on user assignment in Amazon DataZone.
|
|
98
|
+
*/
|
|
99
|
+
UserAssignment?: UserAssignment;
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* Type definition for `AWS::DataZone::Domain.Tag`.
|
|
103
|
+
* A key-value pair to associate with the domain.
|
|
104
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-domain-tag.html}
|
|
105
|
+
*/
|
|
106
|
+
export type Tag = {
|
|
107
|
+
/**
|
|
108
|
+
* The key name of the tag.
|
|
109
|
+
* @minLength `1`
|
|
110
|
+
* @maxLength `128`
|
|
111
|
+
*/
|
|
112
|
+
Key: string;
|
|
113
|
+
/**
|
|
114
|
+
* The value for the tag.
|
|
115
|
+
* @minLength `0`
|
|
116
|
+
* @maxLength `256`
|
|
117
|
+
*/
|
|
118
|
+
Value: string;
|
|
119
|
+
};
|
|
120
|
+
/**
|
|
121
|
+
* Type definition for `AWS::DataZone::Domain.UserAssignment`.
|
|
122
|
+
* The single sign-on user assignment in Amazon DataZone.
|
|
123
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-domain-userassignment.html}
|
|
124
|
+
*/
|
|
125
|
+
export type UserAssignment = "AUTOMATIC" | "MANUAL";
|
|
126
|
+
/**
|
|
127
|
+
* Resource type definition for `AWS::DataZone::Domain`.
|
|
128
|
+
* A domain is an organizing entity for connecting together assets, users, and their projects
|
|
129
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domain.html}
|
|
130
|
+
*/
|
|
131
|
+
export declare class DataZoneDomain extends $Resource<"AWS::DataZone::Domain", DataZoneDomainProperties, DataZoneDomainAttributes> {
|
|
132
|
+
static readonly Type = "AWS::DataZone::Domain";
|
|
133
|
+
constructor(logicalId: string, properties: DataZoneDomainProperties, options?: $ResourceOptions);
|
|
134
|
+
}
|
|
135
|
+
//# sourceMappingURL=AWS-DataZone-Domain.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::Domain`.
|
|
4
|
+
* A domain is an organizing entity for connecting together assets, users, and their projects
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domain.html}
|
|
6
|
+
*/
|
|
7
|
+
export class DataZoneDomain extends $Resource {
|
|
8
|
+
static Type = "AWS::DataZone::Domain";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, DataZoneDomain.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-DataZone-Domain.js.map
|
|
@@ -0,0 +1,136 @@
|
|
|
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
|
+
* Definition of AWS::DataZone::Environment Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environment.html}
|
|
6
|
+
*/
|
|
7
|
+
export type DataZoneEnvironmentProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The description of the Amazon DataZone environment.
|
|
10
|
+
* @maxLength `2048`
|
|
11
|
+
*/
|
|
12
|
+
Description?: string;
|
|
13
|
+
/**
|
|
14
|
+
* The identifier of the Amazon DataZone domain in which the environment would be created.
|
|
15
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
16
|
+
*/
|
|
17
|
+
DomainIdentifier: string;
|
|
18
|
+
/**
|
|
19
|
+
* The ID of the environment profile with which the Amazon DataZone environment would be created.
|
|
20
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
21
|
+
*/
|
|
22
|
+
EnvironmentProfileIdentifier: string;
|
|
23
|
+
/**
|
|
24
|
+
* The glossary terms that can be used in the Amazon DataZone environment.
|
|
25
|
+
* @minLength `1`
|
|
26
|
+
* @maxLength `20`
|
|
27
|
+
*/
|
|
28
|
+
GlossaryTerms?: string[];
|
|
29
|
+
/**
|
|
30
|
+
* The name of the environment.
|
|
31
|
+
* @minLength `1`
|
|
32
|
+
* @maxLength `64`
|
|
33
|
+
* @pattern `^[\w -]+$`
|
|
34
|
+
*/
|
|
35
|
+
Name: string;
|
|
36
|
+
/**
|
|
37
|
+
* The ID of the Amazon DataZone project in which the environment would be created.
|
|
38
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
39
|
+
*/
|
|
40
|
+
ProjectIdentifier: string;
|
|
41
|
+
/**
|
|
42
|
+
* The user parameters of the Amazon DataZone environment.
|
|
43
|
+
*/
|
|
44
|
+
UserParameters?: EnvironmentParameter[];
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* Attribute type definition for `AWS::DataZone::Environment`.
|
|
48
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environment.html#aws-resource-datazone-environment-return-values}
|
|
49
|
+
*/
|
|
50
|
+
export type DataZoneEnvironmentAttributes = {
|
|
51
|
+
/**
|
|
52
|
+
* The AWS account in which the Amazon DataZone environment is created.
|
|
53
|
+
* @pattern `^\d{12}$`
|
|
54
|
+
*/
|
|
55
|
+
AwsAccountId: string;
|
|
56
|
+
/**
|
|
57
|
+
* The AWS region in which the Amazon DataZone environment is created.
|
|
58
|
+
* @pattern `^[a-z]{2}-[a-z]{4,10}-\d$`
|
|
59
|
+
*/
|
|
60
|
+
AwsAccountRegion: string;
|
|
61
|
+
/**
|
|
62
|
+
* The timestamp of when the environment was created.
|
|
63
|
+
*/
|
|
64
|
+
CreatedAt: string;
|
|
65
|
+
/**
|
|
66
|
+
* The Amazon DataZone user who created the environment.
|
|
67
|
+
*/
|
|
68
|
+
CreatedBy: string;
|
|
69
|
+
/**
|
|
70
|
+
* The identifier of the Amazon DataZone domain in which the environment is created.
|
|
71
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
72
|
+
*/
|
|
73
|
+
DomainId: string;
|
|
74
|
+
/**
|
|
75
|
+
* The ID of the blueprint with which the Amazon DataZone environment was created.
|
|
76
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
77
|
+
*/
|
|
78
|
+
EnvironmentBlueprintId: string;
|
|
79
|
+
/**
|
|
80
|
+
* The ID of the environment profile with which the Amazon DataZone environment was created.
|
|
81
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
82
|
+
*/
|
|
83
|
+
EnvironmentProfileId: string;
|
|
84
|
+
/**
|
|
85
|
+
* The ID of the Amazon DataZone environment.
|
|
86
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
87
|
+
*/
|
|
88
|
+
Id: string;
|
|
89
|
+
/**
|
|
90
|
+
* The ID of the Amazon DataZone project in which the environment is created.
|
|
91
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
92
|
+
*/
|
|
93
|
+
ProjectId: string;
|
|
94
|
+
/**
|
|
95
|
+
* The provider of the Amazon DataZone environment.
|
|
96
|
+
*/
|
|
97
|
+
Provider: string;
|
|
98
|
+
/**
|
|
99
|
+
* The status of the Amazon DataZone environment.
|
|
100
|
+
*/
|
|
101
|
+
Status: EnvironmentStatus;
|
|
102
|
+
/**
|
|
103
|
+
* The timestamp of when the environment was updated.
|
|
104
|
+
*/
|
|
105
|
+
UpdatedAt: string;
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* Type definition for `AWS::DataZone::Environment.EnvironmentParameter`.
|
|
109
|
+
* The parameter details of an environment.
|
|
110
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environment-environmentparameter.html}
|
|
111
|
+
*/
|
|
112
|
+
export type EnvironmentParameter = {
|
|
113
|
+
/**
|
|
114
|
+
* The name of an environment parameter.
|
|
115
|
+
*/
|
|
116
|
+
Name?: string;
|
|
117
|
+
/**
|
|
118
|
+
* The value of an environment parameter.
|
|
119
|
+
*/
|
|
120
|
+
Value?: string;
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* Type definition for `AWS::DataZone::Environment.EnvironmentStatus`.
|
|
124
|
+
* The status of the Amazon DataZone environment.
|
|
125
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environment-environmentstatus.html}
|
|
126
|
+
*/
|
|
127
|
+
export type EnvironmentStatus = "ACTIVE" | "CREATING" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED" | "VALIDATION_FAILED" | "SUSPENDED" | "DISABLED" | "EXPIRED" | "DELETED" | "INACCESSIBLE";
|
|
128
|
+
/**
|
|
129
|
+
* Definition of AWS::DataZone::Environment Resource Type
|
|
130
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environment.html}
|
|
131
|
+
*/
|
|
132
|
+
export declare class DataZoneEnvironment extends $Resource<"AWS::DataZone::Environment", DataZoneEnvironmentProperties, DataZoneEnvironmentAttributes> {
|
|
133
|
+
static readonly Type = "AWS::DataZone::Environment";
|
|
134
|
+
constructor(logicalId: string, properties: DataZoneEnvironmentProperties, options?: $ResourceOptions);
|
|
135
|
+
}
|
|
136
|
+
//# sourceMappingURL=AWS-DataZone-Environment.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/Resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::DataZone::Environment Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environment.html}
|
|
5
|
+
*/
|
|
6
|
+
export class DataZoneEnvironment extends $Resource {
|
|
7
|
+
static Type = "AWS::DataZone::Environment";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, DataZoneEnvironment.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-DataZone-Environment.js.map
|
|
@@ -0,0 +1,70 @@
|
|
|
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
|
+
* Definition of AWS::DataZone::EnvironmentBlueprintConfiguration Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html}
|
|
6
|
+
*/
|
|
7
|
+
export type DataZoneEnvironmentBlueprintConfigurationProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
10
|
+
*/
|
|
11
|
+
DomainIdentifier: string;
|
|
12
|
+
/**
|
|
13
|
+
* @minLength `0`
|
|
14
|
+
*/
|
|
15
|
+
EnabledRegions: string[];
|
|
16
|
+
/**
|
|
17
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
18
|
+
*/
|
|
19
|
+
EnvironmentBlueprintIdentifier: string;
|
|
20
|
+
/**
|
|
21
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]*$`
|
|
22
|
+
*/
|
|
23
|
+
ManageAccessRoleArn?: string;
|
|
24
|
+
/**
|
|
25
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]*$`
|
|
26
|
+
*/
|
|
27
|
+
ProvisioningRoleArn?: string;
|
|
28
|
+
RegionalParameters?: RegionalParameter[];
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* Attribute type definition for `AWS::DataZone::EnvironmentBlueprintConfiguration`.
|
|
32
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#aws-resource-datazone-environmentblueprintconfiguration-return-values}
|
|
33
|
+
*/
|
|
34
|
+
export type DataZoneEnvironmentBlueprintConfigurationAttributes = {
|
|
35
|
+
CreatedAt: string;
|
|
36
|
+
/**
|
|
37
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
38
|
+
*/
|
|
39
|
+
DomainId: string;
|
|
40
|
+
/**
|
|
41
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
42
|
+
*/
|
|
43
|
+
EnvironmentBlueprintId: string;
|
|
44
|
+
UpdatedAt: string;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* Type definition for `AWS::DataZone::EnvironmentBlueprintConfiguration.Parameter`.
|
|
48
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-parameter.html}
|
|
49
|
+
*/
|
|
50
|
+
export type Parameter = Record<string, string>;
|
|
51
|
+
/**
|
|
52
|
+
* Type definition for `AWS::DataZone::EnvironmentBlueprintConfiguration.RegionalParameter`.
|
|
53
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-regionalparameter.html}
|
|
54
|
+
*/
|
|
55
|
+
export type RegionalParameter = {
|
|
56
|
+
Parameters?: Parameter;
|
|
57
|
+
/**
|
|
58
|
+
* @pattern `^[a-z]{2}-?(iso|gov)?-{1}[a-z]*-{1}[0-9]$`
|
|
59
|
+
*/
|
|
60
|
+
Region?: string;
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* Definition of AWS::DataZone::EnvironmentBlueprintConfiguration Resource Type
|
|
64
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html}
|
|
65
|
+
*/
|
|
66
|
+
export declare class DataZoneEnvironmentBlueprintConfiguration extends $Resource<"AWS::DataZone::EnvironmentBlueprintConfiguration", DataZoneEnvironmentBlueprintConfigurationProperties, DataZoneEnvironmentBlueprintConfigurationAttributes> {
|
|
67
|
+
static readonly Type = "AWS::DataZone::EnvironmentBlueprintConfiguration";
|
|
68
|
+
constructor(logicalId: string, properties: DataZoneEnvironmentBlueprintConfigurationProperties, options?: $ResourceOptions);
|
|
69
|
+
}
|
|
70
|
+
//# sourceMappingURL=AWS-DataZone-EnvironmentBlueprintConfiguration.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/Resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::DataZone::EnvironmentBlueprintConfiguration Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html}
|
|
5
|
+
*/
|
|
6
|
+
export class DataZoneEnvironmentBlueprintConfiguration extends $Resource {
|
|
7
|
+
static Type = "AWS::DataZone::EnvironmentBlueprintConfiguration";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, DataZoneEnvironmentBlueprintConfiguration.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-DataZone-EnvironmentBlueprintConfiguration.js.map
|
|
@@ -0,0 +1,113 @@
|
|
|
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::EnvironmentProfile`.
|
|
5
|
+
* AWS Datazone Environment Profile is pre-configured set of resources and blueprints that provide reusable templates for creating environments.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentprofile.html}
|
|
7
|
+
*/
|
|
8
|
+
export type DataZoneEnvironmentProfileProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The AWS account in which the Amazon DataZone environment is created.
|
|
11
|
+
* @pattern `^\d{12}$`
|
|
12
|
+
*/
|
|
13
|
+
AwsAccountId?: string;
|
|
14
|
+
/**
|
|
15
|
+
* The AWS region in which this environment profile is created.
|
|
16
|
+
* @pattern `^[a-z]{2}-[a-z]{4,10}-\d$`
|
|
17
|
+
*/
|
|
18
|
+
AwsAccountRegion?: string;
|
|
19
|
+
/**
|
|
20
|
+
* The description of this Amazon DataZone environment profile.
|
|
21
|
+
* @maxLength `2048`
|
|
22
|
+
*/
|
|
23
|
+
Description?: string;
|
|
24
|
+
/**
|
|
25
|
+
* The ID of the Amazon DataZone domain in which this environment profile is created.
|
|
26
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
27
|
+
*/
|
|
28
|
+
DomainIdentifier: string;
|
|
29
|
+
/**
|
|
30
|
+
* The ID of the blueprint with which this environment profile is created.
|
|
31
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
32
|
+
*/
|
|
33
|
+
EnvironmentBlueprintIdentifier: string;
|
|
34
|
+
/**
|
|
35
|
+
* The name of this Amazon DataZone environment profile.
|
|
36
|
+
* @minLength `1`
|
|
37
|
+
* @maxLength `64`
|
|
38
|
+
* @pattern `^[\w -]+$`
|
|
39
|
+
*/
|
|
40
|
+
Name: string;
|
|
41
|
+
/**
|
|
42
|
+
* The identifier of the project in which to create the environment profile.
|
|
43
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
44
|
+
*/
|
|
45
|
+
ProjectIdentifier: string;
|
|
46
|
+
/**
|
|
47
|
+
* The user parameters of this Amazon DataZone environment profile.
|
|
48
|
+
*/
|
|
49
|
+
UserParameters?: EnvironmentParameter[];
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* Attribute type definition for `AWS::DataZone::EnvironmentProfile`.
|
|
53
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentprofile.html#aws-resource-datazone-environmentprofile-return-values}
|
|
54
|
+
*/
|
|
55
|
+
export type DataZoneEnvironmentProfileAttributes = {
|
|
56
|
+
/**
|
|
57
|
+
* The timestamp of when this environment profile was created.
|
|
58
|
+
*/
|
|
59
|
+
CreatedAt: string;
|
|
60
|
+
/**
|
|
61
|
+
* The Amazon DataZone user who created this environment profile.
|
|
62
|
+
*/
|
|
63
|
+
CreatedBy: string;
|
|
64
|
+
/**
|
|
65
|
+
* The ID of the Amazon DataZone domain in which this environment profile is created.
|
|
66
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
67
|
+
*/
|
|
68
|
+
DomainId: string;
|
|
69
|
+
/**
|
|
70
|
+
* The ID of the blueprint with which this environment profile is created.
|
|
71
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
72
|
+
*/
|
|
73
|
+
EnvironmentBlueprintId: string;
|
|
74
|
+
/**
|
|
75
|
+
* The ID of this Amazon DataZone environment profile.
|
|
76
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
77
|
+
*/
|
|
78
|
+
Id: string;
|
|
79
|
+
/**
|
|
80
|
+
* The identifier of the project in which to create the environment profile.
|
|
81
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
82
|
+
*/
|
|
83
|
+
ProjectId: string;
|
|
84
|
+
/**
|
|
85
|
+
* The timestamp of when this environment profile was updated.
|
|
86
|
+
*/
|
|
87
|
+
UpdatedAt: string;
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* Type definition for `AWS::DataZone::EnvironmentProfile.EnvironmentParameter`.
|
|
91
|
+
* The parameter details of an environment profile.
|
|
92
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentprofile-environmentparameter.html}
|
|
93
|
+
*/
|
|
94
|
+
export type EnvironmentParameter = {
|
|
95
|
+
/**
|
|
96
|
+
* The name of an environment profile parameter.
|
|
97
|
+
*/
|
|
98
|
+
Name?: string;
|
|
99
|
+
/**
|
|
100
|
+
* The value of an environment profile parameter.
|
|
101
|
+
*/
|
|
102
|
+
Value?: string;
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* Resource type definition for `AWS::DataZone::EnvironmentProfile`.
|
|
106
|
+
* AWS Datazone Environment Profile is pre-configured set of resources and blueprints that provide reusable templates for creating environments.
|
|
107
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentprofile.html}
|
|
108
|
+
*/
|
|
109
|
+
export declare class DataZoneEnvironmentProfile extends $Resource<"AWS::DataZone::EnvironmentProfile", DataZoneEnvironmentProfileProperties, DataZoneEnvironmentProfileAttributes> {
|
|
110
|
+
static readonly Type = "AWS::DataZone::EnvironmentProfile";
|
|
111
|
+
constructor(logicalId: string, properties: DataZoneEnvironmentProfileProperties, options?: $ResourceOptions);
|
|
112
|
+
}
|
|
113
|
+
//# sourceMappingURL=AWS-DataZone-EnvironmentProfile.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::EnvironmentProfile`.
|
|
4
|
+
* AWS Datazone Environment Profile is pre-configured set of resources and blueprints that provide reusable templates for creating environments.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentprofile.html}
|
|
6
|
+
*/
|
|
7
|
+
export class DataZoneEnvironmentProfile extends $Resource {
|
|
8
|
+
static Type = "AWS::DataZone::EnvironmentProfile";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, DataZoneEnvironmentProfile.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-DataZone-EnvironmentProfile.js.map
|
|
@@ -0,0 +1,70 @@
|
|
|
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::Project`.
|
|
5
|
+
* Amazon DataZone projects are business use case–based groupings of people, assets (data), and tools used to simplify access to the AWS analytics.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html}
|
|
7
|
+
*/
|
|
8
|
+
export type DataZoneProjectProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The description of the Amazon DataZone project.
|
|
11
|
+
* @maxLength `2048`
|
|
12
|
+
*/
|
|
13
|
+
Description?: string;
|
|
14
|
+
/**
|
|
15
|
+
* The ID of the Amazon DataZone domain in which this project is created.
|
|
16
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
17
|
+
*/
|
|
18
|
+
DomainIdentifier: string;
|
|
19
|
+
/**
|
|
20
|
+
* The glossary terms that can be used in this Amazon DataZone project.
|
|
21
|
+
* @minLength `1`
|
|
22
|
+
* @maxLength `20`
|
|
23
|
+
*/
|
|
24
|
+
GlossaryTerms?: string[];
|
|
25
|
+
/**
|
|
26
|
+
* The name of the Amazon DataZone project.
|
|
27
|
+
* @minLength `1`
|
|
28
|
+
* @maxLength `64`
|
|
29
|
+
* @pattern `^[\w -]+$`
|
|
30
|
+
*/
|
|
31
|
+
Name: string;
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* Attribute type definition for `AWS::DataZone::Project`.
|
|
35
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#aws-resource-datazone-project-return-values}
|
|
36
|
+
*/
|
|
37
|
+
export type DataZoneProjectAttributes = {
|
|
38
|
+
/**
|
|
39
|
+
* The timestamp of when the project was created.
|
|
40
|
+
*/
|
|
41
|
+
CreatedAt: string;
|
|
42
|
+
/**
|
|
43
|
+
* The Amazon DataZone user who created the project.
|
|
44
|
+
*/
|
|
45
|
+
CreatedBy: string;
|
|
46
|
+
/**
|
|
47
|
+
* The identifier of the Amazon DataZone domain in which the project was created.
|
|
48
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
49
|
+
*/
|
|
50
|
+
DomainId: string;
|
|
51
|
+
/**
|
|
52
|
+
* The ID of the Amazon DataZone project.
|
|
53
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
54
|
+
*/
|
|
55
|
+
Id: string;
|
|
56
|
+
/**
|
|
57
|
+
* The timestamp of when the project was last updated.
|
|
58
|
+
*/
|
|
59
|
+
LastUpdatedAt: string;
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* Resource type definition for `AWS::DataZone::Project`.
|
|
63
|
+
* Amazon DataZone projects are business use case–based groupings of people, assets (data), and tools used to simplify access to the AWS analytics.
|
|
64
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html}
|
|
65
|
+
*/
|
|
66
|
+
export declare class DataZoneProject extends $Resource<"AWS::DataZone::Project", DataZoneProjectProperties, DataZoneProjectAttributes> {
|
|
67
|
+
static readonly Type = "AWS::DataZone::Project";
|
|
68
|
+
constructor(logicalId: string, properties: DataZoneProjectProperties, options?: $ResourceOptions);
|
|
69
|
+
}
|
|
70
|
+
//# sourceMappingURL=AWS-DataZone-Project.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::Project`.
|
|
4
|
+
* Amazon DataZone projects are business use case–based groupings of people, assets (data), and tools used to simplify access to the AWS analytics.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html}
|
|
6
|
+
*/
|
|
7
|
+
export class DataZoneProject extends $Resource {
|
|
8
|
+
static Type = "AWS::DataZone::Project";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, DataZoneProject.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-DataZone-Project.js.map
|
|
@@ -0,0 +1,121 @@
|
|
|
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::SubscriptionTarget`.
|
|
5
|
+
* Subscription targets enables one to access the data to which you have subscribed in your projects.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html}
|
|
7
|
+
*/
|
|
8
|
+
export type DataZoneSubscriptionTargetProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The asset types that can be included in the subscription target.
|
|
11
|
+
*/
|
|
12
|
+
ApplicableAssetTypes: string[];
|
|
13
|
+
/**
|
|
14
|
+
* The authorized principals of the subscription target.
|
|
15
|
+
* @minLength `1`
|
|
16
|
+
* @maxLength `10`
|
|
17
|
+
*/
|
|
18
|
+
AuthorizedPrincipals: string[];
|
|
19
|
+
/**
|
|
20
|
+
* The ID of the Amazon DataZone domain in which subscription target would be created.
|
|
21
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
22
|
+
*/
|
|
23
|
+
DomainIdentifier: string;
|
|
24
|
+
/**
|
|
25
|
+
* The ID of the environment in which subscription target would be created.
|
|
26
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
27
|
+
*/
|
|
28
|
+
EnvironmentIdentifier: string;
|
|
29
|
+
/**
|
|
30
|
+
* The manage access role that is used to create the subscription target.
|
|
31
|
+
*/
|
|
32
|
+
ManageAccessRole: string;
|
|
33
|
+
/**
|
|
34
|
+
* The name of the subscription target.
|
|
35
|
+
* @minLength `1`
|
|
36
|
+
* @maxLength `256`
|
|
37
|
+
*/
|
|
38
|
+
Name: string;
|
|
39
|
+
/**
|
|
40
|
+
* The provider of the subscription target.
|
|
41
|
+
*/
|
|
42
|
+
Provider?: string;
|
|
43
|
+
/**
|
|
44
|
+
* The configuration of the subscription target.
|
|
45
|
+
*/
|
|
46
|
+
SubscriptionTargetConfig: SubscriptionTargetForm[];
|
|
47
|
+
/**
|
|
48
|
+
* The type of the subscription target.
|
|
49
|
+
*/
|
|
50
|
+
Type: string;
|
|
51
|
+
};
|
|
52
|
+
/**
|
|
53
|
+
* Attribute type definition for `AWS::DataZone::SubscriptionTarget`.
|
|
54
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html#aws-resource-datazone-subscriptiontarget-return-values}
|
|
55
|
+
*/
|
|
56
|
+
export type DataZoneSubscriptionTargetAttributes = {
|
|
57
|
+
/**
|
|
58
|
+
* The timestamp of when the subscription target was created.
|
|
59
|
+
*/
|
|
60
|
+
CreatedAt: string;
|
|
61
|
+
/**
|
|
62
|
+
* The Amazon DataZone user who created the subscription target.
|
|
63
|
+
*/
|
|
64
|
+
CreatedBy: string;
|
|
65
|
+
/**
|
|
66
|
+
* The ID of the Amazon DataZone domain in which subscription target is created.
|
|
67
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
68
|
+
*/
|
|
69
|
+
DomainId: string;
|
|
70
|
+
/**
|
|
71
|
+
* The ID of the environment in which subscription target is created.
|
|
72
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
73
|
+
*/
|
|
74
|
+
EnvironmentId: string;
|
|
75
|
+
/**
|
|
76
|
+
* The ID of the subscription target.
|
|
77
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
78
|
+
*/
|
|
79
|
+
Id: string;
|
|
80
|
+
/**
|
|
81
|
+
* The identifier of the project specified in the subscription target.
|
|
82
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
83
|
+
*/
|
|
84
|
+
ProjectId: string;
|
|
85
|
+
/**
|
|
86
|
+
* The timestamp of when the subscription target was updated.
|
|
87
|
+
*/
|
|
88
|
+
UpdatedAt: string;
|
|
89
|
+
/**
|
|
90
|
+
* The Amazon DataZone user who updated the subscription target.
|
|
91
|
+
*/
|
|
92
|
+
UpdatedBy: string;
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* Type definition for `AWS::DataZone::SubscriptionTarget.SubscriptionTargetForm`.
|
|
96
|
+
* The details of the subscription target configuration.
|
|
97
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-subscriptiontarget-subscriptiontargetform.html}
|
|
98
|
+
*/
|
|
99
|
+
export type SubscriptionTargetForm = {
|
|
100
|
+
/**
|
|
101
|
+
* The content of the subscription target configuration.
|
|
102
|
+
*/
|
|
103
|
+
Content: string;
|
|
104
|
+
/**
|
|
105
|
+
* The form name included in the subscription target configuration.
|
|
106
|
+
* @minLength `1`
|
|
107
|
+
* @maxLength `128`
|
|
108
|
+
* @pattern `^(?![0-9_])\w+$|^_\w*[a-zA-Z0-9]\w*$`
|
|
109
|
+
*/
|
|
110
|
+
FormName: string;
|
|
111
|
+
};
|
|
112
|
+
/**
|
|
113
|
+
* Resource type definition for `AWS::DataZone::SubscriptionTarget`.
|
|
114
|
+
* Subscription targets enables one to access the data to which you have subscribed in your projects.
|
|
115
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html}
|
|
116
|
+
*/
|
|
117
|
+
export declare class DataZoneSubscriptionTarget extends $Resource<"AWS::DataZone::SubscriptionTarget", DataZoneSubscriptionTargetProperties, DataZoneSubscriptionTargetAttributes> {
|
|
118
|
+
static readonly Type = "AWS::DataZone::SubscriptionTarget";
|
|
119
|
+
constructor(logicalId: string, properties: DataZoneSubscriptionTargetProperties, options?: $ResourceOptions);
|
|
120
|
+
}
|
|
121
|
+
//# sourceMappingURL=AWS-DataZone-SubscriptionTarget.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::SubscriptionTarget`.
|
|
4
|
+
* Subscription targets enables one to access the data to which you have subscribed in your projects.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-subscriptiontarget.html}
|
|
6
|
+
*/
|
|
7
|
+
export class DataZoneSubscriptionTarget extends $Resource {
|
|
8
|
+
static Type = "AWS::DataZone::SubscriptionTarget";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, DataZoneSubscriptionTarget.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-DataZone-SubscriptionTarget.js.map
|
|
@@ -395,6 +395,22 @@ export type CaptionSelectorSettings = {
|
|
|
395
395
|
export type CdiInputSpecification = {
|
|
396
396
|
Resolution?: string;
|
|
397
397
|
};
|
|
398
|
+
/**
|
|
399
|
+
* Type definition for `AWS::MediaLive::Channel.ColorCorrection`.
|
|
400
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-colorcorrection.html}
|
|
401
|
+
*/
|
|
402
|
+
export type ColorCorrection = {
|
|
403
|
+
InputColorSpace?: string;
|
|
404
|
+
OutputColorSpace?: string;
|
|
405
|
+
Uri?: string;
|
|
406
|
+
};
|
|
407
|
+
/**
|
|
408
|
+
* Type definition for `AWS::MediaLive::Channel.ColorCorrectionSettings`.
|
|
409
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-colorcorrectionsettings.html}
|
|
410
|
+
*/
|
|
411
|
+
export type ColorCorrectionSettings = {
|
|
412
|
+
GlobalColorCorrections?: ColorCorrection[];
|
|
413
|
+
};
|
|
398
414
|
/**
|
|
399
415
|
* Type definition for `AWS::MediaLive::Channel.ColorSpacePassthroughSettings`.
|
|
400
416
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-colorspacepassthroughsettings.html}
|
|
@@ -541,6 +557,7 @@ export type EncoderSettings = {
|
|
|
541
557
|
AvailConfiguration?: AvailConfiguration;
|
|
542
558
|
BlackoutSlate?: BlackoutSlate;
|
|
543
559
|
CaptionDescriptions?: CaptionDescription[];
|
|
560
|
+
ColorCorrectionSettings?: ColorCorrectionSettings;
|
|
544
561
|
FeatureActivations?: FeatureActivations;
|
|
545
562
|
GlobalConfiguration?: GlobalConfiguration;
|
|
546
563
|
MotionGraphicsConfiguration?: MotionGraphicsConfiguration;
|
|
@@ -69,6 +69,7 @@ export type AdvancedSecurityOptionsInput = {
|
|
|
69
69
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-clusterconfig.html}
|
|
70
70
|
*/
|
|
71
71
|
export type ClusterConfig = {
|
|
72
|
+
ColdStorageOptions?: ColdStorageOptions;
|
|
72
73
|
DedicatedMasterCount?: number;
|
|
73
74
|
DedicatedMasterEnabled?: boolean;
|
|
74
75
|
DedicatedMasterType?: string;
|
|
@@ -91,6 +92,13 @@ export type CognitoOptions = {
|
|
|
91
92
|
RoleArn?: string;
|
|
92
93
|
UserPoolId?: string;
|
|
93
94
|
};
|
|
95
|
+
/**
|
|
96
|
+
* Type definition for `AWS::OpenSearchService::Domain.ColdStorageOptions`.
|
|
97
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-coldstorageoptions.html}
|
|
98
|
+
*/
|
|
99
|
+
export type ColdStorageOptions = {
|
|
100
|
+
Enabled?: boolean;
|
|
101
|
+
};
|
|
94
102
|
/**
|
|
95
103
|
* Type definition for `AWS::OpenSearchService::Domain.DomainEndpointOptions`.
|
|
96
104
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-domainendpointoptions.html}
|
|
@@ -87,7 +87,7 @@ export type RDSDBClusterProperties = {
|
|
|
87
87
|
*/
|
|
88
88
|
EnableGlobalWriteForwarding?: boolean;
|
|
89
89
|
/**
|
|
90
|
-
* A value that indicates whether to enable the HTTP endpoint for
|
|
90
|
+
* A value that indicates whether to enable the HTTP endpoint for DB cluster. By default, the HTTP endpoint is disabled.
|
|
91
91
|
*/
|
|
92
92
|
EnableHttpEndpoint?: boolean;
|
|
93
93
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awboost/cfn-resource-types",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"scripts": {
|
|
28
28
|
"lint": "eslint src/ --ext=ts",
|
|
29
29
|
"postpublish": "npm run tag-version && git push --follow-tags",
|
|
30
|
+
"postversion": "npm --prefix=../.. run sync-versions && git commit -am ${npm_package_name}@${npm_package_version}",
|
|
30
31
|
"preversion": "git diff-index --quiet HEAD -- || ! echo 'Uncommitted changes present'",
|
|
31
|
-
"tag-version": "git tag -a ${npm_package_name}@${npm_package_version} -m ${npm_package_name}@v${npm_package_version}"
|
|
32
|
-
"version": "git add -A && git commit -m ${npm_package_name}@${npm_package_version}"
|
|
32
|
+
"tag-version": "git tag -a ${npm_package_name}@${npm_package_version} -m ${npm_package_name}@v${npm_package_version}"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@awboost/cfn-codegen": "^0.1.
|
|
35
|
+
"@awboost/cfn-codegen": "^0.1.2"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@awboost/cfn-template-builder": ">=0.2.0"
|