@awboost/cfn-resource-types 0.1.307 → 0.1.310
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/AWS-Backup-RestoreTestingPlan.d.ts +0 -6
- package/lib/AWS-CleanRooms-AnalysisTemplate.d.ts +64 -8
- package/lib/AWS-CleanRooms-Collaboration.d.ts +15 -1
- package/lib/AWS-CleanRooms-ConfiguredTable.d.ts +7 -1
- package/lib/AWS-CleanRooms-Membership.d.ts +46 -0
- package/lib/AWS-Logs-LogGroup.d.ts +1 -1
- package/lib/AWS-Macie-Session.d.ts +4 -0
- package/lib/AWS-QBusiness-DataSource.d.ts +26 -0
- package/lib/AWS-QuickSight-Analysis.d.ts +26 -0
- package/lib/AWS-QuickSight-Dashboard.d.ts +26 -0
- package/lib/AWS-QuickSight-Template.d.ts +26 -0
- package/lib/AWS-Route53Resolver-ResolverQueryLoggingConfig.d.ts +23 -0
- package/package.json +1 -1
|
@@ -9,7 +9,6 @@ export type BackupRestoreTestingPlanProperties = {
|
|
|
9
9
|
RestoreTestingPlanName: string;
|
|
10
10
|
ScheduleExpression: string;
|
|
11
11
|
ScheduleExpressionTimezone?: string;
|
|
12
|
-
ScheduleStatus?: RestoreTestingScheduleStatus;
|
|
13
12
|
StartWindowHours?: number;
|
|
14
13
|
Tags?: Tag[];
|
|
15
14
|
};
|
|
@@ -41,11 +40,6 @@ export type RestoreTestingRecoveryPointSelectionAlgorithm = "LATEST_WITHIN_WINDO
|
|
|
41
40
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-restoretestingplan-restoretestingrecoverypointtype.html}
|
|
42
41
|
*/
|
|
43
42
|
export type RestoreTestingRecoveryPointType = "SNAPSHOT" | "CONTINUOUS";
|
|
44
|
-
/**
|
|
45
|
-
* Type definition for `AWS::Backup::RestoreTestingPlan.RestoreTestingScheduleStatus`.
|
|
46
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-restoretestingplan-restoretestingschedulestatus.html}
|
|
47
|
-
*/
|
|
48
|
-
export type RestoreTestingScheduleStatus = "ACTIVE" | "SUSPENDED";
|
|
49
43
|
/**
|
|
50
44
|
* Type definition for `AWS::Backup::RestoreTestingPlan.Tag`.
|
|
51
45
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-restoretestingplan-tag.html}
|
|
@@ -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 `
|
|
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}
|
|
@@ -36,7 +36,7 @@ export type LogsLogGroupProperties = {
|
|
|
36
36
|
|
|
37
37
|
For details about the features supported by each class, see [Log classes](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch_Logs_Log_Classes.html)
|
|
38
38
|
*/
|
|
39
|
-
LogGroupClass?: "STANDARD" | "INFREQUENT_ACCESS";
|
|
39
|
+
LogGroupClass?: "STANDARD" | "INFREQUENT_ACCESS" | "DELIVERY";
|
|
40
40
|
/**
|
|
41
41
|
* The name of the log group. If you don't specify a name, CFNlong generates a unique ID for the log group.
|
|
42
42
|
* @minLength `1`
|
|
@@ -19,6 +19,10 @@ export type MacieSessionProperties = {
|
|
|
19
19
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#aws-resource-macie-session-return-values}
|
|
20
20
|
*/
|
|
21
21
|
export type MacieSessionAttributes = {
|
|
22
|
+
/**
|
|
23
|
+
* The status of automated sensitive data discovery for the Macie session.
|
|
24
|
+
*/
|
|
25
|
+
AutomatedDiscoveryStatus: "ENABLED" | "DISABLED";
|
|
22
26
|
/**
|
|
23
27
|
* AWS account ID of customer
|
|
24
28
|
*/
|
|
@@ -81,6 +81,18 @@ export type QBusinessDataSourceAttributes = {
|
|
|
81
81
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-attributevalueoperator.html}
|
|
82
82
|
*/
|
|
83
83
|
export type AttributeValueOperator = "DELETE";
|
|
84
|
+
/**
|
|
85
|
+
* Type definition for `AWS::QBusiness::DataSource.AudioExtractionConfiguration`.
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-audioextractionconfiguration.html}
|
|
87
|
+
*/
|
|
88
|
+
export type AudioExtractionConfiguration = {
|
|
89
|
+
AudioExtractionStatus: AudioExtractionStatus;
|
|
90
|
+
};
|
|
91
|
+
/**
|
|
92
|
+
* Type definition for `AWS::QBusiness::DataSource.AudioExtractionStatus`.
|
|
93
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-audioextractionstatus.html}
|
|
94
|
+
*/
|
|
95
|
+
export type AudioExtractionStatus = "ENABLED" | "DISABLED";
|
|
84
96
|
/**
|
|
85
97
|
* Type definition for `AWS::QBusiness::DataSource.DataSourceStatus`.
|
|
86
98
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-datasourcestatus.html}
|
|
@@ -216,7 +228,9 @@ export type InlineDocumentEnrichmentConfiguration = {
|
|
|
216
228
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-mediaextractionconfiguration.html}
|
|
217
229
|
*/
|
|
218
230
|
export type MediaExtractionConfiguration = {
|
|
231
|
+
AudioExtractionConfiguration?: AudioExtractionConfiguration;
|
|
219
232
|
ImageExtractionConfiguration?: ImageExtractionConfiguration;
|
|
233
|
+
VideoExtractionConfiguration?: VideoExtractionConfiguration;
|
|
220
234
|
};
|
|
221
235
|
/**
|
|
222
236
|
* Type definition for `AWS::QBusiness::DataSource.Tag`.
|
|
@@ -234,6 +248,18 @@ export type Tag = {
|
|
|
234
248
|
*/
|
|
235
249
|
Value: string;
|
|
236
250
|
};
|
|
251
|
+
/**
|
|
252
|
+
* Type definition for `AWS::QBusiness::DataSource.VideoExtractionConfiguration`.
|
|
253
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-videoextractionconfiguration.html}
|
|
254
|
+
*/
|
|
255
|
+
export type VideoExtractionConfiguration = {
|
|
256
|
+
VideoExtractionStatus: VideoExtractionStatus;
|
|
257
|
+
};
|
|
258
|
+
/**
|
|
259
|
+
* Type definition for `AWS::QBusiness::DataSource.VideoExtractionStatus`.
|
|
260
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-videoextractionstatus.html}
|
|
261
|
+
*/
|
|
262
|
+
export type VideoExtractionStatus = "ENABLED" | "DISABLED";
|
|
237
263
|
/**
|
|
238
264
|
* Definition of AWS::QBusiness::DataSource Resource Type
|
|
239
265
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-datasource.html}
|
|
@@ -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}
|