@awboost/cfn-resource-types 0.1.272 → 0.1.273
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-Flow.d.ts +3 -3
- package/lib/AWS-Bedrock-FlowVersion.d.ts +5 -5
- package/lib/AWS-Bedrock-Prompt.d.ts +29 -2
- package/lib/AWS-Bedrock-PromptVersion.d.ts +50 -2
- package/lib/AWS-ECS-Cluster.d.ts +7 -5
- package/lib/AWS-IoTSiteWise-Gateway.d.ts +0 -4
- package/lib/AWS-QuickSight-Analysis.d.ts +17 -9
- package/lib/AWS-QuickSight-Dashboard.d.ts +19 -157
- package/lib/AWS-RDS-GlobalCluster.d.ts +13 -2
- package/package.json +1 -1
|
@@ -246,12 +246,12 @@ export type FlowDataConnectionConfiguration = {
|
|
|
246
246
|
export type FlowDefinition = {
|
|
247
247
|
/**
|
|
248
248
|
* List of connections
|
|
249
|
-
* @maxLength `
|
|
249
|
+
* @maxLength `100`
|
|
250
250
|
*/
|
|
251
251
|
Connections?: FlowConnection[];
|
|
252
252
|
/**
|
|
253
253
|
* List of nodes in a flow
|
|
254
|
-
* @maxLength `
|
|
254
|
+
* @maxLength `40`
|
|
255
255
|
*/
|
|
256
256
|
Nodes?: FlowNode[];
|
|
257
257
|
};
|
|
@@ -743,7 +743,7 @@ export type TextPromptTemplateConfiguration = {
|
|
|
743
743
|
/**
|
|
744
744
|
* List of input variables
|
|
745
745
|
* @minLength `0`
|
|
746
|
-
* @maxLength `
|
|
746
|
+
* @maxLength `20`
|
|
747
747
|
*/
|
|
748
748
|
InputVariables?: PromptInputVariable[];
|
|
749
749
|
/**
|
|
@@ -39,7 +39,7 @@ export type BedrockFlowVersionAttributes = {
|
|
|
39
39
|
Definition: {
|
|
40
40
|
/**
|
|
41
41
|
* List of connections
|
|
42
|
-
* @maxLength `
|
|
42
|
+
* @maxLength `100`
|
|
43
43
|
*/
|
|
44
44
|
Connections: {
|
|
45
45
|
/**
|
|
@@ -68,7 +68,7 @@ export type BedrockFlowVersionAttributes = {
|
|
|
68
68
|
}[];
|
|
69
69
|
/**
|
|
70
70
|
* List of nodes in a flow
|
|
71
|
-
* @maxLength `
|
|
71
|
+
* @maxLength `40`
|
|
72
72
|
*/
|
|
73
73
|
Nodes: {
|
|
74
74
|
/**
|
|
@@ -287,12 +287,12 @@ export type FlowDataConnectionConfiguration = {
|
|
|
287
287
|
export type FlowDefinition = {
|
|
288
288
|
/**
|
|
289
289
|
* List of connections
|
|
290
|
-
* @maxLength `
|
|
290
|
+
* @maxLength `100`
|
|
291
291
|
*/
|
|
292
292
|
Connections?: FlowConnection[];
|
|
293
293
|
/**
|
|
294
294
|
* List of nodes in a flow
|
|
295
|
-
* @maxLength `
|
|
295
|
+
* @maxLength `40`
|
|
296
296
|
*/
|
|
297
297
|
Nodes?: FlowNode[];
|
|
298
298
|
};
|
|
@@ -741,7 +741,7 @@ export type TextPromptTemplateConfiguration = {
|
|
|
741
741
|
/**
|
|
742
742
|
* List of input variables
|
|
743
743
|
* @minLength `0`
|
|
744
|
-
* @maxLength `
|
|
744
|
+
* @maxLength `20`
|
|
745
745
|
*/
|
|
746
746
|
InputVariables?: PromptInputVariable[];
|
|
747
747
|
/**
|
|
@@ -116,7 +116,7 @@ export type ChatPromptTemplateConfiguration = {
|
|
|
116
116
|
/**
|
|
117
117
|
* List of input variables
|
|
118
118
|
* @minLength `0`
|
|
119
|
-
* @maxLength `
|
|
119
|
+
* @maxLength `20`
|
|
120
120
|
*/
|
|
121
121
|
InputVariables?: PromptInputVariable[];
|
|
122
122
|
/**
|
|
@@ -218,6 +218,27 @@ export type PromptInputVariable = {
|
|
|
218
218
|
*/
|
|
219
219
|
Name?: string;
|
|
220
220
|
};
|
|
221
|
+
/**
|
|
222
|
+
* Type definition for `AWS::Bedrock::Prompt.PromptMetadataEntry`.
|
|
223
|
+
* Contains a key-value pair that defines a metadata tag and value to attach to a prompt variant.
|
|
224
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptmetadataentry.html}
|
|
225
|
+
*/
|
|
226
|
+
export type PromptMetadataEntry = {
|
|
227
|
+
/**
|
|
228
|
+
* The key of a metadata tag for a prompt variant.
|
|
229
|
+
* @minLength `1`
|
|
230
|
+
* @maxLength `128`
|
|
231
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
232
|
+
*/
|
|
233
|
+
Key: string;
|
|
234
|
+
/**
|
|
235
|
+
* The value of a metadata tag for a prompt variant.
|
|
236
|
+
* @minLength `1`
|
|
237
|
+
* @maxLength `1024`
|
|
238
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
239
|
+
*/
|
|
240
|
+
Value: string;
|
|
241
|
+
};
|
|
221
242
|
/**
|
|
222
243
|
* Type definition for `AWS::Bedrock::Prompt.PromptModelInferenceConfiguration`.
|
|
223
244
|
* Prompt model inference configuration
|
|
@@ -283,6 +304,12 @@ export type PromptVariant = {
|
|
|
283
304
|
AdditionalModelRequestFields?: AdditionalModelRequestFields;
|
|
284
305
|
GenAiResource?: PromptGenAiResource;
|
|
285
306
|
InferenceConfiguration?: PromptInferenceConfiguration;
|
|
307
|
+
/**
|
|
308
|
+
* List of metadata to associate with the prompt variant.
|
|
309
|
+
* @minLength `0`
|
|
310
|
+
* @maxLength `50`
|
|
311
|
+
*/
|
|
312
|
+
Metadata?: PromptMetadataEntry[];
|
|
286
313
|
/**
|
|
287
314
|
* 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.
|
|
288
315
|
* @minLength `1`
|
|
@@ -354,7 +381,7 @@ export type TextPromptTemplateConfiguration = {
|
|
|
354
381
|
/**
|
|
355
382
|
* List of input variables
|
|
356
383
|
* @minLength `0`
|
|
357
|
-
* @maxLength `
|
|
384
|
+
* @maxLength `20`
|
|
358
385
|
*/
|
|
359
386
|
InputVariables?: PromptInputVariable[];
|
|
360
387
|
/**
|
|
@@ -119,6 +119,27 @@ export type BedrockPromptVersionAttributes = {
|
|
|
119
119
|
TopP: number;
|
|
120
120
|
};
|
|
121
121
|
};
|
|
122
|
+
/**
|
|
123
|
+
* List of metadata to associate with the prompt variant.
|
|
124
|
+
* @minLength `0`
|
|
125
|
+
* @maxLength `50`
|
|
126
|
+
*/
|
|
127
|
+
Metadata: {
|
|
128
|
+
/**
|
|
129
|
+
* The key of a metadata tag for a prompt variant.
|
|
130
|
+
* @minLength `1`
|
|
131
|
+
* @maxLength `128`
|
|
132
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
133
|
+
*/
|
|
134
|
+
Key: string;
|
|
135
|
+
/**
|
|
136
|
+
* The value of a metadata tag for a prompt variant.
|
|
137
|
+
* @minLength `1`
|
|
138
|
+
* @maxLength `1024`
|
|
139
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
140
|
+
*/
|
|
141
|
+
Value: string;
|
|
142
|
+
}[];
|
|
122
143
|
/**
|
|
123
144
|
* 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.
|
|
124
145
|
* @minLength `1`
|
|
@@ -192,7 +213,7 @@ export type ChatPromptTemplateConfiguration = {
|
|
|
192
213
|
/**
|
|
193
214
|
* List of input variables
|
|
194
215
|
* @minLength `0`
|
|
195
|
-
* @maxLength `
|
|
216
|
+
* @maxLength `20`
|
|
196
217
|
*/
|
|
197
218
|
InputVariables?: PromptInputVariable[];
|
|
198
219
|
/**
|
|
@@ -294,6 +315,27 @@ export type PromptInputVariable = {
|
|
|
294
315
|
*/
|
|
295
316
|
Name?: string;
|
|
296
317
|
};
|
|
318
|
+
/**
|
|
319
|
+
* Type definition for `AWS::Bedrock::PromptVersion.PromptMetadataEntry`.
|
|
320
|
+
* Contains a key-value pair that defines a metadata tag and value to attach to a prompt variant.
|
|
321
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-promptmetadataentry.html}
|
|
322
|
+
*/
|
|
323
|
+
export type PromptMetadataEntry = {
|
|
324
|
+
/**
|
|
325
|
+
* The key of a metadata tag for a prompt variant.
|
|
326
|
+
* @minLength `1`
|
|
327
|
+
* @maxLength `128`
|
|
328
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
329
|
+
*/
|
|
330
|
+
Key: string;
|
|
331
|
+
/**
|
|
332
|
+
* The value of a metadata tag for a prompt variant.
|
|
333
|
+
* @minLength `1`
|
|
334
|
+
* @maxLength `1024`
|
|
335
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
336
|
+
*/
|
|
337
|
+
Value: string;
|
|
338
|
+
};
|
|
297
339
|
/**
|
|
298
340
|
* Type definition for `AWS::Bedrock::PromptVersion.PromptModelInferenceConfiguration`.
|
|
299
341
|
* Prompt model inference configuration
|
|
@@ -359,6 +401,12 @@ export type PromptVariant = {
|
|
|
359
401
|
AdditionalModelRequestFields?: AdditionalModelRequestFields;
|
|
360
402
|
GenAiResource?: PromptGenAiResource;
|
|
361
403
|
InferenceConfiguration?: PromptInferenceConfiguration;
|
|
404
|
+
/**
|
|
405
|
+
* List of metadata to associate with the prompt variant.
|
|
406
|
+
* @minLength `0`
|
|
407
|
+
* @maxLength `50`
|
|
408
|
+
*/
|
|
409
|
+
Metadata?: PromptMetadataEntry[];
|
|
362
410
|
/**
|
|
363
411
|
* 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.
|
|
364
412
|
* @minLength `1`
|
|
@@ -430,7 +478,7 @@ export type TextPromptTemplateConfiguration = {
|
|
|
430
478
|
/**
|
|
431
479
|
* List of input variables
|
|
432
480
|
* @minLength `0`
|
|
433
|
-
* @maxLength `
|
|
481
|
+
* @maxLength `20`
|
|
434
482
|
*/
|
|
435
483
|
InputVariables?: PromptInputVariable[];
|
|
436
484
|
/**
|
package/lib/AWS-ECS-Cluster.d.ts
CHANGED
|
@@ -169,12 +169,14 @@ export type ExecuteCommandLogConfiguration = {
|
|
|
169
169
|
*/
|
|
170
170
|
export type ManagedStorageConfiguration = {
|
|
171
171
|
/**
|
|
172
|
-
|
|
173
|
-
|
|
172
|
+
* Specify the KMSlong key ID for the Fargate ephemeral storage.
|
|
173
|
+
The key must be a single Region key.
|
|
174
|
+
*/
|
|
174
175
|
FargateEphemeralStorageKmsKeyId?: string;
|
|
175
176
|
/**
|
|
176
|
-
|
|
177
|
-
|
|
177
|
+
* Specify a KMSlong key ID to encrypt the managed storage.
|
|
178
|
+
The key must be a single Region key.
|
|
179
|
+
*/
|
|
178
180
|
KmsKeyId?: string;
|
|
179
181
|
};
|
|
180
182
|
/**
|
|
@@ -185,7 +187,7 @@ export type ManagedStorageConfiguration = {
|
|
|
185
187
|
*/
|
|
186
188
|
export type ServiceConnectDefaults = {
|
|
187
189
|
/**
|
|
188
|
-
* The namespace name or full Amazon Resource Name (ARN) of the CMAPlong namespace that's used when you create a service and don't specify a Service Connect configuration. The namespace name can include up to 1024 characters. The name is case-sensitive. The name can't include
|
|
190
|
+
* The namespace name or full Amazon Resource Name (ARN) of the CMAPlong namespace that's used when you create a service and don't specify a Service Connect configuration. The namespace name can include up to 1024 characters. The name is case-sensitive. The name can't include greater than (>), less than (<), double quotation marks ("), or slash (/).
|
|
189
191
|
If you enter an existing namespace name or ARN, then that namespace will be used. Any namespace type is supported. The namespace must be in this account and this AWS Region.
|
|
190
192
|
If you enter a new name, a CMAPlong namespace will be created. Amazon ECS creates a CMAP namespace with the "API calls" method of instance discovery only. This instance discovery method is the "HTTP" namespace type in the CLIlong. Other types of instance discovery aren't used by Service Connect.
|
|
191
193
|
If you update the cluster with an empty string ``""`` for the namespace name, the cluster configuration for Service Connect is removed. Note that the namespace will remain in CMAP and must be deleted separately.
|
|
@@ -57,10 +57,6 @@ export type GatewayCapabilitySummary = {
|
|
|
57
57
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-gateway-gatewayplatform.html}
|
|
58
58
|
*/
|
|
59
59
|
export type GatewayPlatform = {
|
|
60
|
-
/**
|
|
61
|
-
* A gateway that runs on AWS IoT Greengrass V1.
|
|
62
|
-
*/
|
|
63
|
-
Greengrass?: any;
|
|
64
60
|
/**
|
|
65
61
|
* A gateway that runs on AWS IoT Greengrass V2.
|
|
66
62
|
*/
|
|
@@ -1426,6 +1426,11 @@ export type CustomValuesConfiguration = {
|
|
|
1426
1426
|
CustomValues: CustomParameterValues;
|
|
1427
1427
|
IncludeNullValue?: boolean;
|
|
1428
1428
|
};
|
|
1429
|
+
/**
|
|
1430
|
+
* Type definition for `AWS::QuickSight::Analysis.DashboardBehavior`.
|
|
1431
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-dashboardbehavior.html}
|
|
1432
|
+
*/
|
|
1433
|
+
export type DashboardBehavior = "ENABLED" | "DISABLED";
|
|
1429
1434
|
/**
|
|
1430
1435
|
* Type definition for `AWS::QuickSight::Analysis.DataBarsOptions`.
|
|
1431
1436
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-databarsoptions.html}
|
|
@@ -3217,7 +3222,7 @@ export type GeospatialLayerJoinDefinition = {
|
|
|
3217
3222
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayermapconfiguration.html}
|
|
3218
3223
|
*/
|
|
3219
3224
|
export type GeospatialLayerMapConfiguration = {
|
|
3220
|
-
Interactions?:
|
|
3225
|
+
Interactions?: VisualInteractionOptions;
|
|
3221
3226
|
Legend?: LegendOptions;
|
|
3222
3227
|
MapLayers?: GeospatialLayerItem[];
|
|
3223
3228
|
MapState?: GeospatialMapState;
|
|
@@ -3287,7 +3292,7 @@ export type GeospatialMapAggregatedFieldWells = {
|
|
|
3287
3292
|
*/
|
|
3288
3293
|
export type GeospatialMapConfiguration = {
|
|
3289
3294
|
FieldWells?: GeospatialMapFieldWells;
|
|
3290
|
-
Interactions?:
|
|
3295
|
+
Interactions?: VisualInteractionOptions;
|
|
3291
3296
|
Legend?: LegendOptions;
|
|
3292
3297
|
MapStyleOptions?: GeospatialMapStyleOptions;
|
|
3293
3298
|
PointStyleOptions?: GeospatialPointStyleOptions;
|
|
@@ -3825,7 +3830,7 @@ export type ImageInteractionOptions = {
|
|
|
3825
3830
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagemenuoption.html}
|
|
3826
3831
|
*/
|
|
3827
3832
|
export type ImageMenuOption = {
|
|
3828
|
-
AvailabilityStatus?:
|
|
3833
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
3829
3834
|
};
|
|
3830
3835
|
/**
|
|
3831
3836
|
* Type definition for `AWS::QuickSight::Analysis.ImageStaticFile`.
|
|
@@ -4672,7 +4677,7 @@ export type NumberFormatConfiguration = {
|
|
|
4672
4677
|
* Type definition for `AWS::QuickSight::Analysis.NumberScale`.
|
|
4673
4678
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-numberscale.html}
|
|
4674
4679
|
*/
|
|
4675
|
-
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS";
|
|
4680
|
+
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS" | "LAKHS" | "CRORES";
|
|
4676
4681
|
/**
|
|
4677
4682
|
* Type definition for `AWS::QuickSight::Analysis.NumericalAggregationFunction`.
|
|
4678
4683
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-numericalaggregationfunction.html}
|
|
@@ -6480,11 +6485,6 @@ export type ShapeConditionalFormat = {
|
|
|
6480
6485
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheet.html}
|
|
6481
6486
|
*/
|
|
6482
6487
|
export type Sheet = {
|
|
6483
|
-
/**
|
|
6484
|
-
* @minLength `0`
|
|
6485
|
-
* @maxLength `10`
|
|
6486
|
-
*/
|
|
6487
|
-
Images?: SheetImage[];
|
|
6488
6488
|
/**
|
|
6489
6489
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
|
6490
6490
|
console.</p>
|
|
@@ -7907,6 +7907,14 @@ export type VisualCustomActionOperation = {
|
|
|
7907
7907
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualcustomactiontrigger.html}
|
|
7908
7908
|
*/
|
|
7909
7909
|
export type VisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
|
7910
|
+
/**
|
|
7911
|
+
* Type definition for `AWS::QuickSight::Analysis.VisualInteractionOptions`.
|
|
7912
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualinteractionoptions.html}
|
|
7913
|
+
*/
|
|
7914
|
+
export type VisualInteractionOptions = {
|
|
7915
|
+
ContextMenuOption?: any;
|
|
7916
|
+
VisualMenuOption?: any;
|
|
7917
|
+
};
|
|
7910
7918
|
/**
|
|
7911
7919
|
* Type definition for `AWS::QuickSight::Analysis.VisualPalette`.
|
|
7912
7920
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualpalette.html}
|
|
@@ -142,154 +142,6 @@ export type QuickSightDashboardAttributes = {
|
|
|
142
142
|
* @maxLength `20`
|
|
143
143
|
*/
|
|
144
144
|
Sheets: {
|
|
145
|
-
/**
|
|
146
|
-
* @minLength `0`
|
|
147
|
-
* @maxLength `10`
|
|
148
|
-
*/
|
|
149
|
-
Images: {
|
|
150
|
-
/**
|
|
151
|
-
* @minLength `0`
|
|
152
|
-
* @maxLength `10`
|
|
153
|
-
*/
|
|
154
|
-
Actions: {
|
|
155
|
-
/**
|
|
156
|
-
* @minLength `1`
|
|
157
|
-
* @maxLength `2`
|
|
158
|
-
*/
|
|
159
|
-
ActionOperations: {
|
|
160
|
-
NavigationOperation: {
|
|
161
|
-
LocalNavigationConfiguration: {
|
|
162
|
-
/**
|
|
163
|
-
* @minLength `1`
|
|
164
|
-
* @maxLength `512`
|
|
165
|
-
* @pattern `^[\w\-]+$`
|
|
166
|
-
*/
|
|
167
|
-
TargetSheetId: string;
|
|
168
|
-
};
|
|
169
|
-
};
|
|
170
|
-
SetParametersOperation: {
|
|
171
|
-
/**
|
|
172
|
-
* @minLength `1`
|
|
173
|
-
* @maxLength `200`
|
|
174
|
-
*/
|
|
175
|
-
ParameterValueConfigurations: {
|
|
176
|
-
/**
|
|
177
|
-
* @minLength `1`
|
|
178
|
-
* @maxLength `2048`
|
|
179
|
-
* @pattern `^[a-zA-Z0-9]+$`
|
|
180
|
-
*/
|
|
181
|
-
DestinationParameterName: string;
|
|
182
|
-
Value: {
|
|
183
|
-
CustomValuesConfiguration: {
|
|
184
|
-
CustomValues: {
|
|
185
|
-
/**
|
|
186
|
-
* @minLength `0`
|
|
187
|
-
* @maxLength `50000`
|
|
188
|
-
*/
|
|
189
|
-
DateTimeValues: string[];
|
|
190
|
-
/**
|
|
191
|
-
* @minLength `0`
|
|
192
|
-
* @maxLength `50000`
|
|
193
|
-
*/
|
|
194
|
-
DecimalValues: number[];
|
|
195
|
-
/**
|
|
196
|
-
* @minLength `0`
|
|
197
|
-
* @maxLength `50000`
|
|
198
|
-
*/
|
|
199
|
-
IntegerValues: number[];
|
|
200
|
-
/**
|
|
201
|
-
* @minLength `0`
|
|
202
|
-
* @maxLength `50000`
|
|
203
|
-
*/
|
|
204
|
-
StringValues: string[];
|
|
205
|
-
};
|
|
206
|
-
IncludeNullValue: boolean;
|
|
207
|
-
};
|
|
208
|
-
SelectAllValueOptions: SelectAllValueOptions;
|
|
209
|
-
SourceColumn: {
|
|
210
|
-
/**
|
|
211
|
-
* @minLength `1`
|
|
212
|
-
* @maxLength `127`
|
|
213
|
-
*/
|
|
214
|
-
ColumnName: string;
|
|
215
|
-
/**
|
|
216
|
-
* @minLength `1`
|
|
217
|
-
* @maxLength `2048`
|
|
218
|
-
*/
|
|
219
|
-
DataSetIdentifier: string;
|
|
220
|
-
};
|
|
221
|
-
/**
|
|
222
|
-
* @minLength `1`
|
|
223
|
-
* @maxLength `512`
|
|
224
|
-
*/
|
|
225
|
-
SourceField: string;
|
|
226
|
-
SourceParameterName: string;
|
|
227
|
-
};
|
|
228
|
-
}[];
|
|
229
|
-
};
|
|
230
|
-
URLOperation: {
|
|
231
|
-
URLTarget: URLTargetConfiguration;
|
|
232
|
-
/**
|
|
233
|
-
* @minLength `1`
|
|
234
|
-
* @maxLength `2048`
|
|
235
|
-
*/
|
|
236
|
-
URLTemplate: string;
|
|
237
|
-
};
|
|
238
|
-
}[];
|
|
239
|
-
/**
|
|
240
|
-
* @minLength `1`
|
|
241
|
-
* @maxLength `512`
|
|
242
|
-
* @pattern `^[\w\-]+$`
|
|
243
|
-
*/
|
|
244
|
-
CustomActionId: string;
|
|
245
|
-
/**
|
|
246
|
-
* @minLength `1`
|
|
247
|
-
* @maxLength `256`
|
|
248
|
-
*/
|
|
249
|
-
Name: string;
|
|
250
|
-
Status: WidgetStatus;
|
|
251
|
-
Trigger: ImageCustomActionTrigger;
|
|
252
|
-
}[];
|
|
253
|
-
/**
|
|
254
|
-
* @minLength `1`
|
|
255
|
-
* @maxLength `1024`
|
|
256
|
-
*/
|
|
257
|
-
ImageContentAltText: string;
|
|
258
|
-
Interactions: {
|
|
259
|
-
ImageMenuOption: {
|
|
260
|
-
AvailabilityStatus: DashboardBehavior;
|
|
261
|
-
};
|
|
262
|
-
};
|
|
263
|
-
Scaling: {
|
|
264
|
-
ScalingType: SheetImageScalingType;
|
|
265
|
-
};
|
|
266
|
-
/**
|
|
267
|
-
* @minLength `1`
|
|
268
|
-
* @maxLength `512`
|
|
269
|
-
* @pattern `^[\w\-]+$`
|
|
270
|
-
*/
|
|
271
|
-
SheetImageId: string;
|
|
272
|
-
Source: {
|
|
273
|
-
SheetImageStaticFileSource: {
|
|
274
|
-
/**
|
|
275
|
-
* @minLength `1`
|
|
276
|
-
* @maxLength `512`
|
|
277
|
-
* @pattern `^[\w\-]+$`
|
|
278
|
-
*/
|
|
279
|
-
StaticFileId: string;
|
|
280
|
-
};
|
|
281
|
-
};
|
|
282
|
-
Tooltip: {
|
|
283
|
-
TooltipText: {
|
|
284
|
-
/**
|
|
285
|
-
* @minLength `1`
|
|
286
|
-
* @maxLength `1024`
|
|
287
|
-
*/
|
|
288
|
-
PlainText: string;
|
|
289
|
-
};
|
|
290
|
-
Visibility: Visibility;
|
|
291
|
-
};
|
|
292
|
-
}[];
|
|
293
145
|
/**
|
|
294
146
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
|
295
147
|
console.</p>
|
|
@@ -1636,7 +1488,7 @@ export type DashboardPublishOptions = {
|
|
|
1636
1488
|
*/
|
|
1637
1489
|
SheetLayoutElementMaximizationOption?: SheetLayoutElementMaximizationOption;
|
|
1638
1490
|
VisualAxisSortOption?: VisualAxisSortOption;
|
|
1639
|
-
VisualMenuOption?:
|
|
1491
|
+
VisualMenuOption?: VisualMenuOption;
|
|
1640
1492
|
/**
|
|
1641
1493
|
* <p>The visual publish options of a visual in a dashboard</p>
|
|
1642
1494
|
*/
|
|
@@ -3620,7 +3472,7 @@ export type GeospatialLayerJoinDefinition = {
|
|
|
3620
3472
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayermapconfiguration.html}
|
|
3621
3473
|
*/
|
|
3622
3474
|
export type GeospatialLayerMapConfiguration = {
|
|
3623
|
-
Interactions?:
|
|
3475
|
+
Interactions?: VisualInteractionOptions;
|
|
3624
3476
|
Legend?: LegendOptions;
|
|
3625
3477
|
MapLayers?: GeospatialLayerItem[];
|
|
3626
3478
|
MapState?: GeospatialMapState;
|
|
@@ -3690,7 +3542,7 @@ export type GeospatialMapAggregatedFieldWells = {
|
|
|
3690
3542
|
*/
|
|
3691
3543
|
export type GeospatialMapConfiguration = {
|
|
3692
3544
|
FieldWells?: GeospatialMapFieldWells;
|
|
3693
|
-
Interactions?:
|
|
3545
|
+
Interactions?: VisualInteractionOptions;
|
|
3694
3546
|
Legend?: LegendOptions;
|
|
3695
3547
|
MapStyleOptions?: GeospatialMapStyleOptions;
|
|
3696
3548
|
PointStyleOptions?: GeospatialPointStyleOptions;
|
|
@@ -5086,7 +4938,7 @@ export type NumberFormatConfiguration = {
|
|
|
5086
4938
|
* Type definition for `AWS::QuickSight::Dashboard.NumberScale`.
|
|
5087
4939
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-numberscale.html}
|
|
5088
4940
|
*/
|
|
5089
|
-
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS";
|
|
4941
|
+
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS" | "LAKHS" | "CRORES";
|
|
5090
4942
|
/**
|
|
5091
4943
|
* Type definition for `AWS::QuickSight::Dashboard.NumericalAggregationFunction`.
|
|
5092
4944
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-numericalaggregationfunction.html}
|
|
@@ -6882,11 +6734,6 @@ export type ShapeConditionalFormat = {
|
|
|
6882
6734
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheet.html}
|
|
6883
6735
|
*/
|
|
6884
6736
|
export type Sheet = {
|
|
6885
|
-
/**
|
|
6886
|
-
* @minLength `0`
|
|
6887
|
-
* @maxLength `10`
|
|
6888
|
-
*/
|
|
6889
|
-
Images?: SheetImage[];
|
|
6890
6737
|
/**
|
|
6891
6738
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
|
6892
6739
|
console.</p>
|
|
@@ -8332,6 +8179,21 @@ export type VisualCustomActionOperation = {
|
|
|
8332
8179
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualcustomactiontrigger.html}
|
|
8333
8180
|
*/
|
|
8334
8181
|
export type VisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
|
8182
|
+
/**
|
|
8183
|
+
* Type definition for `AWS::QuickSight::Dashboard.VisualInteractionOptions`.
|
|
8184
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualinteractionoptions.html}
|
|
8185
|
+
*/
|
|
8186
|
+
export type VisualInteractionOptions = {
|
|
8187
|
+
ContextMenuOption?: any;
|
|
8188
|
+
VisualMenuOption?: VisualMenuOption;
|
|
8189
|
+
};
|
|
8190
|
+
/**
|
|
8191
|
+
* Type definition for `AWS::QuickSight::Dashboard.VisualMenuOption`.
|
|
8192
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualmenuoption.html}
|
|
8193
|
+
*/
|
|
8194
|
+
export type VisualMenuOption = {
|
|
8195
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
8196
|
+
};
|
|
8335
8197
|
/**
|
|
8336
8198
|
* Type definition for `AWS::QuickSight::Dashboard.VisualPalette`.
|
|
8337
8199
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualpalette.html}
|
|
@@ -29,7 +29,6 @@ export type RDSGlobalClusterProperties = {
|
|
|
29
29
|
* @pattern `^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$`
|
|
30
30
|
*/
|
|
31
31
|
GlobalClusterIdentifier?: string;
|
|
32
|
-
GlobalEndpoint?: GlobalEndpoint;
|
|
33
32
|
/**
|
|
34
33
|
* The Amazon Resource Name (ARN) to use as the primary cluster of the global database. This parameter is optional. This parameter is stored as a lowercase string.
|
|
35
34
|
*/
|
|
@@ -45,6 +44,18 @@ export type RDSGlobalClusterProperties = {
|
|
|
45
44
|
*/
|
|
46
45
|
Tags?: Tag[];
|
|
47
46
|
};
|
|
47
|
+
/**
|
|
48
|
+
* Attribute type definition for `AWS::RDS::GlobalCluster`.
|
|
49
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html#aws-resource-rds-globalcluster-return-values}
|
|
50
|
+
*/
|
|
51
|
+
export type RDSGlobalClusterAttributes = {
|
|
52
|
+
GlobalEndpoint: {
|
|
53
|
+
/**
|
|
54
|
+
* The writer endpoint for the global database cluster. This endpoint always points to the writer DB instance in the current primary cluster.
|
|
55
|
+
*/
|
|
56
|
+
Address: string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
48
59
|
/**
|
|
49
60
|
* Type definition for `AWS::RDS::GlobalCluster.GlobalEndpoint`.
|
|
50
61
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-globalcluster-globalendpoint.html}
|
|
@@ -78,7 +89,7 @@ export type Tag = {
|
|
|
78
89
|
* Resource Type definition for AWS::RDS::GlobalCluster
|
|
79
90
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html}
|
|
80
91
|
*/
|
|
81
|
-
export declare class RDSGlobalCluster extends $Resource<"AWS::RDS::GlobalCluster", RDSGlobalClusterProperties,
|
|
92
|
+
export declare class RDSGlobalCluster extends $Resource<"AWS::RDS::GlobalCluster", RDSGlobalClusterProperties, RDSGlobalClusterAttributes> {
|
|
82
93
|
static readonly Type = "AWS::RDS::GlobalCluster";
|
|
83
94
|
constructor(logicalId: string, properties: RDSGlobalClusterProperties, options?: $ResourceOptions);
|
|
84
95
|
}
|