@awboost/cfn-resource-types 0.1.306 → 0.1.308

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.
@@ -17,7 +17,7 @@ export type CleanRoomsAnalysisTemplateProperties = {
17
17
  * @pattern `^[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t\r\n]*$`
18
18
  */
19
19
  Description?: string;
20
- Format: "SQL";
20
+ Format: "SQL" | "PYSPARK_1_0";
21
21
  /**
22
22
  * @minLength `36`
23
23
  * @maxLength `36`
@@ -29,7 +29,9 @@ export type CleanRoomsAnalysisTemplateProperties = {
29
29
  * @pattern `^[a-zA-Z0-9_](([a-zA-Z0-9_ ]+-)*([a-zA-Z0-9_ ]+))?$`
30
30
  */
31
31
  Name: string;
32
+ Schema?: AnalysisSchema;
32
33
  Source: AnalysisSource;
34
+ SourceMetadata?: AnalysisSourceMetadata;
33
35
  /**
34
36
  * An arbitrary set of tags (key-value pairs) for this cleanrooms analysis template.
35
37
  */
@@ -64,12 +66,6 @@ export type CleanRoomsAnalysisTemplateAttributes = {
64
66
  * @maxLength `100`
65
67
  */
66
68
  MembershipArn: string;
67
- Schema: {
68
- /**
69
- * @minLength `0`
70
- */
71
- ReferencedTables: string[];
72
- };
73
69
  };
74
70
  /**
75
71
  * Type definition for `AWS::CleanRooms::AnalysisTemplate.AnalysisParameter`.
@@ -106,9 +102,69 @@ export type AnalysisSchema = {
106
102
  export type AnalysisSource = {
107
103
  /**
108
104
  * @minLength `0`
109
- * @maxLength `15000`
105
+ * @maxLength `90000`
110
106
  */
111
107
  Text: string;
108
+ } | {
109
+ Artifacts: AnalysisTemplateArtifacts;
110
+ };
111
+ /**
112
+ * Type definition for `AWS::CleanRooms::AnalysisTemplate.AnalysisSourceMetadata`.
113
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysissourcemetadata.html}
114
+ */
115
+ export type AnalysisSourceMetadata = {
116
+ Artifacts: AnalysisTemplateArtifactMetadata;
117
+ };
118
+ /**
119
+ * Type definition for `AWS::CleanRooms::AnalysisTemplate.AnalysisTemplateArtifact`.
120
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifact.html}
121
+ */
122
+ export type AnalysisTemplateArtifact = {
123
+ Location: S3Location;
124
+ };
125
+ /**
126
+ * Type definition for `AWS::CleanRooms::AnalysisTemplate.AnalysisTemplateArtifactMetadata`.
127
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifactmetadata.html}
128
+ */
129
+ export type AnalysisTemplateArtifactMetadata = {
130
+ AdditionalArtifactHashes?: Hash[];
131
+ EntryPointHash: Hash;
132
+ };
133
+ /**
134
+ * Type definition for `AWS::CleanRooms::AnalysisTemplate.AnalysisTemplateArtifacts`.
135
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifacts.html}
136
+ */
137
+ export type AnalysisTemplateArtifacts = {
138
+ /**
139
+ * @minLength `1`
140
+ * @maxLength `1`
141
+ */
142
+ AdditionalArtifacts?: AnalysisTemplateArtifact[];
143
+ EntryPoint: AnalysisTemplateArtifact;
144
+ /**
145
+ * @minLength `32`
146
+ * @maxLength `512`
147
+ */
148
+ RoleArn: string;
149
+ };
150
+ /**
151
+ * Type definition for `AWS::CleanRooms::AnalysisTemplate.Hash`.
152
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-hash.html}
153
+ */
154
+ export type Hash = {
155
+ Sha256?: string;
156
+ };
157
+ /**
158
+ * Type definition for `AWS::CleanRooms::AnalysisTemplate.S3Location`.
159
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-s3location.html}
160
+ */
161
+ export type S3Location = {
162
+ /**
163
+ * @minLength `3`
164
+ * @maxLength `63`
165
+ */
166
+ Bucket: string;
167
+ Key: string;
112
168
  };
113
169
  /**
114
170
  * Type definition for `AWS::CleanRooms::AnalysisTemplate.Tag`.
@@ -23,6 +23,7 @@ export type CleanRoomsCollaborationProperties = {
23
23
  * @pattern `^(?!\s*$)[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t\r\n]*$`
24
24
  */
25
25
  Description: string;
26
+ JobLogStatus?: CollaborationJobLogStatus;
26
27
  /**
27
28
  * @minLength `0`
28
29
  * @maxLength `9`
@@ -61,6 +62,11 @@ export type CleanRoomsCollaborationAttributes = {
61
62
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-analyticsengine.html}
62
63
  */
63
64
  export type AnalyticsEngine = "CLEAN_ROOMS_SQL" | "SPARK";
65
+ /**
66
+ * Type definition for `AWS::CleanRooms::Collaboration.CollaborationJobLogStatus`.
67
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-collaborationjoblogstatus.html}
68
+ */
69
+ export type CollaborationJobLogStatus = "ENABLED" | "DISABLED";
64
70
  /**
65
71
  * Type definition for `AWS::CleanRooms::Collaboration.CollaborationQueryLogStatus`.
66
72
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-collaborationquerylogstatus.html}
@@ -81,11 +87,18 @@ export type DataEncryptionMetadata = {
81
87
  AllowJoinsOnColumnsWithDifferentNames: boolean;
82
88
  PreserveNulls: boolean;
83
89
  };
90
+ /**
91
+ * Type definition for `AWS::CleanRooms::Collaboration.JobComputePaymentConfig`.
92
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-jobcomputepaymentconfig.html}
93
+ */
94
+ export type JobComputePaymentConfig = {
95
+ IsResponsible: boolean;
96
+ };
84
97
  /**
85
98
  * Type definition for `AWS::CleanRooms::Collaboration.MemberAbility`.
86
99
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-memberability.html}
87
100
  */
88
- export type MemberAbility = "CAN_QUERY" | "CAN_RECEIVE_RESULTS";
101
+ export type MemberAbility = "CAN_QUERY" | "CAN_RUN_JOB" | "CAN_RECEIVE_RESULTS";
89
102
  /**
90
103
  * Type definition for `AWS::CleanRooms::Collaboration.MemberSpecification`.
91
104
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-memberspecification.html}
@@ -141,6 +154,7 @@ export type ModelTrainingPaymentConfig = {
141
154
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-paymentconfiguration.html}
142
155
  */
143
156
  export type PaymentConfiguration = {
157
+ JobCompute?: JobComputePaymentConfig;
144
158
  MachineLearning?: MLPaymentConfig;
145
159
  QueryCompute: QueryComputePaymentConfig;
146
160
  };
@@ -28,6 +28,7 @@ export type CleanRoomsConfiguredTableProperties = {
28
28
  * @pattern `^(?!\s*$)[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t]*$`
29
29
  */
30
30
  Name: string;
31
+ SelectedAnalysisMethods?: SelectedAnalysisMethod[];
31
32
  TableReference: TableReference;
32
33
  /**
33
34
  * An arbitrary set of tags (key-value pairs) for this cleanrooms collaboration.
@@ -98,7 +99,7 @@ export type AggregationType = "COUNT_DISTINCT";
98
99
  * Type definition for `AWS::CleanRooms::ConfiguredTable.AnalysisMethod`.
99
100
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysismethod.html}
100
101
  */
101
- export type AnalysisMethod = "DIRECT_QUERY";
102
+ export type AnalysisMethod = "DIRECT_QUERY" | "DIRECT_JOB" | "MULTIPLE";
102
103
  /**
103
104
  * Type definition for `AWS::CleanRooms::ConfiguredTable.AnalysisRule`.
104
105
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrule.html}
@@ -261,6 +262,11 @@ export type JoinRequiredOption = "QUERY_RUNNER";
261
262
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-scalarfunctions.html}
262
263
  */
263
264
  export type ScalarFunctions = "TRUNC" | "ABS" | "CEILING" | "FLOOR" | "LN" | "LOG" | "ROUND" | "SQRT" | "CAST" | "LOWER" | "RTRIM" | "UPPER" | "COALESCE" | "CONVERT" | "CURRENT_DATE" | "DATEADD" | "EXTRACT" | "GETDATE" | "SUBSTRING" | "TO_CHAR" | "TO_DATE" | "TO_NUMBER" | "TO_TIMESTAMP" | "TRIM";
265
+ /**
266
+ * Type definition for `AWS::CleanRooms::ConfiguredTable.SelectedAnalysisMethod`.
267
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-selectedanalysismethod.html}
268
+ */
269
+ export type SelectedAnalysisMethod = "DIRECT_QUERY" | "DIRECT_JOB";
264
270
  /**
265
271
  * Type definition for `AWS::CleanRooms::ConfiguredTable.SnowflakeTableReference`.
266
272
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html}
@@ -12,7 +12,9 @@ export type CleanRoomsMembershipProperties = {
12
12
  * @pattern `[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}`
13
13
  */
14
14
  CollaborationIdentifier: string;
15
+ DefaultJobResultConfiguration?: MembershipProtectedJobResultConfiguration;
15
16
  DefaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
17
+ JobLogStatus?: MembershipJobLogStatus;
16
18
  PaymentConfiguration?: MembershipPaymentConfiguration;
17
19
  QueryLogStatus: MembershipQueryLogStatus;
18
20
  /**
@@ -46,6 +48,18 @@ export type CleanRoomsMembershipAttributes = {
46
48
  */
47
49
  MembershipIdentifier: string;
48
50
  };
51
+ /**
52
+ * Type definition for `AWS::CleanRooms::Membership.MembershipJobComputePaymentConfig`.
53
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipjobcomputepaymentconfig.html}
54
+ */
55
+ export type MembershipJobComputePaymentConfig = {
56
+ IsResponsible: boolean;
57
+ };
58
+ /**
59
+ * Type definition for `AWS::CleanRooms::Membership.MembershipJobLogStatus`.
60
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipjoblogstatus.html}
61
+ */
62
+ export type MembershipJobLogStatus = "ENABLED" | "DISABLED";
49
63
  /**
50
64
  * Type definition for `AWS::CleanRooms::Membership.MembershipMLPaymentConfig`.
51
65
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmlpaymentconfig.html}
@@ -73,9 +87,29 @@ export type MembershipModelTrainingPaymentConfig = {
73
87
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html}
74
88
  */
75
89
  export type MembershipPaymentConfiguration = {
90
+ JobCompute?: MembershipJobComputePaymentConfig;
76
91
  MachineLearning?: MembershipMLPaymentConfig;
77
92
  QueryCompute: MembershipQueryComputePaymentConfig;
78
93
  };
94
+ /**
95
+ * Type definition for `AWS::CleanRooms::Membership.MembershipProtectedJobOutputConfiguration`.
96
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedjoboutputconfiguration.html}
97
+ */
98
+ export type MembershipProtectedJobOutputConfiguration = {
99
+ S3: ProtectedJobS3OutputConfigurationInput;
100
+ };
101
+ /**
102
+ * Type definition for `AWS::CleanRooms::Membership.MembershipProtectedJobResultConfiguration`.
103
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedjobresultconfiguration.html}
104
+ */
105
+ export type MembershipProtectedJobResultConfiguration = {
106
+ OutputConfiguration: MembershipProtectedJobOutputConfiguration;
107
+ /**
108
+ * @minLength `32`
109
+ * @maxLength `512`
110
+ */
111
+ RoleArn: string;
112
+ };
79
113
  /**
80
114
  * Type definition for `AWS::CleanRooms::Membership.MembershipProtectedQueryOutputConfiguration`.
81
115
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedqueryoutputconfiguration.html}
@@ -107,6 +141,18 @@ export type MembershipQueryComputePaymentConfig = {
107
141
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipquerylogstatus.html}
108
142
  */
109
143
  export type MembershipQueryLogStatus = "ENABLED" | "DISABLED";
144
+ /**
145
+ * Type definition for `AWS::CleanRooms::Membership.ProtectedJobS3OutputConfigurationInput`.
146
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedjobs3outputconfigurationinput.html}
147
+ */
148
+ export type ProtectedJobS3OutputConfigurationInput = {
149
+ /**
150
+ * @minLength `3`
151
+ * @maxLength `63`
152
+ */
153
+ Bucket: string;
154
+ KeyPrefix?: string;
155
+ };
110
156
  /**
111
157
  * Type definition for `AWS::CleanRooms::Membership.ProtectedQueryS3OutputConfiguration`.
112
158
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedquerys3outputconfiguration.html}
@@ -41,6 +41,10 @@ export type MemoryDBClusterProperties = {
41
41
  * The user-supplied name of a final cluster snapshot. This is the unique name that identifies the snapshot. MemoryDB creates the snapshot, and then deletes the cluster immediately afterward.
42
42
  */
43
43
  FinalSnapshotName?: string;
44
+ /**
45
+ * For clusters wth dual stack NetworkType, IpDiscovery controls the Ip protocol (ipv4 or ipv6) returned by the engine commands such as `cluster info` and `cluster nodes` which are used by clients to connect to the nodes in the cluster.
46
+ */
47
+ IpDiscovery?: SupportedIpDiscoveryTypes;
44
48
  /**
45
49
  * The ID of the KMS key used to encrypt the cluster.
46
50
  */
@@ -53,6 +57,10 @@ export type MemoryDBClusterProperties = {
53
57
  * The name of the Global Datastore, it is generated by MemoryDB adding a prefix to MultiRegionClusterNameSuffix.
54
58
  */
55
59
  MultiRegionClusterName?: string;
60
+ /**
61
+ * Must be either ipv4 | ipv6 | dual_stack.
62
+ */
63
+ NetworkType?: SupportedNetworkTypes;
56
64
  /**
57
65
  * The compute and memory capacity of the nodes in the cluster.
58
66
  */
@@ -153,6 +161,16 @@ export type MemoryDBClusterAttributes = {
153
161
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-memorydb-cluster-datatieringstatus.html}
154
162
  */
155
163
  export type DataTieringStatus = "true" | "false";
164
+ /**
165
+ * Type definition for `AWS::MemoryDB::Cluster.SupportedIpDiscoveryTypes`.
166
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-memorydb-cluster-supportedipdiscoverytypes.html}
167
+ */
168
+ export type SupportedIpDiscoveryTypes = "ipv4" | "ipv6";
169
+ /**
170
+ * Type definition for `AWS::MemoryDB::Cluster.SupportedNetworkTypes`.
171
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-memorydb-cluster-supportednetworktypes.html}
172
+ */
173
+ export type SupportedNetworkTypes = "ipv4" | "ipv6" | "dual_stack";
156
174
  /**
157
175
  * Type definition for `AWS::MemoryDB::Cluster.Tag`.
158
176
  * A key-value pair to associate with a resource.
@@ -33,6 +33,10 @@ export type MemoryDBSubnetGroupAttributes = {
33
33
  * The Amazon Resource Name (ARN) of the subnet group.
34
34
  */
35
35
  ARN: string;
36
+ /**
37
+ * Supported network types would be a list of network types supported by subnet group and can be either [ipv4] or [ipv4, dual_stack] or [ipv6].
38
+ */
39
+ SupportedNetworkTypes: string[];
36
40
  };
37
41
  /**
38
42
  * Type definition for `AWS::MemoryDB::SubnetGroup.Tag`.
@@ -7327,6 +7327,11 @@ export type TableFieldOptions = {
7327
7327
  * @maxLength `100`
7328
7328
  */
7329
7329
  SelectedFieldOptions?: TableFieldOption[];
7330
+ /**
7331
+ * @minLength `0`
7332
+ * @maxLength `10001`
7333
+ */
7334
+ TransposedTableOptions?: TransposedTableOption[];
7330
7335
  };
7331
7336
  /**
7332
7337
  * Type definition for `AWS::QuickSight::Analysis.TableFieldURLConfiguration`.
@@ -7802,6 +7807,27 @@ export type TotalOptions = {
7802
7807
  TotalCellStyle?: TableCellStyle;
7803
7808
  TotalsVisibility?: Visibility;
7804
7809
  };
7810
+ /**
7811
+ * Type definition for `AWS::QuickSight::Analysis.TransposedColumnType`.
7812
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-transposedcolumntype.html}
7813
+ */
7814
+ export type TransposedColumnType = "ROW_HEADER_COLUMN" | "VALUE_COLUMN";
7815
+ /**
7816
+ * Type definition for `AWS::QuickSight::Analysis.TransposedTableOption`.
7817
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-transposedtableoption.html}
7818
+ */
7819
+ export type TransposedTableOption = {
7820
+ /**
7821
+ * @min `0`
7822
+ * @max `9999`
7823
+ */
7824
+ ColumnIndex?: number;
7825
+ ColumnType: TransposedColumnType;
7826
+ /**
7827
+ * String based length that is composed of value and unit in px
7828
+ */
7829
+ ColumnWidth?: string;
7830
+ };
7805
7831
  /**
7806
7832
  * Type definition for `AWS::QuickSight::Analysis.TreeMapAggregatedFieldWells`.
7807
7833
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-treemapaggregatedfieldwells.html}
@@ -7592,6 +7592,11 @@ export type TableFieldOptions = {
7592
7592
  * @maxLength `100`
7593
7593
  */
7594
7594
  SelectedFieldOptions?: TableFieldOption[];
7595
+ /**
7596
+ * @minLength `0`
7597
+ * @maxLength `10001`
7598
+ */
7599
+ TransposedTableOptions?: TransposedTableOption[];
7595
7600
  };
7596
7601
  /**
7597
7602
  * Type definition for `AWS::QuickSight::Dashboard.TableFieldURLConfiguration`.
@@ -8067,6 +8072,27 @@ export type TotalOptions = {
8067
8072
  TotalCellStyle?: TableCellStyle;
8068
8073
  TotalsVisibility?: Visibility;
8069
8074
  };
8075
+ /**
8076
+ * Type definition for `AWS::QuickSight::Dashboard.TransposedColumnType`.
8077
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-transposedcolumntype.html}
8078
+ */
8079
+ export type TransposedColumnType = "ROW_HEADER_COLUMN" | "VALUE_COLUMN";
8080
+ /**
8081
+ * Type definition for `AWS::QuickSight::Dashboard.TransposedTableOption`.
8082
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-transposedtableoption.html}
8083
+ */
8084
+ export type TransposedTableOption = {
8085
+ /**
8086
+ * @min `0`
8087
+ * @max `9999`
8088
+ */
8089
+ ColumnIndex?: number;
8090
+ ColumnType: TransposedColumnType;
8091
+ /**
8092
+ * String based length that is composed of value and unit in px
8093
+ */
8094
+ ColumnWidth?: string;
8095
+ };
8070
8096
  /**
8071
8097
  * Type definition for `AWS::QuickSight::Dashboard.TreeMapAggregatedFieldWells`.
8072
8098
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-treemapaggregatedfieldwells.html}
@@ -6875,6 +6875,11 @@ export type TableFieldOptions = {
6875
6875
  * @maxLength `100`
6876
6876
  */
6877
6877
  SelectedFieldOptions?: TableFieldOption[];
6878
+ /**
6879
+ * @minLength `0`
6880
+ * @maxLength `10001`
6881
+ */
6882
+ TransposedTableOptions?: TransposedTableOption[];
6878
6883
  };
6879
6884
  /**
6880
6885
  * Type definition for `AWS::QuickSight::Template.TableFieldURLConfiguration`.
@@ -7507,6 +7512,27 @@ export type TotalOptions = {
7507
7512
  TotalCellStyle?: TableCellStyle;
7508
7513
  TotalsVisibility?: any;
7509
7514
  };
7515
+ /**
7516
+ * Type definition for `AWS::QuickSight::Template.TransposedColumnType`.
7517
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-transposedcolumntype.html}
7518
+ */
7519
+ export type TransposedColumnType = "ROW_HEADER_COLUMN" | "VALUE_COLUMN";
7520
+ /**
7521
+ * Type definition for `AWS::QuickSight::Template.TransposedTableOption`.
7522
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-transposedtableoption.html}
7523
+ */
7524
+ export type TransposedTableOption = {
7525
+ /**
7526
+ * @min `0`
7527
+ * @max `9999`
7528
+ */
7529
+ ColumnIndex?: number;
7530
+ ColumnType: TransposedColumnType;
7531
+ /**
7532
+ * String based length that is composed of value and unit in px
7533
+ */
7534
+ ColumnWidth?: string;
7535
+ };
7510
7536
  /**
7511
7537
  * Type definition for `AWS::QuickSight::Template.TreeMapAggregatedFieldWells`.
7512
7538
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-treemapaggregatedfieldwells.html}
@@ -18,6 +18,10 @@ export type Route53ResolverResolverQueryLoggingConfigProperties = {
18
18
  * @pattern `(?!^[0-9]+$)([a-zA-Z0-9\-_' ']+)`
19
19
  */
20
20
  Name?: string;
21
+ /**
22
+ * An array of key-value pairs to apply to this resource.
23
+ */
24
+ Tags?: Tag[];
21
25
  };
22
26
  /**
23
27
  * Attribute type definition for `AWS::Route53Resolver::ResolverQueryLoggingConfig`.
@@ -67,6 +71,25 @@ export type Route53ResolverResolverQueryLoggingConfigAttributes = {
67
71
  */
68
72
  Status: "CREATING" | "CREATED" | "DELETING" | "FAILED";
69
73
  };
74
+ /**
75
+ * Type definition for `AWS::Route53Resolver::ResolverQueryLoggingConfig.Tag`.
76
+ * A key-value pair to associate with a resource.
77
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53resolver-resolverqueryloggingconfig-tag.html}
78
+ */
79
+ export type Tag = {
80
+ /**
81
+ * 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 -.
82
+ * @minLength `1`
83
+ * @maxLength `128`
84
+ */
85
+ Key: string;
86
+ /**
87
+ * 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 -.
88
+ * @minLength `0`
89
+ * @maxLength `256`
90
+ */
91
+ Value: string;
92
+ };
70
93
  /**
71
94
  * Resource schema for AWS::Route53Resolver::ResolverQueryLoggingConfig.
72
95
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverqueryloggingconfig.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.306",
3
+ "version": "0.1.308",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },