@awboost/cfn-resource-types 0.1.247 → 0.1.248

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.
@@ -16,6 +16,10 @@ export type DataZoneDataSourceProperties = {
16
16
  * Configuration of the data source. It can be set to either glueRunConfiguration or redshiftRunConfiguration.
17
17
  */
18
18
  Configuration?: DataSourceConfigurationInput;
19
+ /**
20
+ * The unique identifier of a connection used to fetch relevant parameters from connection during Datasource run
21
+ */
22
+ ConnectionIdentifier?: string;
19
23
  /**
20
24
  * The description of the data source.
21
25
  * @maxLength `2048`
@@ -33,7 +37,7 @@ export type DataZoneDataSourceProperties = {
33
37
  /**
34
38
  * The unique identifier of the Amazon DataZone environment to which the data source publishes assets.
35
39
  */
36
- EnvironmentIdentifier: string;
40
+ EnvironmentIdentifier?: string;
37
41
  /**
38
42
  * The name of the data source.
39
43
  * @minLength `1`
@@ -68,6 +72,10 @@ export type DataZoneDataSourceProperties = {
68
72
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html#aws-resource-datazone-datasource-return-values}
69
73
  */
70
74
  export type DataZoneDataSourceAttributes = {
75
+ /**
76
+ * The unique identifier of a connection used to fetch relevant parameters from connection during Datasource run
77
+ */
78
+ ConnectionId: string;
71
79
  /**
72
80
  * The timestamp of when the data source was created.
73
81
  */
@@ -79,7 +87,6 @@ export type DataZoneDataSourceAttributes = {
79
87
  DomainId: string;
80
88
  /**
81
89
  * The unique identifier of the Amazon DataZone environment to which the data source publishes assets.
82
- * @pattern `^[a-zA-Z0-9_-]{1,36}$`
83
90
  */
84
91
  EnvironmentId: string;
85
92
  /**
@@ -206,6 +213,12 @@ export type GlueRunConfigurationInput = {
206
213
  * Specifies whether to automatically import data quality metrics as part of the data source run.
207
214
  */
208
215
  AutoImportDataQualityResult?: boolean;
216
+ /**
217
+ * The catalog name in the AWS Glue run configuration.
218
+ * @minLength `1`
219
+ * @maxLength `128`
220
+ */
221
+ CatalogName?: string;
209
222
  /**
210
223
  * The data access role included in the configuration details of the AWS Glue data source.
211
224
  * @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]{1,128}$`
@@ -268,11 +281,11 @@ export type RedshiftRunConfigurationInput = {
268
281
  /**
269
282
  * The details of the credentials required to access an Amazon Redshift cluster.
270
283
  */
271
- RedshiftCredentialConfiguration: RedshiftCredentialConfiguration;
284
+ RedshiftCredentialConfiguration?: RedshiftCredentialConfiguration;
272
285
  /**
273
286
  * The details of the Amazon Redshift storage as part of the configuration of an Amazon Redshift data source run.
274
287
  */
275
- RedshiftStorage: RedshiftStorage;
288
+ RedshiftStorage?: RedshiftStorage;
276
289
  /**
277
290
  * The relational filter configurations included in the configuration details of the Amazon Redshift data source.
278
291
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.247",
3
+ "version": "0.1.248",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },