@awboost/cfn-resource-types 0.1.156 → 0.1.158
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-EC2-NatGateway.d.ts +1 -1
- package/lib/AWS-ElasticLoadBalancingV2-Listener.d.ts +12 -0
- package/lib/AWS-Glue-Crawler.d.ts +8 -171
- package/lib/AWS-Glue-Job.d.ts +93 -9
- package/lib/AWS-Glue-UsageProfile.d.ts +90 -0
- package/lib/AWS-Glue-UsageProfile.js +13 -0
- package/lib/AWS-LakeFormation-PrincipalPermissions.d.ts +1 -1
- package/lib/AWS-LakeFormation-Tag.d.ts +1 -1
- package/lib/AWS-QuickSight-Analysis.d.ts +12 -0
- package/lib/AWS-QuickSight-Dashboard.d.ts +12 -0
- package/lib/AWS-QuickSight-Folder.d.ts +130 -0
- package/lib/AWS-QuickSight-Folder.js +12 -0
- package/lib/AWS-QuickSight-Template.d.ts +12 -0
- package/package.json +1 -1
|
@@ -26,7 +26,7 @@ export type EC2NatGatewayProperties = {
|
|
|
26
26
|
*/
|
|
27
27
|
PrivateIpAddress?: string;
|
|
28
28
|
/**
|
|
29
|
-
* Secondary EIP allocation IDs. For more information, see [Create a NAT gateway](https://docs.aws.amazon.com/vpc/latest/userguide/
|
|
29
|
+
* Secondary EIP allocation IDs. For more information, see [Create a NAT gateway](https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html) in the *Amazon VPC User Guide*.
|
|
30
30
|
*/
|
|
31
31
|
SecondaryAllocationIds?: string[];
|
|
32
32
|
/**
|
|
@@ -20,6 +20,9 @@ export type ElasticLoadBalancingV2ListenerProperties = {
|
|
|
20
20
|
To create additional rules for an Application Load Balancer, use [AWS::ElasticLoadBalancingV2::ListenerRule](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html).
|
|
21
21
|
*/
|
|
22
22
|
DefaultActions: Action[];
|
|
23
|
+
/**
|
|
24
|
+
* The listener attributes.
|
|
25
|
+
*/
|
|
23
26
|
ListenerAttributes?: ListenerAttribute[];
|
|
24
27
|
/**
|
|
25
28
|
* The Amazon Resource Name (ARN) of the load balancer.
|
|
@@ -240,10 +243,19 @@ export type ForwardConfig = {
|
|
|
240
243
|
};
|
|
241
244
|
/**
|
|
242
245
|
* Type definition for `AWS::ElasticLoadBalancingV2::Listener.ListenerAttribute`.
|
|
246
|
+
* Information about a listener attribute.
|
|
243
247
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-listenerattribute.html}
|
|
244
248
|
*/
|
|
245
249
|
export type ListenerAttribute = {
|
|
250
|
+
/**
|
|
251
|
+
* The name of the attribute.
|
|
252
|
+
The following attribute is supported by Network Load Balancers, and Gateway Load Balancers.
|
|
253
|
+
+ ``tcp.idle_timeout.seconds`` - The tcp idle timeout value, in seconds. The valid range is 60-6000 seconds. The default is 350 seconds.
|
|
254
|
+
*/
|
|
246
255
|
Key?: string;
|
|
256
|
+
/**
|
|
257
|
+
* The value of the attribute.
|
|
258
|
+
*/
|
|
247
259
|
Value?: string;
|
|
248
260
|
};
|
|
249
261
|
/**
|
|
@@ -5,307 +5,144 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html}
|
|
6
6
|
*/
|
|
7
7
|
export type GlueCrawlerProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* A list of UTF-8 strings that specify the names of custom classifiers that are associated with the crawler.
|
|
10
|
-
*/
|
|
11
8
|
Classifiers?: string[];
|
|
12
|
-
/**
|
|
13
|
-
* Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior.
|
|
14
|
-
*/
|
|
15
9
|
Configuration?: string;
|
|
16
|
-
/**
|
|
17
|
-
* The name of the SecurityConfiguration structure to be used by this crawler.
|
|
18
|
-
*/
|
|
19
10
|
CrawlerSecurityConfiguration?: string;
|
|
20
|
-
/**
|
|
21
|
-
* The name of the database in which the crawler's output is stored.
|
|
22
|
-
*/
|
|
23
11
|
DatabaseName?: string;
|
|
24
|
-
/**
|
|
25
|
-
* A description of the crawler.
|
|
26
|
-
*/
|
|
27
12
|
Description?: string;
|
|
28
|
-
/**
|
|
29
|
-
* Specifies AWS Lake Formation configuration settings for the crawler
|
|
30
|
-
*/
|
|
31
13
|
LakeFormationConfiguration?: LakeFormationConfiguration;
|
|
32
|
-
/**
|
|
33
|
-
* The name of the crawler.
|
|
34
|
-
*/
|
|
35
14
|
Name?: string;
|
|
36
|
-
/**
|
|
37
|
-
* When crawling an Amazon S3 data source after the first crawl is complete, specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run. For more information, see Incremental Crawls in AWS Glue in the developer guide.
|
|
38
|
-
*/
|
|
39
15
|
RecrawlPolicy?: RecrawlPolicy;
|
|
40
|
-
/**
|
|
41
|
-
* The Amazon Resource Name (ARN) of an IAM role that's used to access customer resources, such as Amazon Simple Storage Service (Amazon S3) data.
|
|
42
|
-
*/
|
|
43
16
|
Role: string;
|
|
44
|
-
/**
|
|
45
|
-
* A scheduling object using a cron statement to schedule an event.
|
|
46
|
-
*/
|
|
47
17
|
Schedule?: Schedule;
|
|
48
|
-
/**
|
|
49
|
-
* The policy that specifies update and delete behaviors for the crawler. The policy tells the crawler what to do in the event that it detects a change in a table that already exists in the customer's database at the time of the crawl. The SchemaChangePolicy does not affect whether or how new tables and partitions are added. New tables and partitions are always created regardless of the SchemaChangePolicy on a crawler. The SchemaChangePolicy consists of two components, UpdateBehavior and DeleteBehavior.
|
|
50
|
-
*/
|
|
51
18
|
SchemaChangePolicy?: SchemaChangePolicy;
|
|
52
|
-
/**
|
|
53
|
-
* The prefix added to the names of tables that are created.
|
|
54
|
-
*/
|
|
55
19
|
TablePrefix?: string;
|
|
56
|
-
/**
|
|
57
|
-
* The tags to use with this crawler.
|
|
58
|
-
*/
|
|
59
20
|
Tags?: Record<string, any>;
|
|
60
|
-
/**
|
|
61
|
-
* Specifies data stores to crawl.
|
|
62
|
-
*/
|
|
63
21
|
Targets: Targets;
|
|
64
22
|
};
|
|
23
|
+
/**
|
|
24
|
+
* Attribute type definition for `AWS::Glue::Crawler`.
|
|
25
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#aws-resource-glue-crawler-return-values}
|
|
26
|
+
*/
|
|
27
|
+
export type GlueCrawlerAttributes = {
|
|
28
|
+
Id: string;
|
|
29
|
+
};
|
|
65
30
|
/**
|
|
66
31
|
* Type definition for `AWS::Glue::Crawler.CatalogTarget`.
|
|
67
|
-
* Specifies an AWS Glue Data Catalog target.
|
|
68
32
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-catalogtarget.html}
|
|
69
33
|
*/
|
|
70
34
|
export type CatalogTarget = {
|
|
71
|
-
/**
|
|
72
|
-
* The name of the connection for an Amazon S3-backed Data Catalog table to be a target of the crawl when using a Catalog connection type paired with a NETWORK Connection type.
|
|
73
|
-
*/
|
|
74
35
|
ConnectionName?: string;
|
|
75
|
-
/**
|
|
76
|
-
* The name of the database to be synchronized.
|
|
77
|
-
*/
|
|
78
36
|
DatabaseName?: string;
|
|
79
|
-
/**
|
|
80
|
-
* A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.
|
|
81
|
-
*/
|
|
82
37
|
DlqEventQueueArn?: string;
|
|
83
|
-
/**
|
|
84
|
-
* A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.
|
|
85
|
-
*/
|
|
86
38
|
EventQueueArn?: string;
|
|
87
|
-
/**
|
|
88
|
-
* A list of the tables to be synchronized.
|
|
89
|
-
*/
|
|
90
39
|
Tables?: string[];
|
|
91
40
|
};
|
|
92
41
|
/**
|
|
93
42
|
* Type definition for `AWS::Glue::Crawler.DeltaTarget`.
|
|
94
|
-
* Specifies a Delta data store to crawl one or more Delta tables.
|
|
95
43
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-deltatarget.html}
|
|
96
44
|
*/
|
|
97
45
|
export type DeltaTarget = {
|
|
98
|
-
/**
|
|
99
|
-
* The name of the connection to use to connect to the Delta table target.
|
|
100
|
-
*/
|
|
101
46
|
ConnectionName?: string;
|
|
102
|
-
/**
|
|
103
|
-
* Specifies whether the crawler will create native tables, to allow integration with query engines that support querying of the Delta transaction log directly.
|
|
104
|
-
*/
|
|
105
47
|
CreateNativeDeltaTable?: boolean;
|
|
106
48
|
DeltaTables?: string[];
|
|
107
|
-
/**
|
|
108
|
-
* Specifies whether to write the manifest files to the Delta table path.
|
|
109
|
-
*/
|
|
110
49
|
WriteManifest?: boolean;
|
|
111
50
|
};
|
|
112
51
|
/**
|
|
113
52
|
* Type definition for `AWS::Glue::Crawler.DynamoDBTarget`.
|
|
114
|
-
* Specifies an Amazon DynamoDB table to crawl.
|
|
115
53
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-dynamodbtarget.html}
|
|
116
54
|
*/
|
|
117
55
|
export type DynamoDBTarget = {
|
|
118
|
-
/**
|
|
119
|
-
* The name of the DynamoDB table to crawl.
|
|
120
|
-
*/
|
|
121
56
|
Path?: string;
|
|
122
57
|
};
|
|
123
58
|
/**
|
|
124
59
|
* Type definition for `AWS::Glue::Crawler.IcebergTarget`.
|
|
125
|
-
* Specifies Apache Iceberg data store targets.
|
|
126
60
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-icebergtarget.html}
|
|
127
61
|
*/
|
|
128
62
|
export type IcebergTarget = {
|
|
129
|
-
/**
|
|
130
|
-
* The name of the connection to use to connect to the Iceberg target.
|
|
131
|
-
*/
|
|
132
63
|
ConnectionName?: string;
|
|
133
|
-
/**
|
|
134
|
-
* A list of global patterns used to exclude from the crawl.
|
|
135
|
-
*/
|
|
136
64
|
Exclusions?: string[];
|
|
137
|
-
/**
|
|
138
|
-
* The maximum depth of Amazon S3 paths that the crawler can traverse to discover the Iceberg metadata folder in your Amazon S3 path. Used to limit the crawler run time.
|
|
139
|
-
*/
|
|
140
65
|
MaximumTraversalDepth?: number;
|
|
141
|
-
/**
|
|
142
|
-
* One or more Amazon S3 paths that contains Iceberg metadata folders as s3://bucket/prefix .
|
|
143
|
-
*/
|
|
144
66
|
Paths?: string[];
|
|
145
67
|
};
|
|
146
68
|
/**
|
|
147
69
|
* Type definition for `AWS::Glue::Crawler.JdbcTarget`.
|
|
148
|
-
* Specifies a JDBC data store to crawl.
|
|
149
70
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-jdbctarget.html}
|
|
150
71
|
*/
|
|
151
72
|
export type JdbcTarget = {
|
|
152
|
-
/**
|
|
153
|
-
* The name of the connection to use to connect to the JDBC target.
|
|
154
|
-
*/
|
|
155
73
|
ConnectionName?: string;
|
|
156
|
-
/**
|
|
157
|
-
* Specify a value of RAWTYPES or COMMENTS to enable additional metadata in table responses. RAWTYPES provides the native-level datatype. COMMENTS provides comments associated with a column or table in the database.
|
|
158
|
-
|
|
159
|
-
If you do not need additional metadata, keep the field empty.
|
|
160
|
-
*/
|
|
161
74
|
EnableAdditionalMetadata?: string[];
|
|
162
|
-
/**
|
|
163
|
-
* A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.
|
|
164
|
-
*/
|
|
165
75
|
Exclusions?: string[];
|
|
166
|
-
/**
|
|
167
|
-
* The path of the JDBC target.
|
|
168
|
-
*/
|
|
169
76
|
Path?: string;
|
|
170
77
|
};
|
|
171
78
|
/**
|
|
172
79
|
* Type definition for `AWS::Glue::Crawler.LakeFormationConfiguration`.
|
|
173
|
-
* Specifies AWS Lake Formation configuration settings for the crawler
|
|
174
80
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-lakeformationconfiguration.html}
|
|
175
81
|
*/
|
|
176
82
|
export type LakeFormationConfiguration = {
|
|
177
|
-
/**
|
|
178
|
-
* Required for cross account crawls. For same account crawls as the target data, this can be left as null.
|
|
179
|
-
*/
|
|
180
83
|
AccountId?: string;
|
|
181
|
-
/**
|
|
182
|
-
* Specifies whether to use AWS Lake Formation credentials for the crawler instead of the IAM role credentials.
|
|
183
|
-
*/
|
|
184
84
|
UseLakeFormationCredentials?: boolean;
|
|
185
85
|
};
|
|
186
86
|
/**
|
|
187
87
|
* Type definition for `AWS::Glue::Crawler.MongoDBTarget`.
|
|
188
|
-
* Specifies an Amazon DocumentDB or MongoDB data store to crawl.
|
|
189
88
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-mongodbtarget.html}
|
|
190
89
|
*/
|
|
191
90
|
export type MongoDBTarget = {
|
|
192
|
-
/**
|
|
193
|
-
* The name of the connection to use to connect to the Amazon DocumentDB or MongoDB target.
|
|
194
|
-
*/
|
|
195
91
|
ConnectionName?: string;
|
|
196
|
-
/**
|
|
197
|
-
* The path of the Amazon DocumentDB or MongoDB target (database/collection).
|
|
198
|
-
*/
|
|
199
92
|
Path?: string;
|
|
200
93
|
};
|
|
201
94
|
/**
|
|
202
95
|
* Type definition for `AWS::Glue::Crawler.RecrawlPolicy`.
|
|
203
|
-
* When crawling an Amazon S3 data source after the first crawl is complete, specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run. For more information, see Incremental Crawls in AWS Glue in the developer guide.
|
|
204
96
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-recrawlpolicy.html}
|
|
205
97
|
*/
|
|
206
98
|
export type RecrawlPolicy = {
|
|
207
|
-
/**
|
|
208
|
-
* Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run. A value of CRAWL_EVERYTHING specifies crawling the entire dataset again. A value of CRAWL_NEW_FOLDERS_ONLY specifies crawling only folders that were added since the last crawler run. A value of CRAWL_EVENT_MODE specifies crawling only the changes identified by Amazon S3 events.
|
|
209
|
-
*/
|
|
210
99
|
RecrawlBehavior?: string;
|
|
211
100
|
};
|
|
212
101
|
/**
|
|
213
102
|
* Type definition for `AWS::Glue::Crawler.S3Target`.
|
|
214
|
-
* Specifies a data store in Amazon Simple Storage Service (Amazon S3).
|
|
215
103
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-s3target.html}
|
|
216
104
|
*/
|
|
217
105
|
export type S3Target = {
|
|
218
|
-
/**
|
|
219
|
-
* The name of a connection which allows a job or crawler to access data in Amazon S3 within an Amazon Virtual Private Cloud environment (Amazon VPC).
|
|
220
|
-
*/
|
|
221
106
|
ConnectionName?: string;
|
|
222
|
-
/**
|
|
223
|
-
* A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.
|
|
224
|
-
*/
|
|
225
107
|
DlqEventQueueArn?: string;
|
|
226
|
-
/**
|
|
227
|
-
* A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.
|
|
228
|
-
*/
|
|
229
108
|
EventQueueArn?: string;
|
|
230
|
-
/**
|
|
231
|
-
* A list of glob patterns used to exclude from the crawl.
|
|
232
|
-
*/
|
|
233
109
|
Exclusions?: string[];
|
|
234
|
-
/**
|
|
235
|
-
* The path to the Amazon S3 target.
|
|
236
|
-
*/
|
|
237
110
|
Path?: string;
|
|
238
|
-
/**
|
|
239
|
-
* Sets the number of files in each leaf folder to be crawled when crawling sample files in a dataset. If not set, all the files are crawled. A valid value is an integer between 1 and 249.
|
|
240
|
-
*/
|
|
241
111
|
SampleSize?: number;
|
|
242
112
|
};
|
|
243
113
|
/**
|
|
244
114
|
* Type definition for `AWS::Glue::Crawler.Schedule`.
|
|
245
|
-
* A scheduling object using a cron statement to schedule an event.
|
|
246
115
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html}
|
|
247
116
|
*/
|
|
248
117
|
export type Schedule = {
|
|
249
|
-
/**
|
|
250
|
-
* A cron expression used to specify the schedule. For more information, see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, specify cron(15 12 * * ? *).
|
|
251
|
-
*/
|
|
252
118
|
ScheduleExpression?: string;
|
|
253
119
|
};
|
|
254
120
|
/**
|
|
255
121
|
* Type definition for `AWS::Glue::Crawler.SchemaChangePolicy`.
|
|
256
|
-
* The policy that specifies update and delete behaviors for the crawler. The policy tells the crawler what to do in the event that it detects a change in a table that already exists in the customer's database at the time of the crawl. The SchemaChangePolicy does not affect whether or how new tables and partitions are added. New tables and partitions are always created regardless of the SchemaChangePolicy on a crawler. The SchemaChangePolicy consists of two components, UpdateBehavior and DeleteBehavior.
|
|
257
122
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html}
|
|
258
123
|
*/
|
|
259
124
|
export type SchemaChangePolicy = {
|
|
260
|
-
/**
|
|
261
|
-
* The deletion behavior when the crawler finds a deleted object. A value of LOG specifies that if a table or partition is found to no longer exist, do not delete it, only log that it was found to no longer exist. A value of DELETE_FROM_DATABASE specifies that if a table or partition is found to have been removed, delete it from the database. A value of DEPRECATE_IN_DATABASE specifies that if a table has been found to no longer exist, to add a property to the table that says 'DEPRECATED' and includes a timestamp with the time of deprecation.
|
|
262
|
-
*/
|
|
263
125
|
DeleteBehavior?: string;
|
|
264
|
-
/**
|
|
265
|
-
* The update behavior when the crawler finds a changed schema. A value of LOG specifies that if a table or a partition already exists, and a change is detected, do not update it, only log that a change was detected. Add new tables and new partitions (including on existing tables). A value of UPDATE_IN_DATABASE specifies that if a table or partition already exists, and a change is detected, update it. Add new tables and partitions.
|
|
266
|
-
*/
|
|
267
126
|
UpdateBehavior?: string;
|
|
268
127
|
};
|
|
269
128
|
/**
|
|
270
129
|
* Type definition for `AWS::Glue::Crawler.Targets`.
|
|
271
|
-
* Specifies data stores to crawl.
|
|
272
130
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-targets.html}
|
|
273
131
|
*/
|
|
274
132
|
export type Targets = {
|
|
275
|
-
/**
|
|
276
|
-
* Specifies AWS Glue Data Catalog targets.
|
|
277
|
-
*/
|
|
278
133
|
CatalogTargets?: CatalogTarget[];
|
|
279
|
-
/**
|
|
280
|
-
* Specifies an array of Delta data store targets.
|
|
281
|
-
*/
|
|
282
134
|
DeltaTargets?: DeltaTarget[];
|
|
283
|
-
/**
|
|
284
|
-
* Specifies Amazon DynamoDB targets.
|
|
285
|
-
*/
|
|
286
135
|
DynamoDBTargets?: DynamoDBTarget[];
|
|
287
|
-
/**
|
|
288
|
-
* Specifies Apache Iceberg data store targets.
|
|
289
|
-
*/
|
|
290
136
|
IcebergTargets?: IcebergTarget[];
|
|
291
|
-
/**
|
|
292
|
-
* Specifies JDBC targets.
|
|
293
|
-
*/
|
|
294
137
|
JdbcTargets?: JdbcTarget[];
|
|
295
|
-
/**
|
|
296
|
-
* A list of Mongo DB targets.
|
|
297
|
-
*/
|
|
298
138
|
MongoDBTargets?: MongoDBTarget[];
|
|
299
|
-
/**
|
|
300
|
-
* Specifies Amazon Simple Storage Service (Amazon S3) targets.
|
|
301
|
-
*/
|
|
302
139
|
S3Targets?: S3Target[];
|
|
303
140
|
};
|
|
304
141
|
/**
|
|
305
142
|
* Resource Type definition for AWS::Glue::Crawler
|
|
306
143
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html}
|
|
307
144
|
*/
|
|
308
|
-
export declare class GlueCrawler extends $Resource<"AWS::Glue::Crawler", GlueCrawlerProperties,
|
|
145
|
+
export declare class GlueCrawler extends $Resource<"AWS::Glue::Crawler", GlueCrawlerProperties, GlueCrawlerAttributes> {
|
|
309
146
|
static readonly Type = "AWS::Glue::Crawler";
|
|
310
147
|
constructor(logicalId: string, properties: GlueCrawlerProperties, options?: $ResourceOptions);
|
|
311
148
|
}
|
package/lib/AWS-Glue-Job.d.ts
CHANGED
|
@@ -5,41 +5,107 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html}
|
|
6
6
|
*/
|
|
7
7
|
export type GlueJobProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The number of capacity units that are allocated to this job.
|
|
10
|
+
*/
|
|
8
11
|
AllocatedCapacity?: number;
|
|
12
|
+
/**
|
|
13
|
+
* The code that executes a job.
|
|
14
|
+
*/
|
|
9
15
|
Command: JobCommand;
|
|
16
|
+
/**
|
|
17
|
+
* Specifies the connections used by a job
|
|
18
|
+
*/
|
|
10
19
|
Connections?: ConnectionsList;
|
|
20
|
+
/**
|
|
21
|
+
* The default arguments for this job, specified as name-value pairs.
|
|
22
|
+
*/
|
|
11
23
|
DefaultArguments?: Record<string, any>;
|
|
24
|
+
/**
|
|
25
|
+
* A description of the job.
|
|
26
|
+
*/
|
|
12
27
|
Description?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Indicates whether the job is run with a standard or flexible execution class.
|
|
30
|
+
*/
|
|
13
31
|
ExecutionClass?: string;
|
|
32
|
+
/**
|
|
33
|
+
* The maximum number of concurrent runs that are allowed for this job.
|
|
34
|
+
*/
|
|
14
35
|
ExecutionProperty?: ExecutionProperty;
|
|
36
|
+
/**
|
|
37
|
+
* Glue version determines the versions of Apache Spark and Python that AWS Glue supports.
|
|
38
|
+
*/
|
|
15
39
|
GlueVersion?: string;
|
|
40
|
+
/**
|
|
41
|
+
* Property description not available.
|
|
42
|
+
*/
|
|
16
43
|
JobMode?: string;
|
|
44
|
+
/**
|
|
45
|
+
* Property description not available.
|
|
46
|
+
*/
|
|
47
|
+
JobRunQueuingEnabled?: boolean;
|
|
48
|
+
/**
|
|
49
|
+
* This field is reserved for future use.
|
|
50
|
+
*/
|
|
17
51
|
LogUri?: string;
|
|
52
|
+
/**
|
|
53
|
+
* Property description not available.
|
|
54
|
+
*/
|
|
18
55
|
MaintenanceWindow?: string;
|
|
56
|
+
/**
|
|
57
|
+
* The number of AWS Glue data processing units (DPUs) that can be allocated when this job runs.
|
|
58
|
+
*/
|
|
19
59
|
MaxCapacity?: number;
|
|
60
|
+
/**
|
|
61
|
+
* The maximum number of times to retry this job after a JobRun fails
|
|
62
|
+
*/
|
|
20
63
|
MaxRetries?: number;
|
|
64
|
+
/**
|
|
65
|
+
* The name you assign to the job definition
|
|
66
|
+
*/
|
|
21
67
|
Name?: string;
|
|
68
|
+
/**
|
|
69
|
+
* Non-overridable arguments for this job, specified as name-value pairs.
|
|
70
|
+
*/
|
|
22
71
|
NonOverridableArguments?: Record<string, any>;
|
|
72
|
+
/**
|
|
73
|
+
* Specifies configuration properties of a notification.
|
|
74
|
+
*/
|
|
23
75
|
NotificationProperty?: NotificationProperty;
|
|
76
|
+
/**
|
|
77
|
+
* The number of workers of a defined workerType that are allocated when a job runs.
|
|
78
|
+
*/
|
|
24
79
|
NumberOfWorkers?: number;
|
|
80
|
+
/**
|
|
81
|
+
* The name or Amazon Resource Name (ARN) of the IAM role associated with this job.
|
|
82
|
+
*/
|
|
25
83
|
Role: string;
|
|
84
|
+
/**
|
|
85
|
+
* The name of the SecurityConfiguration structure to be used with this job.
|
|
86
|
+
*/
|
|
26
87
|
SecurityConfiguration?: string;
|
|
88
|
+
/**
|
|
89
|
+
* The tags to use with this job.
|
|
90
|
+
*/
|
|
27
91
|
Tags?: Record<string, any>;
|
|
92
|
+
/**
|
|
93
|
+
* The maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status.
|
|
94
|
+
*/
|
|
28
95
|
Timeout?: number;
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#aws-resource-glue-job-return-values}
|
|
34
|
-
*/
|
|
35
|
-
export type GlueJobAttributes = {
|
|
36
|
-
Id: string;
|
|
96
|
+
/**
|
|
97
|
+
* TThe type of predefined worker that is allocated when a job runs.
|
|
98
|
+
*/
|
|
99
|
+
WorkerType?: "Standard" | "G.1X" | "G.2X" | "G.025X" | "G.4X" | "G.8X" | "Z.2X";
|
|
37
100
|
};
|
|
38
101
|
/**
|
|
39
102
|
* Type definition for `AWS::Glue::Job.ConnectionsList`.
|
|
40
103
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-connectionslist.html}
|
|
41
104
|
*/
|
|
42
105
|
export type ConnectionsList = {
|
|
106
|
+
/**
|
|
107
|
+
* A list of connections used by the job.
|
|
108
|
+
*/
|
|
43
109
|
Connections?: string[];
|
|
44
110
|
};
|
|
45
111
|
/**
|
|
@@ -47,6 +113,9 @@ export type ConnectionsList = {
|
|
|
47
113
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html}
|
|
48
114
|
*/
|
|
49
115
|
export type ExecutionProperty = {
|
|
116
|
+
/**
|
|
117
|
+
* The maximum number of concurrent runs allowed for the job.
|
|
118
|
+
*/
|
|
50
119
|
MaxConcurrentRuns?: number;
|
|
51
120
|
};
|
|
52
121
|
/**
|
|
@@ -54,9 +123,21 @@ export type ExecutionProperty = {
|
|
|
54
123
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html}
|
|
55
124
|
*/
|
|
56
125
|
export type JobCommand = {
|
|
126
|
+
/**
|
|
127
|
+
* The name of the job command
|
|
128
|
+
*/
|
|
57
129
|
Name?: string;
|
|
130
|
+
/**
|
|
131
|
+
* The Python version being used to execute a Python shell job.
|
|
132
|
+
*/
|
|
58
133
|
PythonVersion?: string;
|
|
134
|
+
/**
|
|
135
|
+
* Runtime is used to specify the versions of Ray, Python and additional libraries available in your environment
|
|
136
|
+
*/
|
|
59
137
|
Runtime?: string;
|
|
138
|
+
/**
|
|
139
|
+
* Specifies the Amazon Simple Storage Service (Amazon S3) path to a script that executes a job
|
|
140
|
+
*/
|
|
60
141
|
ScriptLocation?: string;
|
|
61
142
|
};
|
|
62
143
|
/**
|
|
@@ -64,13 +145,16 @@ export type JobCommand = {
|
|
|
64
145
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html}
|
|
65
146
|
*/
|
|
66
147
|
export type NotificationProperty = {
|
|
148
|
+
/**
|
|
149
|
+
* It is the number of minutes to wait before sending a job run delay notification after a job run starts
|
|
150
|
+
*/
|
|
67
151
|
NotifyDelayAfter?: number;
|
|
68
152
|
};
|
|
69
153
|
/**
|
|
70
154
|
* Resource Type definition for AWS::Glue::Job
|
|
71
155
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html}
|
|
72
156
|
*/
|
|
73
|
-
export declare class GlueJob extends $Resource<"AWS::Glue::Job", GlueJobProperties,
|
|
157
|
+
export declare class GlueJob extends $Resource<"AWS::Glue::Job", GlueJobProperties, Record<string, never>> {
|
|
74
158
|
static readonly Type = "AWS::Glue::Job";
|
|
75
159
|
constructor(logicalId: string, properties: GlueJobProperties, options?: $ResourceOptions);
|
|
76
160
|
}
|
|
@@ -0,0 +1,90 @@
|
|
|
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::Glue::UsageProfile`.
|
|
5
|
+
* This creates a Resource of UsageProfile type.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html}
|
|
7
|
+
*/
|
|
8
|
+
export type GlueUsageProfileProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* UsageProfile configuration for supported service ex: (Jobs, Sessions).
|
|
11
|
+
*/
|
|
12
|
+
Configuration?: ProfileConfiguration;
|
|
13
|
+
/**
|
|
14
|
+
* The description of the UsageProfile.
|
|
15
|
+
* @minLength `1`
|
|
16
|
+
* @maxLength `512`
|
|
17
|
+
* @pattern `[a-zA-Z0-9\-\:\_]{1,64}`
|
|
18
|
+
*/
|
|
19
|
+
Description?: string;
|
|
20
|
+
/**
|
|
21
|
+
* The name of the UsageProfile.
|
|
22
|
+
* @minLength `5`
|
|
23
|
+
* @maxLength `128`
|
|
24
|
+
*/
|
|
25
|
+
Name: string;
|
|
26
|
+
/**
|
|
27
|
+
* The tags to be applied to this UsageProfiles.
|
|
28
|
+
* @minLength `0`
|
|
29
|
+
* @maxLength `50`
|
|
30
|
+
*/
|
|
31
|
+
Tags?: Tag[];
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* Attribute type definition for `AWS::Glue::UsageProfile`.
|
|
35
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html#aws-resource-glue-usageprofile-return-values}
|
|
36
|
+
*/
|
|
37
|
+
export type GlueUsageProfileAttributes = {
|
|
38
|
+
/**
|
|
39
|
+
* Creation time.
|
|
40
|
+
* @minLength `1`
|
|
41
|
+
* @maxLength `128`
|
|
42
|
+
*/
|
|
43
|
+
CreatedOn: string;
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* Type definition for `AWS::Glue::UsageProfile.ConfigurationObject`.
|
|
47
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-usageprofile-configurationobject.html}
|
|
48
|
+
*/
|
|
49
|
+
export type ConfigurationObject = {
|
|
50
|
+
AllowedValues?: string[];
|
|
51
|
+
DefaultValue?: string;
|
|
52
|
+
MaxValue?: string;
|
|
53
|
+
MinValue?: string;
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* Type definition for `AWS::Glue::UsageProfile.ProfileConfiguration`.
|
|
57
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-usageprofile-profileconfiguration.html}
|
|
58
|
+
*/
|
|
59
|
+
export type ProfileConfiguration = {
|
|
60
|
+
JobConfiguration?: Record<string, ConfigurationObject>;
|
|
61
|
+
SessionConfiguration?: Record<string, ConfigurationObject>;
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* Type definition for `AWS::Glue::UsageProfile.Tag`.
|
|
65
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-usageprofile-tag.html}
|
|
66
|
+
*/
|
|
67
|
+
export type Tag = {
|
|
68
|
+
/**
|
|
69
|
+
* A key to identify the tag.
|
|
70
|
+
* @minLength `1`
|
|
71
|
+
* @maxLength `128`
|
|
72
|
+
*/
|
|
73
|
+
Key: string;
|
|
74
|
+
/**
|
|
75
|
+
* Corresponding tag value for the key.
|
|
76
|
+
* @minLength `0`
|
|
77
|
+
* @maxLength `256`
|
|
78
|
+
*/
|
|
79
|
+
Value: string;
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* Resource type definition for `AWS::Glue::UsageProfile`.
|
|
83
|
+
* This creates a Resource of UsageProfile type.
|
|
84
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html}
|
|
85
|
+
*/
|
|
86
|
+
export declare class GlueUsageProfile extends $Resource<"AWS::Glue::UsageProfile", GlueUsageProfileProperties, GlueUsageProfileAttributes> {
|
|
87
|
+
static readonly Type = "AWS::Glue::UsageProfile";
|
|
88
|
+
constructor(logicalId: string, properties: GlueUsageProfileProperties, options?: $ResourceOptions);
|
|
89
|
+
}
|
|
90
|
+
//# sourceMappingURL=AWS-Glue-UsageProfile.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::Glue::UsageProfile`.
|
|
4
|
+
* This creates a Resource of UsageProfile type.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html}
|
|
6
|
+
*/
|
|
7
|
+
export class GlueUsageProfile extends $Resource {
|
|
8
|
+
static Type = "AWS::Glue::UsageProfile";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, GlueUsageProfile.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-Glue-UsageProfile.js.map
|
|
@@ -204,7 +204,7 @@ export type LFTagPolicyResource = {
|
|
|
204
204
|
* Type definition for `AWS::LakeFormation::PrincipalPermissions.Permission`.
|
|
205
205
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-principalpermissions-permission.html}
|
|
206
206
|
*/
|
|
207
|
-
export type Permission = "ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "
|
|
207
|
+
export type Permission = "ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION";
|
|
208
208
|
/**
|
|
209
209
|
* Type definition for `AWS::LakeFormation::PrincipalPermissions.Resource`.
|
|
210
210
|
* A structure for the resource.
|
|
@@ -1027,6 +1027,11 @@ export type ComboChartVisual = {
|
|
|
1027
1027
|
*/
|
|
1028
1028
|
VisualId: string;
|
|
1029
1029
|
};
|
|
1030
|
+
/**
|
|
1031
|
+
* Type definition for `AWS::QuickSight::Analysis.CommitMode`.
|
|
1032
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-commitmode.html}
|
|
1033
|
+
*/
|
|
1034
|
+
export type CommitMode = "AUTO" | "MANUAL";
|
|
1030
1035
|
/**
|
|
1031
1036
|
* Type definition for `AWS::QuickSight::Analysis.ComparisonConfiguration`.
|
|
1032
1037
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-comparisonconfiguration.html}
|
|
@@ -1798,6 +1803,7 @@ export type DecimalValueWhenUnsetConfiguration = {
|
|
|
1798
1803
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultdatetimepickercontroloptions.html}
|
|
1799
1804
|
*/
|
|
1800
1805
|
export type DefaultDateTimePickerControlOptions = {
|
|
1806
|
+
CommitMode?: CommitMode;
|
|
1801
1807
|
DisplayOptions?: DateTimePickerControlDisplayOptions;
|
|
1802
1808
|
Type?: SheetControlDateTimePickerType;
|
|
1803
1809
|
};
|
|
@@ -1831,6 +1837,7 @@ export type DefaultFilterControlOptions = {
|
|
|
1831
1837
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultfilterdropdowncontroloptions.html}
|
|
1832
1838
|
*/
|
|
1833
1839
|
export type DefaultFilterDropDownControlOptions = {
|
|
1840
|
+
CommitMode?: CommitMode;
|
|
1834
1841
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
1835
1842
|
SelectableValues?: FilterSelectableValues;
|
|
1836
1843
|
Type?: SheetControlListType;
|
|
@@ -1887,6 +1894,7 @@ export type DefaultPaginatedLayoutConfiguration = {
|
|
|
1887
1894
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultrelativedatetimecontroloptions.html}
|
|
1888
1895
|
*/
|
|
1889
1896
|
export type DefaultRelativeDateTimeControlOptions = {
|
|
1897
|
+
CommitMode?: CommitMode;
|
|
1890
1898
|
DisplayOptions?: RelativeDateTimeControlDisplayOptions;
|
|
1891
1899
|
};
|
|
1892
1900
|
/**
|
|
@@ -2280,6 +2288,7 @@ export type FilterCrossSheetControl = {
|
|
|
2280
2288
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-filterdatetimepickercontrol.html}
|
|
2281
2289
|
*/
|
|
2282
2290
|
export type FilterDateTimePickerControl = {
|
|
2291
|
+
CommitMode?: CommitMode;
|
|
2283
2292
|
DisplayOptions?: DateTimePickerControlDisplayOptions;
|
|
2284
2293
|
/**
|
|
2285
2294
|
* @minLength `1`
|
|
@@ -2306,6 +2315,7 @@ export type FilterDateTimePickerControl = {
|
|
|
2306
2315
|
*/
|
|
2307
2316
|
export type FilterDropDownControl = {
|
|
2308
2317
|
CascadingControlConfiguration?: CascadingControlConfiguration;
|
|
2318
|
+
CommitMode?: CommitMode;
|
|
2309
2319
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
2310
2320
|
/**
|
|
2311
2321
|
* @minLength `1`
|
|
@@ -2423,6 +2433,7 @@ export type FilterOperationTargetVisualsConfiguration = {
|
|
|
2423
2433
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-filterrelativedatetimecontrol.html}
|
|
2424
2434
|
*/
|
|
2425
2435
|
export type FilterRelativeDateTimeControl = {
|
|
2436
|
+
CommitMode?: CommitMode;
|
|
2426
2437
|
DisplayOptions?: RelativeDateTimeControlDisplayOptions;
|
|
2427
2438
|
/**
|
|
2428
2439
|
* @minLength `1`
|
|
@@ -4404,6 +4415,7 @@ export type ParameterDeclaration = {
|
|
|
4404
4415
|
*/
|
|
4405
4416
|
export type ParameterDropDownControl = {
|
|
4406
4417
|
CascadingControlConfiguration?: CascadingControlConfiguration;
|
|
4418
|
+
CommitMode?: CommitMode;
|
|
4407
4419
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
4408
4420
|
/**
|
|
4409
4421
|
* @minLength `1`
|
|
@@ -1026,6 +1026,11 @@ export type ComboChartVisual = {
|
|
|
1026
1026
|
*/
|
|
1027
1027
|
VisualId: string;
|
|
1028
1028
|
};
|
|
1029
|
+
/**
|
|
1030
|
+
* Type definition for `AWS::QuickSight::Dashboard.CommitMode`.
|
|
1031
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-commitmode.html}
|
|
1032
|
+
*/
|
|
1033
|
+
export type CommitMode = "AUTO" | "MANUAL";
|
|
1029
1034
|
/**
|
|
1030
1035
|
* Type definition for `AWS::QuickSight::Dashboard.ComparisonConfiguration`.
|
|
1031
1036
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-comparisonconfiguration.html}
|
|
@@ -2029,6 +2034,7 @@ export type DecimalValueWhenUnsetConfiguration = {
|
|
|
2029
2034
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-defaultdatetimepickercontroloptions.html}
|
|
2030
2035
|
*/
|
|
2031
2036
|
export type DefaultDateTimePickerControlOptions = {
|
|
2037
|
+
CommitMode?: CommitMode;
|
|
2032
2038
|
DisplayOptions?: DateTimePickerControlDisplayOptions;
|
|
2033
2039
|
Type?: SheetControlDateTimePickerType;
|
|
2034
2040
|
};
|
|
@@ -2062,6 +2068,7 @@ export type DefaultFilterControlOptions = {
|
|
|
2062
2068
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-defaultfilterdropdowncontroloptions.html}
|
|
2063
2069
|
*/
|
|
2064
2070
|
export type DefaultFilterDropDownControlOptions = {
|
|
2071
|
+
CommitMode?: CommitMode;
|
|
2065
2072
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
2066
2073
|
SelectableValues?: FilterSelectableValues;
|
|
2067
2074
|
Type?: SheetControlListType;
|
|
@@ -2118,6 +2125,7 @@ export type DefaultPaginatedLayoutConfiguration = {
|
|
|
2118
2125
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-defaultrelativedatetimecontroloptions.html}
|
|
2119
2126
|
*/
|
|
2120
2127
|
export type DefaultRelativeDateTimeControlOptions = {
|
|
2128
|
+
CommitMode?: CommitMode;
|
|
2121
2129
|
DisplayOptions?: RelativeDateTimeControlDisplayOptions;
|
|
2122
2130
|
};
|
|
2123
2131
|
/**
|
|
@@ -2535,6 +2543,7 @@ export type FilterCrossSheetControl = {
|
|
|
2535
2543
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-filterdatetimepickercontrol.html}
|
|
2536
2544
|
*/
|
|
2537
2545
|
export type FilterDateTimePickerControl = {
|
|
2546
|
+
CommitMode?: CommitMode;
|
|
2538
2547
|
DisplayOptions?: DateTimePickerControlDisplayOptions;
|
|
2539
2548
|
/**
|
|
2540
2549
|
* @minLength `1`
|
|
@@ -2561,6 +2570,7 @@ export type FilterDateTimePickerControl = {
|
|
|
2561
2570
|
*/
|
|
2562
2571
|
export type FilterDropDownControl = {
|
|
2563
2572
|
CascadingControlConfiguration?: CascadingControlConfiguration;
|
|
2573
|
+
CommitMode?: CommitMode;
|
|
2564
2574
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
2565
2575
|
/**
|
|
2566
2576
|
* @minLength `1`
|
|
@@ -2678,6 +2688,7 @@ export type FilterOperationTargetVisualsConfiguration = {
|
|
|
2678
2688
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-filterrelativedatetimecontrol.html}
|
|
2679
2689
|
*/
|
|
2680
2690
|
export type FilterRelativeDateTimeControl = {
|
|
2691
|
+
CommitMode?: CommitMode;
|
|
2681
2692
|
DisplayOptions?: RelativeDateTimeControlDisplayOptions;
|
|
2682
2693
|
/**
|
|
2683
2694
|
* @minLength `1`
|
|
@@ -4670,6 +4681,7 @@ export type ParameterDeclaration = {
|
|
|
4670
4681
|
*/
|
|
4671
4682
|
export type ParameterDropDownControl = {
|
|
4672
4683
|
CascadingControlConfiguration?: CascadingControlConfiguration;
|
|
4684
|
+
CommitMode?: CommitMode;
|
|
4673
4685
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
4674
4686
|
/**
|
|
4675
4687
|
* @minLength `1`
|
|
@@ -0,0 +1,130 @@
|
|
|
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 the AWS::QuickSight::Folder Resource Type.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-folder.html}
|
|
6
|
+
*/
|
|
7
|
+
export type QuickSightFolderProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `12`
|
|
10
|
+
* @maxLength `12`
|
|
11
|
+
* @pattern `^[0-9]{12}$`
|
|
12
|
+
*/
|
|
13
|
+
AwsAccountId?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @minLength `1`
|
|
16
|
+
* @maxLength `2048`
|
|
17
|
+
* @pattern `^[\w\-]+$`
|
|
18
|
+
*/
|
|
19
|
+
FolderId?: string;
|
|
20
|
+
FolderType?: FolderType;
|
|
21
|
+
/**
|
|
22
|
+
* @minLength `1`
|
|
23
|
+
* @maxLength `200`
|
|
24
|
+
*/
|
|
25
|
+
Name?: string;
|
|
26
|
+
ParentFolderArn?: string;
|
|
27
|
+
/**
|
|
28
|
+
* @minLength `1`
|
|
29
|
+
* @maxLength `64`
|
|
30
|
+
*/
|
|
31
|
+
Permissions?: ResourcePermission[];
|
|
32
|
+
SharingModel?: SharingModel;
|
|
33
|
+
/**
|
|
34
|
+
* @minLength `1`
|
|
35
|
+
* @maxLength `200`
|
|
36
|
+
*/
|
|
37
|
+
Tags?: Tag[];
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Attribute type definition for `AWS::QuickSight::Folder`.
|
|
41
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-folder.html#aws-resource-quicksight-folder-return-values}
|
|
42
|
+
*/
|
|
43
|
+
export type QuickSightFolderAttributes = {
|
|
44
|
+
/**
|
|
45
|
+
* <p>The Amazon Resource Name (ARN) for the folder.</p>
|
|
46
|
+
* @pattern `^arn:.*`
|
|
47
|
+
*/
|
|
48
|
+
Arn: string;
|
|
49
|
+
/**
|
|
50
|
+
* <p>The time that the folder was created.</p>
|
|
51
|
+
*/
|
|
52
|
+
CreatedTime: string;
|
|
53
|
+
/**
|
|
54
|
+
* <p>The time that the folder was last updated.</p>
|
|
55
|
+
*/
|
|
56
|
+
LastUpdatedTime: string;
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* Type definition for `AWS::QuickSight::Folder.FolderType`.
|
|
60
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-folder-foldertype.html}
|
|
61
|
+
*/
|
|
62
|
+
export type FolderType = "SHARED" | "RESTRICTED";
|
|
63
|
+
/**
|
|
64
|
+
* Type definition for `AWS::QuickSight::Folder.ResourcePermission`.
|
|
65
|
+
* <p>Permission for the resource.</p>
|
|
66
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-folder-resourcepermission.html}
|
|
67
|
+
*/
|
|
68
|
+
export type ResourcePermission = {
|
|
69
|
+
/**
|
|
70
|
+
* <p>The IAM action to grant or revoke permissions on.</p>
|
|
71
|
+
* @minLength `1`
|
|
72
|
+
* @maxLength `20`
|
|
73
|
+
*/
|
|
74
|
+
Actions: string[];
|
|
75
|
+
/**
|
|
76
|
+
* <p>The Amazon Resource Name (ARN) of the principal. This can be one of the
|
|
77
|
+
following:</p>
|
|
78
|
+
<ul>
|
|
79
|
+
<li>
|
|
80
|
+
<p>The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)</p>
|
|
81
|
+
</li>
|
|
82
|
+
<li>
|
|
83
|
+
<p>The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)</p>
|
|
84
|
+
</li>
|
|
85
|
+
<li>
|
|
86
|
+
<p>The ARN of an Amazon Web Services account root: This is an IAM ARN rather than a QuickSight
|
|
87
|
+
ARN. Use this option only to share resources (templates) across Amazon Web Services accounts.
|
|
88
|
+
(This is less common.) </p>
|
|
89
|
+
</li>
|
|
90
|
+
</ul>
|
|
91
|
+
* @minLength `1`
|
|
92
|
+
* @maxLength `256`
|
|
93
|
+
* @pattern `^arn:.*`
|
|
94
|
+
*/
|
|
95
|
+
Principal: string;
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* Type definition for `AWS::QuickSight::Folder.SharingModel`.
|
|
99
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-folder-sharingmodel.html}
|
|
100
|
+
*/
|
|
101
|
+
export type SharingModel = "ACCOUNT" | "NAMESPACE";
|
|
102
|
+
/**
|
|
103
|
+
* Type definition for `AWS::QuickSight::Folder.Tag`.
|
|
104
|
+
* <p>The key or keys of the key-value pairs for the resource tag or tags assigned to the
|
|
105
|
+
resource.</p>
|
|
106
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-folder-tag.html}
|
|
107
|
+
*/
|
|
108
|
+
export type Tag = {
|
|
109
|
+
/**
|
|
110
|
+
* <p>Tag key.</p>
|
|
111
|
+
* @minLength `1`
|
|
112
|
+
* @maxLength `128`
|
|
113
|
+
*/
|
|
114
|
+
Key: string;
|
|
115
|
+
/**
|
|
116
|
+
* <p>Tag value.</p>
|
|
117
|
+
* @minLength `1`
|
|
118
|
+
* @maxLength `256`
|
|
119
|
+
*/
|
|
120
|
+
Value: string;
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* Definition of the AWS::QuickSight::Folder Resource Type.
|
|
124
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-folder.html}
|
|
125
|
+
*/
|
|
126
|
+
export declare class QuickSightFolder extends $Resource<"AWS::QuickSight::Folder", QuickSightFolderProperties, QuickSightFolderAttributes> {
|
|
127
|
+
static readonly Type = "AWS::QuickSight::Folder";
|
|
128
|
+
constructor(logicalId: string, properties: QuickSightFolderProperties, options?: $ResourceOptions);
|
|
129
|
+
}
|
|
130
|
+
//# sourceMappingURL=AWS-QuickSight-Folder.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of the AWS::QuickSight::Folder Resource Type.
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-folder.html}
|
|
5
|
+
*/
|
|
6
|
+
export class QuickSightFolder extends $Resource {
|
|
7
|
+
static Type = "AWS::QuickSight::Folder";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, QuickSightFolder.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-QuickSight-Folder.js.map
|
|
@@ -1095,6 +1095,11 @@ export type ComboChartVisual = {
|
|
|
1095
1095
|
*/
|
|
1096
1096
|
VisualId: string;
|
|
1097
1097
|
};
|
|
1098
|
+
/**
|
|
1099
|
+
* Type definition for `AWS::QuickSight::Template.CommitMode`.
|
|
1100
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-commitmode.html}
|
|
1101
|
+
*/
|
|
1102
|
+
export type CommitMode = "AUTO" | "MANUAL";
|
|
1098
1103
|
/**
|
|
1099
1104
|
* Type definition for `AWS::QuickSight::Template.ComparisonConfiguration`.
|
|
1100
1105
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-comparisonconfiguration.html}
|
|
@@ -1856,6 +1861,7 @@ export type DecimalValueWhenUnsetConfiguration = {
|
|
|
1856
1861
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-defaultdatetimepickercontroloptions.html}
|
|
1857
1862
|
*/
|
|
1858
1863
|
export type DefaultDateTimePickerControlOptions = {
|
|
1864
|
+
CommitMode?: CommitMode;
|
|
1859
1865
|
DisplayOptions?: DateTimePickerControlDisplayOptions;
|
|
1860
1866
|
Type?: SheetControlDateTimePickerType;
|
|
1861
1867
|
};
|
|
@@ -1889,6 +1895,7 @@ export type DefaultFilterControlOptions = {
|
|
|
1889
1895
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-defaultfilterdropdowncontroloptions.html}
|
|
1890
1896
|
*/
|
|
1891
1897
|
export type DefaultFilterDropDownControlOptions = {
|
|
1898
|
+
CommitMode?: CommitMode;
|
|
1892
1899
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
1893
1900
|
SelectableValues?: FilterSelectableValues;
|
|
1894
1901
|
Type?: SheetControlListType;
|
|
@@ -1945,6 +1952,7 @@ export type DefaultPaginatedLayoutConfiguration = {
|
|
|
1945
1952
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-defaultrelativedatetimecontroloptions.html}
|
|
1946
1953
|
*/
|
|
1947
1954
|
export type DefaultRelativeDateTimeControlOptions = {
|
|
1955
|
+
CommitMode?: CommitMode;
|
|
1948
1956
|
DisplayOptions?: RelativeDateTimeControlDisplayOptions;
|
|
1949
1957
|
};
|
|
1950
1958
|
/**
|
|
@@ -2338,6 +2346,7 @@ export type FilterCrossSheetControl = {
|
|
|
2338
2346
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filterdatetimepickercontrol.html}
|
|
2339
2347
|
*/
|
|
2340
2348
|
export type FilterDateTimePickerControl = {
|
|
2349
|
+
CommitMode?: CommitMode;
|
|
2341
2350
|
DisplayOptions?: DateTimePickerControlDisplayOptions;
|
|
2342
2351
|
/**
|
|
2343
2352
|
* @minLength `1`
|
|
@@ -2364,6 +2373,7 @@ export type FilterDateTimePickerControl = {
|
|
|
2364
2373
|
*/
|
|
2365
2374
|
export type FilterDropDownControl = {
|
|
2366
2375
|
CascadingControlConfiguration?: CascadingControlConfiguration;
|
|
2376
|
+
CommitMode?: CommitMode;
|
|
2367
2377
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
2368
2378
|
/**
|
|
2369
2379
|
* @minLength `1`
|
|
@@ -2481,6 +2491,7 @@ export type FilterOperationTargetVisualsConfiguration = {
|
|
|
2481
2491
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filterrelativedatetimecontrol.html}
|
|
2482
2492
|
*/
|
|
2483
2493
|
export type FilterRelativeDateTimeControl = {
|
|
2494
|
+
CommitMode?: CommitMode;
|
|
2484
2495
|
DisplayOptions?: RelativeDateTimeControlDisplayOptions;
|
|
2485
2496
|
/**
|
|
2486
2497
|
* @minLength `1`
|
|
@@ -4446,6 +4457,7 @@ export type ParameterDeclaration = {
|
|
|
4446
4457
|
*/
|
|
4447
4458
|
export type ParameterDropDownControl = {
|
|
4448
4459
|
CascadingControlConfiguration?: CascadingControlConfiguration;
|
|
4460
|
+
CommitMode?: CommitMode;
|
|
4449
4461
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
4450
4462
|
/**
|
|
4451
4463
|
* @minLength `1`
|