@awboost/cfn-resource-types 0.1.482 → 0.1.484
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-Athena-WorkGroup.d.ts +140 -2
- package/lib/AWS-Backup-BackupPlan.d.ts +1 -0
- package/lib/AWS-Bedrock-KnowledgeBase.d.ts +26 -1
- package/lib/AWS-Cassandra-Table.d.ts +19 -0
- package/lib/AWS-CloudFormation-StackSet.d.ts +4 -0
- package/lib/AWS-Cognito-Terms.d.ts +51 -0
- package/lib/AWS-Cognito-Terms.js +12 -0
- package/lib/AWS-Connect-EvaluationForm.d.ts +4 -4
- package/lib/AWS-EC2-TransitGatewayMeteringPolicy.d.ts +52 -0
- package/lib/AWS-EC2-TransitGatewayMeteringPolicy.js +12 -0
- package/lib/AWS-EC2-TransitGatewayMeteringPolicyEntry.d.ts +89 -0
- package/lib/AWS-EC2-TransitGatewayMeteringPolicyEntry.js +12 -0
- package/lib/AWS-EC2-VPCEncryptionControl.d.ts +135 -0
- package/lib/AWS-EC2-VPCEncryptionControl.js +12 -0
- package/lib/AWS-ECR-PullTimeUpdateExclusion.d.ts +23 -0
- package/lib/AWS-ECR-PullTimeUpdateExclusion.js +12 -0
- package/lib/AWS-ECR-SigningConfiguration.d.ts +76 -0
- package/lib/AWS-ECR-SigningConfiguration.js +12 -0
- package/lib/AWS-ECS-ExpressGatewayService.d.ts +201 -0
- package/lib/AWS-ECS-ExpressGatewayService.js +12 -0
- package/lib/AWS-EKS-Cluster.d.ts +15 -0
- package/lib/AWS-FSx-FileSystem.d.ts +1 -0
- package/lib/AWS-FSx-StorageVirtualMachine.d.ts +1 -0
- package/lib/AWS-KinesisVideo-Stream.d.ts +15 -0
- package/lib/AWS-OpenSearchServerless-Collection.d.ts +0 -30
- package/lib/AWS-PCS-Cluster.d.ts +47 -2
- package/lib/AWS-Rbin-Rule.d.ts +1 -1
- package/lib/AWS-S3-Bucket.d.ts +1 -0
- package/lib/AWS-SageMaker-Cluster.d.ts +76 -0
- package/lib/AWS-SecretsManager-RotationSchedule.d.ts +23 -0
- package/lib/AWS-SecretsManager-Secret.d.ts +1 -0
- package/lib/AWS-Wisdom-AIAgent.d.ts +59 -1
- package/package.json +1 -1
|
@@ -86,6 +86,44 @@ export type AclConfiguration = {
|
|
|
86
86
|
*/
|
|
87
87
|
S3AclOption: S3AclOption;
|
|
88
88
|
};
|
|
89
|
+
/**
|
|
90
|
+
* Type definition for `AWS::Athena::WorkGroup.Classification`.
|
|
91
|
+
* A classification refers to a set of specific configurations.
|
|
92
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-classification.html}
|
|
93
|
+
*/
|
|
94
|
+
export type Classification = {
|
|
95
|
+
/**
|
|
96
|
+
* The name of the configuration classification.
|
|
97
|
+
*/
|
|
98
|
+
Name?: string;
|
|
99
|
+
/**
|
|
100
|
+
* A set of properties specified within a configuration classification.
|
|
101
|
+
*/
|
|
102
|
+
Properties?: Record<string, string>;
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* Type definition for `AWS::Athena::WorkGroup.CloudWatchLoggingConfiguration`.
|
|
106
|
+
* Configuration settings for delivering logs to Amazon CloudWatch log groups.
|
|
107
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-cloudwatchloggingconfiguration.html}
|
|
108
|
+
*/
|
|
109
|
+
export type CloudWatchLoggingConfiguration = {
|
|
110
|
+
/**
|
|
111
|
+
* Enables CloudWatch logging.
|
|
112
|
+
*/
|
|
113
|
+
Enabled?: boolean;
|
|
114
|
+
/**
|
|
115
|
+
* The name of the log group in Amazon CloudWatch Logs where you want to publish your logs.
|
|
116
|
+
*/
|
|
117
|
+
LogGroup?: string;
|
|
118
|
+
/**
|
|
119
|
+
* Prefix for the CloudWatch log stream name.
|
|
120
|
+
*/
|
|
121
|
+
LogStreamNamePrefix?: string;
|
|
122
|
+
/**
|
|
123
|
+
* The types of logs that you want to publish to CloudWatch.
|
|
124
|
+
*/
|
|
125
|
+
LogTypes?: Record<string, string[]>;
|
|
126
|
+
};
|
|
89
127
|
/**
|
|
90
128
|
* Type definition for `AWS::Athena::WorkGroup.CustomerContentEncryptionConfiguration`.
|
|
91
129
|
* Indicates the KMS key for encrypting notebook content.
|
|
@@ -118,6 +156,37 @@ export type EncryptionConfiguration = {
|
|
|
118
156
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionoption.html}
|
|
119
157
|
*/
|
|
120
158
|
export type EncryptionOption = "SSE_S3" | "SSE_KMS" | "CSE_KMS";
|
|
159
|
+
/**
|
|
160
|
+
* Type definition for `AWS::Athena::WorkGroup.EngineConfiguration`.
|
|
161
|
+
* The engine configuration for running queries.
|
|
162
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-engineconfiguration.html}
|
|
163
|
+
*/
|
|
164
|
+
export type EngineConfiguration = {
|
|
165
|
+
/**
|
|
166
|
+
* Contains additional notebook engine MAP<string, string> parameter mappings in the form of key-value pairs. To specify an Athena notebook that the Jupyter server will download and serve, specify a value for the StartSessionRequest$NotebookVersion field, and then add a key named NotebookId to AdditionalConfigs that has the value of the Athena notebook ID.
|
|
167
|
+
*/
|
|
168
|
+
AdditionalConfigs?: Record<string, string>;
|
|
169
|
+
/**
|
|
170
|
+
* The configuration classifications that can be specified for the engine.
|
|
171
|
+
*/
|
|
172
|
+
Classifications?: Classification[];
|
|
173
|
+
/**
|
|
174
|
+
* The number of DPUs to use for the coordinator. A coordinator is a special executor that orchestrates processing work and manages other executors in a notebook session. The default is 1.
|
|
175
|
+
*/
|
|
176
|
+
CoordinatorDpuSize?: number;
|
|
177
|
+
/**
|
|
178
|
+
* The default number of DPUs to use for executors. An executor is the smallest unit of compute that a notebook session can request from Athena. The default is 1.
|
|
179
|
+
*/
|
|
180
|
+
DefaultExecutorDpuSize?: number;
|
|
181
|
+
/**
|
|
182
|
+
* The maximum number of DPUs that can run concurrently.
|
|
183
|
+
*/
|
|
184
|
+
MaxConcurrentDpus?: number;
|
|
185
|
+
/**
|
|
186
|
+
* Specifies custom jar files and Spark properties for use cases like cluster encryption, table formats, and general Spark tuning.
|
|
187
|
+
*/
|
|
188
|
+
SparkProperties?: Record<string, string>;
|
|
189
|
+
};
|
|
121
190
|
/**
|
|
122
191
|
* Type definition for `AWS::Athena::WorkGroup.EngineVersion`.
|
|
123
192
|
* The Athena engine version for running queries.
|
|
@@ -129,6 +198,21 @@ export type EngineVersion = {
|
|
|
129
198
|
*/
|
|
130
199
|
SelectedEngineVersion?: string;
|
|
131
200
|
};
|
|
201
|
+
/**
|
|
202
|
+
* Type definition for `AWS::Athena::WorkGroup.ManagedLoggingConfiguration`.
|
|
203
|
+
* Configuration settings for managed log persistence.
|
|
204
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-managedloggingconfiguration.html}
|
|
205
|
+
*/
|
|
206
|
+
export type ManagedLoggingConfiguration = {
|
|
207
|
+
/**
|
|
208
|
+
* Enables managed log persistence.
|
|
209
|
+
*/
|
|
210
|
+
Enabled?: boolean;
|
|
211
|
+
/**
|
|
212
|
+
* The KMS key ARN to encrypt the logs stored in managed log persistence.
|
|
213
|
+
*/
|
|
214
|
+
KmsKey?: string;
|
|
215
|
+
};
|
|
132
216
|
/**
|
|
133
217
|
* Type definition for `AWS::Athena::WorkGroup.ManagedQueryResultsConfiguration`.
|
|
134
218
|
* The configuration for the managed query results and encryption option. ResultConfiguration and ManagedQueryResultsConfiguration cannot be set at the same time
|
|
@@ -152,6 +236,25 @@ export type ManagedStorageEncryptionConfiguration = {
|
|
|
152
236
|
*/
|
|
153
237
|
KmsKey?: string;
|
|
154
238
|
};
|
|
239
|
+
/**
|
|
240
|
+
* Type definition for `AWS::Athena::WorkGroup.MonitoringConfiguration`.
|
|
241
|
+
* Contains the configuration settings for managed log persistence, delivering logs to Amazon S3 buckets, Amazon CloudWatch log groups etc.
|
|
242
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-monitoringconfiguration.html}
|
|
243
|
+
*/
|
|
244
|
+
export type MonitoringConfiguration = {
|
|
245
|
+
/**
|
|
246
|
+
* Configuration settings for delivering logs to Amazon CloudWatch log groups.
|
|
247
|
+
*/
|
|
248
|
+
CloudWatchLoggingConfiguration?: CloudWatchLoggingConfiguration;
|
|
249
|
+
/**
|
|
250
|
+
* Configuration settings for managed log persistence.
|
|
251
|
+
*/
|
|
252
|
+
ManagedLoggingConfiguration?: ManagedLoggingConfiguration;
|
|
253
|
+
/**
|
|
254
|
+
* Configuration settings for delivering logs to Amazon S3 buckets.
|
|
255
|
+
*/
|
|
256
|
+
S3LoggingConfiguration?: S3LoggingConfiguration;
|
|
257
|
+
};
|
|
155
258
|
/**
|
|
156
259
|
* Type definition for `AWS::Athena::WorkGroup.ResultConfiguration`.
|
|
157
260
|
* The location in Amazon S3 where query results are stored and the encryption option, if any, used for query results. These are known as "client-side settings". If workgroup settings override client-side settings, then the query uses the workgroup settings.
|
|
@@ -209,6 +312,25 @@ export type ResultConfigurationUpdates = {
|
|
|
209
312
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-s3acloption.html}
|
|
210
313
|
*/
|
|
211
314
|
export type S3AclOption = "BUCKET_OWNER_FULL_CONTROL";
|
|
315
|
+
/**
|
|
316
|
+
* Type definition for `AWS::Athena::WorkGroup.S3LoggingConfiguration`.
|
|
317
|
+
* Configuration settings for delivering logs to Amazon S3 buckets.
|
|
318
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-s3loggingconfiguration.html}
|
|
319
|
+
*/
|
|
320
|
+
export type S3LoggingConfiguration = {
|
|
321
|
+
/**
|
|
322
|
+
* Enables S3 log delivery.
|
|
323
|
+
*/
|
|
324
|
+
Enabled?: boolean;
|
|
325
|
+
/**
|
|
326
|
+
* The KMS key ARN to encrypt the logs published to the given Amazon S3 destination.
|
|
327
|
+
*/
|
|
328
|
+
KmsKey?: string;
|
|
329
|
+
/**
|
|
330
|
+
* The Amazon S3 destination URI for log publishing.
|
|
331
|
+
*/
|
|
332
|
+
LogLocation?: string;
|
|
333
|
+
};
|
|
212
334
|
/**
|
|
213
335
|
* Type definition for `AWS::Athena::WorkGroup.Tag`.
|
|
214
336
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-tag.html}
|
|
@@ -247,18 +369,26 @@ export type WorkGroupConfiguration = {
|
|
|
247
369
|
* If set to "true", the settings for the workgroup override client-side settings. If set to "false", client-side settings are used
|
|
248
370
|
*/
|
|
249
371
|
EnforceWorkGroupConfiguration?: boolean;
|
|
372
|
+
/**
|
|
373
|
+
* The engine configuration for running queries.
|
|
374
|
+
*/
|
|
375
|
+
EngineConfiguration?: EngineConfiguration;
|
|
250
376
|
/**
|
|
251
377
|
* The Athena engine version for running queries.
|
|
252
378
|
*/
|
|
253
379
|
EngineVersion?: EngineVersion;
|
|
254
380
|
/**
|
|
255
|
-
*
|
|
381
|
+
* The ARN of the execution role used to access user resources for Spark sessions and Identity Center enabled workgroups. This property applies only to Spark enabled workgroups and Identity Center enabled workgroups.
|
|
256
382
|
*/
|
|
257
383
|
ExecutionRole?: string;
|
|
258
384
|
/**
|
|
259
385
|
* The configuration for the managed query results and encryption option. ResultConfiguration and ManagedQueryResultsConfiguration cannot be set at the same time
|
|
260
386
|
*/
|
|
261
387
|
ManagedQueryResultsConfiguration?: ManagedQueryResultsConfiguration;
|
|
388
|
+
/**
|
|
389
|
+
* Contains the configuration settings for managed log persistence, delivering logs to Amazon S3 buckets, Amazon CloudWatch log groups etc.
|
|
390
|
+
*/
|
|
391
|
+
MonitoringConfiguration?: MonitoringConfiguration;
|
|
262
392
|
/**
|
|
263
393
|
* Indicates that the Amazon CloudWatch metrics are enabled for the workgroup.
|
|
264
394
|
*/
|
|
@@ -296,18 +426,26 @@ export type WorkGroupConfigurationUpdates = {
|
|
|
296
426
|
* If set to "true", the settings for the workgroup override client-side settings. If set to "false", client-side settings are used
|
|
297
427
|
*/
|
|
298
428
|
EnforceWorkGroupConfiguration?: boolean;
|
|
429
|
+
/**
|
|
430
|
+
* The engine configuration for running queries.
|
|
431
|
+
*/
|
|
432
|
+
EngineConfiguration?: EngineConfiguration;
|
|
299
433
|
/**
|
|
300
434
|
* The Athena engine version for running queries.
|
|
301
435
|
*/
|
|
302
436
|
EngineVersion?: EngineVersion;
|
|
303
437
|
/**
|
|
304
|
-
*
|
|
438
|
+
* The ARN of the execution role used to access user resources for Spark sessions and Identity Center enabled workgroups. This property applies only to Spark enabled workgroups and Identity Center enabled workgroups.
|
|
305
439
|
*/
|
|
306
440
|
ExecutionRole?: string;
|
|
307
441
|
/**
|
|
308
442
|
* The configuration for the managed query results and encryption option. ResultConfiguration and ManagedQueryResultsConfiguration cannot be set at the same time
|
|
309
443
|
*/
|
|
310
444
|
ManagedQueryResultsConfiguration?: ManagedQueryResultsConfiguration;
|
|
445
|
+
/**
|
|
446
|
+
* Contains the configuration settings for managed log persistence, delivering logs to Amazon S3 buckets, Amazon CloudWatch log groups etc.
|
|
447
|
+
*/
|
|
448
|
+
MonitoringConfiguration?: MonitoringConfiguration;
|
|
311
449
|
/**
|
|
312
450
|
* Indicates that the Amazon CloudWatch metrics are enabled for the workgroup.
|
|
313
451
|
*/
|
|
@@ -50,6 +50,7 @@ export type BackupRuleResourceType = {
|
|
|
50
50
|
ScheduleExpressionTimezone?: string;
|
|
51
51
|
StartWindowMinutes?: number;
|
|
52
52
|
TargetBackupVault: string;
|
|
53
|
+
TargetLogicallyAirGappedBackupVaultArn?: string;
|
|
53
54
|
};
|
|
54
55
|
/**
|
|
55
56
|
* Type definition for `AWS::Backup::BackupPlan.CopyActionResourceType`.
|
|
@@ -169,7 +169,7 @@ export type KnowledgeBaseStatus = "CREATING" | "ACTIVE" | "DELETING" | "UPDATING
|
|
|
169
169
|
* The storage type of a knowledge base.
|
|
170
170
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebasestoragetype.html}
|
|
171
171
|
*/
|
|
172
|
-
export type KnowledgeBaseStorageType = "OPENSEARCH_SERVERLESS" | "PINECONE" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER";
|
|
172
|
+
export type KnowledgeBaseStorageType = "OPENSEARCH_SERVERLESS" | "PINECONE" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "S3_VECTORS" | "OPENSEARCH_MANAGED_CLUSTER";
|
|
173
173
|
/**
|
|
174
174
|
* Type definition for `AWS::Bedrock::KnowledgeBase.KnowledgeBaseType`.
|
|
175
175
|
* The type of a knowledge base.
|
|
@@ -791,6 +791,27 @@ export type S3Location = {
|
|
|
791
791
|
*/
|
|
792
792
|
URI: string;
|
|
793
793
|
};
|
|
794
|
+
/**
|
|
795
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.S3VectorsConfiguration`.
|
|
796
|
+
* Contains the storage configuration of the knowledge base for S3 vectors.
|
|
797
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-s3vectorsconfiguration.html}
|
|
798
|
+
*/
|
|
799
|
+
export type S3VectorsConfiguration = {
|
|
800
|
+
/**
|
|
801
|
+
* The Amazon Resource Name (ARN) of the vector index used for the knowledge base. This ARN identifies the specific vector index resource within Amazon Bedrock.
|
|
802
|
+
*/
|
|
803
|
+
IndexArn?: string;
|
|
804
|
+
/**
|
|
805
|
+
* The name of the vector index used for the knowledge base. This name identifies the vector index within the Amazon Bedrock service.
|
|
806
|
+
* @minLength `3`
|
|
807
|
+
* @maxLength `63`
|
|
808
|
+
*/
|
|
809
|
+
IndexName?: string;
|
|
810
|
+
/**
|
|
811
|
+
* The Amazon Resource Name (ARN) of the S3 bucket where vector embeddings are stored. This bucket contains the vector data used by the knowledge base.
|
|
812
|
+
*/
|
|
813
|
+
VectorBucketArn?: string;
|
|
814
|
+
};
|
|
794
815
|
/**
|
|
795
816
|
* Type definition for `AWS::Bedrock::KnowledgeBase.SqlKnowledgeBaseConfiguration`.
|
|
796
817
|
* Configurations for a SQL knowledge base
|
|
@@ -836,6 +857,10 @@ export type StorageConfiguration = {
|
|
|
836
857
|
* Contains details about the storage configuration of the knowledge base in Amazon RDS. For more information, see Create a vector index in Amazon RDS.
|
|
837
858
|
*/
|
|
838
859
|
RdsConfiguration?: RdsConfiguration;
|
|
860
|
+
/**
|
|
861
|
+
* Contains the storage configuration of the knowledge base for S3 vectors.
|
|
862
|
+
*/
|
|
863
|
+
S3VectorsConfiguration?: S3VectorsConfiguration;
|
|
839
864
|
/**
|
|
840
865
|
* The storage type of a knowledge base.
|
|
841
866
|
*/
|
|
@@ -64,6 +64,10 @@ export type CassandraTableProperties = {
|
|
|
64
64
|
* @maxLength `50`
|
|
65
65
|
*/
|
|
66
66
|
Tags?: Tag[];
|
|
67
|
+
/**
|
|
68
|
+
* Warm throughput configuration for the table
|
|
69
|
+
*/
|
|
70
|
+
WarmThroughput?: WarmThroughput;
|
|
67
71
|
};
|
|
68
72
|
/**
|
|
69
73
|
* Type definition for `AWS::Cassandra::Table.AutoScalingSetting`.
|
|
@@ -264,6 +268,21 @@ export type TargetTrackingScalingPolicyConfiguration = {
|
|
|
264
268
|
ScaleOutCooldown?: number;
|
|
265
269
|
TargetValue: number;
|
|
266
270
|
};
|
|
271
|
+
/**
|
|
272
|
+
* Type definition for `AWS::Cassandra::Table.WarmThroughput`.
|
|
273
|
+
* Warm throughput configuration for the table
|
|
274
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-warmthroughput.html}
|
|
275
|
+
*/
|
|
276
|
+
export type WarmThroughput = {
|
|
277
|
+
/**
|
|
278
|
+
* @min `1`
|
|
279
|
+
*/
|
|
280
|
+
ReadUnitsPerSecond?: number;
|
|
281
|
+
/**
|
|
282
|
+
* @min `1`
|
|
283
|
+
*/
|
|
284
|
+
WriteUnitsPerSecond?: number;
|
|
285
|
+
};
|
|
267
286
|
/**
|
|
268
287
|
* Resource schema for AWS::Cassandra::Table
|
|
269
288
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html}
|
|
@@ -100,6 +100,10 @@ export type CloudFormationStackSetAttributes = {
|
|
|
100
100
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-autodeployment.html}
|
|
101
101
|
*/
|
|
102
102
|
export type AutoDeployment = {
|
|
103
|
+
/**
|
|
104
|
+
* A list of StackSet ARNs that this StackSet depends on for auto-deployment operations. When auto-deployment is triggered, operations will be sequenced to ensure all dependencies complete successfully before this StackSet's operation begins.
|
|
105
|
+
*/
|
|
106
|
+
DependsOn?: string[];
|
|
103
107
|
/**
|
|
104
108
|
* If set to true, StackSets automatically deploys additional stack instances to AWS Organizations accounts that are added to a target organization or organizational unit (OU) in the specified Regions. If an account is removed from a target organization or OU, StackSets deletes stack instances from the account in the specified Regions.
|
|
105
109
|
*/
|
|
@@ -0,0 +1,51 @@
|
|
|
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::Cognito::Terms
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-terms.html}
|
|
6
|
+
*/
|
|
7
|
+
export type CognitoTermsProperties = {
|
|
8
|
+
ClientId?: string;
|
|
9
|
+
Enforcement: TermsEnforcementType;
|
|
10
|
+
Links: LinksType;
|
|
11
|
+
/**
|
|
12
|
+
* @pattern `^(terms-of-use|privacy-policy)$`
|
|
13
|
+
*/
|
|
14
|
+
TermsName: string;
|
|
15
|
+
TermsSource: TermsSourceType;
|
|
16
|
+
UserPoolId: string;
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Attribute type definition for `AWS::Cognito::Terms`.
|
|
20
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-terms.html#aws-resource-cognito-terms-return-values}
|
|
21
|
+
*/
|
|
22
|
+
export type CognitoTermsAttributes = {
|
|
23
|
+
/**
|
|
24
|
+
* @pattern `^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[4][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$`
|
|
25
|
+
*/
|
|
26
|
+
TermsId: string;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Type definition for `AWS::Cognito::Terms.LinksType`.
|
|
30
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-terms-linkstype.html}
|
|
31
|
+
*/
|
|
32
|
+
export type LinksType = Record<string, string>;
|
|
33
|
+
/**
|
|
34
|
+
* Type definition for `AWS::Cognito::Terms.TermsEnforcementType`.
|
|
35
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-terms-termsenforcementtype.html}
|
|
36
|
+
*/
|
|
37
|
+
export type TermsEnforcementType = "NONE";
|
|
38
|
+
/**
|
|
39
|
+
* Type definition for `AWS::Cognito::Terms.TermsSourceType`.
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-terms-termssourcetype.html}
|
|
41
|
+
*/
|
|
42
|
+
export type TermsSourceType = "LINK";
|
|
43
|
+
/**
|
|
44
|
+
* Resource Type definition for AWS::Cognito::Terms
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-terms.html}
|
|
46
|
+
*/
|
|
47
|
+
export declare class CognitoTerms extends $Resource<"AWS::Cognito::Terms", CognitoTermsProperties, CognitoTermsAttributes> {
|
|
48
|
+
static readonly Type = "AWS::Cognito::Terms";
|
|
49
|
+
constructor(logicalId: string, properties: CognitoTermsProperties, options?: $ResourceOptions);
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=AWS-Cognito-Terms.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::Cognito::Terms
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-terms.html}
|
|
5
|
+
*/
|
|
6
|
+
export class CognitoTerms extends $Resource {
|
|
7
|
+
static Type = "AWS::Cognito::Terms";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, CognitoTerms.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Cognito-Terms.js.map
|
|
@@ -152,7 +152,7 @@ export type EvaluationFormItemEnablementExpression = {
|
|
|
152
152
|
/**
|
|
153
153
|
* Specifies the comparison method to determine if the source value matches any of the specified values.
|
|
154
154
|
*/
|
|
155
|
-
Comparator: "IN" | "NOT_IN";
|
|
155
|
+
Comparator: "IN" | "NOT_IN" | "ALL_IN" | "EXACT";
|
|
156
156
|
/**
|
|
157
157
|
* Identifies the form item whose value will be evaluated in the expression.
|
|
158
158
|
*/
|
|
@@ -279,7 +279,7 @@ export type EvaluationFormQuestion = {
|
|
|
279
279
|
* The type of the question.
|
|
280
280
|
*Allowed values*: ``NUMERIC`` | ``SINGLESELECT`` | ``TEXT``
|
|
281
281
|
*/
|
|
282
|
-
QuestionType: "NUMERIC" | "SINGLESELECT" | "TEXT";
|
|
282
|
+
QuestionType: "NUMERIC" | "SINGLESELECT" | "TEXT" | "MULTISELECT" | "DATETIME";
|
|
283
283
|
/**
|
|
284
284
|
* The properties of the type of question. Text questions do not have to define question type properties.
|
|
285
285
|
*/
|
|
@@ -312,7 +312,7 @@ export type EvaluationFormQuestion = {
|
|
|
312
312
|
*/
|
|
313
313
|
export type EvaluationFormQuestionAutomationAnswerSource = {
|
|
314
314
|
/**
|
|
315
|
-
* The type of the answer
|
|
315
|
+
* The type of the answer source
|
|
316
316
|
*/
|
|
317
317
|
SourceType: "CONTACT_LENS_DATA" | "GEN_AI";
|
|
318
318
|
};
|
|
@@ -491,7 +491,7 @@ export type NumericQuestionPropertyValueAutomation = {
|
|
|
491
491
|
/**
|
|
492
492
|
* The property label of the automation.
|
|
493
493
|
*/
|
|
494
|
-
Label: "OVERALL_CUSTOMER_SENTIMENT_SCORE" | "OVERALL_AGENT_SENTIMENT_SCORE" | "NON_TALK_TIME" | "NON_TALK_TIME_PERCENTAGE" | "NUMBER_OF_INTERRUPTIONS" | "CONTACT_DURATION" | "AGENT_INTERACTION_DURATION" | "CUSTOMER_HOLD_TIME" | "LONGEST_HOLD_DURATION" | "NUMBER_OF_HOLDS" | "AGENT_INTERACTION_AND_HOLD_DURATION";
|
|
494
|
+
Label: "OVERALL_CUSTOMER_SENTIMENT_SCORE" | "OVERALL_AGENT_SENTIMENT_SCORE" | "NON_TALK_TIME" | "NON_TALK_TIME_PERCENTAGE" | "NUMBER_OF_INTERRUPTIONS" | "CONTACT_DURATION" | "AGENT_INTERACTION_DURATION" | "CUSTOMER_HOLD_TIME" | "LONGEST_HOLD_DURATION" | "NUMBER_OF_HOLDS" | "AGENT_INTERACTION_AND_HOLD_DURATION" | "CUSTOMER_SENTIMENT_SCORE_WITHOUT_AGENT";
|
|
495
495
|
};
|
|
496
496
|
/**
|
|
497
497
|
* Type definition for `AWS::Connect::EvaluationForm.ScoringStrategy`.
|
|
@@ -0,0 +1,52 @@
|
|
|
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
|
+
* AWS::EC2::TransitGatewayMeteringPolicy Resource Definition
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicy.html}
|
|
6
|
+
*/
|
|
7
|
+
export type EC2TransitGatewayMeteringPolicyProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Middle box attachment Ids
|
|
10
|
+
*/
|
|
11
|
+
MiddleboxAttachmentIds?: string[];
|
|
12
|
+
Tags?: Tag[];
|
|
13
|
+
/**
|
|
14
|
+
* The Id of transit gateway
|
|
15
|
+
*/
|
|
16
|
+
TransitGatewayId: string;
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Attribute type definition for `AWS::EC2::TransitGatewayMeteringPolicy`.
|
|
20
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicy.html#aws-resource-ec2-transitgatewaymeteringpolicy-return-values}
|
|
21
|
+
*/
|
|
22
|
+
export type EC2TransitGatewayMeteringPolicyAttributes = {
|
|
23
|
+
/**
|
|
24
|
+
* State of the transit gateway metering policy
|
|
25
|
+
*/
|
|
26
|
+
State: string;
|
|
27
|
+
/**
|
|
28
|
+
* The Id of the transit gateway metering policy
|
|
29
|
+
*/
|
|
30
|
+
TransitGatewayMeteringPolicyId: string;
|
|
31
|
+
/**
|
|
32
|
+
* The timestamp at which the latest action performed on the metering policy will become effective
|
|
33
|
+
*/
|
|
34
|
+
UpdateEffectiveAt: string;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Type definition for `AWS::EC2::TransitGatewayMeteringPolicy.Tag`.
|
|
38
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewaymeteringpolicy-tag.html}
|
|
39
|
+
*/
|
|
40
|
+
export type Tag = {
|
|
41
|
+
Key: string;
|
|
42
|
+
Value: string;
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* AWS::EC2::TransitGatewayMeteringPolicy Resource Definition
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicy.html}
|
|
47
|
+
*/
|
|
48
|
+
export declare class EC2TransitGatewayMeteringPolicy extends $Resource<"AWS::EC2::TransitGatewayMeteringPolicy", EC2TransitGatewayMeteringPolicyProperties, EC2TransitGatewayMeteringPolicyAttributes> {
|
|
49
|
+
static readonly Type = "AWS::EC2::TransitGatewayMeteringPolicy";
|
|
50
|
+
constructor(logicalId: string, properties: EC2TransitGatewayMeteringPolicyProperties, options?: $ResourceOptions);
|
|
51
|
+
}
|
|
52
|
+
//# sourceMappingURL=AWS-EC2-TransitGatewayMeteringPolicy.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* AWS::EC2::TransitGatewayMeteringPolicy Resource Definition
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicy.html}
|
|
5
|
+
*/
|
|
6
|
+
export class EC2TransitGatewayMeteringPolicy extends $Resource {
|
|
7
|
+
static Type = "AWS::EC2::TransitGatewayMeteringPolicy";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, EC2TransitGatewayMeteringPolicy.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-EC2-TransitGatewayMeteringPolicy.js.map
|
|
@@ -0,0 +1,89 @@
|
|
|
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
|
+
* AWS::EC2::TransitGatewayMeteringPolicyEntry Resource Definition
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicyentry.html}
|
|
6
|
+
*/
|
|
7
|
+
export type EC2TransitGatewayMeteringPolicyEntryProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The list of IP addresses of the instances receiving traffic from the transit gateway
|
|
10
|
+
*/
|
|
11
|
+
DestinationCidrBlock?: string;
|
|
12
|
+
/**
|
|
13
|
+
* The list of ports on destination instances receiving traffic from the transit gateway
|
|
14
|
+
*/
|
|
15
|
+
DestinationPortRange?: string;
|
|
16
|
+
/**
|
|
17
|
+
* The ID of the source attachment through which traffic leaves a transit gateway
|
|
18
|
+
*/
|
|
19
|
+
DestinationTransitGatewayAttachmentId?: string;
|
|
20
|
+
/**
|
|
21
|
+
* The type of the attachment through which traffic leaves a transit gateway
|
|
22
|
+
*/
|
|
23
|
+
DestinationTransitGatewayAttachmentType?: TransitGatewayAttachmentResourceType;
|
|
24
|
+
/**
|
|
25
|
+
* The resource owner information responsible for paying default billable charges for the traffic flow
|
|
26
|
+
*/
|
|
27
|
+
MeteredAccount: TransitGatewayMeteringPayerType;
|
|
28
|
+
/**
|
|
29
|
+
* The rule number of the metering policy entry
|
|
30
|
+
*/
|
|
31
|
+
PolicyRuleNumber: number;
|
|
32
|
+
/**
|
|
33
|
+
* The protocol of the traffic
|
|
34
|
+
*/
|
|
35
|
+
Protocol?: string;
|
|
36
|
+
/**
|
|
37
|
+
* The list of IP addresses of the instances sending traffic to the transit gateway for which the metering policy entry is applicable
|
|
38
|
+
*/
|
|
39
|
+
SourceCidrBlock?: string;
|
|
40
|
+
/**
|
|
41
|
+
* The list of ports on source instances sending traffic to the transit gateway
|
|
42
|
+
*/
|
|
43
|
+
SourcePortRange?: string;
|
|
44
|
+
/**
|
|
45
|
+
* The ID of the source attachment through which traffic enters a transit gateway
|
|
46
|
+
*/
|
|
47
|
+
SourceTransitGatewayAttachmentId?: string;
|
|
48
|
+
/**
|
|
49
|
+
* The type of the attachment through which traffic enters a transit gateway
|
|
50
|
+
*/
|
|
51
|
+
SourceTransitGatewayAttachmentType?: TransitGatewayAttachmentResourceType;
|
|
52
|
+
/**
|
|
53
|
+
* The ID of the transit gateway metering policy for which the entry is being created
|
|
54
|
+
*/
|
|
55
|
+
TransitGatewayMeteringPolicyId: string;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* Attribute type definition for `AWS::EC2::TransitGatewayMeteringPolicyEntry`.
|
|
59
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicyentry.html#aws-resource-ec2-transitgatewaymeteringpolicyentry-return-values}
|
|
60
|
+
*/
|
|
61
|
+
export type EC2TransitGatewayMeteringPolicyEntryAttributes = {
|
|
62
|
+
/**
|
|
63
|
+
* State of the transit gateway metering policy
|
|
64
|
+
*/
|
|
65
|
+
State: string;
|
|
66
|
+
/**
|
|
67
|
+
* The timestamp at which the latest action performed on the metering policy entry will become effective
|
|
68
|
+
*/
|
|
69
|
+
UpdateEffectiveAt: string;
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* Type definition for `AWS::EC2::TransitGatewayMeteringPolicyEntry.TransitGatewayAttachmentResourceType`.
|
|
73
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewaymeteringpolicyentry-transitgatewayattachmentresourcetype.html}
|
|
74
|
+
*/
|
|
75
|
+
export type TransitGatewayAttachmentResourceType = "vpc" | "vpn" | "direct-connect-gateway" | "peering" | "network-function" | "vpn-concentrator";
|
|
76
|
+
/**
|
|
77
|
+
* Type definition for `AWS::EC2::TransitGatewayMeteringPolicyEntry.TransitGatewayMeteringPayerType`.
|
|
78
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewaymeteringpolicyentry-transitgatewaymeteringpayertype.html}
|
|
79
|
+
*/
|
|
80
|
+
export type TransitGatewayMeteringPayerType = "source-attachment-owner" | "destination-attachment-owner" | "transit-gateway-owner";
|
|
81
|
+
/**
|
|
82
|
+
* AWS::EC2::TransitGatewayMeteringPolicyEntry Resource Definition
|
|
83
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicyentry.html}
|
|
84
|
+
*/
|
|
85
|
+
export declare class EC2TransitGatewayMeteringPolicyEntry extends $Resource<"AWS::EC2::TransitGatewayMeteringPolicyEntry", EC2TransitGatewayMeteringPolicyEntryProperties, EC2TransitGatewayMeteringPolicyEntryAttributes> {
|
|
86
|
+
static readonly Type = "AWS::EC2::TransitGatewayMeteringPolicyEntry";
|
|
87
|
+
constructor(logicalId: string, properties: EC2TransitGatewayMeteringPolicyEntryProperties, options?: $ResourceOptions);
|
|
88
|
+
}
|
|
89
|
+
//# sourceMappingURL=AWS-EC2-TransitGatewayMeteringPolicyEntry.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* AWS::EC2::TransitGatewayMeteringPolicyEntry Resource Definition
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicyentry.html}
|
|
5
|
+
*/
|
|
6
|
+
export class EC2TransitGatewayMeteringPolicyEntry extends $Resource {
|
|
7
|
+
static Type = "AWS::EC2::TransitGatewayMeteringPolicyEntry";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, EC2TransitGatewayMeteringPolicyEntry.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-EC2-TransitGatewayMeteringPolicyEntry.js.map
|