@awboost/cfn-resource-types 0.1.156 → 0.1.157
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.
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource type definition for `AWS::Glue::UsageProfile`.
|
|
5
|
+
* This creates a Resource of UsageProfile type.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html}
|
|
7
|
+
*/
|
|
8
|
+
export type GlueUsageProfileProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* UsageProfile configuration for supported service ex: (Jobs, Sessions).
|
|
11
|
+
*/
|
|
12
|
+
Configuration?: ProfileConfiguration;
|
|
13
|
+
/**
|
|
14
|
+
* The description of the UsageProfile.
|
|
15
|
+
* @minLength `1`
|
|
16
|
+
* @maxLength `512`
|
|
17
|
+
* @pattern `[a-zA-Z0-9\-\:\_]{1,64}`
|
|
18
|
+
*/
|
|
19
|
+
Description?: string;
|
|
20
|
+
/**
|
|
21
|
+
* The name of the UsageProfile.
|
|
22
|
+
* @minLength `5`
|
|
23
|
+
* @maxLength `128`
|
|
24
|
+
*/
|
|
25
|
+
Name: string;
|
|
26
|
+
/**
|
|
27
|
+
* The tags to be applied to this UsageProfiles.
|
|
28
|
+
* @minLength `0`
|
|
29
|
+
* @maxLength `50`
|
|
30
|
+
*/
|
|
31
|
+
Tags?: Tag[];
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* Attribute type definition for `AWS::Glue::UsageProfile`.
|
|
35
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html#aws-resource-glue-usageprofile-return-values}
|
|
36
|
+
*/
|
|
37
|
+
export type GlueUsageProfileAttributes = {
|
|
38
|
+
/**
|
|
39
|
+
* Creation time.
|
|
40
|
+
* @minLength `1`
|
|
41
|
+
* @maxLength `128`
|
|
42
|
+
*/
|
|
43
|
+
CreatedOn: string;
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* Type definition for `AWS::Glue::UsageProfile.ConfigurationObject`.
|
|
47
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-usageprofile-configurationobject.html}
|
|
48
|
+
*/
|
|
49
|
+
export type ConfigurationObject = {
|
|
50
|
+
AllowedValues?: string[];
|
|
51
|
+
DefaultValue?: string;
|
|
52
|
+
MaxValue?: string;
|
|
53
|
+
MinValue?: string;
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* Type definition for `AWS::Glue::UsageProfile.ProfileConfiguration`.
|
|
57
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-usageprofile-profileconfiguration.html}
|
|
58
|
+
*/
|
|
59
|
+
export type ProfileConfiguration = {
|
|
60
|
+
JobConfiguration?: Record<string, ConfigurationObject>;
|
|
61
|
+
SessionConfiguration?: Record<string, ConfigurationObject>;
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* Type definition for `AWS::Glue::UsageProfile.Tag`.
|
|
65
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-usageprofile-tag.html}
|
|
66
|
+
*/
|
|
67
|
+
export type Tag = {
|
|
68
|
+
/**
|
|
69
|
+
* A key to identify the tag.
|
|
70
|
+
* @minLength `1`
|
|
71
|
+
* @maxLength `128`
|
|
72
|
+
*/
|
|
73
|
+
Key: string;
|
|
74
|
+
/**
|
|
75
|
+
* Corresponding tag value for the key.
|
|
76
|
+
* @minLength `0`
|
|
77
|
+
* @maxLength `256`
|
|
78
|
+
*/
|
|
79
|
+
Value: string;
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* Resource type definition for `AWS::Glue::UsageProfile`.
|
|
83
|
+
* This creates a Resource of UsageProfile type.
|
|
84
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html}
|
|
85
|
+
*/
|
|
86
|
+
export declare class GlueUsageProfile extends $Resource<"AWS::Glue::UsageProfile", GlueUsageProfileProperties, GlueUsageProfileAttributes> {
|
|
87
|
+
static readonly Type = "AWS::Glue::UsageProfile";
|
|
88
|
+
constructor(logicalId: string, properties: GlueUsageProfileProperties, options?: $ResourceOptions);
|
|
89
|
+
}
|
|
90
|
+
//# sourceMappingURL=AWS-Glue-UsageProfile.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::Glue::UsageProfile`.
|
|
4
|
+
* This creates a Resource of UsageProfile type.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html}
|
|
6
|
+
*/
|
|
7
|
+
export class GlueUsageProfile extends $Resource {
|
|
8
|
+
static Type = "AWS::Glue::UsageProfile";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, GlueUsageProfile.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-Glue-UsageProfile.js.map
|
|
@@ -1027,6 +1027,11 @@ export type ComboChartVisual = {
|
|
|
1027
1027
|
*/
|
|
1028
1028
|
VisualId: string;
|
|
1029
1029
|
};
|
|
1030
|
+
/**
|
|
1031
|
+
* Type definition for `AWS::QuickSight::Analysis.CommitMode`.
|
|
1032
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-commitmode.html}
|
|
1033
|
+
*/
|
|
1034
|
+
export type CommitMode = "AUTO" | "MANUAL";
|
|
1030
1035
|
/**
|
|
1031
1036
|
* Type definition for `AWS::QuickSight::Analysis.ComparisonConfiguration`.
|
|
1032
1037
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-comparisonconfiguration.html}
|
|
@@ -1798,6 +1803,7 @@ export type DecimalValueWhenUnsetConfiguration = {
|
|
|
1798
1803
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultdatetimepickercontroloptions.html}
|
|
1799
1804
|
*/
|
|
1800
1805
|
export type DefaultDateTimePickerControlOptions = {
|
|
1806
|
+
CommitMode?: CommitMode;
|
|
1801
1807
|
DisplayOptions?: DateTimePickerControlDisplayOptions;
|
|
1802
1808
|
Type?: SheetControlDateTimePickerType;
|
|
1803
1809
|
};
|
|
@@ -1831,6 +1837,7 @@ export type DefaultFilterControlOptions = {
|
|
|
1831
1837
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultfilterdropdowncontroloptions.html}
|
|
1832
1838
|
*/
|
|
1833
1839
|
export type DefaultFilterDropDownControlOptions = {
|
|
1840
|
+
CommitMode?: CommitMode;
|
|
1834
1841
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
1835
1842
|
SelectableValues?: FilterSelectableValues;
|
|
1836
1843
|
Type?: SheetControlListType;
|
|
@@ -1887,6 +1894,7 @@ export type DefaultPaginatedLayoutConfiguration = {
|
|
|
1887
1894
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultrelativedatetimecontroloptions.html}
|
|
1888
1895
|
*/
|
|
1889
1896
|
export type DefaultRelativeDateTimeControlOptions = {
|
|
1897
|
+
CommitMode?: CommitMode;
|
|
1890
1898
|
DisplayOptions?: RelativeDateTimeControlDisplayOptions;
|
|
1891
1899
|
};
|
|
1892
1900
|
/**
|
|
@@ -2280,6 +2288,7 @@ export type FilterCrossSheetControl = {
|
|
|
2280
2288
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-filterdatetimepickercontrol.html}
|
|
2281
2289
|
*/
|
|
2282
2290
|
export type FilterDateTimePickerControl = {
|
|
2291
|
+
CommitMode?: CommitMode;
|
|
2283
2292
|
DisplayOptions?: DateTimePickerControlDisplayOptions;
|
|
2284
2293
|
/**
|
|
2285
2294
|
* @minLength `1`
|
|
@@ -2306,6 +2315,7 @@ export type FilterDateTimePickerControl = {
|
|
|
2306
2315
|
*/
|
|
2307
2316
|
export type FilterDropDownControl = {
|
|
2308
2317
|
CascadingControlConfiguration?: CascadingControlConfiguration;
|
|
2318
|
+
CommitMode?: CommitMode;
|
|
2309
2319
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
2310
2320
|
/**
|
|
2311
2321
|
* @minLength `1`
|
|
@@ -2423,6 +2433,7 @@ export type FilterOperationTargetVisualsConfiguration = {
|
|
|
2423
2433
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-filterrelativedatetimecontrol.html}
|
|
2424
2434
|
*/
|
|
2425
2435
|
export type FilterRelativeDateTimeControl = {
|
|
2436
|
+
CommitMode?: CommitMode;
|
|
2426
2437
|
DisplayOptions?: RelativeDateTimeControlDisplayOptions;
|
|
2427
2438
|
/**
|
|
2428
2439
|
* @minLength `1`
|
|
@@ -4404,6 +4415,7 @@ export type ParameterDeclaration = {
|
|
|
4404
4415
|
*/
|
|
4405
4416
|
export type ParameterDropDownControl = {
|
|
4406
4417
|
CascadingControlConfiguration?: CascadingControlConfiguration;
|
|
4418
|
+
CommitMode?: CommitMode;
|
|
4407
4419
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
4408
4420
|
/**
|
|
4409
4421
|
* @minLength `1`
|
|
@@ -1026,6 +1026,11 @@ export type ComboChartVisual = {
|
|
|
1026
1026
|
*/
|
|
1027
1027
|
VisualId: string;
|
|
1028
1028
|
};
|
|
1029
|
+
/**
|
|
1030
|
+
* Type definition for `AWS::QuickSight::Dashboard.CommitMode`.
|
|
1031
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-commitmode.html}
|
|
1032
|
+
*/
|
|
1033
|
+
export type CommitMode = "AUTO" | "MANUAL";
|
|
1029
1034
|
/**
|
|
1030
1035
|
* Type definition for `AWS::QuickSight::Dashboard.ComparisonConfiguration`.
|
|
1031
1036
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-comparisonconfiguration.html}
|
|
@@ -2029,6 +2034,7 @@ export type DecimalValueWhenUnsetConfiguration = {
|
|
|
2029
2034
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-defaultdatetimepickercontroloptions.html}
|
|
2030
2035
|
*/
|
|
2031
2036
|
export type DefaultDateTimePickerControlOptions = {
|
|
2037
|
+
CommitMode?: CommitMode;
|
|
2032
2038
|
DisplayOptions?: DateTimePickerControlDisplayOptions;
|
|
2033
2039
|
Type?: SheetControlDateTimePickerType;
|
|
2034
2040
|
};
|
|
@@ -2062,6 +2068,7 @@ export type DefaultFilterControlOptions = {
|
|
|
2062
2068
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-defaultfilterdropdowncontroloptions.html}
|
|
2063
2069
|
*/
|
|
2064
2070
|
export type DefaultFilterDropDownControlOptions = {
|
|
2071
|
+
CommitMode?: CommitMode;
|
|
2065
2072
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
2066
2073
|
SelectableValues?: FilterSelectableValues;
|
|
2067
2074
|
Type?: SheetControlListType;
|
|
@@ -2118,6 +2125,7 @@ export type DefaultPaginatedLayoutConfiguration = {
|
|
|
2118
2125
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-defaultrelativedatetimecontroloptions.html}
|
|
2119
2126
|
*/
|
|
2120
2127
|
export type DefaultRelativeDateTimeControlOptions = {
|
|
2128
|
+
CommitMode?: CommitMode;
|
|
2121
2129
|
DisplayOptions?: RelativeDateTimeControlDisplayOptions;
|
|
2122
2130
|
};
|
|
2123
2131
|
/**
|
|
@@ -2535,6 +2543,7 @@ export type FilterCrossSheetControl = {
|
|
|
2535
2543
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-filterdatetimepickercontrol.html}
|
|
2536
2544
|
*/
|
|
2537
2545
|
export type FilterDateTimePickerControl = {
|
|
2546
|
+
CommitMode?: CommitMode;
|
|
2538
2547
|
DisplayOptions?: DateTimePickerControlDisplayOptions;
|
|
2539
2548
|
/**
|
|
2540
2549
|
* @minLength `1`
|
|
@@ -2561,6 +2570,7 @@ export type FilterDateTimePickerControl = {
|
|
|
2561
2570
|
*/
|
|
2562
2571
|
export type FilterDropDownControl = {
|
|
2563
2572
|
CascadingControlConfiguration?: CascadingControlConfiguration;
|
|
2573
|
+
CommitMode?: CommitMode;
|
|
2564
2574
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
2565
2575
|
/**
|
|
2566
2576
|
* @minLength `1`
|
|
@@ -2678,6 +2688,7 @@ export type FilterOperationTargetVisualsConfiguration = {
|
|
|
2678
2688
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-filterrelativedatetimecontrol.html}
|
|
2679
2689
|
*/
|
|
2680
2690
|
export type FilterRelativeDateTimeControl = {
|
|
2691
|
+
CommitMode?: CommitMode;
|
|
2681
2692
|
DisplayOptions?: RelativeDateTimeControlDisplayOptions;
|
|
2682
2693
|
/**
|
|
2683
2694
|
* @minLength `1`
|
|
@@ -4670,6 +4681,7 @@ export type ParameterDeclaration = {
|
|
|
4670
4681
|
*/
|
|
4671
4682
|
export type ParameterDropDownControl = {
|
|
4672
4683
|
CascadingControlConfiguration?: CascadingControlConfiguration;
|
|
4684
|
+
CommitMode?: CommitMode;
|
|
4673
4685
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
4674
4686
|
/**
|
|
4675
4687
|
* @minLength `1`
|
|
@@ -1095,6 +1095,11 @@ export type ComboChartVisual = {
|
|
|
1095
1095
|
*/
|
|
1096
1096
|
VisualId: string;
|
|
1097
1097
|
};
|
|
1098
|
+
/**
|
|
1099
|
+
* Type definition for `AWS::QuickSight::Template.CommitMode`.
|
|
1100
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-commitmode.html}
|
|
1101
|
+
*/
|
|
1102
|
+
export type CommitMode = "AUTO" | "MANUAL";
|
|
1098
1103
|
/**
|
|
1099
1104
|
* Type definition for `AWS::QuickSight::Template.ComparisonConfiguration`.
|
|
1100
1105
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-comparisonconfiguration.html}
|
|
@@ -1856,6 +1861,7 @@ export type DecimalValueWhenUnsetConfiguration = {
|
|
|
1856
1861
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-defaultdatetimepickercontroloptions.html}
|
|
1857
1862
|
*/
|
|
1858
1863
|
export type DefaultDateTimePickerControlOptions = {
|
|
1864
|
+
CommitMode?: CommitMode;
|
|
1859
1865
|
DisplayOptions?: DateTimePickerControlDisplayOptions;
|
|
1860
1866
|
Type?: SheetControlDateTimePickerType;
|
|
1861
1867
|
};
|
|
@@ -1889,6 +1895,7 @@ export type DefaultFilterControlOptions = {
|
|
|
1889
1895
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-defaultfilterdropdowncontroloptions.html}
|
|
1890
1896
|
*/
|
|
1891
1897
|
export type DefaultFilterDropDownControlOptions = {
|
|
1898
|
+
CommitMode?: CommitMode;
|
|
1892
1899
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
1893
1900
|
SelectableValues?: FilterSelectableValues;
|
|
1894
1901
|
Type?: SheetControlListType;
|
|
@@ -1945,6 +1952,7 @@ export type DefaultPaginatedLayoutConfiguration = {
|
|
|
1945
1952
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-defaultrelativedatetimecontroloptions.html}
|
|
1946
1953
|
*/
|
|
1947
1954
|
export type DefaultRelativeDateTimeControlOptions = {
|
|
1955
|
+
CommitMode?: CommitMode;
|
|
1948
1956
|
DisplayOptions?: RelativeDateTimeControlDisplayOptions;
|
|
1949
1957
|
};
|
|
1950
1958
|
/**
|
|
@@ -2338,6 +2346,7 @@ export type FilterCrossSheetControl = {
|
|
|
2338
2346
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filterdatetimepickercontrol.html}
|
|
2339
2347
|
*/
|
|
2340
2348
|
export type FilterDateTimePickerControl = {
|
|
2349
|
+
CommitMode?: CommitMode;
|
|
2341
2350
|
DisplayOptions?: DateTimePickerControlDisplayOptions;
|
|
2342
2351
|
/**
|
|
2343
2352
|
* @minLength `1`
|
|
@@ -2364,6 +2373,7 @@ export type FilterDateTimePickerControl = {
|
|
|
2364
2373
|
*/
|
|
2365
2374
|
export type FilterDropDownControl = {
|
|
2366
2375
|
CascadingControlConfiguration?: CascadingControlConfiguration;
|
|
2376
|
+
CommitMode?: CommitMode;
|
|
2367
2377
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
2368
2378
|
/**
|
|
2369
2379
|
* @minLength `1`
|
|
@@ -2481,6 +2491,7 @@ export type FilterOperationTargetVisualsConfiguration = {
|
|
|
2481
2491
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filterrelativedatetimecontrol.html}
|
|
2482
2492
|
*/
|
|
2483
2493
|
export type FilterRelativeDateTimeControl = {
|
|
2494
|
+
CommitMode?: CommitMode;
|
|
2484
2495
|
DisplayOptions?: RelativeDateTimeControlDisplayOptions;
|
|
2485
2496
|
/**
|
|
2486
2497
|
* @minLength `1`
|
|
@@ -4446,6 +4457,7 @@ export type ParameterDeclaration = {
|
|
|
4446
4457
|
*/
|
|
4447
4458
|
export type ParameterDropDownControl = {
|
|
4448
4459
|
CascadingControlConfiguration?: CascadingControlConfiguration;
|
|
4460
|
+
CommitMode?: CommitMode;
|
|
4449
4461
|
DisplayOptions?: DropDownControlDisplayOptions;
|
|
4450
4462
|
/**
|
|
4451
4463
|
* @minLength `1`
|