@awboost/cfn-resource-types 0.1.141 → 0.1.143

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,96 @@
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::Connect::AgentStatus
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-agentstatus.html}
6
+ */
7
+ export type ConnectAgentStatusProperties = {
8
+ /**
9
+ * The description of the status.
10
+ * @minLength `1`
11
+ * @maxLength `250`
12
+ */
13
+ Description?: string;
14
+ /**
15
+ * The display order of the status.
16
+ * @min `1`
17
+ * @max `50`
18
+ */
19
+ DisplayOrder?: number;
20
+ /**
21
+ * The identifier of the Amazon Connect instance.
22
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
23
+ */
24
+ InstanceArn: string;
25
+ /**
26
+ * The name of the status.
27
+ * @minLength `1`
28
+ * @maxLength `127`
29
+ */
30
+ Name: string;
31
+ /**
32
+ * A number indicating the reset order of the agent status.
33
+ */
34
+ ResetOrderNumber?: boolean;
35
+ /**
36
+ * The state of the status.
37
+ */
38
+ State: "ENABLED" | "DISABLED";
39
+ /**
40
+ * An array of key-value pairs to apply to this resource.
41
+ * @maxLength `50`
42
+ */
43
+ Tags?: Tag[];
44
+ /**
45
+ * The type of agent status.
46
+ */
47
+ Type?: "ROUTABLE" | "CUSTOM" | "OFFLINE";
48
+ };
49
+ /**
50
+ * Attribute type definition for `AWS::Connect::AgentStatus`.
51
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-agentstatus.html#aws-resource-connect-agentstatus-return-values}
52
+ */
53
+ export type ConnectAgentStatusAttributes = {
54
+ /**
55
+ * The Amazon Resource Name (ARN) of the agent status.
56
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/‍*agent-state/[-a-zA-Z0-9]*$`
57
+ */
58
+ AgentStatusArn: string;
59
+ /**
60
+ * Last modified region.
61
+ * @pattern `[a-z]{2}(-[a-z]+){1,2}(-[0-9])?`
62
+ */
63
+ LastModifiedRegion: string;
64
+ /**
65
+ * Last modified time.
66
+ */
67
+ LastModifiedTime: number;
68
+ };
69
+ /**
70
+ * Type definition for `AWS::Connect::AgentStatus.Tag`.
71
+ * A key-value pair to associate with a resource.
72
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-agentstatus-tag.html}
73
+ */
74
+ export type Tag = {
75
+ /**
76
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
77
+ * @minLength `1`
78
+ * @maxLength `128`
79
+ * @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
80
+ */
81
+ Key: string;
82
+ /**
83
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
84
+ * @maxLength `256`
85
+ */
86
+ Value: string;
87
+ };
88
+ /**
89
+ * Resource Type definition for AWS::Connect::AgentStatus
90
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-agentstatus.html}
91
+ */
92
+ export declare class ConnectAgentStatus extends $Resource<"AWS::Connect::AgentStatus", ConnectAgentStatusProperties, ConnectAgentStatusAttributes> {
93
+ static readonly Type = "AWS::Connect::AgentStatus";
94
+ constructor(logicalId: string, properties: ConnectAgentStatusProperties, options?: $ResourceOptions);
95
+ }
96
+ //# sourceMappingURL=AWS-Connect-AgentStatus.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::Connect::AgentStatus
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-agentstatus.html}
5
+ */
6
+ export class ConnectAgentStatus extends $Resource {
7
+ static Type = "AWS::Connect::AgentStatus";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, ConnectAgentStatus.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Connect-AgentStatus.js.map
@@ -0,0 +1,158 @@
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::Connect::UserHierarchyStructure
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-userhierarchystructure.html}
6
+ */
7
+ export type ConnectUserHierarchyStructureProperties = {
8
+ /**
9
+ * The identifier of the Amazon Connect instance.
10
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
11
+ */
12
+ InstanceArn: string;
13
+ /**
14
+ * Information about the hierarchy structure.
15
+ */
16
+ UserHierarchyStructure?: {
17
+ /**
18
+ * Information about level five.
19
+ */
20
+ LevelFive?: LevelFive;
21
+ /**
22
+ * Information about level four.
23
+ */
24
+ LevelFour?: LevelFour;
25
+ /**
26
+ * Information about level one.
27
+ */
28
+ LevelOne?: LevelOne;
29
+ /**
30
+ * Information about level three.
31
+ */
32
+ LevelThree?: LevelThree;
33
+ /**
34
+ * Information about level two.
35
+ */
36
+ LevelTwo?: LevelTwo;
37
+ };
38
+ };
39
+ /**
40
+ * Attribute type definition for `AWS::Connect::UserHierarchyStructure`.
41
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-userhierarchystructure.html#aws-resource-connect-userhierarchystructure-return-values}
42
+ */
43
+ export type ConnectUserHierarchyStructureAttributes = {
44
+ /**
45
+ * The identifier of the User Hierarchy Structure.
46
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/‍*user-hierarchy-structure`
47
+ */
48
+ UserHierarchyStructureArn: string;
49
+ };
50
+ /**
51
+ * Type definition for `AWS::Connect::UserHierarchyStructure.LevelFive`.
52
+ * Information about level five.
53
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-userhierarchystructure-levelfive.html}
54
+ */
55
+ export type LevelFive = {
56
+ /**
57
+ * The Amazon Resource Name (ARN) of the hierarchy level.
58
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/‍*agent-group-level/[-0-9]*$`
59
+ */
60
+ HierarchyLevelArn?: string;
61
+ /**
62
+ * The identifier of the hierarchy level.
63
+ */
64
+ HierarchyLevelId?: string;
65
+ /**
66
+ * The name of the hierarchy level.
67
+ */
68
+ Name: string;
69
+ };
70
+ /**
71
+ * Type definition for `AWS::Connect::UserHierarchyStructure.LevelFour`.
72
+ * Information about level four.
73
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-userhierarchystructure-levelfour.html}
74
+ */
75
+ export type LevelFour = {
76
+ /**
77
+ * The Amazon Resource Name (ARN) of the hierarchy level.
78
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/‍*agent-group-level/[-0-9]*$`
79
+ */
80
+ HierarchyLevelArn?: string;
81
+ /**
82
+ * The identifier of the hierarchy level.
83
+ */
84
+ HierarchyLevelId?: string;
85
+ /**
86
+ * The name of the hierarchy level.
87
+ */
88
+ Name: string;
89
+ };
90
+ /**
91
+ * Type definition for `AWS::Connect::UserHierarchyStructure.LevelOne`.
92
+ * Information about level one.
93
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-userhierarchystructure-levelone.html}
94
+ */
95
+ export type LevelOne = {
96
+ /**
97
+ * The Amazon Resource Name (ARN) of the hierarchy level.
98
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/‍*agent-group-level/[-0-9]*$`
99
+ */
100
+ HierarchyLevelArn?: string;
101
+ /**
102
+ * The identifier of the hierarchy level.
103
+ */
104
+ HierarchyLevelId?: string;
105
+ /**
106
+ * The name of the hierarchy level.
107
+ */
108
+ Name: string;
109
+ };
110
+ /**
111
+ * Type definition for `AWS::Connect::UserHierarchyStructure.LevelThree`.
112
+ * Information about level three.
113
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-userhierarchystructure-levelthree.html}
114
+ */
115
+ export type LevelThree = {
116
+ /**
117
+ * The Amazon Resource Name (ARN) of the hierarchy level.
118
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/‍*agent-group-level/[-0-9]*$`
119
+ */
120
+ HierarchyLevelArn?: string;
121
+ /**
122
+ * The identifier of the hierarchy level.
123
+ */
124
+ HierarchyLevelId?: string;
125
+ /**
126
+ * The name of the hierarchy level.
127
+ */
128
+ Name: string;
129
+ };
130
+ /**
131
+ * Type definition for `AWS::Connect::UserHierarchyStructure.LevelTwo`.
132
+ * Information about level two.
133
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-userhierarchystructure-leveltwo.html}
134
+ */
135
+ export type LevelTwo = {
136
+ /**
137
+ * The Amazon Resource Name (ARN) of the hierarchy level.
138
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/‍*agent-group-level/[-0-9]*$`
139
+ */
140
+ HierarchyLevelArn?: string;
141
+ /**
142
+ * The identifier of the hierarchy level.
143
+ */
144
+ HierarchyLevelId?: string;
145
+ /**
146
+ * The name of the hierarchy level.
147
+ */
148
+ Name: string;
149
+ };
150
+ /**
151
+ * Resource Type definition for AWS::Connect::UserHierarchyStructure
152
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-userhierarchystructure.html}
153
+ */
154
+ export declare class ConnectUserHierarchyStructure extends $Resource<"AWS::Connect::UserHierarchyStructure", ConnectUserHierarchyStructureProperties, ConnectUserHierarchyStructureAttributes> {
155
+ static readonly Type = "AWS::Connect::UserHierarchyStructure";
156
+ constructor(logicalId: string, properties: ConnectUserHierarchyStructureProperties, options?: $ResourceOptions);
157
+ }
158
+ //# sourceMappingURL=AWS-Connect-UserHierarchyStructure.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::Connect::UserHierarchyStructure
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-userhierarchystructure.html}
5
+ */
6
+ export class ConnectUserHierarchyStructure extends $Resource {
7
+ static Type = "AWS::Connect::UserHierarchyStructure";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, ConnectUserHierarchyStructure.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Connect-UserHierarchyStructure.js.map
@@ -15,11 +15,25 @@ export type DataZoneEnvironmentProperties = {
15
15
  * @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
16
16
  */
17
17
  DomainIdentifier: string;
18
+ /**
19
+ * The AWS account in which the Amazon DataZone environment is created.
20
+ * @pattern `^\d{12}$`
21
+ */
22
+ EnvironmentAccountIdentifier?: string;
23
+ /**
24
+ * The AWS region in which the Amazon DataZone environment is created.
25
+ * @pattern `^[a-z]{2}-[a-z]{4,10}-\d$`
26
+ */
27
+ EnvironmentAccountRegion?: string;
18
28
  /**
19
29
  * The ID of the environment profile with which the Amazon DataZone environment would be created.
20
- * @pattern `^[a-zA-Z0-9_-]{1,36}$`
30
+ * @pattern `^[a-zA-Z0-9_-]{0,36}$`
21
31
  */
22
- EnvironmentProfileIdentifier: string;
32
+ EnvironmentProfileIdentifier?: string;
33
+ /**
34
+ * Environment role arn for custom aws environment permissions
35
+ */
36
+ EnvironmentRoleArn?: string;
23
37
  /**
24
38
  * The glossary terms that can be used in the Amazon DataZone environment.
25
39
  * @minLength `1`
@@ -78,7 +92,7 @@ export type DataZoneEnvironmentAttributes = {
78
92
  EnvironmentBlueprintId: string;
79
93
  /**
80
94
  * The ID of the environment profile with which the Amazon DataZone environment was created.
81
- * @pattern `^[a-zA-Z0-9_-]{1,36}$`
95
+ * @pattern `^[a-zA-Z0-9_-]{0,36}$`
82
96
  */
83
97
  EnvironmentProfileId: string;
84
98
  /**
@@ -47,6 +47,11 @@ export type IoTFleetWiseCampaignProperties = {
47
47
  * @maxLength `1000`
48
48
  */
49
49
  SignalsToCollect?: SignalInformation[];
50
+ /**
51
+ * @minLength `0`
52
+ * @maxLength `10`
53
+ */
54
+ SignalsToFetch?: SignalFetchInformation[];
50
55
  SpoolingMode?: SpoolingMode;
51
56
  StartTime?: string;
52
57
  /**
@@ -106,6 +111,18 @@ export type ConditionBasedCollectionScheme = {
106
111
  MinimumTriggerIntervalMs?: number;
107
112
  TriggerMode?: TriggerMode;
108
113
  };
114
+ /**
115
+ * Type definition for `AWS::IoTFleetWise::Campaign.ConditionBasedSignalFetchConfig`.
116
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-conditionbasedsignalfetchconfig.html}
117
+ */
118
+ export type ConditionBasedSignalFetchConfig = {
119
+ /**
120
+ * @minLength `1`
121
+ * @maxLength `2048`
122
+ */
123
+ ConditionExpression: string;
124
+ TriggerMode: TriggerMode;
125
+ };
109
126
  /**
110
127
  * Type definition for `AWS::IoTFleetWise::Campaign.DataDestinationConfig`.
111
128
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-datadestinationconfig.html}
@@ -165,6 +182,38 @@ export type S3Config = {
165
182
  Prefix?: string;
166
183
  StorageCompressionFormat?: StorageCompressionFormat;
167
184
  };
185
+ /**
186
+ * Type definition for `AWS::IoTFleetWise::Campaign.SignalFetchConfig`.
187
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-signalfetchconfig.html}
188
+ */
189
+ export type SignalFetchConfig = {
190
+ TimeBased: TimeBasedSignalFetchConfig;
191
+ } | {
192
+ ConditionBased: ConditionBasedSignalFetchConfig;
193
+ };
194
+ /**
195
+ * Type definition for `AWS::IoTFleetWise::Campaign.SignalFetchInformation`.
196
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-signalfetchinformation.html}
197
+ */
198
+ export type SignalFetchInformation = {
199
+ /**
200
+ * @minLength `1`
201
+ * @maxLength `5`
202
+ */
203
+ Actions: string[];
204
+ /**
205
+ * @min `1`
206
+ * @max `1`
207
+ */
208
+ ConditionLanguageVersion?: number;
209
+ /**
210
+ * @minLength `1`
211
+ * @maxLength `150`
212
+ * @pattern `^[a-zA-Z0-9_.]+$`
213
+ */
214
+ FullyQualifiedName: string;
215
+ SignalFetchConfig: SignalFetchConfig;
216
+ };
168
217
  /**
169
218
  * Type definition for `AWS::IoTFleetWise::Campaign.SignalInformation`.
170
219
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-signalinformation.html}
@@ -220,10 +269,20 @@ export type Tag = {
220
269
  export type TimeBasedCollectionScheme = {
221
270
  /**
222
271
  * @min `10000`
223
- * @max `60000`
272
+ * @max `86400000`
224
273
  */
225
274
  PeriodMs: number;
226
275
  };
276
+ /**
277
+ * Type definition for `AWS::IoTFleetWise::Campaign.TimeBasedSignalFetchConfig`.
278
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-timebasedsignalfetchconfig.html}
279
+ */
280
+ export type TimeBasedSignalFetchConfig = {
281
+ /**
282
+ * @min `1`
283
+ */
284
+ ExecutionFrequencyMs: number;
285
+ };
227
286
  /**
228
287
  * Type definition for `AWS::IoTFleetWise::Campaign.TimestreamConfig`.
229
288
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-timestreamconfig.html}
@@ -20,12 +20,12 @@ export type IoTFleetWiseDecoderManifestProperties = {
20
20
  Name: string;
21
21
  /**
22
22
  * @minLength `1`
23
- * @maxLength `500`
23
+ * @maxLength `5000`
24
24
  */
25
25
  NetworkInterfaces?: (CanNetworkInterface | ObdNetworkInterface)[];
26
26
  /**
27
27
  * @minLength `1`
28
- * @maxLength `500`
28
+ * @maxLength `5000`
29
29
  */
30
30
  SignalDecoders?: (CanSignalDecoder | ObdSignalDecoder)[];
31
31
  Status?: ManifestStatus;
@@ -19,7 +19,7 @@ export type IoTFleetWiseSignalCatalogProperties = {
19
19
  Name?: string;
20
20
  /**
21
21
  * @minLength `1`
22
- * @maxLength `500`
22
+ * @maxLength `5000`
23
23
  */
24
24
  Nodes?: Node[];
25
25
  /**
@@ -109,7 +109,7 @@ export type Application = {
109
109
  /**
110
110
  * Application type, which can be specified to obtain real-time position information of your LoRaWAN device.
111
111
  */
112
- Type?: "SemtechGeolocation";
112
+ Type?: "SemtechGeolocation" | "SemtechGNSS" | "SemtechGNSSNG" | "SemtechWiFi";
113
113
  };
114
114
  /**
115
115
  * Type definition for `AWS::IoTWireless::WirelessDevice.FPorts`.
@@ -19,6 +19,10 @@ export type LambdaCodeSigningConfigProperties = {
19
19
  * @maxLength `256`
20
20
  */
21
21
  Description?: string;
22
+ /**
23
+ * A list of tags to apply to CodeSigningConfig resource
24
+ */
25
+ Tags?: Tag[];
22
26
  };
23
27
  /**
24
28
  * Attribute type definition for `AWS::Lambda::CodeSigningConfig`.
@@ -60,6 +64,24 @@ export type CodeSigningPolicies = {
60
64
  */
61
65
  UntrustedArtifactOnDeployment: "Warn" | "Enforce";
62
66
  };
67
+ /**
68
+ * Type definition for `AWS::Lambda::CodeSigningConfig.Tag`.
69
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-codesigningconfig-tag.html}
70
+ */
71
+ export type Tag = {
72
+ /**
73
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
74
+ * @minLength `1`
75
+ * @maxLength `128`
76
+ */
77
+ Key: string;
78
+ /**
79
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
80
+ * @minLength `0`
81
+ * @maxLength `256`
82
+ */
83
+ Value?: string;
84
+ };
63
85
  /**
64
86
  * Resource Type definition for AWS::Lambda::CodeSigningConfig.
65
87
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-codesigningconfig.html}
@@ -6036,8 +6036,13 @@ export type SimpleTotalAggregationFunction = "DEFAULT" | "SUM" | "AVERAGE" | "MI
6036
6036
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-singleaxisoptions.html}
6037
6037
  */
6038
6038
  export type SingleAxisOptions = {
6039
- YAxisOptions?: unknown;
6039
+ YAxisOptions?: YAxisOptions;
6040
6040
  };
6041
+ /**
6042
+ * Type definition for `AWS::QuickSight::Analysis.SingleYAxisOption`.
6043
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-singleyaxisoption.html}
6044
+ */
6045
+ export type SingleYAxisOption = "PRIMARY_Y_AXIS";
6041
6046
  /**
6042
6047
  * Type definition for `AWS::QuickSight::Analysis.SliderControlDisplayOptions`.
6043
6048
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-slidercontroldisplayoptions.html}
@@ -7374,6 +7379,13 @@ export type WordCloudWordPadding = "NONE" | "SMALL" | "MEDIUM" | "LARGE";
7374
7379
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-wordcloudwordscaling.html}
7375
7380
  */
7376
7381
  export type WordCloudWordScaling = "EMPHASIZE" | "NORMAL";
7382
+ /**
7383
+ * Type definition for `AWS::QuickSight::Analysis.YAxisOptions`.
7384
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-yaxisoptions.html}
7385
+ */
7386
+ export type YAxisOptions = {
7387
+ YAxis: SingleYAxisOption;
7388
+ };
7377
7389
  /**
7378
7390
  * Definition of the AWS::QuickSight::Analysis Resource Type.
7379
7391
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-analysis.html}
@@ -6306,8 +6306,13 @@ export type SimpleTotalAggregationFunction = "DEFAULT" | "SUM" | "AVERAGE" | "MI
6306
6306
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-singleaxisoptions.html}
6307
6307
  */
6308
6308
  export type SingleAxisOptions = {
6309
- YAxisOptions?: unknown;
6309
+ YAxisOptions?: YAxisOptions;
6310
6310
  };
6311
+ /**
6312
+ * Type definition for `AWS::QuickSight::Dashboard.SingleYAxisOption`.
6313
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-singleyaxisoption.html}
6314
+ */
6315
+ export type SingleYAxisOption = "PRIMARY_Y_AXIS";
6311
6316
  /**
6312
6317
  * Type definition for `AWS::QuickSight::Dashboard.SliderControlDisplayOptions`.
6313
6318
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-slidercontroldisplayoptions.html}
@@ -7658,6 +7663,13 @@ export type WordCloudWordPadding = "NONE" | "SMALL" | "MEDIUM" | "LARGE";
7658
7663
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-wordcloudwordscaling.html}
7659
7664
  */
7660
7665
  export type WordCloudWordScaling = "EMPHASIZE" | "NORMAL";
7666
+ /**
7667
+ * Type definition for `AWS::QuickSight::Dashboard.YAxisOptions`.
7668
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-yaxisoptions.html}
7669
+ */
7670
+ export type YAxisOptions = {
7671
+ YAxis: SingleYAxisOption;
7672
+ };
7661
7673
  /**
7662
7674
  * Definition of the AWS::QuickSight::Dashboard Resource Type.
7663
7675
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-dashboard.html}
@@ -40,6 +40,12 @@ export type QuickSightDataSetProperties = {
40
40
  */
41
41
  DatasetParameters?: DatasetParameter[];
42
42
  FieldFolders?: FieldFolderMap;
43
+ /**
44
+ * <p>When you create the dataset, Amazon QuickSight adds the dataset to these folders.</p>
45
+ * @minLength `0`
46
+ * @maxLength `10`
47
+ */
48
+ FolderArns?: string[];
43
49
  ImportMode?: DataSetImportMode;
44
50
  /**
45
51
  * <p>Wait policy to use when creating/updating dataset. Default is to wait for SPICE ingestion to finish with timeout of 36 hours.</p>
@@ -674,7 +680,7 @@ export type LogicalTable = {
674
680
  * <p>Information about the source of a logical table. This is a variant type structure. For
675
681
  this structure to be valid, only one of the attributes can be non-null.</p>
676
682
  */
677
- Source: LogicalTableSource;
683
+ Source?: LogicalTableSource;
678
684
  };
679
685
  /**
680
686
  * Type definition for `AWS::QuickSight::DataSet.LogicalTableMap`.
@@ -6047,8 +6047,13 @@ export type SimpleTotalAggregationFunction = "DEFAULT" | "SUM" | "AVERAGE" | "MI
6047
6047
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-singleaxisoptions.html}
6048
6048
  */
6049
6049
  export type SingleAxisOptions = {
6050
- YAxisOptions?: unknown;
6050
+ YAxisOptions?: YAxisOptions;
6051
6051
  };
6052
+ /**
6053
+ * Type definition for `AWS::QuickSight::Template.SingleYAxisOption`.
6054
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-singleyaxisoption.html}
6055
+ */
6056
+ export type SingleYAxisOption = "PRIMARY_Y_AXIS";
6052
6057
  /**
6053
6058
  * Type definition for `AWS::QuickSight::Template.SliderControlDisplayOptions`.
6054
6059
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-slidercontroldisplayoptions.html}
@@ -7526,6 +7531,13 @@ export type WordCloudWordPadding = "NONE" | "SMALL" | "MEDIUM" | "LARGE";
7526
7531
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-wordcloudwordscaling.html}
7527
7532
  */
7528
7533
  export type WordCloudWordScaling = "EMPHASIZE" | "NORMAL";
7534
+ /**
7535
+ * Type definition for `AWS::QuickSight::Template.YAxisOptions`.
7536
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-yaxisoptions.html}
7537
+ */
7538
+ export type YAxisOptions = {
7539
+ YAxis: SingleYAxisOption;
7540
+ };
7529
7541
  /**
7530
7542
  * Definition of the AWS::QuickSight::Template Resource Type.
7531
7543
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-template.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.141",
3
+ "version": "0.1.143",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },