@awboost/cfntypes 0.100.337 → 0.100.339
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/resources.generated.d.ts +1004 -41
- package/lib/resources.generated.js +29 -0
- package/lib/resources.generated.js.map +1 -1
- package/package.json +1 -1
|
@@ -14762,6 +14762,44 @@ export type AthenaWorkGroupAclConfiguration = {
|
|
|
14762
14762
|
*/
|
|
14763
14763
|
S3AclOption: AthenaWorkGroupS3AclOption;
|
|
14764
14764
|
};
|
|
14765
|
+
/**
|
|
14766
|
+
* Type definition for `AWS::Athena::WorkGroup.Classification`.
|
|
14767
|
+
* A classification refers to a set of specific configurations.
|
|
14768
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-classification.html}
|
|
14769
|
+
*/
|
|
14770
|
+
export type AthenaWorkGroupClassification = {
|
|
14771
|
+
/**
|
|
14772
|
+
* The name of the configuration classification.
|
|
14773
|
+
*/
|
|
14774
|
+
Name?: string;
|
|
14775
|
+
/**
|
|
14776
|
+
* A set of properties specified within a configuration classification.
|
|
14777
|
+
*/
|
|
14778
|
+
Properties?: Record<string, string>;
|
|
14779
|
+
};
|
|
14780
|
+
/**
|
|
14781
|
+
* Type definition for `AWS::Athena::WorkGroup.CloudWatchLoggingConfiguration`.
|
|
14782
|
+
* Configuration settings for delivering logs to Amazon CloudWatch log groups.
|
|
14783
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-cloudwatchloggingconfiguration.html}
|
|
14784
|
+
*/
|
|
14785
|
+
export type AthenaWorkGroupCloudWatchLoggingConfiguration = {
|
|
14786
|
+
/**
|
|
14787
|
+
* Enables CloudWatch logging.
|
|
14788
|
+
*/
|
|
14789
|
+
Enabled?: boolean;
|
|
14790
|
+
/**
|
|
14791
|
+
* The name of the log group in Amazon CloudWatch Logs where you want to publish your logs.
|
|
14792
|
+
*/
|
|
14793
|
+
LogGroup?: string;
|
|
14794
|
+
/**
|
|
14795
|
+
* Prefix for the CloudWatch log stream name.
|
|
14796
|
+
*/
|
|
14797
|
+
LogStreamNamePrefix?: string;
|
|
14798
|
+
/**
|
|
14799
|
+
* The types of logs that you want to publish to CloudWatch.
|
|
14800
|
+
*/
|
|
14801
|
+
LogTypes?: Record<string, string[]>;
|
|
14802
|
+
};
|
|
14765
14803
|
/**
|
|
14766
14804
|
* Type definition for `AWS::Athena::WorkGroup.CustomerContentEncryptionConfiguration`.
|
|
14767
14805
|
* Indicates the KMS key for encrypting notebook content.
|
|
@@ -14794,6 +14832,37 @@ export type AthenaWorkGroupEncryptionConfiguration = {
|
|
|
14794
14832
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionoption.html}
|
|
14795
14833
|
*/
|
|
14796
14834
|
export type AthenaWorkGroupEncryptionOption = "SSE_S3" | "SSE_KMS" | "CSE_KMS";
|
|
14835
|
+
/**
|
|
14836
|
+
* Type definition for `AWS::Athena::WorkGroup.EngineConfiguration`.
|
|
14837
|
+
* The engine configuration for running queries.
|
|
14838
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-engineconfiguration.html}
|
|
14839
|
+
*/
|
|
14840
|
+
export type AthenaWorkGroupEngineConfiguration = {
|
|
14841
|
+
/**
|
|
14842
|
+
* 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.
|
|
14843
|
+
*/
|
|
14844
|
+
AdditionalConfigs?: Record<string, string>;
|
|
14845
|
+
/**
|
|
14846
|
+
* The configuration classifications that can be specified for the engine.
|
|
14847
|
+
*/
|
|
14848
|
+
Classifications?: AthenaWorkGroupClassification[];
|
|
14849
|
+
/**
|
|
14850
|
+
* 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.
|
|
14851
|
+
*/
|
|
14852
|
+
CoordinatorDpuSize?: number;
|
|
14853
|
+
/**
|
|
14854
|
+
* 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.
|
|
14855
|
+
*/
|
|
14856
|
+
DefaultExecutorDpuSize?: number;
|
|
14857
|
+
/**
|
|
14858
|
+
* The maximum number of DPUs that can run concurrently.
|
|
14859
|
+
*/
|
|
14860
|
+
MaxConcurrentDpus?: number;
|
|
14861
|
+
/**
|
|
14862
|
+
* Specifies custom jar files and Spark properties for use cases like cluster encryption, table formats, and general Spark tuning.
|
|
14863
|
+
*/
|
|
14864
|
+
SparkProperties?: Record<string, string>;
|
|
14865
|
+
};
|
|
14797
14866
|
/**
|
|
14798
14867
|
* Type definition for `AWS::Athena::WorkGroup.EngineVersion`.
|
|
14799
14868
|
* The Athena engine version for running queries.
|
|
@@ -14805,6 +14874,21 @@ export type AthenaWorkGroupEngineVersion = {
|
|
|
14805
14874
|
*/
|
|
14806
14875
|
SelectedEngineVersion?: string;
|
|
14807
14876
|
};
|
|
14877
|
+
/**
|
|
14878
|
+
* Type definition for `AWS::Athena::WorkGroup.ManagedLoggingConfiguration`.
|
|
14879
|
+
* Configuration settings for managed log persistence.
|
|
14880
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-managedloggingconfiguration.html}
|
|
14881
|
+
*/
|
|
14882
|
+
export type AthenaWorkGroupManagedLoggingConfiguration = {
|
|
14883
|
+
/**
|
|
14884
|
+
* Enables managed log persistence.
|
|
14885
|
+
*/
|
|
14886
|
+
Enabled?: boolean;
|
|
14887
|
+
/**
|
|
14888
|
+
* The KMS key ARN to encrypt the logs stored in managed log persistence.
|
|
14889
|
+
*/
|
|
14890
|
+
KmsKey?: string;
|
|
14891
|
+
};
|
|
14808
14892
|
/**
|
|
14809
14893
|
* Type definition for `AWS::Athena::WorkGroup.ManagedQueryResultsConfiguration`.
|
|
14810
14894
|
* The configuration for the managed query results and encryption option. ResultConfiguration and ManagedQueryResultsConfiguration cannot be set at the same time
|
|
@@ -14828,6 +14912,25 @@ export type AthenaWorkGroupManagedStorageEncryptionConfiguration = {
|
|
|
14828
14912
|
*/
|
|
14829
14913
|
KmsKey?: string;
|
|
14830
14914
|
};
|
|
14915
|
+
/**
|
|
14916
|
+
* Type definition for `AWS::Athena::WorkGroup.MonitoringConfiguration`.
|
|
14917
|
+
* Contains the configuration settings for managed log persistence, delivering logs to Amazon S3 buckets, Amazon CloudWatch log groups etc.
|
|
14918
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-monitoringconfiguration.html}
|
|
14919
|
+
*/
|
|
14920
|
+
export type AthenaWorkGroupMonitoringConfiguration = {
|
|
14921
|
+
/**
|
|
14922
|
+
* Configuration settings for delivering logs to Amazon CloudWatch log groups.
|
|
14923
|
+
*/
|
|
14924
|
+
CloudWatchLoggingConfiguration?: AthenaWorkGroupCloudWatchLoggingConfiguration;
|
|
14925
|
+
/**
|
|
14926
|
+
* Configuration settings for managed log persistence.
|
|
14927
|
+
*/
|
|
14928
|
+
ManagedLoggingConfiguration?: AthenaWorkGroupManagedLoggingConfiguration;
|
|
14929
|
+
/**
|
|
14930
|
+
* Configuration settings for delivering logs to Amazon S3 buckets.
|
|
14931
|
+
*/
|
|
14932
|
+
S3LoggingConfiguration?: AthenaWorkGroupS3LoggingConfiguration;
|
|
14933
|
+
};
|
|
14831
14934
|
/**
|
|
14832
14935
|
* Type definition for `AWS::Athena::WorkGroup.ResultConfiguration`.
|
|
14833
14936
|
* 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.
|
|
@@ -14885,6 +14988,25 @@ export type AthenaWorkGroupResultConfigurationUpdates = {
|
|
|
14885
14988
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-s3acloption.html}
|
|
14886
14989
|
*/
|
|
14887
14990
|
export type AthenaWorkGroupS3AclOption = "BUCKET_OWNER_FULL_CONTROL";
|
|
14991
|
+
/**
|
|
14992
|
+
* Type definition for `AWS::Athena::WorkGroup.S3LoggingConfiguration`.
|
|
14993
|
+
* Configuration settings for delivering logs to Amazon S3 buckets.
|
|
14994
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-s3loggingconfiguration.html}
|
|
14995
|
+
*/
|
|
14996
|
+
export type AthenaWorkGroupS3LoggingConfiguration = {
|
|
14997
|
+
/**
|
|
14998
|
+
* Enables S3 log delivery.
|
|
14999
|
+
*/
|
|
15000
|
+
Enabled?: boolean;
|
|
15001
|
+
/**
|
|
15002
|
+
* The KMS key ARN to encrypt the logs published to the given Amazon S3 destination.
|
|
15003
|
+
*/
|
|
15004
|
+
KmsKey?: string;
|
|
15005
|
+
/**
|
|
15006
|
+
* The Amazon S3 destination URI for log publishing.
|
|
15007
|
+
*/
|
|
15008
|
+
LogLocation?: string;
|
|
15009
|
+
};
|
|
14888
15010
|
/**
|
|
14889
15011
|
* Type definition for `AWS::Athena::WorkGroup.Tag`.
|
|
14890
15012
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-tag.html}
|
|
@@ -14923,18 +15045,26 @@ export type AthenaWorkGroupWorkGroupConfiguration = {
|
|
|
14923
15045
|
* If set to "true", the settings for the workgroup override client-side settings. If set to "false", client-side settings are used
|
|
14924
15046
|
*/
|
|
14925
15047
|
EnforceWorkGroupConfiguration?: boolean;
|
|
15048
|
+
/**
|
|
15049
|
+
* The engine configuration for running queries.
|
|
15050
|
+
*/
|
|
15051
|
+
EngineConfiguration?: AthenaWorkGroupEngineConfiguration;
|
|
14926
15052
|
/**
|
|
14927
15053
|
* The Athena engine version for running queries.
|
|
14928
15054
|
*/
|
|
14929
15055
|
EngineVersion?: AthenaWorkGroupEngineVersion;
|
|
14930
15056
|
/**
|
|
14931
|
-
*
|
|
15057
|
+
* 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.
|
|
14932
15058
|
*/
|
|
14933
15059
|
ExecutionRole?: string;
|
|
14934
15060
|
/**
|
|
14935
15061
|
* The configuration for the managed query results and encryption option. ResultConfiguration and ManagedQueryResultsConfiguration cannot be set at the same time
|
|
14936
15062
|
*/
|
|
14937
15063
|
ManagedQueryResultsConfiguration?: AthenaWorkGroupManagedQueryResultsConfiguration;
|
|
15064
|
+
/**
|
|
15065
|
+
* Contains the configuration settings for managed log persistence, delivering logs to Amazon S3 buckets, Amazon CloudWatch log groups etc.
|
|
15066
|
+
*/
|
|
15067
|
+
MonitoringConfiguration?: AthenaWorkGroupMonitoringConfiguration;
|
|
14938
15068
|
/**
|
|
14939
15069
|
* Indicates that the Amazon CloudWatch metrics are enabled for the workgroup.
|
|
14940
15070
|
*/
|
|
@@ -14972,18 +15102,26 @@ export type AthenaWorkGroupWorkGroupConfigurationUpdates = {
|
|
|
14972
15102
|
* If set to "true", the settings for the workgroup override client-side settings. If set to "false", client-side settings are used
|
|
14973
15103
|
*/
|
|
14974
15104
|
EnforceWorkGroupConfiguration?: boolean;
|
|
15105
|
+
/**
|
|
15106
|
+
* The engine configuration for running queries.
|
|
15107
|
+
*/
|
|
15108
|
+
EngineConfiguration?: AthenaWorkGroupEngineConfiguration;
|
|
14975
15109
|
/**
|
|
14976
15110
|
* The Athena engine version for running queries.
|
|
14977
15111
|
*/
|
|
14978
15112
|
EngineVersion?: AthenaWorkGroupEngineVersion;
|
|
14979
15113
|
/**
|
|
14980
|
-
*
|
|
15114
|
+
* 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.
|
|
14981
15115
|
*/
|
|
14982
15116
|
ExecutionRole?: string;
|
|
14983
15117
|
/**
|
|
14984
15118
|
* The configuration for the managed query results and encryption option. ResultConfiguration and ManagedQueryResultsConfiguration cannot be set at the same time
|
|
14985
15119
|
*/
|
|
14986
15120
|
ManagedQueryResultsConfiguration?: AthenaWorkGroupManagedQueryResultsConfiguration;
|
|
15121
|
+
/**
|
|
15122
|
+
* Contains the configuration settings for managed log persistence, delivering logs to Amazon S3 buckets, Amazon CloudWatch log groups etc.
|
|
15123
|
+
*/
|
|
15124
|
+
MonitoringConfiguration?: AthenaWorkGroupMonitoringConfiguration;
|
|
14987
15125
|
/**
|
|
14988
15126
|
* Indicates that the Amazon CloudWatch metrics are enabled for the workgroup.
|
|
14989
15127
|
*/
|
|
@@ -17651,6 +17789,7 @@ export type BackupBackupPlanBackupRuleResourceType = {
|
|
|
17651
17789
|
ScheduleExpressionTimezone?: string;
|
|
17652
17790
|
StartWindowMinutes?: number;
|
|
17653
17791
|
TargetBackupVault: string;
|
|
17792
|
+
TargetLogicallyAirGappedBackupVaultArn?: string;
|
|
17654
17793
|
};
|
|
17655
17794
|
/**
|
|
17656
17795
|
* Type definition for `AWS::Backup::BackupPlan.CopyActionResourceType`.
|
|
@@ -24637,7 +24776,7 @@ export type BedrockKnowledgeBaseKnowledgeBaseStatus = "CREATING" | "ACTIVE" | "D
|
|
|
24637
24776
|
* The storage type of a knowledge base.
|
|
24638
24777
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebasestoragetype.html}
|
|
24639
24778
|
*/
|
|
24640
|
-
export type BedrockKnowledgeBaseKnowledgeBaseStorageType = "OPENSEARCH_SERVERLESS" | "PINECONE" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER";
|
|
24779
|
+
export type BedrockKnowledgeBaseKnowledgeBaseStorageType = "OPENSEARCH_SERVERLESS" | "PINECONE" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "S3_VECTORS" | "OPENSEARCH_MANAGED_CLUSTER";
|
|
24641
24780
|
/**
|
|
24642
24781
|
* Type definition for `AWS::Bedrock::KnowledgeBase.KnowledgeBaseType`.
|
|
24643
24782
|
* The type of a knowledge base.
|
|
@@ -25259,6 +25398,27 @@ export type BedrockKnowledgeBaseS3Location = {
|
|
|
25259
25398
|
*/
|
|
25260
25399
|
URI: string;
|
|
25261
25400
|
};
|
|
25401
|
+
/**
|
|
25402
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.S3VectorsConfiguration`.
|
|
25403
|
+
* Contains the storage configuration of the knowledge base for S3 vectors.
|
|
25404
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-s3vectorsconfiguration.html}
|
|
25405
|
+
*/
|
|
25406
|
+
export type BedrockKnowledgeBaseS3VectorsConfiguration = {
|
|
25407
|
+
/**
|
|
25408
|
+
* 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.
|
|
25409
|
+
*/
|
|
25410
|
+
IndexArn?: string;
|
|
25411
|
+
/**
|
|
25412
|
+
* The name of the vector index used for the knowledge base. This name identifies the vector index within the Amazon Bedrock service.
|
|
25413
|
+
* @minLength `3`
|
|
25414
|
+
* @maxLength `63`
|
|
25415
|
+
*/
|
|
25416
|
+
IndexName?: string;
|
|
25417
|
+
/**
|
|
25418
|
+
* 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.
|
|
25419
|
+
*/
|
|
25420
|
+
VectorBucketArn?: string;
|
|
25421
|
+
};
|
|
25262
25422
|
/**
|
|
25263
25423
|
* Type definition for `AWS::Bedrock::KnowledgeBase.SqlKnowledgeBaseConfiguration`.
|
|
25264
25424
|
* Configurations for a SQL knowledge base
|
|
@@ -25304,6 +25464,10 @@ export type BedrockKnowledgeBaseStorageConfiguration = {
|
|
|
25304
25464
|
* Contains details about the storage configuration of the knowledge base in Amazon RDS. For more information, see Create a vector index in Amazon RDS.
|
|
25305
25465
|
*/
|
|
25306
25466
|
RdsConfiguration?: BedrockKnowledgeBaseRdsConfiguration;
|
|
25467
|
+
/**
|
|
25468
|
+
* Contains the storage configuration of the knowledge base for S3 vectors.
|
|
25469
|
+
*/
|
|
25470
|
+
S3VectorsConfiguration?: BedrockKnowledgeBaseS3VectorsConfiguration;
|
|
25307
25471
|
/**
|
|
25308
25472
|
* The storage type of a knowledge base.
|
|
25309
25473
|
*/
|
|
@@ -28898,6 +29062,10 @@ export type CassandraTableProps = {
|
|
|
28898
29062
|
* @maxLength `50`
|
|
28899
29063
|
*/
|
|
28900
29064
|
Tags?: CassandraTableTag[];
|
|
29065
|
+
/**
|
|
29066
|
+
* Warm throughput configuration for the table
|
|
29067
|
+
*/
|
|
29068
|
+
WarmThroughput?: CassandraTableWarmThroughput;
|
|
28901
29069
|
};
|
|
28902
29070
|
/**
|
|
28903
29071
|
* Type definition for `AWS::Cassandra::Table.AutoScalingSetting`.
|
|
@@ -29098,6 +29266,21 @@ export type CassandraTableTargetTrackingScalingPolicyConfiguration = {
|
|
|
29098
29266
|
ScaleOutCooldown?: number;
|
|
29099
29267
|
TargetValue: number;
|
|
29100
29268
|
};
|
|
29269
|
+
/**
|
|
29270
|
+
* Type definition for `AWS::Cassandra::Table.WarmThroughput`.
|
|
29271
|
+
* Warm throughput configuration for the table
|
|
29272
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-warmthroughput.html}
|
|
29273
|
+
*/
|
|
29274
|
+
export type CassandraTableWarmThroughput = {
|
|
29275
|
+
/**
|
|
29276
|
+
* @min `1`
|
|
29277
|
+
*/
|
|
29278
|
+
ReadUnitsPerSecond?: number;
|
|
29279
|
+
/**
|
|
29280
|
+
* @min `1`
|
|
29281
|
+
*/
|
|
29282
|
+
WriteUnitsPerSecond?: number;
|
|
29283
|
+
};
|
|
29101
29284
|
/**
|
|
29102
29285
|
* Resource schema for AWS::Cassandra::Type
|
|
29103
29286
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-type.html}
|
|
@@ -32363,6 +32546,10 @@ export type CloudFormationStackSetAttributes = {
|
|
|
32363
32546
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-autodeployment.html}
|
|
32364
32547
|
*/
|
|
32365
32548
|
export type CloudFormationStackSetAutoDeployment = {
|
|
32549
|
+
/**
|
|
32550
|
+
* 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.
|
|
32551
|
+
*/
|
|
32552
|
+
DependsOn?: string[];
|
|
32366
32553
|
/**
|
|
32367
32554
|
* 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.
|
|
32368
32555
|
*/
|
|
@@ -39419,6 +39606,46 @@ export type CognitoManagedLoginBrandingColorModeType = "LIGHT" | "DARK" | "DYNAM
|
|
|
39419
39606
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-extensiontype.html}
|
|
39420
39607
|
*/
|
|
39421
39608
|
export type CognitoManagedLoginBrandingExtensionType = "ICO" | "JPEG" | "PNG" | "SVG" | "WEBP";
|
|
39609
|
+
/**
|
|
39610
|
+
* Resource Type definition for AWS::Cognito::Terms
|
|
39611
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-terms.html}
|
|
39612
|
+
*/
|
|
39613
|
+
export type CognitoTermsProps = {
|
|
39614
|
+
ClientId?: string;
|
|
39615
|
+
Enforcement: CognitoTermsTermsEnforcementType;
|
|
39616
|
+
Links: CognitoTermsLinksType;
|
|
39617
|
+
/**
|
|
39618
|
+
* @pattern `^(terms-of-use|privacy-policy)$`
|
|
39619
|
+
*/
|
|
39620
|
+
TermsName: string;
|
|
39621
|
+
TermsSource: CognitoTermsTermsSourceType;
|
|
39622
|
+
UserPoolId: string;
|
|
39623
|
+
};
|
|
39624
|
+
/**
|
|
39625
|
+
* Attribute type definition for `AWS::Cognito::Terms`.
|
|
39626
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-terms.html#aws-resource-cognito-terms-return-values}
|
|
39627
|
+
*/
|
|
39628
|
+
export type CognitoTermsAttributes = {
|
|
39629
|
+
/**
|
|
39630
|
+
* @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}$`
|
|
39631
|
+
*/
|
|
39632
|
+
TermsId: string;
|
|
39633
|
+
};
|
|
39634
|
+
/**
|
|
39635
|
+
* Type definition for `AWS::Cognito::Terms.LinksType`.
|
|
39636
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-terms-linkstype.html}
|
|
39637
|
+
*/
|
|
39638
|
+
export type CognitoTermsLinksType = Record<string, string>;
|
|
39639
|
+
/**
|
|
39640
|
+
* Type definition for `AWS::Cognito::Terms.TermsEnforcementType`.
|
|
39641
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-terms-termsenforcementtype.html}
|
|
39642
|
+
*/
|
|
39643
|
+
export type CognitoTermsTermsEnforcementType = "NONE";
|
|
39644
|
+
/**
|
|
39645
|
+
* Type definition for `AWS::Cognito::Terms.TermsSourceType`.
|
|
39646
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-terms-termssourcetype.html}
|
|
39647
|
+
*/
|
|
39648
|
+
export type CognitoTermsTermsSourceType = "LINK";
|
|
39422
39649
|
/**
|
|
39423
39650
|
* Definition of AWS::Cognito::UserPool Resource Type
|
|
39424
39651
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html}
|
|
@@ -41531,7 +41758,7 @@ export type ConnectEvaluationFormEvaluationFormItemEnablementExpression = {
|
|
|
41531
41758
|
/**
|
|
41532
41759
|
* Specifies the comparison method to determine if the source value matches any of the specified values.
|
|
41533
41760
|
*/
|
|
41534
|
-
Comparator: "IN" | "NOT_IN";
|
|
41761
|
+
Comparator: "IN" | "NOT_IN" | "ALL_IN" | "EXACT";
|
|
41535
41762
|
/**
|
|
41536
41763
|
* Identifies the form item whose value will be evaluated in the expression.
|
|
41537
41764
|
*/
|
|
@@ -41658,7 +41885,7 @@ export type ConnectEvaluationFormEvaluationFormQuestion = {
|
|
|
41658
41885
|
* The type of the question.
|
|
41659
41886
|
*Allowed values*: ``NUMERIC`` | ``SINGLESELECT`` | ``TEXT``
|
|
41660
41887
|
*/
|
|
41661
|
-
QuestionType: "NUMERIC" | "SINGLESELECT" | "TEXT";
|
|
41888
|
+
QuestionType: "NUMERIC" | "SINGLESELECT" | "TEXT" | "MULTISELECT" | "DATETIME";
|
|
41662
41889
|
/**
|
|
41663
41890
|
* The properties of the type of question. Text questions do not have to define question type properties.
|
|
41664
41891
|
*/
|
|
@@ -41691,7 +41918,7 @@ export type ConnectEvaluationFormEvaluationFormQuestion = {
|
|
|
41691
41918
|
*/
|
|
41692
41919
|
export type ConnectEvaluationFormEvaluationFormQuestionAutomationAnswerSource = {
|
|
41693
41920
|
/**
|
|
41694
|
-
* The type of the answer
|
|
41921
|
+
* The type of the answer source
|
|
41695
41922
|
*/
|
|
41696
41923
|
SourceType: "CONTACT_LENS_DATA" | "GEN_AI";
|
|
41697
41924
|
};
|
|
@@ -41870,7 +42097,7 @@ export type ConnectEvaluationFormNumericQuestionPropertyValueAutomation = {
|
|
|
41870
42097
|
/**
|
|
41871
42098
|
* The property label of the automation.
|
|
41872
42099
|
*/
|
|
41873
|
-
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";
|
|
42100
|
+
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";
|
|
41874
42101
|
};
|
|
41875
42102
|
/**
|
|
41876
42103
|
* Type definition for `AWS::Connect::EvaluationForm.ScoringStrategy`.
|
|
@@ -64756,6 +64983,125 @@ export type EC2TransitGatewayConnectPeerTransitGatewayConnectPeerConfiguration =
|
|
|
64756
64983
|
*/
|
|
64757
64984
|
TransitGatewayAddress?: string;
|
|
64758
64985
|
};
|
|
64986
|
+
/**
|
|
64987
|
+
* AWS::EC2::TransitGatewayMeteringPolicy Resource Definition
|
|
64988
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicy.html}
|
|
64989
|
+
*/
|
|
64990
|
+
export type EC2TransitGatewayMeteringPolicyProps = {
|
|
64991
|
+
/**
|
|
64992
|
+
* Middle box attachment Ids
|
|
64993
|
+
*/
|
|
64994
|
+
MiddleboxAttachmentIds?: string[];
|
|
64995
|
+
Tags?: EC2TransitGatewayMeteringPolicyTag[];
|
|
64996
|
+
/**
|
|
64997
|
+
* The Id of transit gateway
|
|
64998
|
+
*/
|
|
64999
|
+
TransitGatewayId: string;
|
|
65000
|
+
};
|
|
65001
|
+
/**
|
|
65002
|
+
* Attribute type definition for `AWS::EC2::TransitGatewayMeteringPolicy`.
|
|
65003
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicy.html#aws-resource-ec2-transitgatewaymeteringpolicy-return-values}
|
|
65004
|
+
*/
|
|
65005
|
+
export type EC2TransitGatewayMeteringPolicyAttributes = {
|
|
65006
|
+
/**
|
|
65007
|
+
* State of the transit gateway metering policy
|
|
65008
|
+
*/
|
|
65009
|
+
State: string;
|
|
65010
|
+
/**
|
|
65011
|
+
* The Id of the transit gateway metering policy
|
|
65012
|
+
*/
|
|
65013
|
+
TransitGatewayMeteringPolicyId: string;
|
|
65014
|
+
/**
|
|
65015
|
+
* The timestamp at which the latest action performed on the metering policy will become effective
|
|
65016
|
+
*/
|
|
65017
|
+
UpdateEffectiveAt: string;
|
|
65018
|
+
};
|
|
65019
|
+
/**
|
|
65020
|
+
* Type definition for `AWS::EC2::TransitGatewayMeteringPolicy.Tag`.
|
|
65021
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewaymeteringpolicy-tag.html}
|
|
65022
|
+
*/
|
|
65023
|
+
export type EC2TransitGatewayMeteringPolicyTag = {
|
|
65024
|
+
Key: string;
|
|
65025
|
+
Value: string;
|
|
65026
|
+
};
|
|
65027
|
+
/**
|
|
65028
|
+
* AWS::EC2::TransitGatewayMeteringPolicyEntry Resource Definition
|
|
65029
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicyentry.html}
|
|
65030
|
+
*/
|
|
65031
|
+
export type EC2TransitGatewayMeteringPolicyEntryProps = {
|
|
65032
|
+
/**
|
|
65033
|
+
* The list of IP addresses of the instances receiving traffic from the transit gateway
|
|
65034
|
+
*/
|
|
65035
|
+
DestinationCidrBlock?: string;
|
|
65036
|
+
/**
|
|
65037
|
+
* The list of ports on destination instances receiving traffic from the transit gateway
|
|
65038
|
+
*/
|
|
65039
|
+
DestinationPortRange?: string;
|
|
65040
|
+
/**
|
|
65041
|
+
* The ID of the source attachment through which traffic leaves a transit gateway
|
|
65042
|
+
*/
|
|
65043
|
+
DestinationTransitGatewayAttachmentId?: string;
|
|
65044
|
+
/**
|
|
65045
|
+
* The type of the attachment through which traffic leaves a transit gateway
|
|
65046
|
+
*/
|
|
65047
|
+
DestinationTransitGatewayAttachmentType?: EC2TransitGatewayMeteringPolicyEntryTransitGatewayAttachmentResourceType;
|
|
65048
|
+
/**
|
|
65049
|
+
* The resource owner information responsible for paying default billable charges for the traffic flow
|
|
65050
|
+
*/
|
|
65051
|
+
MeteredAccount: EC2TransitGatewayMeteringPolicyEntryTransitGatewayMeteringPayerType;
|
|
65052
|
+
/**
|
|
65053
|
+
* The rule number of the metering policy entry
|
|
65054
|
+
*/
|
|
65055
|
+
PolicyRuleNumber: number;
|
|
65056
|
+
/**
|
|
65057
|
+
* The protocol of the traffic
|
|
65058
|
+
*/
|
|
65059
|
+
Protocol?: string;
|
|
65060
|
+
/**
|
|
65061
|
+
* The list of IP addresses of the instances sending traffic to the transit gateway for which the metering policy entry is applicable
|
|
65062
|
+
*/
|
|
65063
|
+
SourceCidrBlock?: string;
|
|
65064
|
+
/**
|
|
65065
|
+
* The list of ports on source instances sending traffic to the transit gateway
|
|
65066
|
+
*/
|
|
65067
|
+
SourcePortRange?: string;
|
|
65068
|
+
/**
|
|
65069
|
+
* The ID of the source attachment through which traffic enters a transit gateway
|
|
65070
|
+
*/
|
|
65071
|
+
SourceTransitGatewayAttachmentId?: string;
|
|
65072
|
+
/**
|
|
65073
|
+
* The type of the attachment through which traffic enters a transit gateway
|
|
65074
|
+
*/
|
|
65075
|
+
SourceTransitGatewayAttachmentType?: EC2TransitGatewayMeteringPolicyEntryTransitGatewayAttachmentResourceType;
|
|
65076
|
+
/**
|
|
65077
|
+
* The ID of the transit gateway metering policy for which the entry is being created
|
|
65078
|
+
*/
|
|
65079
|
+
TransitGatewayMeteringPolicyId: string;
|
|
65080
|
+
};
|
|
65081
|
+
/**
|
|
65082
|
+
* Attribute type definition for `AWS::EC2::TransitGatewayMeteringPolicyEntry`.
|
|
65083
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymeteringpolicyentry.html#aws-resource-ec2-transitgatewaymeteringpolicyentry-return-values}
|
|
65084
|
+
*/
|
|
65085
|
+
export type EC2TransitGatewayMeteringPolicyEntryAttributes = {
|
|
65086
|
+
/**
|
|
65087
|
+
* State of the transit gateway metering policy
|
|
65088
|
+
*/
|
|
65089
|
+
State: string;
|
|
65090
|
+
/**
|
|
65091
|
+
* The timestamp at which the latest action performed on the metering policy entry will become effective
|
|
65092
|
+
*/
|
|
65093
|
+
UpdateEffectiveAt: string;
|
|
65094
|
+
};
|
|
65095
|
+
/**
|
|
65096
|
+
* Type definition for `AWS::EC2::TransitGatewayMeteringPolicyEntry.TransitGatewayAttachmentResourceType`.
|
|
65097
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewaymeteringpolicyentry-transitgatewayattachmentresourcetype.html}
|
|
65098
|
+
*/
|
|
65099
|
+
export type EC2TransitGatewayMeteringPolicyEntryTransitGatewayAttachmentResourceType = "vpc" | "vpn" | "direct-connect-gateway" | "peering" | "network-function" | "vpn-concentrator";
|
|
65100
|
+
/**
|
|
65101
|
+
* Type definition for `AWS::EC2::TransitGatewayMeteringPolicyEntry.TransitGatewayMeteringPayerType`.
|
|
65102
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewaymeteringpolicyentry-transitgatewaymeteringpayertype.html}
|
|
65103
|
+
*/
|
|
65104
|
+
export type EC2TransitGatewayMeteringPolicyEntryTransitGatewayMeteringPayerType = "source-attachment-owner" | "destination-attachment-owner" | "transit-gateway-owner";
|
|
64759
65105
|
/**
|
|
64760
65106
|
* The AWS::EC2::TransitGatewayMulticastDomain type
|
|
64761
65107
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymulticastdomain.html}
|
|
@@ -66267,6 +66613,130 @@ export type EC2VPCDHCPOptionsAssociationProps = {
|
|
|
66267
66613
|
*/
|
|
66268
66614
|
VpcId: string;
|
|
66269
66615
|
};
|
|
66616
|
+
/**
|
|
66617
|
+
* Resource Type definition for AWS::EC2::VPCEncryptionControl
|
|
66618
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcencryptioncontrol.html}
|
|
66619
|
+
*/
|
|
66620
|
+
export type EC2VPCEncryptionControlProps = {
|
|
66621
|
+
/**
|
|
66622
|
+
* Used to enable or disable EIGW exclusion
|
|
66623
|
+
*/
|
|
66624
|
+
EgressOnlyInternetGatewayExclusionInput?: "enable" | "disable";
|
|
66625
|
+
/**
|
|
66626
|
+
* Used to enable or disable EFS exclusion
|
|
66627
|
+
*/
|
|
66628
|
+
ElasticFileSystemExclusionInput?: "enable" | "disable";
|
|
66629
|
+
/**
|
|
66630
|
+
* Used to enable or disable IGW exclusion
|
|
66631
|
+
*/
|
|
66632
|
+
InternetGatewayExclusionInput?: "enable" | "disable";
|
|
66633
|
+
/**
|
|
66634
|
+
* Used to enable or disable Lambda exclusion
|
|
66635
|
+
*/
|
|
66636
|
+
LambdaExclusionInput?: "enable" | "disable";
|
|
66637
|
+
/**
|
|
66638
|
+
* The VPC encryption control mode, either monitor or enforce.
|
|
66639
|
+
*/
|
|
66640
|
+
Mode?: "monitor" | "enforce";
|
|
66641
|
+
/**
|
|
66642
|
+
* Used to enable or disable Nat gateway exclusion
|
|
66643
|
+
*/
|
|
66644
|
+
NatGatewayExclusionInput?: "enable" | "disable";
|
|
66645
|
+
/**
|
|
66646
|
+
* The tags to assign to the VPC encryption control.
|
|
66647
|
+
*/
|
|
66648
|
+
Tags?: EC2VPCEncryptionControlTag[];
|
|
66649
|
+
/**
|
|
66650
|
+
* Used to enable or disable VGW exclusion
|
|
66651
|
+
*/
|
|
66652
|
+
VirtualPrivateGatewayExclusionInput?: "enable" | "disable";
|
|
66653
|
+
/**
|
|
66654
|
+
* The VPC on which this VPC encryption control is applied.
|
|
66655
|
+
*/
|
|
66656
|
+
VpcId?: string;
|
|
66657
|
+
/**
|
|
66658
|
+
* Used to enable or disable Vpc Lattice exclusion
|
|
66659
|
+
*/
|
|
66660
|
+
VpcLatticeExclusionInput?: "enable" | "disable";
|
|
66661
|
+
/**
|
|
66662
|
+
* Used to enable or disable VPC peering exclusion
|
|
66663
|
+
*/
|
|
66664
|
+
VpcPeeringExclusionInput?: "enable" | "disable";
|
|
66665
|
+
};
|
|
66666
|
+
/**
|
|
66667
|
+
* Attribute type definition for `AWS::EC2::VPCEncryptionControl`.
|
|
66668
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcencryptioncontrol.html#aws-resource-ec2-vpcencryptioncontrol-return-values}
|
|
66669
|
+
*/
|
|
66670
|
+
export type EC2VPCEncryptionControlAttributes = {
|
|
66671
|
+
/**
|
|
66672
|
+
* Enumerates the states of all the VPC encryption control resource exclusions
|
|
66673
|
+
*/
|
|
66674
|
+
ResourceExclusions: {
|
|
66675
|
+
EgressOnlyInternetGateway: {
|
|
66676
|
+
State: string;
|
|
66677
|
+
StateMessage: string;
|
|
66678
|
+
};
|
|
66679
|
+
ElasticFileSystem: {
|
|
66680
|
+
State: string;
|
|
66681
|
+
StateMessage: string;
|
|
66682
|
+
};
|
|
66683
|
+
InternetGateway: {
|
|
66684
|
+
State: string;
|
|
66685
|
+
StateMessage: string;
|
|
66686
|
+
};
|
|
66687
|
+
Lambda: {
|
|
66688
|
+
State: string;
|
|
66689
|
+
StateMessage: string;
|
|
66690
|
+
};
|
|
66691
|
+
NatGateway: {
|
|
66692
|
+
State: string;
|
|
66693
|
+
StateMessage: string;
|
|
66694
|
+
};
|
|
66695
|
+
VirtualPrivateGateway: {
|
|
66696
|
+
State: string;
|
|
66697
|
+
StateMessage: string;
|
|
66698
|
+
};
|
|
66699
|
+
VpcLattice: {
|
|
66700
|
+
State: string;
|
|
66701
|
+
StateMessage: string;
|
|
66702
|
+
};
|
|
66703
|
+
VpcPeering: {
|
|
66704
|
+
State: string;
|
|
66705
|
+
StateMessage: string;
|
|
66706
|
+
};
|
|
66707
|
+
};
|
|
66708
|
+
/**
|
|
66709
|
+
* The current state of the VPC encryption control.
|
|
66710
|
+
*/
|
|
66711
|
+
State: "creating" | "available" | "monitor-in-progress" | "enforce-in-progress" | "monitor-failed" | "enforce-failed" | "deleting" | "deleted" | "delete-failed";
|
|
66712
|
+
/**
|
|
66713
|
+
* Provides additional context on the state of the VPC encryption control.
|
|
66714
|
+
*/
|
|
66715
|
+
StateMessage: string;
|
|
66716
|
+
/**
|
|
66717
|
+
* The VPC encryption control resource id.
|
|
66718
|
+
*/
|
|
66719
|
+
VpcEncryptionControlId: string;
|
|
66720
|
+
};
|
|
66721
|
+
/**
|
|
66722
|
+
* Type definition for `AWS::EC2::VPCEncryptionControl.Tag`.
|
|
66723
|
+
* A key-value pair to associate with a resource.
|
|
66724
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpcencryptioncontrol-tag.html}
|
|
66725
|
+
*/
|
|
66726
|
+
export type EC2VPCEncryptionControlTag = {
|
|
66727
|
+
/**
|
|
66728
|
+
* 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 -.
|
|
66729
|
+
* @minLength `1`
|
|
66730
|
+
* @maxLength `128`
|
|
66731
|
+
*/
|
|
66732
|
+
Key: string;
|
|
66733
|
+
/**
|
|
66734
|
+
* 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 -.
|
|
66735
|
+
* @minLength `0`
|
|
66736
|
+
* @maxLength `256`
|
|
66737
|
+
*/
|
|
66738
|
+
Value: string;
|
|
66739
|
+
};
|
|
66270
66740
|
/**
|
|
66271
66741
|
* Resource type definition for `AWS::EC2::VPCEndpoint`.
|
|
66272
66742
|
* Specifies a VPC endpoint. A VPC endpoint provides a private connection between your VPC and an endpoint service. You can use an endpoint service provided by AWS, an MKT Partner, or another AWS accounts in your organization. For more information, see the [User Guide](https://docs.aws.amazon.com/vpc/latest/privatelink/).
|
|
@@ -67137,6 +67607,18 @@ export type ECRPullThroughCacheRuleProps = {
|
|
|
67137
67607
|
*/
|
|
67138
67608
|
UpstreamRepositoryPrefix?: string;
|
|
67139
67609
|
};
|
|
67610
|
+
/**
|
|
67611
|
+
* Resource Type definition for AWS::ECR::PullTimeUpdateExclusion controls the exclusion configuration for ecr image pull time update.
|
|
67612
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pulltimeupdateexclusion.html}
|
|
67613
|
+
*/
|
|
67614
|
+
export type ECRPullTimeUpdateExclusionProps = {
|
|
67615
|
+
/**
|
|
67616
|
+
* Principal arn that should not update image pull times.
|
|
67617
|
+
* @maxLength `200`
|
|
67618
|
+
* @pattern `^arn:aws(-[a-z]+)*:iam::[0-9]{12}:(role|user)/[\w+=,.@-]+(/[\w+=,.@-]+)*$`
|
|
67619
|
+
*/
|
|
67620
|
+
PrincipalArn: string;
|
|
67621
|
+
};
|
|
67140
67622
|
/**
|
|
67141
67623
|
* The ``AWS::ECR::RegistryPolicy`` resource creates or updates the permissions policy for a private registry.
|
|
67142
67624
|
A private registry policy is used to specify permissions for another AWS-account and is used when configuring cross-account replication. For more information, see [Registry permissions](https://docs.aws.amazon.com/AmazonECR/latest/userguide/registry-permissions.html) in the *Amazon Elastic Container Registry User Guide*.
|
|
@@ -67627,6 +68109,71 @@ export type ECRRepositoryCreationTemplateTag = {
|
|
|
67627
68109
|
*/
|
|
67628
68110
|
Value: string;
|
|
67629
68111
|
};
|
|
68112
|
+
/**
|
|
68113
|
+
* The AWS::ECR::SigningConfiguration resource creates or updates the signing configuration for an Amazon ECR registry.
|
|
68114
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-signingconfiguration.html}
|
|
68115
|
+
*/
|
|
68116
|
+
export type ECRSigningConfigurationProps = {
|
|
68117
|
+
/**
|
|
68118
|
+
* Array of signing rules that define which repositories should be signed and with which signing profiles.
|
|
68119
|
+
* @minLength `0`
|
|
68120
|
+
* @maxLength `50`
|
|
68121
|
+
*/
|
|
68122
|
+
Rules: ECRSigningConfigurationRule[];
|
|
68123
|
+
};
|
|
68124
|
+
/**
|
|
68125
|
+
* Attribute type definition for `AWS::ECR::SigningConfiguration`.
|
|
68126
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-signingconfiguration.html#aws-resource-ecr-signingconfiguration-return-values}
|
|
68127
|
+
*/
|
|
68128
|
+
export type ECRSigningConfigurationAttributes = {
|
|
68129
|
+
/**
|
|
68130
|
+
* 12-digit AWS account ID of the ECR registry.
|
|
68131
|
+
* @pattern `^[0-9]{12}$`
|
|
68132
|
+
*/
|
|
68133
|
+
RegistryId: string;
|
|
68134
|
+
};
|
|
68135
|
+
/**
|
|
68136
|
+
* Type definition for `AWS::ECR::SigningConfiguration.FilterType`.
|
|
68137
|
+
* Type of repository filter
|
|
68138
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-signingconfiguration-filtertype.html}
|
|
68139
|
+
*/
|
|
68140
|
+
export type ECRSigningConfigurationFilterType = "WILDCARD_MATCH";
|
|
68141
|
+
/**
|
|
68142
|
+
* Type definition for `AWS::ECR::SigningConfiguration.RepositoryFilter`.
|
|
68143
|
+
* An array of objects representing the details of a repository filter.
|
|
68144
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-signingconfiguration-repositoryfilter.html}
|
|
68145
|
+
*/
|
|
68146
|
+
export type ECRSigningConfigurationRepositoryFilter = {
|
|
68147
|
+
/**
|
|
68148
|
+
* Repository name pattern (supports '*' wildcard).
|
|
68149
|
+
* @minLength `1`
|
|
68150
|
+
* @maxLength `256`
|
|
68151
|
+
* @pattern `^(?=.{1,256}$)(?:[a-z0-9*]+(?:[._-][a-z0-9*]*)/*)*[a-z0-9*]*(?:[._-][a-z0-9*]*)*$`
|
|
68152
|
+
*/
|
|
68153
|
+
Filter: string;
|
|
68154
|
+
/**
|
|
68155
|
+
* Type of repository filter
|
|
68156
|
+
*/
|
|
68157
|
+
FilterType: ECRSigningConfigurationFilterType;
|
|
68158
|
+
};
|
|
68159
|
+
/**
|
|
68160
|
+
* Type definition for `AWS::ECR::SigningConfiguration.Rule`.
|
|
68161
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-signingconfiguration-rule.html}
|
|
68162
|
+
*/
|
|
68163
|
+
export type ECRSigningConfigurationRule = {
|
|
68164
|
+
/**
|
|
68165
|
+
* Optional array of repository filters. If omitted, the rule matches all repositories. If provided, must contain at least one filter. Empty arrays are not allowed.
|
|
68166
|
+
* @minLength `1`
|
|
68167
|
+
* @maxLength `100`
|
|
68168
|
+
*/
|
|
68169
|
+
RepositoryFilters?: ECRSigningConfigurationRepositoryFilter[];
|
|
68170
|
+
/**
|
|
68171
|
+
* AWS Signer signing profile ARN to use for matched repositories.
|
|
68172
|
+
* @maxLength `200`
|
|
68173
|
+
* @pattern `^arn:aws(-[a-z]+)*:signer:[a-z0-9-]+:[0-9]{12}:\/signing-profiles\/[a-zA-Z0-9_]{2,}$`
|
|
68174
|
+
*/
|
|
68175
|
+
SigningProfileArn: string;
|
|
68176
|
+
};
|
|
67630
68177
|
/**
|
|
67631
68178
|
* Resource Type definition for AWS::ECS::CapacityProvider.
|
|
67632
68179
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html}
|
|
@@ -68115,6 +68662,196 @@ export type ECSClusterCapacityProviderAssociationsCapacityProviderStrategy = {
|
|
|
68115
68662
|
*/
|
|
68116
68663
|
Weight?: number;
|
|
68117
68664
|
};
|
|
68665
|
+
/**
|
|
68666
|
+
* Resource Type definition for AWS::ECS::ExpressGatewayService
|
|
68667
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-expressgatewayservice.html}
|
|
68668
|
+
*/
|
|
68669
|
+
export type ECSExpressGatewayServiceProps = {
|
|
68670
|
+
Cluster?: string;
|
|
68671
|
+
Cpu?: string;
|
|
68672
|
+
ExecutionRoleArn: string;
|
|
68673
|
+
HealthCheckPath?: string;
|
|
68674
|
+
InfrastructureRoleArn: string;
|
|
68675
|
+
Memory?: string;
|
|
68676
|
+
NetworkConfiguration?: ECSExpressGatewayServiceExpressGatewayServiceNetworkConfiguration;
|
|
68677
|
+
PrimaryContainer: ECSExpressGatewayServiceExpressGatewayContainer;
|
|
68678
|
+
ScalingTarget?: ECSExpressGatewayServiceExpressGatewayScalingTarget;
|
|
68679
|
+
ServiceName?: string;
|
|
68680
|
+
Tags?: ECSExpressGatewayServiceTag[];
|
|
68681
|
+
TaskRoleArn?: string;
|
|
68682
|
+
};
|
|
68683
|
+
/**
|
|
68684
|
+
* Attribute type definition for `AWS::ECS::ExpressGatewayService`.
|
|
68685
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-expressgatewayservice.html#aws-resource-ecs-expressgatewayservice-return-values}
|
|
68686
|
+
*/
|
|
68687
|
+
export type ECSExpressGatewayServiceAttributes = {
|
|
68688
|
+
ActiveConfigurations: {
|
|
68689
|
+
Cpu: string;
|
|
68690
|
+
CreatedAt: string;
|
|
68691
|
+
ExecutionRoleArn: string;
|
|
68692
|
+
HealthCheckPath: string;
|
|
68693
|
+
IngressPaths: {
|
|
68694
|
+
AccessType: ECSExpressGatewayServiceAccessType;
|
|
68695
|
+
Endpoint: string;
|
|
68696
|
+
}[];
|
|
68697
|
+
Memory: string;
|
|
68698
|
+
NetworkConfiguration: {
|
|
68699
|
+
SecurityGroups: string[];
|
|
68700
|
+
Subnets: string[];
|
|
68701
|
+
};
|
|
68702
|
+
PrimaryContainer: {
|
|
68703
|
+
AwsLogsConfiguration: {
|
|
68704
|
+
LogGroup: string;
|
|
68705
|
+
LogStreamPrefix: string;
|
|
68706
|
+
};
|
|
68707
|
+
Command: string[];
|
|
68708
|
+
ContainerPort: number;
|
|
68709
|
+
Environment: {
|
|
68710
|
+
Name: string;
|
|
68711
|
+
Value: string;
|
|
68712
|
+
}[];
|
|
68713
|
+
Image: string;
|
|
68714
|
+
RepositoryCredentials: {
|
|
68715
|
+
CredentialsParameter: string;
|
|
68716
|
+
};
|
|
68717
|
+
Secrets: {
|
|
68718
|
+
Name: string;
|
|
68719
|
+
ValueFrom: string;
|
|
68720
|
+
}[];
|
|
68721
|
+
};
|
|
68722
|
+
ScalingTarget: {
|
|
68723
|
+
AutoScalingMetric: ECSExpressGatewayServiceExpressGatewayServiceScalingMetric;
|
|
68724
|
+
AutoScalingTargetValue: number;
|
|
68725
|
+
MaxTaskCount: number;
|
|
68726
|
+
MinTaskCount: number;
|
|
68727
|
+
};
|
|
68728
|
+
ServiceRevisionArn: string;
|
|
68729
|
+
TaskRoleArn: string;
|
|
68730
|
+
}[];
|
|
68731
|
+
CreatedAt: string;
|
|
68732
|
+
ServiceArn: string;
|
|
68733
|
+
Status: {
|
|
68734
|
+
StatusCode: ECSExpressGatewayServiceExpressGatewayServiceStatusCode;
|
|
68735
|
+
};
|
|
68736
|
+
UpdatedAt: string;
|
|
68737
|
+
};
|
|
68738
|
+
/**
|
|
68739
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.AccessType`.
|
|
68740
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-accesstype.html}
|
|
68741
|
+
*/
|
|
68742
|
+
export type ECSExpressGatewayServiceAccessType = "PUBLIC" | "PRIVATE";
|
|
68743
|
+
/**
|
|
68744
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayContainer`.
|
|
68745
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewaycontainer.html}
|
|
68746
|
+
*/
|
|
68747
|
+
export type ECSExpressGatewayServiceExpressGatewayContainer = {
|
|
68748
|
+
AwsLogsConfiguration?: ECSExpressGatewayServiceExpressGatewayServiceAwsLogsConfiguration;
|
|
68749
|
+
Command?: string[];
|
|
68750
|
+
ContainerPort?: number;
|
|
68751
|
+
Environment?: ECSExpressGatewayServiceKeyValuePair[];
|
|
68752
|
+
Image: string;
|
|
68753
|
+
RepositoryCredentials?: ECSExpressGatewayServiceExpressGatewayRepositoryCredentials;
|
|
68754
|
+
Secrets?: ECSExpressGatewayServiceSecret[];
|
|
68755
|
+
};
|
|
68756
|
+
/**
|
|
68757
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayRepositoryCredentials`.
|
|
68758
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayrepositorycredentials.html}
|
|
68759
|
+
*/
|
|
68760
|
+
export type ECSExpressGatewayServiceExpressGatewayRepositoryCredentials = {
|
|
68761
|
+
CredentialsParameter: string;
|
|
68762
|
+
};
|
|
68763
|
+
/**
|
|
68764
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayScalingTarget`.
|
|
68765
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayscalingtarget.html}
|
|
68766
|
+
*/
|
|
68767
|
+
export type ECSExpressGatewayServiceExpressGatewayScalingTarget = {
|
|
68768
|
+
AutoScalingMetric?: ECSExpressGatewayServiceExpressGatewayServiceScalingMetric;
|
|
68769
|
+
AutoScalingTargetValue?: number;
|
|
68770
|
+
MaxTaskCount?: number;
|
|
68771
|
+
MinTaskCount?: number;
|
|
68772
|
+
};
|
|
68773
|
+
/**
|
|
68774
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceAwsLogsConfiguration`.
|
|
68775
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayserviceawslogsconfiguration.html}
|
|
68776
|
+
*/
|
|
68777
|
+
export type ECSExpressGatewayServiceExpressGatewayServiceAwsLogsConfiguration = {
|
|
68778
|
+
LogGroup: string;
|
|
68779
|
+
LogStreamPrefix: string;
|
|
68780
|
+
};
|
|
68781
|
+
/**
|
|
68782
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceConfiguration`.
|
|
68783
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayserviceconfiguration.html}
|
|
68784
|
+
*/
|
|
68785
|
+
export type ECSExpressGatewayServiceExpressGatewayServiceConfiguration = {
|
|
68786
|
+
Cpu?: string;
|
|
68787
|
+
CreatedAt?: string;
|
|
68788
|
+
ExecutionRoleArn?: string;
|
|
68789
|
+
HealthCheckPath?: string;
|
|
68790
|
+
IngressPaths?: ECSExpressGatewayServiceIngressPathSummary[];
|
|
68791
|
+
Memory?: string;
|
|
68792
|
+
NetworkConfiguration?: ECSExpressGatewayServiceExpressGatewayServiceNetworkConfiguration;
|
|
68793
|
+
PrimaryContainer?: ECSExpressGatewayServiceExpressGatewayContainer;
|
|
68794
|
+
ScalingTarget?: ECSExpressGatewayServiceExpressGatewayScalingTarget;
|
|
68795
|
+
ServiceRevisionArn?: string;
|
|
68796
|
+
TaskRoleArn?: string;
|
|
68797
|
+
};
|
|
68798
|
+
/**
|
|
68799
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceNetworkConfiguration`.
|
|
68800
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayservicenetworkconfiguration.html}
|
|
68801
|
+
*/
|
|
68802
|
+
export type ECSExpressGatewayServiceExpressGatewayServiceNetworkConfiguration = {
|
|
68803
|
+
SecurityGroups?: string[];
|
|
68804
|
+
Subnets?: string[];
|
|
68805
|
+
};
|
|
68806
|
+
/**
|
|
68807
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceScalingMetric`.
|
|
68808
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayservicescalingmetric.html}
|
|
68809
|
+
*/
|
|
68810
|
+
export type ECSExpressGatewayServiceExpressGatewayServiceScalingMetric = "AVERAGE_CPU" | "AVERAGE_MEMORY" | "REQUEST_COUNT_PER_TARGET";
|
|
68811
|
+
/**
|
|
68812
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceStatus`.
|
|
68813
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayservicestatus.html}
|
|
68814
|
+
*/
|
|
68815
|
+
export type ECSExpressGatewayServiceExpressGatewayServiceStatus = {
|
|
68816
|
+
StatusCode?: ECSExpressGatewayServiceExpressGatewayServiceStatusCode;
|
|
68817
|
+
};
|
|
68818
|
+
/**
|
|
68819
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceStatusCode`.
|
|
68820
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayservicestatuscode.html}
|
|
68821
|
+
*/
|
|
68822
|
+
export type ECSExpressGatewayServiceExpressGatewayServiceStatusCode = "ACTIVE" | "DRAINING" | "INACTIVE";
|
|
68823
|
+
/**
|
|
68824
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.IngressPathSummary`.
|
|
68825
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ingresspathsummary.html}
|
|
68826
|
+
*/
|
|
68827
|
+
export type ECSExpressGatewayServiceIngressPathSummary = {
|
|
68828
|
+
AccessType?: ECSExpressGatewayServiceAccessType;
|
|
68829
|
+
Endpoint?: string;
|
|
68830
|
+
};
|
|
68831
|
+
/**
|
|
68832
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.KeyValuePair`.
|
|
68833
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-keyvaluepair.html}
|
|
68834
|
+
*/
|
|
68835
|
+
export type ECSExpressGatewayServiceKeyValuePair = {
|
|
68836
|
+
Name: string;
|
|
68837
|
+
Value: string;
|
|
68838
|
+
};
|
|
68839
|
+
/**
|
|
68840
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.Secret`.
|
|
68841
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-secret.html}
|
|
68842
|
+
*/
|
|
68843
|
+
export type ECSExpressGatewayServiceSecret = {
|
|
68844
|
+
Name: string;
|
|
68845
|
+
ValueFrom: string;
|
|
68846
|
+
};
|
|
68847
|
+
/**
|
|
68848
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.Tag`.
|
|
68849
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-tag.html}
|
|
68850
|
+
*/
|
|
68851
|
+
export type ECSExpressGatewayServiceTag = {
|
|
68852
|
+
Key: string;
|
|
68853
|
+
Value: string;
|
|
68854
|
+
};
|
|
68118
68855
|
/**
|
|
68119
68856
|
* Resource type definition for `AWS::ECS::PrimaryTaskSet`.
|
|
68120
68857
|
* A pseudo-resource that manages which of your ECS task sets is primary.
|
|
@@ -71087,6 +71824,10 @@ export type EKSClusterProps = {
|
|
|
71087
71824
|
* Todo: add description
|
|
71088
71825
|
*/
|
|
71089
71826
|
ComputeConfig?: EKSClusterComputeConfig;
|
|
71827
|
+
/**
|
|
71828
|
+
* Configuration for provisioned control plane scaling.
|
|
71829
|
+
*/
|
|
71830
|
+
ControlPlaneScalingConfig?: EKSClusterControlPlaneScalingConfig;
|
|
71090
71831
|
/**
|
|
71091
71832
|
* Set this value to true to enable deletion protection for the cluster.
|
|
71092
71833
|
*/
|
|
@@ -71259,6 +72000,17 @@ export type EKSClusterControlPlanePlacement = {
|
|
|
71259
72000
|
*/
|
|
71260
72001
|
GroupName?: string;
|
|
71261
72002
|
};
|
|
72003
|
+
/**
|
|
72004
|
+
* Type definition for `AWS::EKS::Cluster.ControlPlaneScalingConfig`.
|
|
72005
|
+
* Configuration for provisioned control plane scaling.
|
|
72006
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-controlplanescalingconfig.html}
|
|
72007
|
+
*/
|
|
72008
|
+
export type EKSClusterControlPlaneScalingConfig = {
|
|
72009
|
+
/**
|
|
72010
|
+
* The scaling tier for the provisioned control plane.
|
|
72011
|
+
*/
|
|
72012
|
+
Tier?: "standard" | "tier-xl" | "tier-2xl" | "tier-4xl";
|
|
72013
|
+
};
|
|
71262
72014
|
/**
|
|
71263
72015
|
* Type definition for `AWS::EKS::Cluster.ElasticLoadBalancing`.
|
|
71264
72016
|
* Todo: add description
|
|
@@ -80677,6 +81429,7 @@ export type FSxFileSystemRootVolumeConfiguration = {
|
|
|
80677
81429
|
*/
|
|
80678
81430
|
export type FSxFileSystemSelfManagedActiveDirectoryConfiguration = {
|
|
80679
81431
|
DnsIps?: string[];
|
|
81432
|
+
DomainJoinServiceAccountSecret?: string;
|
|
80680
81433
|
DomainName?: string;
|
|
80681
81434
|
FileSystemAdministratorsGroup?: string;
|
|
80682
81435
|
OrganizationalUnitDistinguishedName?: string;
|
|
@@ -80863,6 +81616,7 @@ export type FSxStorageVirtualMachineActiveDirectoryConfiguration = {
|
|
|
80863
81616
|
*/
|
|
80864
81617
|
export type FSxStorageVirtualMachineSelfManagedActiveDirectoryConfiguration = {
|
|
80865
81618
|
DnsIps?: string[];
|
|
81619
|
+
DomainJoinServiceAccountSecret?: string;
|
|
80866
81620
|
DomainName?: string;
|
|
80867
81621
|
FileSystemAdministratorsGroup?: string;
|
|
80868
81622
|
OrganizationalUnitDistinguishedName?: string;
|
|
@@ -107066,6 +107820,10 @@ export type KinesisVideoStreamProps = {
|
|
|
107066
107820
|
* @pattern `[a-zA-Z0-9_.-]+`
|
|
107067
107821
|
*/
|
|
107068
107822
|
Name?: string;
|
|
107823
|
+
/**
|
|
107824
|
+
* Configuration for the storage tier of the Kinesis Video Stream.
|
|
107825
|
+
*/
|
|
107826
|
+
StreamStorageConfiguration?: KinesisVideoStreamStreamStorageConfiguration;
|
|
107069
107827
|
/**
|
|
107070
107828
|
* An array of key-value pairs associated with the Kinesis Video Stream.
|
|
107071
107829
|
* @minLength `1`
|
|
@@ -107083,6 +107841,17 @@ export type KinesisVideoStreamAttributes = {
|
|
|
107083
107841
|
*/
|
|
107084
107842
|
Arn: string;
|
|
107085
107843
|
};
|
|
107844
|
+
/**
|
|
107845
|
+
* Type definition for `AWS::KinesisVideo::Stream.StreamStorageConfiguration`.
|
|
107846
|
+
* Configuration for the storage tier of the Kinesis Video Stream.
|
|
107847
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisvideo-stream-streamstorageconfiguration.html}
|
|
107848
|
+
*/
|
|
107849
|
+
export type KinesisVideoStreamStreamStorageConfiguration = {
|
|
107850
|
+
/**
|
|
107851
|
+
* The storage tier for the Kinesis Video Stream. Determines the storage class used for stream data.
|
|
107852
|
+
*/
|
|
107853
|
+
DefaultStorageTier?: "HOT" | "WARM";
|
|
107854
|
+
};
|
|
107086
107855
|
/**
|
|
107087
107856
|
* Type definition for `AWS::KinesisVideo::Stream.Tag`.
|
|
107088
107857
|
* A key-value pair to associated with the Kinesis Video Stream.
|
|
@@ -133145,26 +133914,11 @@ export type OpenSearchServerlessAccessPolicyAccessPolicyType = "data";
|
|
|
133145
133914
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-collection.html}
|
|
133146
133915
|
*/
|
|
133147
133916
|
export type OpenSearchServerlessCollectionProps = {
|
|
133148
|
-
/**
|
|
133149
|
-
* The name of the collection group.
|
|
133150
|
-
|
|
133151
|
-
The name must meet the following criteria:
|
|
133152
|
-
Unique to your account and AWS Region
|
|
133153
|
-
Starts with a lowercase letter
|
|
133154
|
-
Contains only lowercase letters a-z, the numbers 0-9 and the hyphen (-)
|
|
133155
|
-
Contains between 3 and 32 characters
|
|
133156
|
-
|
|
133157
|
-
*/
|
|
133158
|
-
CollectionGroupName?: string;
|
|
133159
133917
|
/**
|
|
133160
133918
|
* The description of the collection
|
|
133161
133919
|
* @maxLength `1000`
|
|
133162
133920
|
*/
|
|
133163
133921
|
Description?: string;
|
|
133164
|
-
/**
|
|
133165
|
-
* The configuration to encrypt the collection
|
|
133166
|
-
*/
|
|
133167
|
-
EncryptionConfig?: OpenSearchServerlessCollectionEncryptionConfig;
|
|
133168
133922
|
/**
|
|
133169
133923
|
* The name of the collection.
|
|
133170
133924
|
|
|
@@ -133228,21 +133982,6 @@ export type OpenSearchServerlessCollectionAttributes = {
|
|
|
133228
133982
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-collectiontype.html}
|
|
133229
133983
|
*/
|
|
133230
133984
|
export type OpenSearchServerlessCollectionCollectionType = "SEARCH" | "TIMESERIES" | "VECTORSEARCH";
|
|
133231
|
-
/**
|
|
133232
|
-
* Type definition for `AWS::OpenSearchServerless::Collection.EncryptionConfig`.
|
|
133233
|
-
* The configuration to encrypt the collection
|
|
133234
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-encryptionconfig.html}
|
|
133235
|
-
*/
|
|
133236
|
-
export type OpenSearchServerlessCollectionEncryptionConfig = {
|
|
133237
|
-
/**
|
|
133238
|
-
* The configuration to encrypt the collection with AWS owned key
|
|
133239
|
-
*/
|
|
133240
|
-
AWSOwnedKey?: boolean;
|
|
133241
|
-
/**
|
|
133242
|
-
* The ARN of the KMS key to encrypt the collection with
|
|
133243
|
-
*/
|
|
133244
|
-
KmsKeyArn?: string;
|
|
133245
|
-
};
|
|
133246
133985
|
/**
|
|
133247
133986
|
* Type definition for `AWS::OpenSearchServerless::Collection.StandbyReplicas`.
|
|
133248
133987
|
* The possible standby replicas for the collection
|
|
@@ -136276,6 +137015,10 @@ export type PCSClusterProps = {
|
|
|
136276
137015
|
* The shared Slurm key for authentication, also known as the cluster secret.
|
|
136277
137016
|
*/
|
|
136278
137017
|
AuthKey?: PCSClusterAuthKey;
|
|
137018
|
+
/**
|
|
137019
|
+
* JWT authentication configuration for Slurm.
|
|
137020
|
+
*/
|
|
137021
|
+
JwtAuth?: PCSClusterJwtAuth;
|
|
136279
137022
|
/**
|
|
136280
137023
|
* The time before an idle node is scaled down.
|
|
136281
137024
|
* @min `1`
|
|
@@ -136285,6 +137028,10 @@ export type PCSClusterProps = {
|
|
|
136285
137028
|
* Additional Slurm-specific configuration that directly maps to Slurm settings.
|
|
136286
137029
|
*/
|
|
136287
137030
|
SlurmCustomSettings?: PCSClusterSlurmCustomSetting[];
|
|
137031
|
+
/**
|
|
137032
|
+
* The SlurmRest configuration includes configurable settings for Slurm Rest.
|
|
137033
|
+
*/
|
|
137034
|
+
SlurmRest?: PCSClusterSlurmRest;
|
|
136288
137035
|
};
|
|
136289
137036
|
/**
|
|
136290
137037
|
* 1 or more tags added to the resource. Each tag consists of a tag key and tag value. The tag value is optional and can be an empty string.
|
|
@@ -136323,7 +137070,7 @@ export type PCSClusterAttributes = {
|
|
|
136323
137070
|
/**
|
|
136324
137071
|
* Indicates the type of endpoint running at the specific IP address.
|
|
136325
137072
|
*/
|
|
136326
|
-
Type: "SLURMCTLD" | "SLURMDBD";
|
|
137073
|
+
Type: "SLURMCTLD" | "SLURMDBD" | "SLURMRESTD";
|
|
136327
137074
|
}[];
|
|
136328
137075
|
/**
|
|
136329
137076
|
* The list of errors that occurred during cluster provisioning.
|
|
@@ -136405,7 +137152,7 @@ export type PCSClusterEndpoint = {
|
|
|
136405
137152
|
/**
|
|
136406
137153
|
* Indicates the type of endpoint running at the specific IP address.
|
|
136407
137154
|
*/
|
|
136408
|
-
Type: "SLURMCTLD" | "SLURMDBD";
|
|
137155
|
+
Type: "SLURMCTLD" | "SLURMDBD" | "SLURMRESTD";
|
|
136409
137156
|
};
|
|
136410
137157
|
/**
|
|
136411
137158
|
* Type definition for `AWS::PCS::Cluster.ErrorInfo`.
|
|
@@ -136422,6 +137169,32 @@ export type PCSClusterErrorInfo = {
|
|
|
136422
137169
|
*/
|
|
136423
137170
|
Message?: string;
|
|
136424
137171
|
};
|
|
137172
|
+
/**
|
|
137173
|
+
* Type definition for `AWS::PCS::Cluster.JwtAuth`.
|
|
137174
|
+
* JWT authentication configuration for Slurm.
|
|
137175
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-jwtauth.html}
|
|
137176
|
+
*/
|
|
137177
|
+
export type PCSClusterJwtAuth = {
|
|
137178
|
+
/**
|
|
137179
|
+
* JWT key configuration.
|
|
137180
|
+
*/
|
|
137181
|
+
JwtKey?: PCSClusterJwtKey;
|
|
137182
|
+
};
|
|
137183
|
+
/**
|
|
137184
|
+
* Type definition for `AWS::PCS::Cluster.JwtKey`.
|
|
137185
|
+
* JWT key configuration.
|
|
137186
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-jwtkey.html}
|
|
137187
|
+
*/
|
|
137188
|
+
export type PCSClusterJwtKey = {
|
|
137189
|
+
/**
|
|
137190
|
+
* The Amazon Resource Name (ARN) of the JWT key secret.
|
|
137191
|
+
*/
|
|
137192
|
+
SecretArn: string;
|
|
137193
|
+
/**
|
|
137194
|
+
* The version of the JWT key secret.
|
|
137195
|
+
*/
|
|
137196
|
+
SecretVersion: string;
|
|
137197
|
+
};
|
|
136425
137198
|
/**
|
|
136426
137199
|
* Type definition for `AWS::PCS::Cluster.SlurmCustomSetting`.
|
|
136427
137200
|
* Additional settings that directly map to Slurm settings.
|
|
@@ -136437,6 +137210,17 @@ export type PCSClusterSlurmCustomSetting = {
|
|
|
136437
137210
|
*/
|
|
136438
137211
|
ParameterValue: string;
|
|
136439
137212
|
};
|
|
137213
|
+
/**
|
|
137214
|
+
* Type definition for `AWS::PCS::Cluster.SlurmRest`.
|
|
137215
|
+
* The SlurmRest configuration includes configurable settings for Slurm Rest.
|
|
137216
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-slurmrest.html}
|
|
137217
|
+
*/
|
|
137218
|
+
export type PCSClusterSlurmRest = {
|
|
137219
|
+
/**
|
|
137220
|
+
* The default value is `STANDARD`. A value of `STANDARD` means that Slurm Rest is enabled.
|
|
137221
|
+
*/
|
|
137222
|
+
Mode: "STANDARD" | "NONE";
|
|
137223
|
+
};
|
|
136440
137224
|
/**
|
|
136441
137225
|
* AWS::PCS::ComputeNodeGroup resource creates an AWS PCS compute node group.
|
|
136442
137226
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-computenodegroup.html}
|
|
@@ -170908,7 +171692,7 @@ export type RbinRuleProps = {
|
|
|
170908
171692
|
/**
|
|
170909
171693
|
* The resource type retained by the retention rule.
|
|
170910
171694
|
*/
|
|
170911
|
-
ResourceType: "EBS_SNAPSHOT" | "EC2_IMAGE";
|
|
171695
|
+
ResourceType: "EBS_SNAPSHOT" | "EC2_IMAGE" | "EBS_VOLUME";
|
|
170912
171696
|
/**
|
|
170913
171697
|
* Information about the retention period for which the retention rule is to retain resources.
|
|
170914
171698
|
*/
|
|
@@ -180250,6 +181034,7 @@ export type S3AccessPointVpcConfiguration = {
|
|
|
180250
181034
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-bucket.html}
|
|
180251
181035
|
*/
|
|
180252
181036
|
export type S3BucketProps = {
|
|
181037
|
+
AbacStatus?: "Enabled" | "Disabled";
|
|
180253
181038
|
/**
|
|
180254
181039
|
* Configures the transfer acceleration state for an Amazon S3 bucket. For more information, see [Amazon S3 Transfer Acceleration](https://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html) in the *Amazon S3 User Guide*.
|
|
180255
181040
|
*/
|
|
@@ -184088,6 +184873,21 @@ export type SageMakerClusterClusterAutoScalingConfig = {
|
|
|
184088
184873
|
*/
|
|
184089
184874
|
Mode: "Enable" | "Disable";
|
|
184090
184875
|
};
|
|
184876
|
+
/**
|
|
184877
|
+
* Type definition for `AWS::SageMaker::Cluster.ClusterCapacityRequirements`.
|
|
184878
|
+
* Specifies the capacity requirements configuration for an instance group
|
|
184879
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clustercapacityrequirements.html}
|
|
184880
|
+
*/
|
|
184881
|
+
export type SageMakerClusterClusterCapacityRequirements = {
|
|
184882
|
+
/**
|
|
184883
|
+
* Options for OnDemand capacity
|
|
184884
|
+
*/
|
|
184885
|
+
OnDemand?: SageMakerClusterClusterOnDemandOptions;
|
|
184886
|
+
/**
|
|
184887
|
+
* Options for Spot capacity
|
|
184888
|
+
*/
|
|
184889
|
+
Spot?: SageMakerClusterClusterSpotOptions;
|
|
184890
|
+
};
|
|
184091
184891
|
/**
|
|
184092
184892
|
* Type definition for `AWS::SageMaker::Cluster.ClusterEbsVolumeConfig`.
|
|
184093
184893
|
* Defines the configuration for attaching additional Amazon Elastic Block Store (EBS) volumes to the instances in the SageMaker HyperPod cluster instance group. The additional EBS volume is attached to each instance within the SageMaker HyperPod cluster instance group and mounted to /opt/sagemaker.
|
|
@@ -184114,6 +184914,10 @@ export type SageMakerClusterClusterEbsVolumeConfig = {
|
|
|
184114
184914
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html}
|
|
184115
184915
|
*/
|
|
184116
184916
|
export type SageMakerClusterClusterInstanceGroup = {
|
|
184917
|
+
/**
|
|
184918
|
+
* Specifies the capacity requirements configuration for an instance group
|
|
184919
|
+
*/
|
|
184920
|
+
CapacityRequirements?: SageMakerClusterClusterCapacityRequirements;
|
|
184117
184921
|
/**
|
|
184118
184922
|
* The execution role for the instance group to assume.
|
|
184119
184923
|
* @minLength `20`
|
|
@@ -184149,6 +184953,10 @@ export type SageMakerClusterClusterInstanceGroup = {
|
|
|
184149
184953
|
* The instance type of the instance group of a SageMaker HyperPod cluster.
|
|
184150
184954
|
*/
|
|
184151
184955
|
InstanceType: string;
|
|
184956
|
+
/**
|
|
184957
|
+
* Kubernetes configuration for cluster nodes including labels and taints.
|
|
184958
|
+
*/
|
|
184959
|
+
KubernetesConfig?: SageMakerClusterClusterKubernetesConfig;
|
|
184152
184960
|
/**
|
|
184153
184961
|
* The lifecycle configuration for a SageMaker HyperPod cluster.
|
|
184154
184962
|
*/
|
|
@@ -184189,6 +184997,47 @@ export type SageMakerClusterClusterInstanceStorageConfig = {
|
|
|
184189
184997
|
*/
|
|
184190
184998
|
EbsVolumeConfig?: SageMakerClusterClusterEbsVolumeConfig;
|
|
184191
184999
|
};
|
|
185000
|
+
/**
|
|
185001
|
+
* Type definition for `AWS::SageMaker::Cluster.ClusterKubernetesConfig`.
|
|
185002
|
+
* Kubernetes configuration for cluster nodes including labels and taints.
|
|
185003
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterkubernetesconfig.html}
|
|
185004
|
+
*/
|
|
185005
|
+
export type SageMakerClusterClusterKubernetesConfig = {
|
|
185006
|
+
/**
|
|
185007
|
+
* A map of Kubernetes labels to apply to cluster nodes.
|
|
185008
|
+
*/
|
|
185009
|
+
Labels?: SageMakerClusterClusterKubernetesLabels;
|
|
185010
|
+
/**
|
|
185011
|
+
* A list of Kubernetes taints to apply to cluster nodes. Maximum of 50 taints.
|
|
185012
|
+
* @maxLength `50`
|
|
185013
|
+
*/
|
|
185014
|
+
Taints?: SageMakerClusterClusterKubernetesTaint[];
|
|
185015
|
+
};
|
|
185016
|
+
/**
|
|
185017
|
+
* Type definition for `AWS::SageMaker::Cluster.ClusterKubernetesLabels`.
|
|
185018
|
+
* A map of Kubernetes labels to apply to cluster nodes.
|
|
185019
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterkuberneteslabels.html}
|
|
185020
|
+
*/
|
|
185021
|
+
export type SageMakerClusterClusterKubernetesLabels = Record<string, string>;
|
|
185022
|
+
/**
|
|
185023
|
+
* Type definition for `AWS::SageMaker::Cluster.ClusterKubernetesTaint`.
|
|
185024
|
+
* A Kubernetes taint to apply to cluster nodes.
|
|
185025
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterkubernetestaint.html}
|
|
185026
|
+
*/
|
|
185027
|
+
export type SageMakerClusterClusterKubernetesTaint = {
|
|
185028
|
+
/**
|
|
185029
|
+
* The effect of the taint.
|
|
185030
|
+
*/
|
|
185031
|
+
Effect: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
|
|
185032
|
+
/**
|
|
185033
|
+
* The key of the taint.
|
|
185034
|
+
*/
|
|
185035
|
+
Key: string;
|
|
185036
|
+
/**
|
|
185037
|
+
* The value of the taint.
|
|
185038
|
+
*/
|
|
185039
|
+
Value?: string;
|
|
185040
|
+
};
|
|
184192
185041
|
/**
|
|
184193
185042
|
* Type definition for `AWS::SageMaker::Cluster.ClusterLifeCycleConfig`.
|
|
184194
185043
|
* The lifecycle configuration for a SageMaker HyperPod cluster.
|
|
@@ -184209,6 +185058,12 @@ export type SageMakerClusterClusterLifeCycleConfig = {
|
|
|
184209
185058
|
*/
|
|
184210
185059
|
SourceS3Uri: string;
|
|
184211
185060
|
};
|
|
185061
|
+
/**
|
|
185062
|
+
* Type definition for `AWS::SageMaker::Cluster.ClusterOnDemandOptions`.
|
|
185063
|
+
* Options for OnDemand capacity
|
|
185064
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterondemandoptions.html}
|
|
185065
|
+
*/
|
|
185066
|
+
export type SageMakerClusterClusterOnDemandOptions = Record<string, any>;
|
|
184212
185067
|
/**
|
|
184213
185068
|
* Type definition for `AWS::SageMaker::Cluster.ClusterOrchestratorEksConfig`.
|
|
184214
185069
|
* Specifies parameter(s) related to EKS as orchestrator, e.g. the EKS cluster nodes will attach to,
|
|
@@ -184280,6 +185135,12 @@ export type SageMakerClusterClusterRestrictedInstanceGroup = {
|
|
|
184280
185135
|
*/
|
|
184281
185136
|
TrainingPlanArn?: string;
|
|
184282
185137
|
};
|
|
185138
|
+
/**
|
|
185139
|
+
* Type definition for `AWS::SageMaker::Cluster.ClusterSpotOptions`.
|
|
185140
|
+
* Options for Spot capacity
|
|
185141
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterspotoptions.html}
|
|
185142
|
+
*/
|
|
185143
|
+
export type SageMakerClusterClusterSpotOptions = Record<string, any>;
|
|
184283
185144
|
/**
|
|
184284
185145
|
* Type definition for `AWS::SageMaker::Cluster.DeepHealthCheckType`.
|
|
184285
185146
|
* The type of deep health check(s) to be performed on the instances in the SageMaker HyperPod cluster instance group.
|
|
@@ -193797,6 +194658,14 @@ export type SecretsManagerResourcePolicyAttributes = {
|
|
|
193797
194658
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html}
|
|
193798
194659
|
*/
|
|
193799
194660
|
export type SecretsManagerRotationScheduleProps = {
|
|
194661
|
+
/**
|
|
194662
|
+
* The list of metadata needed to successfully rotate a managed external secret.
|
|
194663
|
+
*/
|
|
194664
|
+
ExternalSecretRotationMetadata?: SecretsManagerRotationScheduleExternalSecretRotationMetadataItem[];
|
|
194665
|
+
/**
|
|
194666
|
+
* The ARN of the IAM role that is used by Secrets Manager to rotate a managed external secret.
|
|
194667
|
+
*/
|
|
194668
|
+
ExternalSecretRotationRoleArn?: string;
|
|
193800
194669
|
/**
|
|
193801
194670
|
* Creates a new Lambda rotation function based on one of the Secrets Manager rotation function templates. To use a rotation function that already exists, specify RotationLambdaARN instead.
|
|
193802
194671
|
*/
|
|
@@ -193828,6 +194697,21 @@ export type SecretsManagerRotationScheduleAttributes = {
|
|
|
193828
194697
|
*/
|
|
193829
194698
|
Id: string;
|
|
193830
194699
|
};
|
|
194700
|
+
/**
|
|
194701
|
+
* Type definition for `AWS::SecretsManager::RotationSchedule.ExternalSecretRotationMetadataItem`.
|
|
194702
|
+
* The metadata needed to successfully rotate a managed external secret. Each metadata item is a key and value pair of strings in a JSON text string.
|
|
194703
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-externalsecretrotationmetadataitem.html}
|
|
194704
|
+
*/
|
|
194705
|
+
export type SecretsManagerRotationScheduleExternalSecretRotationMetadataItem = {
|
|
194706
|
+
/**
|
|
194707
|
+
* The key name of the metadata item. You can specify a value that's 1 to 256 characters in length.
|
|
194708
|
+
*/
|
|
194709
|
+
Key: string;
|
|
194710
|
+
/**
|
|
194711
|
+
* The value for the metadata item. You can specify a value that's 1 to 2048 characters in length.
|
|
194712
|
+
*/
|
|
194713
|
+
Value: string;
|
|
194714
|
+
};
|
|
193831
194715
|
/**
|
|
193832
194716
|
* Type definition for `AWS::SecretsManager::RotationSchedule.HostedRotationLambda`.
|
|
193833
194717
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-hostedrotationlambda.html}
|
|
@@ -193953,6 +194837,7 @@ export type SecretsManagerSecretProps = {
|
|
|
193953
194837
|
+ If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
|
|
193954
194838
|
*/
|
|
193955
194839
|
Tags?: SecretsManagerSecretTag[];
|
|
194840
|
+
Type?: string;
|
|
193956
194841
|
};
|
|
193957
194842
|
/**
|
|
193958
194843
|
* Attribute type definition for `AWS::SecretsManager::Secret`.
|
|
@@ -211177,12 +212062,18 @@ export type WisdomAIAgentAIAgentConfiguration = {
|
|
|
211177
212062
|
AnswerRecommendationAIAgentConfiguration: WisdomAIAgentAnswerRecommendationAIAgentConfiguration;
|
|
211178
212063
|
} | {
|
|
211179
212064
|
SelfServiceAIAgentConfiguration: WisdomAIAgentSelfServiceAIAgentConfiguration;
|
|
212065
|
+
} | {
|
|
212066
|
+
EmailResponseAIAgentConfiguration: WisdomAIAgentEmailResponseAIAgentConfiguration;
|
|
212067
|
+
} | {
|
|
212068
|
+
EmailOverviewAIAgentConfiguration: WisdomAIAgentEmailOverviewAIAgentConfiguration;
|
|
212069
|
+
} | {
|
|
212070
|
+
EmailGenerativeAnswerAIAgentConfiguration: WisdomAIAgentEmailGenerativeAnswerAIAgentConfiguration;
|
|
211180
212071
|
};
|
|
211181
212072
|
/**
|
|
211182
212073
|
* Type definition for `AWS::Wisdom::AIAgent.AIAgentType`.
|
|
211183
212074
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagenttype.html}
|
|
211184
212075
|
*/
|
|
211185
|
-
export type WisdomAIAgentAIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE";
|
|
212076
|
+
export type WisdomAIAgentAIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER";
|
|
211186
212077
|
/**
|
|
211187
212078
|
* Type definition for `AWS::Wisdom::AIAgent.AnswerRecommendationAIAgentConfiguration`.
|
|
211188
212079
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html}
|
|
@@ -211229,6 +212120,58 @@ export type WisdomAIAgentAssociationConfiguration = {
|
|
|
211229
212120
|
export type WisdomAIAgentAssociationConfigurationData = {
|
|
211230
212121
|
KnowledgeBaseAssociationConfigurationData: WisdomAIAgentKnowledgeBaseAssociationConfigurationData;
|
|
211231
212122
|
};
|
|
212123
|
+
/**
|
|
212124
|
+
* Type definition for `AWS::Wisdom::AIAgent.EmailGenerativeAnswerAIAgentConfiguration`.
|
|
212125
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-emailgenerativeansweraiagentconfiguration.html}
|
|
212126
|
+
*/
|
|
212127
|
+
export type WisdomAIAgentEmailGenerativeAnswerAIAgentConfiguration = {
|
|
212128
|
+
AssociationConfigurations?: WisdomAIAgentAssociationConfiguration[];
|
|
212129
|
+
/**
|
|
212130
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
212131
|
+
*/
|
|
212132
|
+
EmailGenerativeAnswerAIPromptId?: string;
|
|
212133
|
+
/**
|
|
212134
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
212135
|
+
*/
|
|
212136
|
+
EmailQueryReformulationAIPromptId?: string;
|
|
212137
|
+
/**
|
|
212138
|
+
* @minLength `1`
|
|
212139
|
+
*/
|
|
212140
|
+
Locale?: string;
|
|
212141
|
+
};
|
|
212142
|
+
/**
|
|
212143
|
+
* Type definition for `AWS::Wisdom::AIAgent.EmailOverviewAIAgentConfiguration`.
|
|
212144
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-emailoverviewaiagentconfiguration.html}
|
|
212145
|
+
*/
|
|
212146
|
+
export type WisdomAIAgentEmailOverviewAIAgentConfiguration = {
|
|
212147
|
+
/**
|
|
212148
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
212149
|
+
*/
|
|
212150
|
+
EmailOverviewAIPromptId?: string;
|
|
212151
|
+
/**
|
|
212152
|
+
* @minLength `1`
|
|
212153
|
+
*/
|
|
212154
|
+
Locale?: string;
|
|
212155
|
+
};
|
|
212156
|
+
/**
|
|
212157
|
+
* Type definition for `AWS::Wisdom::AIAgent.EmailResponseAIAgentConfiguration`.
|
|
212158
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-emailresponseaiagentconfiguration.html}
|
|
212159
|
+
*/
|
|
212160
|
+
export type WisdomAIAgentEmailResponseAIAgentConfiguration = {
|
|
212161
|
+
AssociationConfigurations?: WisdomAIAgentAssociationConfiguration[];
|
|
212162
|
+
/**
|
|
212163
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
212164
|
+
*/
|
|
212165
|
+
EmailQueryReformulationAIPromptId?: string;
|
|
212166
|
+
/**
|
|
212167
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
212168
|
+
*/
|
|
212169
|
+
EmailResponseAIPromptId?: string;
|
|
212170
|
+
/**
|
|
212171
|
+
* @minLength `1`
|
|
212172
|
+
*/
|
|
212173
|
+
Locale?: string;
|
|
212174
|
+
};
|
|
211232
212175
|
/**
|
|
211233
212176
|
* Type definition for `AWS::Wisdom::AIAgent.KnowledgeBaseAssociationConfigurationData`.
|
|
211234
212177
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-knowledgebaseassociationconfigurationdata.html}
|
|
@@ -215555,6 +216498,7 @@ export interface ResourceTypes {
|
|
|
215555
216498
|
"AWS::Cognito::IdentityPoolRoleAttachment": CognitoIdentityPoolRoleAttachmentProps;
|
|
215556
216499
|
"AWS::Cognito::LogDeliveryConfiguration": CognitoLogDeliveryConfigurationProps;
|
|
215557
216500
|
"AWS::Cognito::ManagedLoginBranding": CognitoManagedLoginBrandingProps;
|
|
216501
|
+
"AWS::Cognito::Terms": CognitoTermsProps;
|
|
215558
216502
|
"AWS::Cognito::UserPool": CognitoUserPoolProps;
|
|
215559
216503
|
"AWS::Cognito::UserPoolClient": CognitoUserPoolClientProps;
|
|
215560
216504
|
"AWS::Cognito::UserPoolDomain": CognitoUserPoolDomainProps;
|
|
@@ -215772,6 +216716,8 @@ export interface ResourceTypes {
|
|
|
215772
216716
|
"AWS::EC2::TransitGatewayAttachment": EC2TransitGatewayAttachmentProps;
|
|
215773
216717
|
"AWS::EC2::TransitGatewayConnect": EC2TransitGatewayConnectProps;
|
|
215774
216718
|
"AWS::EC2::TransitGatewayConnectPeer": EC2TransitGatewayConnectPeerProps;
|
|
216719
|
+
"AWS::EC2::TransitGatewayMeteringPolicy": EC2TransitGatewayMeteringPolicyProps;
|
|
216720
|
+
"AWS::EC2::TransitGatewayMeteringPolicyEntry": EC2TransitGatewayMeteringPolicyEntryProps;
|
|
215775
216721
|
"AWS::EC2::TransitGatewayMulticastDomain": EC2TransitGatewayMulticastDomainProps;
|
|
215776
216722
|
"AWS::EC2::TransitGatewayMulticastDomainAssociation": EC2TransitGatewayMulticastDomainAssociationProps;
|
|
215777
216723
|
"AWS::EC2::TransitGatewayMulticastGroupMember": EC2TransitGatewayMulticastGroupMemberProps;
|
|
@@ -215793,6 +216739,7 @@ export interface ResourceTypes {
|
|
|
215793
216739
|
"AWS::EC2::VPCBlockPublicAccessOptions": EC2VPCBlockPublicAccessOptionsProps;
|
|
215794
216740
|
"AWS::EC2::VPCCidrBlock": EC2VPCCidrBlockProps;
|
|
215795
216741
|
"AWS::EC2::VPCDHCPOptionsAssociation": EC2VPCDHCPOptionsAssociationProps;
|
|
216742
|
+
"AWS::EC2::VPCEncryptionControl": EC2VPCEncryptionControlProps;
|
|
215796
216743
|
"AWS::EC2::VPCEndpoint": EC2VPCEndpointProps;
|
|
215797
216744
|
"AWS::EC2::VPCEndpointConnectionNotification": EC2VPCEndpointConnectionNotificationProps;
|
|
215798
216745
|
"AWS::EC2::VPCEndpointService": EC2VPCEndpointServiceProps;
|
|
@@ -215806,14 +216753,17 @@ export interface ResourceTypes {
|
|
|
215806
216753
|
"AWS::EC2::VPNGatewayRoutePropagation": EC2VPNGatewayRoutePropagationProps;
|
|
215807
216754
|
"AWS::ECR::PublicRepository": ECRPublicRepositoryProps;
|
|
215808
216755
|
"AWS::ECR::PullThroughCacheRule": ECRPullThroughCacheRuleProps;
|
|
216756
|
+
"AWS::ECR::PullTimeUpdateExclusion": ECRPullTimeUpdateExclusionProps;
|
|
215809
216757
|
"AWS::ECR::RegistryPolicy": ECRRegistryPolicyProps;
|
|
215810
216758
|
"AWS::ECR::RegistryScanningConfiguration": ECRRegistryScanningConfigurationProps;
|
|
215811
216759
|
"AWS::ECR::ReplicationConfiguration": ECRReplicationConfigurationProps;
|
|
215812
216760
|
"AWS::ECR::Repository": ECRRepositoryProps;
|
|
215813
216761
|
"AWS::ECR::RepositoryCreationTemplate": ECRRepositoryCreationTemplateProps;
|
|
216762
|
+
"AWS::ECR::SigningConfiguration": ECRSigningConfigurationProps;
|
|
215814
216763
|
"AWS::ECS::CapacityProvider": ECSCapacityProviderProps;
|
|
215815
216764
|
"AWS::ECS::Cluster": ECSClusterProps;
|
|
215816
216765
|
"AWS::ECS::ClusterCapacityProviderAssociations": ECSClusterCapacityProviderAssociationsProps;
|
|
216766
|
+
"AWS::ECS::ExpressGatewayService": ECSExpressGatewayServiceProps;
|
|
215817
216767
|
"AWS::ECS::PrimaryTaskSet": ECSPrimaryTaskSetProps;
|
|
215818
216768
|
"AWS::ECS::Service": ECSServiceProps;
|
|
215819
216769
|
"AWS::ECS::TaskDefinition": ECSTaskDefinitionProps;
|
|
@@ -217014,6 +217964,7 @@ export interface AttributeTypes {
|
|
|
217014
217964
|
"AWS::Cognito::IdentityPoolRoleAttachment": CognitoIdentityPoolRoleAttachmentAttributes;
|
|
217015
217965
|
"AWS::Cognito::LogDeliveryConfiguration": CognitoLogDeliveryConfigurationAttributes;
|
|
217016
217966
|
"AWS::Cognito::ManagedLoginBranding": CognitoManagedLoginBrandingAttributes;
|
|
217967
|
+
"AWS::Cognito::Terms": CognitoTermsAttributes;
|
|
217017
217968
|
"AWS::Cognito::UserPool": CognitoUserPoolAttributes;
|
|
217018
217969
|
"AWS::Cognito::UserPoolClient": CognitoUserPoolClientAttributes;
|
|
217019
217970
|
"AWS::Cognito::UserPoolDomain": CognitoUserPoolDomainAttributes;
|
|
@@ -217207,6 +218158,8 @@ export interface AttributeTypes {
|
|
|
217207
218158
|
"AWS::EC2::TransitGatewayAttachment": EC2TransitGatewayAttachmentAttributes;
|
|
217208
218159
|
"AWS::EC2::TransitGatewayConnect": EC2TransitGatewayConnectAttributes;
|
|
217209
218160
|
"AWS::EC2::TransitGatewayConnectPeer": EC2TransitGatewayConnectPeerAttributes;
|
|
218161
|
+
"AWS::EC2::TransitGatewayMeteringPolicy": EC2TransitGatewayMeteringPolicyAttributes;
|
|
218162
|
+
"AWS::EC2::TransitGatewayMeteringPolicyEntry": EC2TransitGatewayMeteringPolicyEntryAttributes;
|
|
217210
218163
|
"AWS::EC2::TransitGatewayMulticastDomain": EC2TransitGatewayMulticastDomainAttributes;
|
|
217211
218164
|
"AWS::EC2::TransitGatewayMulticastDomainAssociation": EC2TransitGatewayMulticastDomainAssociationAttributes;
|
|
217212
218165
|
"AWS::EC2::TransitGatewayMulticastGroupMember": EC2TransitGatewayMulticastGroupMemberAttributes;
|
|
@@ -217223,6 +218176,7 @@ export interface AttributeTypes {
|
|
|
217223
218176
|
"AWS::EC2::VPCBlockPublicAccessExclusion": EC2VPCBlockPublicAccessExclusionAttributes;
|
|
217224
218177
|
"AWS::EC2::VPCBlockPublicAccessOptions": EC2VPCBlockPublicAccessOptionsAttributes;
|
|
217225
218178
|
"AWS::EC2::VPCCidrBlock": EC2VPCCidrBlockAttributes;
|
|
218179
|
+
"AWS::EC2::VPCEncryptionControl": EC2VPCEncryptionControlAttributes;
|
|
217226
218180
|
"AWS::EC2::VPCEndpoint": EC2VPCEndpointAttributes;
|
|
217227
218181
|
"AWS::EC2::VPCEndpointConnectionNotification": EC2VPCEndpointConnectionNotificationAttributes;
|
|
217228
218182
|
"AWS::EC2::VPCEndpointService": EC2VPCEndpointServiceAttributes;
|
|
@@ -217238,7 +218192,9 @@ export interface AttributeTypes {
|
|
|
217238
218192
|
"AWS::ECR::ReplicationConfiguration": ECRReplicationConfigurationAttributes;
|
|
217239
218193
|
"AWS::ECR::Repository": ECRRepositoryAttributes;
|
|
217240
218194
|
"AWS::ECR::RepositoryCreationTemplate": ECRRepositoryCreationTemplateAttributes;
|
|
218195
|
+
"AWS::ECR::SigningConfiguration": ECRSigningConfigurationAttributes;
|
|
217241
218196
|
"AWS::ECS::Cluster": ECSClusterAttributes;
|
|
218197
|
+
"AWS::ECS::ExpressGatewayService": ECSExpressGatewayServiceAttributes;
|
|
217242
218198
|
"AWS::ECS::Service": ECSServiceAttributes;
|
|
217243
218199
|
"AWS::ECS::TaskDefinition": ECSTaskDefinitionAttributes;
|
|
217244
218200
|
"AWS::ECS::TaskSet": ECSTaskSetAttributes;
|
|
@@ -218355,6 +219311,7 @@ export declare const ResourceType: {
|
|
|
218355
219311
|
readonly CognitoIdentityPoolRoleAttachment: "AWS::Cognito::IdentityPoolRoleAttachment";
|
|
218356
219312
|
readonly CognitoLogDeliveryConfiguration: "AWS::Cognito::LogDeliveryConfiguration";
|
|
218357
219313
|
readonly CognitoManagedLoginBranding: "AWS::Cognito::ManagedLoginBranding";
|
|
219314
|
+
readonly CognitoTerms: "AWS::Cognito::Terms";
|
|
218358
219315
|
readonly CognitoUserPool: "AWS::Cognito::UserPool";
|
|
218359
219316
|
readonly CognitoUserPoolClient: "AWS::Cognito::UserPoolClient";
|
|
218360
219317
|
readonly CognitoUserPoolDomain: "AWS::Cognito::UserPoolDomain";
|
|
@@ -218572,6 +219529,8 @@ export declare const ResourceType: {
|
|
|
218572
219529
|
readonly EC2TransitGatewayAttachment: "AWS::EC2::TransitGatewayAttachment";
|
|
218573
219530
|
readonly EC2TransitGatewayConnect: "AWS::EC2::TransitGatewayConnect";
|
|
218574
219531
|
readonly EC2TransitGatewayConnectPeer: "AWS::EC2::TransitGatewayConnectPeer";
|
|
219532
|
+
readonly EC2TransitGatewayMeteringPolicy: "AWS::EC2::TransitGatewayMeteringPolicy";
|
|
219533
|
+
readonly EC2TransitGatewayMeteringPolicyEntry: "AWS::EC2::TransitGatewayMeteringPolicyEntry";
|
|
218575
219534
|
readonly EC2TransitGatewayMulticastDomain: "AWS::EC2::TransitGatewayMulticastDomain";
|
|
218576
219535
|
readonly EC2TransitGatewayMulticastDomainAssociation: "AWS::EC2::TransitGatewayMulticastDomainAssociation";
|
|
218577
219536
|
readonly EC2TransitGatewayMulticastGroupMember: "AWS::EC2::TransitGatewayMulticastGroupMember";
|
|
@@ -218593,6 +219552,7 @@ export declare const ResourceType: {
|
|
|
218593
219552
|
readonly EC2VPCBlockPublicAccessOptions: "AWS::EC2::VPCBlockPublicAccessOptions";
|
|
218594
219553
|
readonly EC2VPCCidrBlock: "AWS::EC2::VPCCidrBlock";
|
|
218595
219554
|
readonly EC2VPCDHCPOptionsAssociation: "AWS::EC2::VPCDHCPOptionsAssociation";
|
|
219555
|
+
readonly EC2VPCEncryptionControl: "AWS::EC2::VPCEncryptionControl";
|
|
218596
219556
|
readonly EC2VPCEndpoint: "AWS::EC2::VPCEndpoint";
|
|
218597
219557
|
readonly EC2VPCEndpointConnectionNotification: "AWS::EC2::VPCEndpointConnectionNotification";
|
|
218598
219558
|
readonly EC2VPCEndpointService: "AWS::EC2::VPCEndpointService";
|
|
@@ -218606,14 +219566,17 @@ export declare const ResourceType: {
|
|
|
218606
219566
|
readonly EC2VPNGatewayRoutePropagation: "AWS::EC2::VPNGatewayRoutePropagation";
|
|
218607
219567
|
readonly ECRPublicRepository: "AWS::ECR::PublicRepository";
|
|
218608
219568
|
readonly ECRPullThroughCacheRule: "AWS::ECR::PullThroughCacheRule";
|
|
219569
|
+
readonly ECRPullTimeUpdateExclusion: "AWS::ECR::PullTimeUpdateExclusion";
|
|
218609
219570
|
readonly ECRRegistryPolicy: "AWS::ECR::RegistryPolicy";
|
|
218610
219571
|
readonly ECRRegistryScanningConfiguration: "AWS::ECR::RegistryScanningConfiguration";
|
|
218611
219572
|
readonly ECRReplicationConfiguration: "AWS::ECR::ReplicationConfiguration";
|
|
218612
219573
|
readonly ECRRepository: "AWS::ECR::Repository";
|
|
218613
219574
|
readonly ECRRepositoryCreationTemplate: "AWS::ECR::RepositoryCreationTemplate";
|
|
219575
|
+
readonly ECRSigningConfiguration: "AWS::ECR::SigningConfiguration";
|
|
218614
219576
|
readonly ECSCapacityProvider: "AWS::ECS::CapacityProvider";
|
|
218615
219577
|
readonly ECSCluster: "AWS::ECS::Cluster";
|
|
218616
219578
|
readonly ECSClusterCapacityProviderAssociations: "AWS::ECS::ClusterCapacityProviderAssociations";
|
|
219579
|
+
readonly ECSExpressGatewayService: "AWS::ECS::ExpressGatewayService";
|
|
218617
219580
|
readonly ECSPrimaryTaskSet: "AWS::ECS::PrimaryTaskSet";
|
|
218618
219581
|
readonly ECSService: "AWS::ECS::Service";
|
|
218619
219582
|
readonly ECSTaskDefinition: "AWS::ECS::TaskDefinition";
|