@awboost/cfn-resource-types 0.1.219 → 0.1.221
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-Bedrock-Agent.d.ts +10 -0
- package/lib/AWS-Bedrock-Prompt.d.ts +208 -1
- package/lib/AWS-DataZone-DataSource.d.ts +23 -1
- package/lib/AWS-EC2-LaunchTemplate.d.ts +1 -1
- package/lib/AWS-EC2-NetworkAcl.d.ts +2 -2
- package/lib/AWS-EC2-NetworkAcl.js +1 -1
- package/lib/AWS-EC2-VPCEndpoint.d.ts +9 -0
- package/lib/AWS-OpenSearchService-Domain.d.ts +18 -0
- package/lib/AWS-QuickSight-Analysis.d.ts +3 -3
- package/lib/AWS-QuickSight-CustomPermissions.d.ts +90 -0
- package/lib/AWS-QuickSight-CustomPermissions.js +12 -0
- package/lib/AWS-QuickSight-Dashboard.d.ts +3 -10
- package/lib/AWS-QuickSight-DataSet.d.ts +1 -38
- package/lib/AWS-QuickSight-Template.d.ts +71 -76
- package/lib/AWS-RDS-DBCluster.d.ts +10 -8
- package/lib/AWS-SES-MailManagerRuleSet.d.ts +27 -0
- package/lib/AWS-SageMaker-PartnerApp.d.ts +134 -0
- package/lib/AWS-SageMaker-PartnerApp.js +12 -0
- package/package.json +1 -1
|
@@ -278,6 +278,10 @@ export type Function = {
|
|
|
278
278
|
* A map of parameter name and detail
|
|
279
279
|
*/
|
|
280
280
|
Parameters?: ParameterMap;
|
|
281
|
+
/**
|
|
282
|
+
* ENUM to check if action requires user confirmation
|
|
283
|
+
*/
|
|
284
|
+
RequireConfirmation?: RequireConfirmation;
|
|
281
285
|
};
|
|
282
286
|
/**
|
|
283
287
|
* Type definition for `AWS::Bedrock::Agent.FunctionSchema`.
|
|
@@ -441,6 +445,12 @@ export type PromptState = "ENABLED" | "DISABLED";
|
|
|
441
445
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-prompttype.html}
|
|
442
446
|
*/
|
|
443
447
|
export type PromptType = "PRE_PROCESSING" | "ORCHESTRATION" | "POST_PROCESSING" | "KNOWLEDGE_BASE_RESPONSE_GENERATION";
|
|
448
|
+
/**
|
|
449
|
+
* Type definition for `AWS::Bedrock::Agent.RequireConfirmation`.
|
|
450
|
+
* ENUM to check if action requires user confirmation
|
|
451
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-requireconfirmation.html}
|
|
452
|
+
*/
|
|
453
|
+
export type RequireConfirmation = "ENABLED" | "DISABLED";
|
|
444
454
|
/**
|
|
445
455
|
* Type definition for `AWS::Bedrock::Agent.S3Identifier`.
|
|
446
456
|
* The identifier for the S3 resource.
|
|
@@ -72,6 +72,101 @@ export type BedrockPromptAttributes = {
|
|
|
72
72
|
*/
|
|
73
73
|
Version: string;
|
|
74
74
|
};
|
|
75
|
+
/**
|
|
76
|
+
* Type definition for `AWS::Bedrock::Prompt.AnyToolChoice`.
|
|
77
|
+
* Any Tool choice
|
|
78
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-anytoolchoice.html}
|
|
79
|
+
*/
|
|
80
|
+
export type AnyToolChoice = Record<string, any>;
|
|
81
|
+
/**
|
|
82
|
+
* Type definition for `AWS::Bedrock::Prompt.AutoToolChoice`.
|
|
83
|
+
* Auto Tool choice
|
|
84
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-autotoolchoice.html}
|
|
85
|
+
*/
|
|
86
|
+
export type AutoToolChoice = Record<string, any>;
|
|
87
|
+
/**
|
|
88
|
+
* Type definition for `AWS::Bedrock::Prompt.ChatPromptTemplateConfiguration`.
|
|
89
|
+
* Configuration for chat prompt template
|
|
90
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-chatprompttemplateconfiguration.html}
|
|
91
|
+
*/
|
|
92
|
+
export type ChatPromptTemplateConfiguration = {
|
|
93
|
+
/**
|
|
94
|
+
* List of input variables
|
|
95
|
+
* @minLength `0`
|
|
96
|
+
* @maxLength `5`
|
|
97
|
+
*/
|
|
98
|
+
InputVariables?: PromptInputVariable[];
|
|
99
|
+
/**
|
|
100
|
+
* List of messages for chat prompt template
|
|
101
|
+
* @minLength `0`
|
|
102
|
+
*/
|
|
103
|
+
Messages: Message[];
|
|
104
|
+
/**
|
|
105
|
+
* Configuration for chat prompt template
|
|
106
|
+
* @minLength `0`
|
|
107
|
+
*/
|
|
108
|
+
System?: SystemContentBlock[];
|
|
109
|
+
/**
|
|
110
|
+
* Tool configuration
|
|
111
|
+
*/
|
|
112
|
+
ToolConfiguration?: ToolConfiguration;
|
|
113
|
+
};
|
|
114
|
+
/**
|
|
115
|
+
* Type definition for `AWS::Bedrock::Prompt.ContentBlock`.
|
|
116
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-contentblock.html}
|
|
117
|
+
*/
|
|
118
|
+
export type ContentBlock = {
|
|
119
|
+
/**
|
|
120
|
+
* Configuration for chat prompt template
|
|
121
|
+
* @minLength `1`
|
|
122
|
+
*/
|
|
123
|
+
Text: string;
|
|
124
|
+
};
|
|
125
|
+
/**
|
|
126
|
+
* Type definition for `AWS::Bedrock::Prompt.ConversationRole`.
|
|
127
|
+
* Conversation roles for the chat prompt
|
|
128
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-conversationrole.html}
|
|
129
|
+
*/
|
|
130
|
+
export type ConversationRole = "user" | "assistant";
|
|
131
|
+
/**
|
|
132
|
+
* Type definition for `AWS::Bedrock::Prompt.Message`.
|
|
133
|
+
* Chat prompt Message
|
|
134
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-message.html}
|
|
135
|
+
*/
|
|
136
|
+
export type Message = {
|
|
137
|
+
/**
|
|
138
|
+
* List of Content Blocks
|
|
139
|
+
* @minLength `1`
|
|
140
|
+
*/
|
|
141
|
+
Content: ContentBlock[];
|
|
142
|
+
/**
|
|
143
|
+
* Conversation roles for the chat prompt
|
|
144
|
+
*/
|
|
145
|
+
Role: ConversationRole;
|
|
146
|
+
};
|
|
147
|
+
/**
|
|
148
|
+
* Type definition for `AWS::Bedrock::Prompt.PromptAgentResource`.
|
|
149
|
+
* Target Agent to invoke with Prompt
|
|
150
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptagentresource.html}
|
|
151
|
+
*/
|
|
152
|
+
export type PromptAgentResource = {
|
|
153
|
+
/**
|
|
154
|
+
* Arn representation of the Agent Alias.
|
|
155
|
+
* @maxLength `2048`
|
|
156
|
+
* @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:agent-alias/[0-9a-zA-Z]{10}/[0-9a-zA-Z]{10}$`
|
|
157
|
+
*/
|
|
158
|
+
AgentIdentifier: string;
|
|
159
|
+
};
|
|
160
|
+
/**
|
|
161
|
+
* Type definition for `AWS::Bedrock::Prompt.PromptGenAiResource`.
|
|
162
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptgenairesource.html}
|
|
163
|
+
*/
|
|
164
|
+
export type PromptGenAiResource = {
|
|
165
|
+
/**
|
|
166
|
+
* Target Agent to invoke with Prompt
|
|
167
|
+
*/
|
|
168
|
+
Agent: PromptAgentResource;
|
|
169
|
+
};
|
|
75
170
|
/**
|
|
76
171
|
* Type definition for `AWS::Bedrock::Prompt.PromptInferenceConfiguration`.
|
|
77
172
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptinferenceconfiguration.html}
|
|
@@ -127,6 +222,7 @@ export type PromptModelInferenceConfiguration = {
|
|
|
127
222
|
};
|
|
128
223
|
/**
|
|
129
224
|
* Type definition for `AWS::Bedrock::Prompt.PromptTemplateConfiguration`.
|
|
225
|
+
* Prompt template configuration
|
|
130
226
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-prompttemplateconfiguration.html}
|
|
131
227
|
*/
|
|
132
228
|
export type PromptTemplateConfiguration = {
|
|
@@ -134,19 +230,25 @@ export type PromptTemplateConfiguration = {
|
|
|
134
230
|
* Configuration for text prompt template
|
|
135
231
|
*/
|
|
136
232
|
Text: TextPromptTemplateConfiguration;
|
|
233
|
+
} | {
|
|
234
|
+
/**
|
|
235
|
+
* Configuration for chat prompt template
|
|
236
|
+
*/
|
|
237
|
+
Chat: ChatPromptTemplateConfiguration;
|
|
137
238
|
};
|
|
138
239
|
/**
|
|
139
240
|
* Type definition for `AWS::Bedrock::Prompt.PromptTemplateType`.
|
|
140
241
|
* Prompt template type
|
|
141
242
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-prompttemplatetype.html}
|
|
142
243
|
*/
|
|
143
|
-
export type PromptTemplateType = "TEXT";
|
|
244
|
+
export type PromptTemplateType = "TEXT" | "CHAT";
|
|
144
245
|
/**
|
|
145
246
|
* Type definition for `AWS::Bedrock::Prompt.PromptVariant`.
|
|
146
247
|
* Prompt variant
|
|
147
248
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptvariant.html}
|
|
148
249
|
*/
|
|
149
250
|
export type PromptVariant = {
|
|
251
|
+
GenAiResource?: PromptGenAiResource;
|
|
150
252
|
InferenceConfiguration?: PromptInferenceConfiguration;
|
|
151
253
|
/**
|
|
152
254
|
* ARN or Id of a Bedrock Foundational Model or Inference Profile, or the ARN of a imported model, or a provisioned throughput ARN for custom models.
|
|
@@ -160,12 +262,40 @@ export type PromptVariant = {
|
|
|
160
262
|
* @pattern `^([0-9a-zA-Z][_-]?){1,100}$`
|
|
161
263
|
*/
|
|
162
264
|
Name: string;
|
|
265
|
+
/**
|
|
266
|
+
* Prompt template configuration
|
|
267
|
+
*/
|
|
163
268
|
TemplateConfiguration: PromptTemplateConfiguration;
|
|
164
269
|
/**
|
|
165
270
|
* Prompt template type
|
|
166
271
|
*/
|
|
167
272
|
TemplateType: PromptTemplateType;
|
|
168
273
|
};
|
|
274
|
+
/**
|
|
275
|
+
* Type definition for `AWS::Bedrock::Prompt.SpecificToolChoice`.
|
|
276
|
+
* Specific Tool choice
|
|
277
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-specifictoolchoice.html}
|
|
278
|
+
*/
|
|
279
|
+
export type SpecificToolChoice = {
|
|
280
|
+
/**
|
|
281
|
+
* Tool name
|
|
282
|
+
* @minLength `1`
|
|
283
|
+
* @maxLength `64`
|
|
284
|
+
* @pattern `^[a-zA-Z][a-zA-Z0-9_]*$`
|
|
285
|
+
*/
|
|
286
|
+
Name: string;
|
|
287
|
+
};
|
|
288
|
+
/**
|
|
289
|
+
* Type definition for `AWS::Bedrock::Prompt.SystemContentBlock`.
|
|
290
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-systemcontentblock.html}
|
|
291
|
+
*/
|
|
292
|
+
export type SystemContentBlock = {
|
|
293
|
+
/**
|
|
294
|
+
* Configuration for chat prompt template
|
|
295
|
+
* @minLength `1`
|
|
296
|
+
*/
|
|
297
|
+
Text: string;
|
|
298
|
+
};
|
|
169
299
|
/**
|
|
170
300
|
* Type definition for `AWS::Bedrock::Prompt.TagsMap`.
|
|
171
301
|
* A map of tag keys and values
|
|
@@ -221,6 +351,83 @@ export type TextS3Location = {
|
|
|
221
351
|
*/
|
|
222
352
|
Version?: string;
|
|
223
353
|
};
|
|
354
|
+
/**
|
|
355
|
+
* Type definition for `AWS::Bedrock::Prompt.Tool`.
|
|
356
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-tool.html}
|
|
357
|
+
*/
|
|
358
|
+
export type Tool = {
|
|
359
|
+
/**
|
|
360
|
+
* Tool specification
|
|
361
|
+
*/
|
|
362
|
+
ToolSpec: ToolSpecification;
|
|
363
|
+
};
|
|
364
|
+
/**
|
|
365
|
+
* Type definition for `AWS::Bedrock::Prompt.ToolChoice`.
|
|
366
|
+
* Tool choice
|
|
367
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-toolchoice.html}
|
|
368
|
+
*/
|
|
369
|
+
export type ToolChoice = {
|
|
370
|
+
/**
|
|
371
|
+
* Auto Tool choice
|
|
372
|
+
*/
|
|
373
|
+
Auto: AutoToolChoice;
|
|
374
|
+
} | {
|
|
375
|
+
/**
|
|
376
|
+
* Any Tool choice
|
|
377
|
+
*/
|
|
378
|
+
Any: AnyToolChoice;
|
|
379
|
+
} | {
|
|
380
|
+
/**
|
|
381
|
+
* Specific Tool choice
|
|
382
|
+
*/
|
|
383
|
+
Tool: SpecificToolChoice;
|
|
384
|
+
};
|
|
385
|
+
/**
|
|
386
|
+
* Type definition for `AWS::Bedrock::Prompt.ToolConfiguration`.
|
|
387
|
+
* Tool configuration
|
|
388
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-toolconfiguration.html}
|
|
389
|
+
*/
|
|
390
|
+
export type ToolConfiguration = {
|
|
391
|
+
/**
|
|
392
|
+
* Tool choice
|
|
393
|
+
*/
|
|
394
|
+
ToolChoice?: ToolChoice;
|
|
395
|
+
/**
|
|
396
|
+
* List of Tools
|
|
397
|
+
* @minLength `1`
|
|
398
|
+
*/
|
|
399
|
+
Tools: Tool[];
|
|
400
|
+
};
|
|
401
|
+
/**
|
|
402
|
+
* Type definition for `AWS::Bedrock::Prompt.ToolInputSchema`.
|
|
403
|
+
* Tool input schema json
|
|
404
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-toolinputschema.html}
|
|
405
|
+
*/
|
|
406
|
+
export type ToolInputSchema = {
|
|
407
|
+
Json: Record<string, any>;
|
|
408
|
+
};
|
|
409
|
+
/**
|
|
410
|
+
* Type definition for `AWS::Bedrock::Prompt.ToolSpecification`.
|
|
411
|
+
* Tool specification
|
|
412
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-toolspecification.html}
|
|
413
|
+
*/
|
|
414
|
+
export type ToolSpecification = {
|
|
415
|
+
/**
|
|
416
|
+
* @minLength `1`
|
|
417
|
+
*/
|
|
418
|
+
Description?: string;
|
|
419
|
+
/**
|
|
420
|
+
* Tool input schema json
|
|
421
|
+
*/
|
|
422
|
+
InputSchema: ToolInputSchema;
|
|
423
|
+
/**
|
|
424
|
+
* Tool name
|
|
425
|
+
* @minLength `1`
|
|
426
|
+
* @maxLength `64`
|
|
427
|
+
* @pattern `^[a-zA-Z][a-zA-Z0-9_]*$`
|
|
428
|
+
*/
|
|
429
|
+
Name: string;
|
|
430
|
+
};
|
|
224
431
|
/**
|
|
225
432
|
* Definition of AWS::Bedrock::Prompt Resource Type
|
|
226
433
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-prompt.html}
|
|
@@ -115,7 +115,7 @@ export type DataZoneDataSourceAttributes = {
|
|
|
115
115
|
};
|
|
116
116
|
/**
|
|
117
117
|
* Type definition for `AWS::DataZone::DataSource.DataSourceConfigurationInput`.
|
|
118
|
-
* Specifies the configuration of the data source. It can be set to either glueRunConfiguration or redshiftRunConfiguration.
|
|
118
|
+
* Specifies the configuration of the data source. It can be set to either glueRunConfiguration or redshiftRunConfiguration or sageMakerRunConfiguration.
|
|
119
119
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-datasourceconfigurationinput.html}
|
|
120
120
|
*/
|
|
121
121
|
export type DataSourceConfigurationInput = {
|
|
@@ -125,6 +125,11 @@ export type DataSourceConfigurationInput = {
|
|
|
125
125
|
* The configuration details of the Amazon Redshift data source.
|
|
126
126
|
*/
|
|
127
127
|
RedshiftRunConfiguration?: RedshiftRunConfigurationInput;
|
|
128
|
+
} | {
|
|
129
|
+
/**
|
|
130
|
+
* The configuration details of the Amazon SageMaker data source.
|
|
131
|
+
*/
|
|
132
|
+
SageMakerRunConfiguration?: SageMakerRunConfigurationInput;
|
|
128
133
|
};
|
|
129
134
|
/**
|
|
130
135
|
* Type definition for `AWS::DataZone::DataSource.DataSourceStatus`.
|
|
@@ -326,6 +331,17 @@ export type RelationalFilterConfiguration = {
|
|
|
326
331
|
*/
|
|
327
332
|
SchemaName?: string;
|
|
328
333
|
};
|
|
334
|
+
/**
|
|
335
|
+
* Type definition for `AWS::DataZone::DataSource.SageMakerRunConfigurationInput`.
|
|
336
|
+
* The configuration details of the Amazon SageMaker data source.
|
|
337
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-sagemakerrunconfigurationinput.html}
|
|
338
|
+
*/
|
|
339
|
+
export type SageMakerRunConfigurationInput = {
|
|
340
|
+
/**
|
|
341
|
+
* The tracking assets of the Amazon SageMaker run.
|
|
342
|
+
*/
|
|
343
|
+
TrackingAssets: TrackingAssets;
|
|
344
|
+
};
|
|
329
345
|
/**
|
|
330
346
|
* Type definition for `AWS::DataZone::DataSource.ScheduleConfiguration`.
|
|
331
347
|
* The schedule of the data source runs.
|
|
@@ -344,6 +360,12 @@ export type ScheduleConfiguration = {
|
|
|
344
360
|
*/
|
|
345
361
|
Timezone?: string;
|
|
346
362
|
};
|
|
363
|
+
/**
|
|
364
|
+
* Type definition for `AWS::DataZone::DataSource.TrackingAssets`.
|
|
365
|
+
* The tracking assets of the Amazon SageMaker run.
|
|
366
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-trackingassets.html}
|
|
367
|
+
*/
|
|
368
|
+
export type TrackingAssets = Record<string, string[]>;
|
|
347
369
|
/**
|
|
348
370
|
* Resource type definition for `AWS::DataZone::DataSource`.
|
|
349
371
|
* A data source is used to import technical metadata of assets (data) from the source databases or data warehouses into Amazon DataZone.
|
|
@@ -722,7 +722,7 @@ export type LaunchTemplateData = {
|
|
|
722
722
|
* The network interfaces for the instance.
|
|
723
723
|
*/
|
|
724
724
|
NetworkInterfaces?: NetworkInterface[];
|
|
725
|
-
NetworkPerformanceOptions?:
|
|
725
|
+
NetworkPerformanceOptions?: any;
|
|
726
726
|
/**
|
|
727
727
|
* The placement for the instance.
|
|
728
728
|
*/
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource type definition for `AWS::EC2::NetworkAcl`.
|
|
5
4
|
* Specifies a network ACL for your VPC.
|
|
5
|
+
To add a network ACL entry, see [AWS::EC2::NetworkAclEntry](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkaclentry.html).
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkacl.html}
|
|
7
7
|
*/
|
|
8
8
|
export type EC2NetworkAclProperties = {
|
|
@@ -38,8 +38,8 @@ export type Tag = {
|
|
|
38
38
|
Value: string;
|
|
39
39
|
};
|
|
40
40
|
/**
|
|
41
|
-
* Resource type definition for `AWS::EC2::NetworkAcl`.
|
|
42
41
|
* Specifies a network ACL for your VPC.
|
|
42
|
+
To add a network ACL entry, see [AWS::EC2::NetworkAclEntry](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkaclentry.html).
|
|
43
43
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkacl.html}
|
|
44
44
|
*/
|
|
45
45
|
export declare class EC2NetworkAcl extends $Resource<"AWS::EC2::NetworkAcl", EC2NetworkAclProperties, EC2NetworkAclAttributes> {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource type definition for `AWS::EC2::NetworkAcl`.
|
|
4
3
|
* Specifies a network ACL for your VPC.
|
|
4
|
+
To add a network ACL entry, see [AWS::EC2::NetworkAclEntry](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkaclentry.html).
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkacl.html}
|
|
6
6
|
*/
|
|
7
7
|
export class EC2NetworkAcl extends $Resource {
|
|
@@ -42,6 +42,7 @@ export type EC2VPCEndpointProperties = {
|
|
|
42
42
|
* The IDs of the subnets in which to create endpoint network interfaces. You must specify this property for an interface endpoint or a Gateway Load Balancer endpoint. You can't specify this property for a gateway endpoint. For a Gateway Load Balancer endpoint, you can specify only one subnet.
|
|
43
43
|
*/
|
|
44
44
|
SubnetIds?: string[];
|
|
45
|
+
Tags?: Tag[];
|
|
45
46
|
/**
|
|
46
47
|
* The type of endpoint.
|
|
47
48
|
Default: Gateway
|
|
@@ -70,6 +71,14 @@ export type DnsOptionsSpecification = {
|
|
|
70
71
|
DnsRecordIpType?: "ipv4" | "ipv6" | "dualstack" | "service-defined" | "not-specified";
|
|
71
72
|
PrivateDnsOnlyForInboundResolverEndpoint?: "OnlyInboundResolver" | "AllResolvers" | "NotSpecified";
|
|
72
73
|
};
|
|
74
|
+
/**
|
|
75
|
+
* Type definition for `AWS::EC2::VPCEndpoint.Tag`.
|
|
76
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpcendpoint-tag.html}
|
|
77
|
+
*/
|
|
78
|
+
export type Tag = {
|
|
79
|
+
Key: string;
|
|
80
|
+
Value: string;
|
|
81
|
+
};
|
|
73
82
|
/**
|
|
74
83
|
* Resource type definition for `AWS::EC2::VPCEndpoint`.
|
|
75
84
|
* Specifies a VPC endpoint. A VPC endpoint provides a private connection between your VPC and an endpoint service. You can use an endpoint service provided by AWS, an MKT Partner, or another AWS accounts in your organization. For more information, see the [User Guide](https://docs.aws.amazon.com/vpc/latest/privatelink/).
|
|
@@ -95,6 +95,7 @@ export type ClusterConfig = {
|
|
|
95
95
|
InstanceCount?: number;
|
|
96
96
|
InstanceType?: string;
|
|
97
97
|
MultiAZWithStandbyEnabled?: boolean;
|
|
98
|
+
NodeOptions?: NodeOption[];
|
|
98
99
|
WarmCount?: number;
|
|
99
100
|
WarmEnabled?: boolean;
|
|
100
101
|
WarmType?: string;
|
|
@@ -210,6 +211,23 @@ export type MasterUserOptions = {
|
|
|
210
211
|
MasterUserName?: string;
|
|
211
212
|
MasterUserPassword?: string;
|
|
212
213
|
};
|
|
214
|
+
/**
|
|
215
|
+
* Type definition for `AWS::OpenSearchService::Domain.NodeConfig`.
|
|
216
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodeconfig.html}
|
|
217
|
+
*/
|
|
218
|
+
export type NodeConfig = {
|
|
219
|
+
Count?: number;
|
|
220
|
+
Enabled?: boolean;
|
|
221
|
+
Type?: string;
|
|
222
|
+
};
|
|
223
|
+
/**
|
|
224
|
+
* Type definition for `AWS::OpenSearchService::Domain.NodeOption`.
|
|
225
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodeoption.html}
|
|
226
|
+
*/
|
|
227
|
+
export type NodeOption = {
|
|
228
|
+
NodeConfig?: NodeConfig;
|
|
229
|
+
NodeType?: "coordinator";
|
|
230
|
+
};
|
|
213
231
|
/**
|
|
214
232
|
* Type definition for `AWS::OpenSearchService::Domain.NodeToNodeEncryptionOptions`.
|
|
215
233
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodetonodeencryptionoptions.html}
|
|
@@ -3217,7 +3217,7 @@ export type GeospatialLayerJoinDefinition = {
|
|
|
3217
3217
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayermapconfiguration.html}
|
|
3218
3218
|
*/
|
|
3219
3219
|
export type GeospatialLayerMapConfiguration = {
|
|
3220
|
-
Interactions?:
|
|
3220
|
+
Interactions?: any;
|
|
3221
3221
|
Legend?: LegendOptions;
|
|
3222
3222
|
MapLayers?: GeospatialLayerItem[];
|
|
3223
3223
|
MapState?: GeospatialMapState;
|
|
@@ -3287,7 +3287,7 @@ export type GeospatialMapAggregatedFieldWells = {
|
|
|
3287
3287
|
*/
|
|
3288
3288
|
export type GeospatialMapConfiguration = {
|
|
3289
3289
|
FieldWells?: GeospatialMapFieldWells;
|
|
3290
|
-
Interactions?:
|
|
3290
|
+
Interactions?: any;
|
|
3291
3291
|
Legend?: LegendOptions;
|
|
3292
3292
|
MapStyleOptions?: GeospatialMapStyleOptions;
|
|
3293
3293
|
PointStyleOptions?: GeospatialPointStyleOptions;
|
|
@@ -3825,7 +3825,7 @@ export type ImageInteractionOptions = {
|
|
|
3825
3825
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagemenuoption.html}
|
|
3826
3826
|
*/
|
|
3827
3827
|
export type ImageMenuOption = {
|
|
3828
|
-
AvailabilityStatus?:
|
|
3828
|
+
AvailabilityStatus?: any;
|
|
3829
3829
|
};
|
|
3830
3830
|
/**
|
|
3831
3831
|
* Type definition for `AWS::QuickSight::Analysis.ImageStaticFile`.
|
|
@@ -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
|
+
* Definition of the AWS::QuickSight::CustomPermissions Resource Type.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-custompermissions.html}
|
|
6
|
+
*/
|
|
7
|
+
export type QuickSightCustomPermissionsProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `12`
|
|
10
|
+
* @maxLength `12`
|
|
11
|
+
* @pattern `^[0-9]{12}$`
|
|
12
|
+
*/
|
|
13
|
+
AwsAccountId: string;
|
|
14
|
+
Capabilities?: Capabilities;
|
|
15
|
+
/**
|
|
16
|
+
* @minLength `1`
|
|
17
|
+
* @maxLength `64`
|
|
18
|
+
* @pattern `^[a-zA-Z0-9+=,.@_-]+$`
|
|
19
|
+
*/
|
|
20
|
+
CustomPermissionsName: string;
|
|
21
|
+
/**
|
|
22
|
+
* @minLength `1`
|
|
23
|
+
* @maxLength `200`
|
|
24
|
+
*/
|
|
25
|
+
Tags?: Tag[];
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* Attribute type definition for `AWS::QuickSight::CustomPermissions`.
|
|
29
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-custompermissions.html#aws-resource-quicksight-custompermissions-return-values}
|
|
30
|
+
*/
|
|
31
|
+
export type QuickSightCustomPermissionsAttributes = {
|
|
32
|
+
Arn: string;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Type definition for `AWS::QuickSight::CustomPermissions.Capabilities`.
|
|
36
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html}
|
|
37
|
+
*/
|
|
38
|
+
export type Capabilities = {
|
|
39
|
+
AddOrRunAnomalyDetectionForAnalyses?: CapabilityState;
|
|
40
|
+
CreateAndUpdateDashboardEmailReports?: CapabilityState;
|
|
41
|
+
CreateAndUpdateDataSources?: CapabilityState;
|
|
42
|
+
CreateAndUpdateDatasets?: CapabilityState;
|
|
43
|
+
CreateAndUpdateThemes?: CapabilityState;
|
|
44
|
+
CreateAndUpdateThresholdAlerts?: CapabilityState;
|
|
45
|
+
CreateSPICEDataset?: CapabilityState;
|
|
46
|
+
CreateSharedFolders?: CapabilityState;
|
|
47
|
+
ExportToCsv?: CapabilityState;
|
|
48
|
+
ExportToExcel?: CapabilityState;
|
|
49
|
+
RenameSharedFolders?: CapabilityState;
|
|
50
|
+
ShareAnalyses?: CapabilityState;
|
|
51
|
+
ShareDashboards?: CapabilityState;
|
|
52
|
+
ShareDataSources?: CapabilityState;
|
|
53
|
+
ShareDatasets?: CapabilityState;
|
|
54
|
+
SubscribeDashboardEmailReports?: CapabilityState;
|
|
55
|
+
ViewAccountSPICECapacity?: CapabilityState;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* Type definition for `AWS::QuickSight::CustomPermissions.CapabilityState`.
|
|
59
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilitystate.html}
|
|
60
|
+
*/
|
|
61
|
+
export type CapabilityState = "DENY";
|
|
62
|
+
/**
|
|
63
|
+
* Type definition for `AWS::QuickSight::CustomPermissions.Tag`.
|
|
64
|
+
* <p>The key or keys of the key-value pairs for the resource tag or tags assigned to the
|
|
65
|
+
resource.</p>
|
|
66
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-tag.html}
|
|
67
|
+
*/
|
|
68
|
+
export type Tag = {
|
|
69
|
+
/**
|
|
70
|
+
* <p>Tag key.</p>
|
|
71
|
+
* @minLength `1`
|
|
72
|
+
* @maxLength `128`
|
|
73
|
+
*/
|
|
74
|
+
Key: string;
|
|
75
|
+
/**
|
|
76
|
+
* <p>Tag value.</p>
|
|
77
|
+
* @minLength `1`
|
|
78
|
+
* @maxLength `256`
|
|
79
|
+
*/
|
|
80
|
+
Value: string;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* Definition of the AWS::QuickSight::CustomPermissions Resource Type.
|
|
84
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-custompermissions.html}
|
|
85
|
+
*/
|
|
86
|
+
export declare class QuickSightCustomPermissions extends $Resource<"AWS::QuickSight::CustomPermissions", QuickSightCustomPermissionsProperties, QuickSightCustomPermissionsAttributes> {
|
|
87
|
+
static readonly Type = "AWS::QuickSight::CustomPermissions";
|
|
88
|
+
constructor(logicalId: string, properties: QuickSightCustomPermissionsProperties, options?: $ResourceOptions);
|
|
89
|
+
}
|
|
90
|
+
//# sourceMappingURL=AWS-QuickSight-CustomPermissions.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::CustomPermissions Resource Type.
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-custompermissions.html}
|
|
5
|
+
*/
|
|
6
|
+
export class QuickSightCustomPermissions extends $Resource {
|
|
7
|
+
static Type = "AWS::QuickSight::CustomPermissions";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, QuickSightCustomPermissions.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-QuickSight-CustomPermissions.js.map
|
|
@@ -1636,7 +1636,7 @@ export type DashboardPublishOptions = {
|
|
|
1636
1636
|
*/
|
|
1637
1637
|
SheetLayoutElementMaximizationOption?: SheetLayoutElementMaximizationOption;
|
|
1638
1638
|
VisualAxisSortOption?: VisualAxisSortOption;
|
|
1639
|
-
VisualMenuOption?:
|
|
1639
|
+
VisualMenuOption?: any;
|
|
1640
1640
|
/**
|
|
1641
1641
|
* <p>The visual publish options of a visual in a dashboard</p>
|
|
1642
1642
|
*/
|
|
@@ -3620,7 +3620,7 @@ export type GeospatialLayerJoinDefinition = {
|
|
|
3620
3620
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayermapconfiguration.html}
|
|
3621
3621
|
*/
|
|
3622
3622
|
export type GeospatialLayerMapConfiguration = {
|
|
3623
|
-
Interactions?:
|
|
3623
|
+
Interactions?: any;
|
|
3624
3624
|
Legend?: LegendOptions;
|
|
3625
3625
|
MapLayers?: GeospatialLayerItem[];
|
|
3626
3626
|
MapState?: GeospatialMapState;
|
|
@@ -3690,7 +3690,7 @@ export type GeospatialMapAggregatedFieldWells = {
|
|
|
3690
3690
|
*/
|
|
3691
3691
|
export type GeospatialMapConfiguration = {
|
|
3692
3692
|
FieldWells?: GeospatialMapFieldWells;
|
|
3693
|
-
Interactions?:
|
|
3693
|
+
Interactions?: any;
|
|
3694
3694
|
Legend?: LegendOptions;
|
|
3695
3695
|
MapStyleOptions?: GeospatialMapStyleOptions;
|
|
3696
3696
|
PointStyleOptions?: GeospatialPointStyleOptions;
|
|
@@ -8332,13 +8332,6 @@ export type VisualCustomActionOperation = {
|
|
|
8332
8332
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualcustomactiontrigger.html}
|
|
8333
8333
|
*/
|
|
8334
8334
|
export type VisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
|
8335
|
-
/**
|
|
8336
|
-
* Type definition for `AWS::QuickSight::Dashboard.VisualMenuOption`.
|
|
8337
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualmenuoption.html}
|
|
8338
|
-
*/
|
|
8339
|
-
export type VisualMenuOption = {
|
|
8340
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
8341
|
-
};
|
|
8342
8335
|
/**
|
|
8343
8336
|
* Type definition for `AWS::QuickSight::Dashboard.VisualPalette`.
|
|
8344
8337
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualpalette.html}
|
|
@@ -465,11 +465,6 @@ export type FieldFolder = {
|
|
|
465
465
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-fieldfoldermap.html}
|
|
466
466
|
*/
|
|
467
467
|
export type FieldFolderMap = Record<string, FieldFolder>;
|
|
468
|
-
/**
|
|
469
|
-
* Type definition for `AWS::QuickSight::DataSet.FileFormat`.
|
|
470
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-fileformat.html}
|
|
471
|
-
*/
|
|
472
|
-
export type FileFormat = "CSV" | "TSV" | "CLF" | "ELF" | "XLSX" | "JSON";
|
|
473
468
|
/**
|
|
474
469
|
* Type definition for `AWS::QuickSight::DataSet.FilterOperation`.
|
|
475
470
|
* <p>A transform operation that filters rows based on a condition.</p>
|
|
@@ -1063,10 +1058,7 @@ export type S3Source = {
|
|
|
1063
1058
|
* @maxLength `2048`
|
|
1064
1059
|
*/
|
|
1065
1060
|
InputColumns: InputColumn[];
|
|
1066
|
-
|
|
1067
|
-
* <p>Information about the format for a source file or files.</p>
|
|
1068
|
-
*/
|
|
1069
|
-
UploadSettings?: UploadSettings;
|
|
1061
|
+
UploadSettings?: any;
|
|
1070
1062
|
};
|
|
1071
1063
|
/**
|
|
1072
1064
|
* Type definition for `AWS::QuickSight::DataSet.Status`.
|
|
@@ -1154,11 +1146,6 @@ export type TagColumnOperation = {
|
|
|
1154
1146
|
*/
|
|
1155
1147
|
Tags: ColumnTag[];
|
|
1156
1148
|
};
|
|
1157
|
-
/**
|
|
1158
|
-
* Type definition for `AWS::QuickSight::DataSet.TextQualifier`.
|
|
1159
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-textqualifier.html}
|
|
1160
|
-
*/
|
|
1161
|
-
export type TextQualifier = "DOUBLE_QUOTE" | "SINGLE_QUOTE";
|
|
1162
1149
|
/**
|
|
1163
1150
|
* Type definition for `AWS::QuickSight::DataSet.TimeGranularity`.
|
|
1164
1151
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-timegranularity.html}
|
|
@@ -1234,30 +1221,6 @@ export type UntagColumnOperation = {
|
|
|
1234
1221
|
*/
|
|
1235
1222
|
TagNames: ColumnTagName[];
|
|
1236
1223
|
};
|
|
1237
|
-
/**
|
|
1238
|
-
* Type definition for `AWS::QuickSight::DataSet.UploadSettings`.
|
|
1239
|
-
* <p>Information about the format for a source file or files.</p>
|
|
1240
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-uploadsettings.html}
|
|
1241
|
-
*/
|
|
1242
|
-
export type UploadSettings = {
|
|
1243
|
-
/**
|
|
1244
|
-
* <p>Whether the file has a header row, or the files each have a header row.</p>
|
|
1245
|
-
*/
|
|
1246
|
-
ContainsHeader?: boolean;
|
|
1247
|
-
/**
|
|
1248
|
-
* <p>The delimiter between values in the file.</p>
|
|
1249
|
-
* @minLength `1`
|
|
1250
|
-
* @maxLength `1`
|
|
1251
|
-
*/
|
|
1252
|
-
Delimiter?: string;
|
|
1253
|
-
Format?: FileFormat;
|
|
1254
|
-
/**
|
|
1255
|
-
* <p>A row number to start reading data from.</p>
|
|
1256
|
-
* @min `1`
|
|
1257
|
-
*/
|
|
1258
|
-
StartFromRow?: number;
|
|
1259
|
-
TextQualifier?: TextQualifier;
|
|
1260
|
-
};
|
|
1261
1224
|
/**
|
|
1262
1225
|
* Definition of the AWS::QuickSight::DataSet Resource Type.
|
|
1263
1226
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-dataset.html}
|