@awboost/cfntypes 1.0.0-beta.63 → 1.0.0-beta.65
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/resources.generated/AWS-AppConfig.d.ts +1 -0
- package/lib/resources.generated/AWS-AppIntegrations.d.ts +1 -1
- package/lib/resources.generated/AWS-AutoScaling.d.ts +66 -78
- package/lib/resources.generated/AWS-AutoScaling.js +2 -8
- package/lib/resources.generated/AWS-Cognito.d.ts +45 -0
- package/lib/resources.generated/AWS-Cognito.js +13 -0
- package/lib/resources.generated/AWS-Connect.d.ts +2 -0
- package/lib/resources.generated/AWS-ConnectCampaigns.d.ts +12 -1
- package/lib/resources.generated/AWS-EC2.d.ts +31 -0
- package/lib/resources.generated/AWS-EMR.d.ts +15 -7
- package/lib/resources.generated/AWS-EMR.js +3 -1
- package/lib/resources.generated/AWS-ElasticLoadBalancingV2.d.ts +11 -10
- package/lib/resources.generated/AWS-ElasticLoadBalancingV2.js +3 -2
- package/lib/resources.generated/AWS-EntityResolution.d.ts +99 -0
- package/lib/resources.generated/AWS-EntityResolution.js +13 -0
- package/lib/resources.generated/AWS-Events.d.ts +32 -40
- package/lib/resources.generated/AWS-GameLift.d.ts +1 -0
- package/lib/resources.generated/AWS-IAM.d.ts +13 -13
- package/lib/resources.generated/AWS-IAM.js +1 -1
- package/lib/resources.generated/AWS-IoT.d.ts +72 -1
- package/lib/resources.generated/AWS-IoT.js +26 -0
- package/lib/resources.generated/AWS-Kendra.d.ts +0 -9
- package/lib/resources.generated/AWS-Lambda.d.ts +24 -11
- package/lib/resources.generated/AWS-Lambda.js +1 -1
- package/lib/resources.generated/AWS-NetworkManager.d.ts +7 -0
- package/lib/resources.generated/AWS-NetworkManager.js +3 -3
- package/lib/resources.generated/AWS-QuickSight.d.ts +207 -1
- package/lib/resources.generated/AWS-S3ObjectLambda.d.ts +1 -11
- package/lib/resources.generated/AWS-S3ObjectLambda.js +0 -2
- package/lib/resources.generated/AWS-SageMaker.d.ts +6 -0
- package/lib/resources.generated/AWS-WAFv2.d.ts +1 -0
- package/lib/resources.generated/core.d.ts +1 -1
- package/package.json +2 -2
@@ -253,6 +253,7 @@ export interface LambdaFunctionTracingConfig {
|
|
253
253
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-vpcconfig.html | AWS::Lambda::Function.VpcConfig}
|
254
254
|
*/
|
255
255
|
export interface LambdaFunctionVpcConfig {
|
256
|
+
Ipv6AllowedForDualStack?: boolean;
|
256
257
|
SecurityGroupIds?: any[];
|
257
258
|
SubnetIds?: any[];
|
258
259
|
}
|
@@ -287,6 +288,15 @@ export interface LambdaUrlCors {
|
|
287
288
|
export interface LambdaVersionProvisionedConcurrencyConfiguration {
|
288
289
|
ProvisionedConcurrentExecutions: number;
|
289
290
|
}
|
291
|
+
/**
|
292
|
+
* Type definition for AWS::Lambda::Version.RuntimePolicy
|
293
|
+
*
|
294
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-version-runtimepolicy.html | AWS::Lambda::Version.RuntimePolicy}
|
295
|
+
*/
|
296
|
+
export interface LambdaVersionRuntimePolicy {
|
297
|
+
UpdateRuntimeOn: string;
|
298
|
+
RuntimeVersionArn?: string;
|
299
|
+
}
|
290
300
|
/**
|
291
301
|
* Type definition for AWS::Lambda::Alias
|
292
302
|
*
|
@@ -415,29 +425,30 @@ export declare class LambdaEventSourceMapping extends ResourceBase<"AWS::Lambda:
|
|
415
425
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html | AWS::Lambda::Function}
|
416
426
|
*/
|
417
427
|
export interface LambdaFunctionProps {
|
418
|
-
|
419
|
-
MemorySize?: number;
|
428
|
+
Policy?: object;
|
420
429
|
Description?: string;
|
421
430
|
TracingConfig?: LambdaFunctionTracingConfig;
|
422
431
|
VpcConfig?: LambdaFunctionVpcConfig;
|
423
|
-
DeadLetterConfig?: LambdaFunctionDeadLetterConfig;
|
424
|
-
Timeout?: number;
|
425
432
|
RuntimeManagementConfig?: LambdaFunctionRuntimeManagementConfig;
|
426
|
-
Handler?: string;
|
427
433
|
ReservedConcurrentExecutions?: number;
|
428
434
|
SnapStart?: LambdaFunctionSnapStart;
|
429
|
-
Code: LambdaFunctionCode;
|
430
|
-
Role: string;
|
431
435
|
FileSystemConfigs?: any[];
|
432
436
|
FunctionName?: string;
|
433
437
|
Runtime?: string;
|
434
438
|
KmsKeyArn?: string;
|
435
439
|
PackageType?: string;
|
436
440
|
CodeSigningConfigArn?: string;
|
437
|
-
Environment?: LambdaFunctionEnvironment;
|
438
|
-
EphemeralStorage?: LambdaFunctionEphemeralStorage;
|
439
441
|
Layers?: any[];
|
440
442
|
Tags?: Tag[];
|
443
|
+
ImageConfig?: LambdaFunctionImageConfig;
|
444
|
+
MemorySize?: number;
|
445
|
+
DeadLetterConfig?: LambdaFunctionDeadLetterConfig;
|
446
|
+
Timeout?: number;
|
447
|
+
Handler?: string;
|
448
|
+
Code: LambdaFunctionCode;
|
449
|
+
Role: string;
|
450
|
+
Environment?: LambdaFunctionEnvironment;
|
451
|
+
EphemeralStorage?: LambdaFunctionEphemeralStorage;
|
441
452
|
Architectures?: any[];
|
442
453
|
}
|
443
454
|
/**
|
@@ -591,10 +602,11 @@ export declare class LambdaUrl extends ResourceBase<"AWS::Lambda::Url", LambdaUr
|
|
591
602
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html | AWS::Lambda::Version}
|
592
603
|
*/
|
593
604
|
export interface LambdaVersionProps {
|
594
|
-
CodeSha256?: string;
|
595
|
-
Description?: string;
|
596
605
|
FunctionName: string;
|
597
606
|
ProvisionedConcurrencyConfig?: LambdaVersionProvisionedConcurrencyConfiguration;
|
607
|
+
Description?: string;
|
608
|
+
RuntimePolicy?: LambdaVersionRuntimePolicy;
|
609
|
+
CodeSha256?: string;
|
598
610
|
}
|
599
611
|
/**
|
600
612
|
* Attributes type definition for AWS::Lambda::Version
|
@@ -602,6 +614,7 @@ export interface LambdaVersionProps {
|
|
602
614
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-version.html | AWS::Lambda::Version}
|
603
615
|
*/
|
604
616
|
export interface LambdaVersionAttribs {
|
617
|
+
FunctionArn?: string;
|
605
618
|
Version?: string;
|
606
619
|
}
|
607
620
|
/**
|
@@ -309,6 +309,7 @@ export interface NetworkManagerDeviceProps {
|
|
309
309
|
export interface NetworkManagerDeviceAttribs {
|
310
310
|
DeviceArn?: string;
|
311
311
|
DeviceId?: string;
|
312
|
+
State?: string;
|
312
313
|
CreatedAt?: string;
|
313
314
|
}
|
314
315
|
/**
|
@@ -328,6 +329,8 @@ export declare class NetworkManagerDevice extends ResourceBase<"AWS::NetworkMana
|
|
328
329
|
*/
|
329
330
|
export interface NetworkManagerGlobalNetworkProps {
|
330
331
|
Description?: string;
|
332
|
+
State?: string;
|
333
|
+
CreatedAt?: string;
|
331
334
|
Tags?: Tag[];
|
332
335
|
}
|
333
336
|
/**
|
@@ -370,6 +373,8 @@ export interface NetworkManagerLinkProps {
|
|
370
373
|
*/
|
371
374
|
export interface NetworkManagerLinkAttribs {
|
372
375
|
LinkArn?: string;
|
376
|
+
State?: string;
|
377
|
+
CreatedAt?: string;
|
373
378
|
LinkId?: string;
|
374
379
|
}
|
375
380
|
/**
|
@@ -421,6 +426,8 @@ export interface NetworkManagerSiteProps {
|
|
421
426
|
export interface NetworkManagerSiteAttribs {
|
422
427
|
SiteId?: string;
|
423
428
|
SiteArn?: string;
|
429
|
+
State?: string;
|
430
|
+
CreatedAt?: string;
|
424
431
|
}
|
425
432
|
/**
|
426
433
|
* Resource class for AWS::NetworkManager::Site
|
@@ -93,7 +93,7 @@ class NetworkManagerDevice extends ResourceBase {
|
|
93
93
|
}
|
94
94
|
}
|
95
95
|
NetworkManagerDevice.Type = "AWS::NetworkManager::Device";
|
96
|
-
NetworkManagerDevice.AttributeNames = ["DeviceArn", "DeviceId", "CreatedAt"];
|
96
|
+
NetworkManagerDevice.AttributeNames = ["DeviceArn", "DeviceId", "State", "CreatedAt"];
|
97
97
|
export { NetworkManagerDevice };
|
98
98
|
/**
|
99
99
|
* Resource class for AWS::NetworkManager::GlobalNetwork
|
@@ -119,7 +119,7 @@ class NetworkManagerLink extends ResourceBase {
|
|
119
119
|
}
|
120
120
|
}
|
121
121
|
NetworkManagerLink.Type = "AWS::NetworkManager::Link";
|
122
|
-
NetworkManagerLink.AttributeNames = ["LinkArn", "LinkId"];
|
122
|
+
NetworkManagerLink.AttributeNames = ["LinkArn", "State", "CreatedAt", "LinkId"];
|
123
123
|
export { NetworkManagerLink };
|
124
124
|
/**
|
125
125
|
* Resource class for AWS::NetworkManager::LinkAssociation
|
@@ -145,7 +145,7 @@ class NetworkManagerSite extends ResourceBase {
|
|
145
145
|
}
|
146
146
|
}
|
147
147
|
NetworkManagerSite.Type = "AWS::NetworkManager::Site";
|
148
|
-
NetworkManagerSite.AttributeNames = ["SiteId", "SiteArn"];
|
148
|
+
NetworkManagerSite.AttributeNames = ["SiteId", "SiteArn", "State", "CreatedAt"];
|
149
149
|
export { NetworkManagerSite };
|
150
150
|
/**
|
151
151
|
* Resource class for AWS::NetworkManager::SiteToSiteVpnAttachment
|
@@ -1522,6 +1522,7 @@ export interface QuickSightAnalysisFilterGroup {
|
|
1522
1522
|
*/
|
1523
1523
|
export interface QuickSightAnalysisFilterListConfiguration {
|
1524
1524
|
CategoryValues?: any[];
|
1525
|
+
NullOption?: string;
|
1525
1526
|
MatchOperator: string;
|
1526
1527
|
SelectAllOptions?: string;
|
1527
1528
|
}
|
@@ -2290,6 +2291,24 @@ export interface QuickSightAnalysisItemsLimitConfiguration {
|
|
2290
2291
|
ItemsLimit?: number;
|
2291
2292
|
OtherCategories?: string;
|
2292
2293
|
}
|
2294
|
+
/**
|
2295
|
+
* Type definition for AWS::QuickSight::Analysis.KPIActualValueConditionalFormatting
|
2296
|
+
*
|
2297
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpiactualvalueconditionalformatting.html | AWS::QuickSight::Analysis.KPIActualValueConditionalFormatting}
|
2298
|
+
*/
|
2299
|
+
export interface QuickSightAnalysisKPIActualValueConditionalFormatting {
|
2300
|
+
TextColor?: QuickSightAnalysisConditionalFormattingColor;
|
2301
|
+
Icon?: QuickSightAnalysisConditionalFormattingIcon;
|
2302
|
+
}
|
2303
|
+
/**
|
2304
|
+
* Type definition for AWS::QuickSight::Analysis.KPIComparisonValueConditionalFormatting
|
2305
|
+
*
|
2306
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpicomparisonvalueconditionalformatting.html | AWS::QuickSight::Analysis.KPIComparisonValueConditionalFormatting}
|
2307
|
+
*/
|
2308
|
+
export interface QuickSightAnalysisKPIComparisonValueConditionalFormatting {
|
2309
|
+
TextColor?: QuickSightAnalysisConditionalFormattingColor;
|
2310
|
+
Icon?: QuickSightAnalysisConditionalFormattingIcon;
|
2311
|
+
}
|
2293
2312
|
/**
|
2294
2313
|
* Type definition for AWS::QuickSight::Analysis.KPIConditionalFormatting
|
2295
2314
|
*
|
@@ -2305,6 +2324,8 @@ export interface QuickSightAnalysisKPIConditionalFormatting {
|
|
2305
2324
|
*/
|
2306
2325
|
export interface QuickSightAnalysisKPIConditionalFormattingOption {
|
2307
2326
|
PrimaryValue?: QuickSightAnalysisKPIPrimaryValueConditionalFormatting;
|
2327
|
+
ActualValue?: QuickSightAnalysisKPIActualValueConditionalFormatting;
|
2328
|
+
ComparisonValue?: QuickSightAnalysisKPIComparisonValueConditionalFormatting;
|
2308
2329
|
ProgressBar?: QuickSightAnalysisKPIProgressBarConditionalFormatting;
|
2309
2330
|
}
|
2310
2331
|
/**
|
@@ -2334,12 +2355,14 @@ export interface QuickSightAnalysisKPIFieldWells {
|
|
2334
2355
|
*/
|
2335
2356
|
export interface QuickSightAnalysisKPIOptions {
|
2336
2357
|
SecondaryValueFontConfiguration?: QuickSightAnalysisFontConfiguration;
|
2358
|
+
VisualLayoutOptions?: QuickSightAnalysisKPIVisualLayoutOptions;
|
2337
2359
|
TrendArrows?: QuickSightAnalysisTrendArrowOptions;
|
2338
2360
|
SecondaryValue?: QuickSightAnalysisSecondaryValueOptions;
|
2339
2361
|
Comparison?: QuickSightAnalysisComparisonConfiguration;
|
2340
2362
|
PrimaryValueDisplayType?: string;
|
2341
2363
|
ProgressBar?: QuickSightAnalysisProgressBarOptions;
|
2342
2364
|
PrimaryValueFontConfiguration?: QuickSightAnalysisFontConfiguration;
|
2365
|
+
Sparkline?: QuickSightAnalysisKPISparklineOptions;
|
2343
2366
|
}
|
2344
2367
|
/**
|
2345
2368
|
* Type definition for AWS::QuickSight::Analysis.KPIPrimaryValueConditionalFormatting
|
@@ -2366,6 +2389,17 @@ export interface QuickSightAnalysisKPIProgressBarConditionalFormatting {
|
|
2366
2389
|
export interface QuickSightAnalysisKPISortConfiguration {
|
2367
2390
|
TrendGroupSort?: any[];
|
2368
2391
|
}
|
2392
|
+
/**
|
2393
|
+
* Type definition for AWS::QuickSight::Analysis.KPISparklineOptions
|
2394
|
+
*
|
2395
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpisparklineoptions.html | AWS::QuickSight::Analysis.KPISparklineOptions}
|
2396
|
+
*/
|
2397
|
+
export interface QuickSightAnalysisKPISparklineOptions {
|
2398
|
+
Type: string;
|
2399
|
+
Color?: string;
|
2400
|
+
TooltipVisibility?: string;
|
2401
|
+
Visibility?: string;
|
2402
|
+
}
|
2369
2403
|
/**
|
2370
2404
|
* Type definition for AWS::QuickSight::Analysis.KPIVisual
|
2371
2405
|
*
|
@@ -2380,6 +2414,22 @@ export interface QuickSightAnalysisKPIVisual {
|
|
2380
2414
|
Title?: QuickSightAnalysisVisualTitleLabelOptions;
|
2381
2415
|
ColumnHierarchies?: any[];
|
2382
2416
|
}
|
2417
|
+
/**
|
2418
|
+
* Type definition for AWS::QuickSight::Analysis.KPIVisualLayoutOptions
|
2419
|
+
*
|
2420
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpivisuallayoutoptions.html | AWS::QuickSight::Analysis.KPIVisualLayoutOptions}
|
2421
|
+
*/
|
2422
|
+
export interface QuickSightAnalysisKPIVisualLayoutOptions {
|
2423
|
+
StandardLayout?: QuickSightAnalysisKPIVisualStandardLayout;
|
2424
|
+
}
|
2425
|
+
/**
|
2426
|
+
* Type definition for AWS::QuickSight::Analysis.KPIVisualStandardLayout
|
2427
|
+
*
|
2428
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpivisualstandardlayout.html | AWS::QuickSight::Analysis.KPIVisualStandardLayout}
|
2429
|
+
*/
|
2430
|
+
export interface QuickSightAnalysisKPIVisualStandardLayout {
|
2431
|
+
Type: string;
|
2432
|
+
}
|
2383
2433
|
/**
|
2384
2434
|
* Type definition for AWS::QuickSight::Analysis.LabelOptions
|
2385
2435
|
*
|
@@ -4125,6 +4175,7 @@ export interface QuickSightAnalysisTableFieldOption {
|
|
4125
4175
|
*/
|
4126
4176
|
export interface QuickSightAnalysisTableFieldOptions {
|
4127
4177
|
Order?: any[];
|
4178
|
+
PinnedFieldOptions?: QuickSightAnalysisTablePinnedFieldOptions;
|
4128
4179
|
SelectedFieldOptions?: any[];
|
4129
4180
|
}
|
4130
4181
|
/**
|
@@ -4173,6 +4224,14 @@ export interface QuickSightAnalysisTablePaginatedReportOptions {
|
|
4173
4224
|
OverflowColumnHeaderVisibility?: string;
|
4174
4225
|
VerticalOverflowVisibility?: string;
|
4175
4226
|
}
|
4227
|
+
/**
|
4228
|
+
* Type definition for AWS::QuickSight::Analysis.TablePinnedFieldOptions
|
4229
|
+
*
|
4230
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-tablepinnedfieldoptions.html | AWS::QuickSight::Analysis.TablePinnedFieldOptions}
|
4231
|
+
*/
|
4232
|
+
export interface QuickSightAnalysisTablePinnedFieldOptions {
|
4233
|
+
PinnedLeftFields?: any[];
|
4234
|
+
}
|
4176
4235
|
/**
|
4177
4236
|
* Type definition for AWS::QuickSight::Analysis.TableRowConditionalFormatting
|
4178
4237
|
*
|
@@ -4508,6 +4567,14 @@ export interface QuickSightAnalysisUniqueValuesComputation {
|
|
4508
4567
|
ComputationId: string;
|
4509
4568
|
Name?: string;
|
4510
4569
|
}
|
4570
|
+
/**
|
4571
|
+
* Type definition for AWS::QuickSight::Analysis.ValidationStrategy
|
4572
|
+
*
|
4573
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-validationstrategy.html | AWS::QuickSight::Analysis.ValidationStrategy}
|
4574
|
+
*/
|
4575
|
+
export interface QuickSightAnalysisValidationStrategy {
|
4576
|
+
Mode: string;
|
4577
|
+
}
|
4511
4578
|
/**
|
4512
4579
|
* Type definition for AWS::QuickSight::Analysis.VisibleRangeOptions
|
4513
4580
|
*
|
@@ -6363,6 +6430,7 @@ export interface QuickSightDashboardFilterGroup {
|
|
6363
6430
|
*/
|
6364
6431
|
export interface QuickSightDashboardFilterListConfiguration {
|
6365
6432
|
CategoryValues?: any[];
|
6433
|
+
NullOption?: string;
|
6366
6434
|
MatchOperator: string;
|
6367
6435
|
SelectAllOptions?: string;
|
6368
6436
|
}
|
@@ -7131,6 +7199,24 @@ export interface QuickSightDashboardItemsLimitConfiguration {
|
|
7131
7199
|
ItemsLimit?: number;
|
7132
7200
|
OtherCategories?: string;
|
7133
7201
|
}
|
7202
|
+
/**
|
7203
|
+
* Type definition for AWS::QuickSight::Dashboard.KPIActualValueConditionalFormatting
|
7204
|
+
*
|
7205
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpiactualvalueconditionalformatting.html | AWS::QuickSight::Dashboard.KPIActualValueConditionalFormatting}
|
7206
|
+
*/
|
7207
|
+
export interface QuickSightDashboardKPIActualValueConditionalFormatting {
|
7208
|
+
TextColor?: QuickSightDashboardConditionalFormattingColor;
|
7209
|
+
Icon?: QuickSightDashboardConditionalFormattingIcon;
|
7210
|
+
}
|
7211
|
+
/**
|
7212
|
+
* Type definition for AWS::QuickSight::Dashboard.KPIComparisonValueConditionalFormatting
|
7213
|
+
*
|
7214
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpicomparisonvalueconditionalformatting.html | AWS::QuickSight::Dashboard.KPIComparisonValueConditionalFormatting}
|
7215
|
+
*/
|
7216
|
+
export interface QuickSightDashboardKPIComparisonValueConditionalFormatting {
|
7217
|
+
TextColor?: QuickSightDashboardConditionalFormattingColor;
|
7218
|
+
Icon?: QuickSightDashboardConditionalFormattingIcon;
|
7219
|
+
}
|
7134
7220
|
/**
|
7135
7221
|
* Type definition for AWS::QuickSight::Dashboard.KPIConditionalFormatting
|
7136
7222
|
*
|
@@ -7146,6 +7232,8 @@ export interface QuickSightDashboardKPIConditionalFormatting {
|
|
7146
7232
|
*/
|
7147
7233
|
export interface QuickSightDashboardKPIConditionalFormattingOption {
|
7148
7234
|
PrimaryValue?: QuickSightDashboardKPIPrimaryValueConditionalFormatting;
|
7235
|
+
ActualValue?: QuickSightDashboardKPIActualValueConditionalFormatting;
|
7236
|
+
ComparisonValue?: QuickSightDashboardKPIComparisonValueConditionalFormatting;
|
7149
7237
|
ProgressBar?: QuickSightDashboardKPIProgressBarConditionalFormatting;
|
7150
7238
|
}
|
7151
7239
|
/**
|
@@ -7175,12 +7263,14 @@ export interface QuickSightDashboardKPIFieldWells {
|
|
7175
7263
|
*/
|
7176
7264
|
export interface QuickSightDashboardKPIOptions {
|
7177
7265
|
SecondaryValueFontConfiguration?: QuickSightDashboardFontConfiguration;
|
7266
|
+
VisualLayoutOptions?: QuickSightDashboardKPIVisualLayoutOptions;
|
7178
7267
|
TrendArrows?: QuickSightDashboardTrendArrowOptions;
|
7179
7268
|
SecondaryValue?: QuickSightDashboardSecondaryValueOptions;
|
7180
7269
|
Comparison?: QuickSightDashboardComparisonConfiguration;
|
7181
7270
|
PrimaryValueDisplayType?: string;
|
7182
7271
|
ProgressBar?: QuickSightDashboardProgressBarOptions;
|
7183
7272
|
PrimaryValueFontConfiguration?: QuickSightDashboardFontConfiguration;
|
7273
|
+
Sparkline?: QuickSightDashboardKPISparklineOptions;
|
7184
7274
|
}
|
7185
7275
|
/**
|
7186
7276
|
* Type definition for AWS::QuickSight::Dashboard.KPIPrimaryValueConditionalFormatting
|
@@ -7207,6 +7297,17 @@ export interface QuickSightDashboardKPIProgressBarConditionalFormatting {
|
|
7207
7297
|
export interface QuickSightDashboardKPISortConfiguration {
|
7208
7298
|
TrendGroupSort?: any[];
|
7209
7299
|
}
|
7300
|
+
/**
|
7301
|
+
* Type definition for AWS::QuickSight::Dashboard.KPISparklineOptions
|
7302
|
+
*
|
7303
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpisparklineoptions.html | AWS::QuickSight::Dashboard.KPISparklineOptions}
|
7304
|
+
*/
|
7305
|
+
export interface QuickSightDashboardKPISparklineOptions {
|
7306
|
+
Type: string;
|
7307
|
+
Color?: string;
|
7308
|
+
TooltipVisibility?: string;
|
7309
|
+
Visibility?: string;
|
7310
|
+
}
|
7210
7311
|
/**
|
7211
7312
|
* Type definition for AWS::QuickSight::Dashboard.KPIVisual
|
7212
7313
|
*
|
@@ -7221,6 +7322,22 @@ export interface QuickSightDashboardKPIVisual {
|
|
7221
7322
|
Title?: QuickSightDashboardVisualTitleLabelOptions;
|
7222
7323
|
ColumnHierarchies?: any[];
|
7223
7324
|
}
|
7325
|
+
/**
|
7326
|
+
* Type definition for AWS::QuickSight::Dashboard.KPIVisualLayoutOptions
|
7327
|
+
*
|
7328
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpivisuallayoutoptions.html | AWS::QuickSight::Dashboard.KPIVisualLayoutOptions}
|
7329
|
+
*/
|
7330
|
+
export interface QuickSightDashboardKPIVisualLayoutOptions {
|
7331
|
+
StandardLayout?: QuickSightDashboardKPIVisualStandardLayout;
|
7332
|
+
}
|
7333
|
+
/**
|
7334
|
+
* Type definition for AWS::QuickSight::Dashboard.KPIVisualStandardLayout
|
7335
|
+
*
|
7336
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpivisualstandardlayout.html | AWS::QuickSight::Dashboard.KPIVisualStandardLayout}
|
7337
|
+
*/
|
7338
|
+
export interface QuickSightDashboardKPIVisualStandardLayout {
|
7339
|
+
Type: string;
|
7340
|
+
}
|
7224
7341
|
/**
|
7225
7342
|
* Type definition for AWS::QuickSight::Dashboard.LabelOptions
|
7226
7343
|
*
|
@@ -8982,6 +9099,7 @@ export interface QuickSightDashboardTableFieldOption {
|
|
8982
9099
|
*/
|
8983
9100
|
export interface QuickSightDashboardTableFieldOptions {
|
8984
9101
|
Order?: any[];
|
9102
|
+
PinnedFieldOptions?: QuickSightDashboardTablePinnedFieldOptions;
|
8985
9103
|
SelectedFieldOptions?: any[];
|
8986
9104
|
}
|
8987
9105
|
/**
|
@@ -9030,6 +9148,14 @@ export interface QuickSightDashboardTablePaginatedReportOptions {
|
|
9030
9148
|
OverflowColumnHeaderVisibility?: string;
|
9031
9149
|
VerticalOverflowVisibility?: string;
|
9032
9150
|
}
|
9151
|
+
/**
|
9152
|
+
* Type definition for AWS::QuickSight::Dashboard.TablePinnedFieldOptions
|
9153
|
+
*
|
9154
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-tablepinnedfieldoptions.html | AWS::QuickSight::Dashboard.TablePinnedFieldOptions}
|
9155
|
+
*/
|
9156
|
+
export interface QuickSightDashboardTablePinnedFieldOptions {
|
9157
|
+
PinnedLeftFields?: any[];
|
9158
|
+
}
|
9033
9159
|
/**
|
9034
9160
|
* Type definition for AWS::QuickSight::Dashboard.TableRowConditionalFormatting
|
9035
9161
|
*
|
@@ -9365,6 +9491,14 @@ export interface QuickSightDashboardUniqueValuesComputation {
|
|
9365
9491
|
ComputationId: string;
|
9366
9492
|
Name?: string;
|
9367
9493
|
}
|
9494
|
+
/**
|
9495
|
+
* Type definition for AWS::QuickSight::Dashboard.ValidationStrategy
|
9496
|
+
*
|
9497
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-validationstrategy.html | AWS::QuickSight::Dashboard.ValidationStrategy}
|
9498
|
+
*/
|
9499
|
+
export interface QuickSightDashboardValidationStrategy {
|
9500
|
+
Mode: string;
|
9501
|
+
}
|
9368
9502
|
/**
|
9369
9503
|
* Type definition for AWS::QuickSight::Dashboard.VisibleRangeOptions
|
9370
9504
|
*
|
@@ -11853,6 +11987,7 @@ export interface QuickSightTemplateFilterGroup {
|
|
11853
11987
|
*/
|
11854
11988
|
export interface QuickSightTemplateFilterListConfiguration {
|
11855
11989
|
CategoryValues?: any[];
|
11990
|
+
NullOption?: string;
|
11856
11991
|
MatchOperator: string;
|
11857
11992
|
SelectAllOptions?: string;
|
11858
11993
|
}
|
@@ -12612,6 +12747,24 @@ export interface QuickSightTemplateItemsLimitConfiguration {
|
|
12612
12747
|
ItemsLimit?: number;
|
12613
12748
|
OtherCategories?: string;
|
12614
12749
|
}
|
12750
|
+
/**
|
12751
|
+
* Type definition for AWS::QuickSight::Template.KPIActualValueConditionalFormatting
|
12752
|
+
*
|
12753
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpiactualvalueconditionalformatting.html | AWS::QuickSight::Template.KPIActualValueConditionalFormatting}
|
12754
|
+
*/
|
12755
|
+
export interface QuickSightTemplateKPIActualValueConditionalFormatting {
|
12756
|
+
TextColor?: QuickSightTemplateConditionalFormattingColor;
|
12757
|
+
Icon?: QuickSightTemplateConditionalFormattingIcon;
|
12758
|
+
}
|
12759
|
+
/**
|
12760
|
+
* Type definition for AWS::QuickSight::Template.KPIComparisonValueConditionalFormatting
|
12761
|
+
*
|
12762
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpicomparisonvalueconditionalformatting.html | AWS::QuickSight::Template.KPIComparisonValueConditionalFormatting}
|
12763
|
+
*/
|
12764
|
+
export interface QuickSightTemplateKPIComparisonValueConditionalFormatting {
|
12765
|
+
TextColor?: QuickSightTemplateConditionalFormattingColor;
|
12766
|
+
Icon?: QuickSightTemplateConditionalFormattingIcon;
|
12767
|
+
}
|
12615
12768
|
/**
|
12616
12769
|
* Type definition for AWS::QuickSight::Template.KPIConditionalFormatting
|
12617
12770
|
*
|
@@ -12627,6 +12780,8 @@ export interface QuickSightTemplateKPIConditionalFormatting {
|
|
12627
12780
|
*/
|
12628
12781
|
export interface QuickSightTemplateKPIConditionalFormattingOption {
|
12629
12782
|
PrimaryValue?: QuickSightTemplateKPIPrimaryValueConditionalFormatting;
|
12783
|
+
ActualValue?: QuickSightTemplateKPIActualValueConditionalFormatting;
|
12784
|
+
ComparisonValue?: QuickSightTemplateKPIComparisonValueConditionalFormatting;
|
12630
12785
|
ProgressBar?: QuickSightTemplateKPIProgressBarConditionalFormatting;
|
12631
12786
|
}
|
12632
12787
|
/**
|
@@ -12656,12 +12811,14 @@ export interface QuickSightTemplateKPIFieldWells {
|
|
12656
12811
|
*/
|
12657
12812
|
export interface QuickSightTemplateKPIOptions {
|
12658
12813
|
SecondaryValueFontConfiguration?: QuickSightTemplateFontConfiguration;
|
12814
|
+
VisualLayoutOptions?: QuickSightTemplateKPIVisualLayoutOptions;
|
12659
12815
|
TrendArrows?: QuickSightTemplateTrendArrowOptions;
|
12660
12816
|
SecondaryValue?: QuickSightTemplateSecondaryValueOptions;
|
12661
12817
|
Comparison?: QuickSightTemplateComparisonConfiguration;
|
12662
12818
|
PrimaryValueDisplayType?: string;
|
12663
12819
|
ProgressBar?: QuickSightTemplateProgressBarOptions;
|
12664
12820
|
PrimaryValueFontConfiguration?: QuickSightTemplateFontConfiguration;
|
12821
|
+
Sparkline?: QuickSightTemplateKPISparklineOptions;
|
12665
12822
|
}
|
12666
12823
|
/**
|
12667
12824
|
* Type definition for AWS::QuickSight::Template.KPIPrimaryValueConditionalFormatting
|
@@ -12688,6 +12845,17 @@ export interface QuickSightTemplateKPIProgressBarConditionalFormatting {
|
|
12688
12845
|
export interface QuickSightTemplateKPISortConfiguration {
|
12689
12846
|
TrendGroupSort?: any[];
|
12690
12847
|
}
|
12848
|
+
/**
|
12849
|
+
* Type definition for AWS::QuickSight::Template.KPISparklineOptions
|
12850
|
+
*
|
12851
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpisparklineoptions.html | AWS::QuickSight::Template.KPISparklineOptions}
|
12852
|
+
*/
|
12853
|
+
export interface QuickSightTemplateKPISparklineOptions {
|
12854
|
+
Type: string;
|
12855
|
+
Color?: string;
|
12856
|
+
TooltipVisibility?: string;
|
12857
|
+
Visibility?: string;
|
12858
|
+
}
|
12691
12859
|
/**
|
12692
12860
|
* Type definition for AWS::QuickSight::Template.KPIVisual
|
12693
12861
|
*
|
@@ -12702,6 +12870,22 @@ export interface QuickSightTemplateKPIVisual {
|
|
12702
12870
|
Title?: QuickSightTemplateVisualTitleLabelOptions;
|
12703
12871
|
ColumnHierarchies?: any[];
|
12704
12872
|
}
|
12873
|
+
/**
|
12874
|
+
* Type definition for AWS::QuickSight::Template.KPIVisualLayoutOptions
|
12875
|
+
*
|
12876
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpivisuallayoutoptions.html | AWS::QuickSight::Template.KPIVisualLayoutOptions}
|
12877
|
+
*/
|
12878
|
+
export interface QuickSightTemplateKPIVisualLayoutOptions {
|
12879
|
+
StandardLayout?: QuickSightTemplateKPIVisualStandardLayout;
|
12880
|
+
}
|
12881
|
+
/**
|
12882
|
+
* Type definition for AWS::QuickSight::Template.KPIVisualStandardLayout
|
12883
|
+
*
|
12884
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpivisualstandardlayout.html | AWS::QuickSight::Template.KPIVisualStandardLayout}
|
12885
|
+
*/
|
12886
|
+
export interface QuickSightTemplateKPIVisualStandardLayout {
|
12887
|
+
Type: string;
|
12888
|
+
}
|
12705
12889
|
/**
|
12706
12890
|
* Type definition for AWS::QuickSight::Template.LabelOptions
|
12707
12891
|
*
|
@@ -14427,6 +14611,7 @@ export interface QuickSightTemplateTableFieldOption {
|
|
14427
14611
|
*/
|
14428
14612
|
export interface QuickSightTemplateTableFieldOptions {
|
14429
14613
|
Order?: any[];
|
14614
|
+
PinnedFieldOptions?: QuickSightTemplateTablePinnedFieldOptions;
|
14430
14615
|
SelectedFieldOptions?: any[];
|
14431
14616
|
}
|
14432
14617
|
/**
|
@@ -14475,6 +14660,14 @@ export interface QuickSightTemplateTablePaginatedReportOptions {
|
|
14475
14660
|
OverflowColumnHeaderVisibility?: string;
|
14476
14661
|
VerticalOverflowVisibility?: string;
|
14477
14662
|
}
|
14663
|
+
/**
|
14664
|
+
* Type definition for AWS::QuickSight::Template.TablePinnedFieldOptions
|
14665
|
+
*
|
14666
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablepinnedfieldoptions.html | AWS::QuickSight::Template.TablePinnedFieldOptions}
|
14667
|
+
*/
|
14668
|
+
export interface QuickSightTemplateTablePinnedFieldOptions {
|
14669
|
+
PinnedLeftFields?: any[];
|
14670
|
+
}
|
14478
14671
|
/**
|
14479
14672
|
* Type definition for AWS::QuickSight::Template.TableRowConditionalFormatting
|
14480
14673
|
*
|
@@ -14876,6 +15069,14 @@ export interface QuickSightTemplateUniqueValuesComputation {
|
|
14876
15069
|
ComputationId: string;
|
14877
15070
|
Name?: string;
|
14878
15071
|
}
|
15072
|
+
/**
|
15073
|
+
* Type definition for AWS::QuickSight::Template.ValidationStrategy
|
15074
|
+
*
|
15075
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-validationstrategy.html | AWS::QuickSight::Template.ValidationStrategy}
|
15076
|
+
*/
|
15077
|
+
export interface QuickSightTemplateValidationStrategy {
|
15078
|
+
Mode: string;
|
15079
|
+
}
|
14879
15080
|
/**
|
14880
15081
|
* Type definition for AWS::QuickSight::Template.VisibleRangeOptions
|
14881
15082
|
*
|
@@ -15413,6 +15614,7 @@ export interface QuickSightTopicTopicCalculatedField {
|
|
15413
15614
|
ColumnDataRole?: string;
|
15414
15615
|
Aggregation?: string;
|
15415
15616
|
Expression: string;
|
15617
|
+
NonAdditive?: boolean;
|
15416
15618
|
CalculatedFieldName: string;
|
15417
15619
|
NeverAggregateInFilter?: boolean;
|
15418
15620
|
TimeGranularity?: string;
|
@@ -15455,6 +15657,7 @@ export interface QuickSightTopicTopicColumn {
|
|
15455
15657
|
ColumnDataRole?: string;
|
15456
15658
|
Aggregation?: string;
|
15457
15659
|
ColumnName: string;
|
15660
|
+
NonAdditive?: boolean;
|
15458
15661
|
ColumnSynonyms?: any[];
|
15459
15662
|
NeverAggregateInFilter?: boolean;
|
15460
15663
|
TimeGranularity?: string;
|
@@ -15574,6 +15777,7 @@ export interface QuickSightAnalysisProps {
|
|
15574
15777
|
Definition?: QuickSightAnalysisAnalysisDefinition;
|
15575
15778
|
AwsAccountId: string;
|
15576
15779
|
Permissions?: any[];
|
15780
|
+
ValidationStrategy?: QuickSightAnalysisValidationStrategy;
|
15577
15781
|
Tags?: Tag[];
|
15578
15782
|
Name: string;
|
15579
15783
|
}
|
@@ -15614,6 +15818,7 @@ export interface QuickSightDashboardProps {
|
|
15614
15818
|
Definition?: QuickSightDashboardDashboardVersionDefinition;
|
15615
15819
|
AwsAccountId: string;
|
15616
15820
|
Permissions?: any[];
|
15821
|
+
ValidationStrategy?: QuickSightDashboardValidationStrategy;
|
15617
15822
|
DashboardId: string;
|
15618
15823
|
Tags?: Tag[];
|
15619
15824
|
Name: string;
|
@@ -15772,9 +15977,10 @@ export declare class QuickSightRefreshSchedule extends ResourceBase<"AWS::QuickS
|
|
15772
15977
|
export interface QuickSightTemplateProps {
|
15773
15978
|
VersionDescription?: string;
|
15774
15979
|
SourceEntity?: QuickSightTemplateTemplateSourceEntity;
|
15775
|
-
AwsAccountId: string;
|
15776
15980
|
Definition?: QuickSightTemplateTemplateVersionDefinition;
|
15981
|
+
AwsAccountId: string;
|
15777
15982
|
Permissions?: any[];
|
15983
|
+
ValidationStrategy?: QuickSightTemplateValidationStrategy;
|
15778
15984
|
Tags?: Tag[];
|
15779
15985
|
TemplateId: string;
|
15780
15986
|
Name?: string;
|
@@ -6,7 +6,7 @@ import { ResourceOptions } from "../template.js";
|
|
6
6
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3objectlambda-accesspoint-alias.html | AWS::S3ObjectLambda::AccessPoint.Alias}
|
7
7
|
*/
|
8
8
|
export interface S3ObjectLambdaAccessPointAlias {
|
9
|
-
Status
|
9
|
+
Status?: string;
|
10
10
|
Value: string;
|
11
11
|
}
|
12
12
|
/**
|
@@ -37,14 +37,6 @@ export interface S3ObjectLambdaAccessPointObjectLambdaConfiguration {
|
|
37
37
|
AllowedFeatures?: any[];
|
38
38
|
CloudWatchMetricsEnabled?: boolean;
|
39
39
|
}
|
40
|
-
/**
|
41
|
-
* Type definition for AWS::S3ObjectLambda::AccessPoint.PolicyStatus
|
42
|
-
*
|
43
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3objectlambda-accesspoint-policystatus.html | AWS::S3ObjectLambda::AccessPoint.PolicyStatus}
|
44
|
-
*/
|
45
|
-
export interface S3ObjectLambdaAccessPointPolicyStatus {
|
46
|
-
IsPublic?: boolean;
|
47
|
-
}
|
48
40
|
/**
|
49
41
|
* Type definition for AWS::S3ObjectLambda::AccessPoint.PublicAccessBlockConfiguration
|
50
42
|
*
|
@@ -83,10 +75,8 @@ export interface S3ObjectLambdaAccessPointAttribs {
|
|
83
75
|
CreationDate?: string;
|
84
76
|
PublicAccessBlockConfiguration?: S3ObjectLambdaAccessPointPublicAccessBlockConfiguration;
|
85
77
|
"PublicAccessBlockConfiguration.BlockPublicAcls"?: boolean;
|
86
|
-
"PolicyStatus.IsPublic"?: boolean;
|
87
78
|
Alias?: S3ObjectLambdaAccessPointAlias;
|
88
79
|
"Alias.Value"?: string;
|
89
|
-
PolicyStatus?: S3ObjectLambdaAccessPointPolicyStatus;
|
90
80
|
"PublicAccessBlockConfiguration.IgnorePublicAcls"?: boolean;
|
91
81
|
"PublicAccessBlockConfiguration.RestrictPublicBuckets"?: boolean;
|
92
82
|
"PublicAccessBlockConfiguration.BlockPublicPolicy"?: boolean;
|
@@ -14,10 +14,8 @@ S3ObjectLambdaAccessPoint.AttributeNames = [
|
|
14
14
|
"CreationDate",
|
15
15
|
"PublicAccessBlockConfiguration",
|
16
16
|
"PublicAccessBlockConfiguration.BlockPublicAcls",
|
17
|
-
"PolicyStatus.IsPublic",
|
18
17
|
"Alias",
|
19
18
|
"Alias.Value",
|
20
|
-
"PolicyStatus",
|
21
19
|
"PublicAccessBlockConfiguration.IgnorePublicAcls",
|
22
20
|
"PublicAccessBlockConfiguration.RestrictPublicBuckets",
|
23
21
|
"PublicAccessBlockConfiguration.BlockPublicPolicy",
|
@@ -60,6 +60,7 @@ export interface SageMakerDataQualityJobDefinitionBatchTransformInput {
|
|
60
60
|
DataCapturedDestinationS3Uri: string;
|
61
61
|
S3InputMode?: string;
|
62
62
|
LocalPath: string;
|
63
|
+
ExcludeFeaturesAttribute?: string;
|
63
64
|
}
|
64
65
|
/**
|
65
66
|
* Type definition for AWS::SageMaker::DataQualityJobDefinition.ClusterConfig
|
@@ -140,6 +141,7 @@ export interface SageMakerDataQualityJobDefinitionEndpointInput {
|
|
140
141
|
EndpointName: string;
|
141
142
|
S3InputMode?: string;
|
142
143
|
LocalPath: string;
|
144
|
+
ExcludeFeaturesAttribute?: string;
|
143
145
|
}
|
144
146
|
/**
|
145
147
|
* Type definition for AWS::SageMaker::DataQualityJobDefinition.Json
|
@@ -1882,6 +1884,7 @@ export interface SageMakerMonitoringScheduleBatchTransformInput {
|
|
1882
1884
|
DataCapturedDestinationS3Uri: string;
|
1883
1885
|
S3InputMode?: string;
|
1884
1886
|
LocalPath: string;
|
1887
|
+
ExcludeFeaturesAttribute?: string;
|
1885
1888
|
}
|
1886
1889
|
/**
|
1887
1890
|
* Type definition for AWS::SageMaker::MonitoringSchedule.ClusterConfig
|
@@ -1930,6 +1933,7 @@ export interface SageMakerMonitoringScheduleEndpointInput {
|
|
1930
1933
|
EndpointName: string;
|
1931
1934
|
S3InputMode?: string;
|
1932
1935
|
LocalPath: string;
|
1936
|
+
ExcludeFeaturesAttribute?: string;
|
1933
1937
|
}
|
1934
1938
|
/**
|
1935
1939
|
* Type definition for AWS::SageMaker::MonitoringSchedule.Json
|
@@ -2054,6 +2058,8 @@ export interface SageMakerMonitoringScheduleS3Output {
|
|
2054
2058
|
*/
|
2055
2059
|
export interface SageMakerMonitoringScheduleScheduleConfig {
|
2056
2060
|
ScheduleExpression: string;
|
2061
|
+
DataAnalysisStartTime?: string;
|
2062
|
+
DataAnalysisEndTime?: string;
|
2057
2063
|
}
|
2058
2064
|
/**
|
2059
2065
|
* Type definition for AWS::SageMaker::MonitoringSchedule.StatisticsResource
|