@awboost/cfntypes 0.100.86 → 0.100.88
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.
@@ -3963,22 +3963,50 @@ export type AppConfigConfigurationProfileValidators = {
|
|
3963
3963
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html}
|
3964
3964
|
*/
|
3965
3965
|
export type AppConfigDeploymentProps = {
|
3966
|
+
/**
|
3967
|
+
* The application ID.
|
3968
|
+
*/
|
3966
3969
|
ApplicationId: string;
|
3970
|
+
/**
|
3971
|
+
* The configuration profile ID.
|
3972
|
+
*/
|
3967
3973
|
ConfigurationProfileId: string;
|
3974
|
+
/**
|
3975
|
+
* The configuration version to deploy. If deploying an AWS AppConfig hosted configuration version, you can specify either the version number or version label. For all other configurations, you must specify the version number.
|
3976
|
+
*/
|
3968
3977
|
ConfigurationVersion: string;
|
3978
|
+
/**
|
3979
|
+
* The deployment strategy ID.
|
3980
|
+
*/
|
3969
3981
|
DeploymentStrategyId: string;
|
3982
|
+
/**
|
3983
|
+
* A description of the deployment.
|
3984
|
+
*/
|
3970
3985
|
Description?: string;
|
3971
3986
|
DynamicExtensionParameters?: AppConfigDeploymentDynamicExtensionParameters[];
|
3987
|
+
/**
|
3988
|
+
* The environment ID.
|
3989
|
+
*/
|
3972
3990
|
EnvironmentId: string;
|
3991
|
+
/**
|
3992
|
+
* The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
|
3993
|
+
* @pattern `^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}|alias/[a-zA-Z0-9/_-]{1,250}|arn:aws[a-zA-Z-]*:kms:[a-z]{2}(-gov|-iso(b?))?-[a-z]+-\d{1}:\d{12}:(key/[0-9a-f-]{36}|alias/[a-zA-Z0-9/_-]{1,250})$`
|
3994
|
+
*/
|
3973
3995
|
KmsKeyIdentifier?: string;
|
3974
|
-
|
3996
|
+
/**
|
3997
|
+
* An array of key-value pairs to apply to this resource.
|
3998
|
+
*/
|
3999
|
+
Tags?: AppConfigDeploymentTag[];
|
3975
4000
|
};
|
3976
4001
|
/**
|
3977
4002
|
* Attribute type definition for `AWS::AppConfig::Deployment`.
|
3978
4003
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#aws-resource-appconfig-deployment-return-values}
|
3979
4004
|
*/
|
3980
4005
|
export type AppConfigDeploymentAttributes = {
|
3981
|
-
|
4006
|
+
/**
|
4007
|
+
* The sequence number of the deployment.
|
4008
|
+
*/
|
4009
|
+
DeploymentNumber: string;
|
3982
4010
|
};
|
3983
4011
|
/**
|
3984
4012
|
* Type definition for `AWS::AppConfig::Deployment.DynamicExtensionParameters`.
|
@@ -3990,11 +4018,18 @@ export type AppConfigDeploymentDynamicExtensionParameters = {
|
|
3990
4018
|
ParameterValue?: string;
|
3991
4019
|
};
|
3992
4020
|
/**
|
3993
|
-
* Type definition for `AWS::AppConfig::Deployment.
|
3994
|
-
*
|
4021
|
+
* Type definition for `AWS::AppConfig::Deployment.Tag`.
|
4022
|
+
* Metadata to assign to the deployment. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
|
4023
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deployment-tag.html}
|
3995
4024
|
*/
|
3996
|
-
export type
|
4025
|
+
export type AppConfigDeploymentTag = {
|
4026
|
+
/**
|
4027
|
+
* The key-value string map. The valid character set is [a-zA-Z1-9+-=._:/]. The tag key can be up to 128 characters and must not start with aws:.
|
4028
|
+
*/
|
3997
4029
|
Key?: string;
|
4030
|
+
/**
|
4031
|
+
* The tag value can be up to 256 characters.
|
4032
|
+
*/
|
3998
4033
|
Value?: string;
|
3999
4034
|
};
|
4000
4035
|
/**
|
@@ -15913,8 +15948,6 @@ export type BackupLogicallyAirGappedBackupVaultProps = {
|
|
15913
15948
|
MaxRetentionDays: number;
|
15914
15949
|
MinRetentionDays: number;
|
15915
15950
|
Notifications?: BackupLogicallyAirGappedBackupVaultNotificationObjectType;
|
15916
|
-
VaultState?: string;
|
15917
|
-
VaultType?: string;
|
15918
15951
|
};
|
15919
15952
|
/**
|
15920
15953
|
* Attribute type definition for `AWS::Backup::LogicallyAirGappedBackupVault`.
|
@@ -15923,6 +15956,8 @@ export type BackupLogicallyAirGappedBackupVaultProps = {
|
|
15923
15956
|
export type BackupLogicallyAirGappedBackupVaultAttributes = {
|
15924
15957
|
BackupVaultArn: string;
|
15925
15958
|
EncryptionKeyArn: string;
|
15959
|
+
VaultState: string;
|
15960
|
+
VaultType: string;
|
15926
15961
|
};
|
15927
15962
|
/**
|
15928
15963
|
* Type definition for `AWS::Backup::LogicallyAirGappedBackupVault.NotificationObjectType`.
|
@@ -20788,7 +20823,7 @@ export type BedrockKnowledgeBaseOpenSearchServerlessConfiguration = {
|
|
20788
20823
|
/**
|
20789
20824
|
* The ARN of the OpenSearch Service vector store.
|
20790
20825
|
* @maxLength `2048`
|
20791
|
-
* @pattern `^arn:aws:aoss:[a-z]{2}(-gov)?-[a-z]+-\d{1}:\d{12}:collection/[a-z0-9-]{3,32}$`
|
20826
|
+
* @pattern `^arn:aws(|-cn|-us-gov|-iso):aoss:[a-z]{2}(-gov)?-[a-z]+-\d{1}:\d{12}:collection/[a-z0-9-]{3,32}$`
|
20792
20827
|
*/
|
20793
20828
|
CollectionArn: string;
|
20794
20829
|
/**
|
@@ -23390,6 +23425,7 @@ export type CleanRoomsCollaborationProps = {
|
|
23390
23425
|
* @pattern `^(?!\s*$)[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t]*$`
|
23391
23426
|
*/
|
23392
23427
|
CreatorDisplayName: string;
|
23428
|
+
CreatorMLMemberAbilities?: CleanRoomsCollaborationMLMemberAbilities;
|
23393
23429
|
CreatorMemberAbilities: CleanRoomsCollaborationMemberAbility[];
|
23394
23430
|
CreatorPaymentConfiguration?: CleanRoomsCollaborationPaymentConfiguration;
|
23395
23431
|
DataEncryptionMetadata?: CleanRoomsCollaborationDataEncryptionMetadata;
|
@@ -23442,6 +23478,11 @@ export type CleanRoomsCollaborationAnalyticsEngine = "CLEAN_ROOMS_SQL" | "SPARK"
|
|
23442
23478
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-collaborationquerylogstatus.html}
|
23443
23479
|
*/
|
23444
23480
|
export type CleanRoomsCollaborationCollaborationQueryLogStatus = "ENABLED" | "DISABLED";
|
23481
|
+
/**
|
23482
|
+
* Type definition for `AWS::CleanRooms::Collaboration.CustomMLMemberAbility`.
|
23483
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-custommlmemberability.html}
|
23484
|
+
*/
|
23485
|
+
export type CleanRoomsCollaborationCustomMLMemberAbility = "CAN_RECEIVE_MODEL_OUTPUT" | "CAN_RECEIVE_INFERENCE_OUTPUT";
|
23445
23486
|
/**
|
23446
23487
|
* Type definition for `AWS::CleanRooms::Collaboration.DataEncryptionMetadata`.
|
23447
23488
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-dataencryptionmetadata.html}
|
@@ -23474,14 +23515,45 @@ export type CleanRoomsCollaborationMemberSpecification = {
|
|
23474
23515
|
* @pattern `^(?!\s*$)[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t]*$`
|
23475
23516
|
*/
|
23476
23517
|
DisplayName: string;
|
23518
|
+
MLMemberAbilities?: CleanRoomsCollaborationMLMemberAbilities;
|
23477
23519
|
MemberAbilities: CleanRoomsCollaborationMemberAbility[];
|
23478
23520
|
PaymentConfiguration?: CleanRoomsCollaborationPaymentConfiguration;
|
23479
23521
|
};
|
23522
|
+
/**
|
23523
|
+
* Type definition for `AWS::CleanRooms::Collaboration.MLMemberAbilities`.
|
23524
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-mlmemberabilities.html}
|
23525
|
+
*/
|
23526
|
+
export type CleanRoomsCollaborationMLMemberAbilities = {
|
23527
|
+
CustomMLMemberAbilities: CleanRoomsCollaborationCustomMLMemberAbility[];
|
23528
|
+
};
|
23529
|
+
/**
|
23530
|
+
* Type definition for `AWS::CleanRooms::Collaboration.MLPaymentConfig`.
|
23531
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-mlpaymentconfig.html}
|
23532
|
+
*/
|
23533
|
+
export type CleanRoomsCollaborationMLPaymentConfig = {
|
23534
|
+
ModelInference?: CleanRoomsCollaborationModelInferencePaymentConfig;
|
23535
|
+
ModelTraining?: CleanRoomsCollaborationModelTrainingPaymentConfig;
|
23536
|
+
};
|
23537
|
+
/**
|
23538
|
+
* Type definition for `AWS::CleanRooms::Collaboration.ModelInferencePaymentConfig`.
|
23539
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-modelinferencepaymentconfig.html}
|
23540
|
+
*/
|
23541
|
+
export type CleanRoomsCollaborationModelInferencePaymentConfig = {
|
23542
|
+
IsResponsible: boolean;
|
23543
|
+
};
|
23544
|
+
/**
|
23545
|
+
* Type definition for `AWS::CleanRooms::Collaboration.ModelTrainingPaymentConfig`.
|
23546
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-modeltrainingpaymentconfig.html}
|
23547
|
+
*/
|
23548
|
+
export type CleanRoomsCollaborationModelTrainingPaymentConfig = {
|
23549
|
+
IsResponsible: boolean;
|
23550
|
+
};
|
23480
23551
|
/**
|
23481
23552
|
* Type definition for `AWS::CleanRooms::Collaboration.PaymentConfiguration`.
|
23482
23553
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-paymentconfiguration.html}
|
23483
23554
|
*/
|
23484
23555
|
export type CleanRoomsCollaborationPaymentConfiguration = {
|
23556
|
+
MachineLearning?: CleanRoomsCollaborationMLPaymentConfig;
|
23485
23557
|
QueryCompute: CleanRoomsCollaborationQueryComputePaymentConfig;
|
23486
23558
|
};
|
23487
23559
|
/**
|
@@ -24273,11 +24345,34 @@ export type CleanRoomsMembershipAttributes = {
|
|
24273
24345
|
*/
|
24274
24346
|
MembershipIdentifier: string;
|
24275
24347
|
};
|
24348
|
+
/**
|
24349
|
+
* Type definition for `AWS::CleanRooms::Membership.MembershipMLPaymentConfig`.
|
24350
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmlpaymentconfig.html}
|
24351
|
+
*/
|
24352
|
+
export type CleanRoomsMembershipMembershipMLPaymentConfig = {
|
24353
|
+
ModelInference?: CleanRoomsMembershipMembershipModelInferencePaymentConfig;
|
24354
|
+
ModelTraining?: CleanRoomsMembershipMembershipModelTrainingPaymentConfig;
|
24355
|
+
};
|
24356
|
+
/**
|
24357
|
+
* Type definition for `AWS::CleanRooms::Membership.MembershipModelInferencePaymentConfig`.
|
24358
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmodelinferencepaymentconfig.html}
|
24359
|
+
*/
|
24360
|
+
export type CleanRoomsMembershipMembershipModelInferencePaymentConfig = {
|
24361
|
+
IsResponsible: boolean;
|
24362
|
+
};
|
24363
|
+
/**
|
24364
|
+
* Type definition for `AWS::CleanRooms::Membership.MembershipModelTrainingPaymentConfig`.
|
24365
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmodeltrainingpaymentconfig.html}
|
24366
|
+
*/
|
24367
|
+
export type CleanRoomsMembershipMembershipModelTrainingPaymentConfig = {
|
24368
|
+
IsResponsible: boolean;
|
24369
|
+
};
|
24276
24370
|
/**
|
24277
24371
|
* Type definition for `AWS::CleanRooms::Membership.MembershipPaymentConfiguration`.
|
24278
24372
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html}
|
24279
24373
|
*/
|
24280
24374
|
export type CleanRoomsMembershipMembershipPaymentConfiguration = {
|
24375
|
+
MachineLearning?: CleanRoomsMembershipMembershipMLPaymentConfig;
|
24281
24376
|
QueryCompute: CleanRoomsMembershipMembershipQueryComputePaymentConfig;
|
24282
24377
|
};
|
24283
24378
|
/**
|
@@ -38204,6 +38299,206 @@ export type CustomerProfilesEventStreamTag = {
|
|
38204
38299
|
*/
|
38205
38300
|
Value: string;
|
38206
38301
|
};
|
38302
|
+
/**
|
38303
|
+
* Resource type definition for `AWS::CustomerProfiles::EventTrigger`.
|
38304
|
+
* An event trigger resource of Amazon Connect Customer Profiles
|
38305
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-eventtrigger.html}
|
38306
|
+
*/
|
38307
|
+
export type CustomerProfilesEventTriggerProps = {
|
38308
|
+
/**
|
38309
|
+
* The description of the event trigger.
|
38310
|
+
* @minLength `1`
|
38311
|
+
* @maxLength `1000`
|
38312
|
+
*/
|
38313
|
+
Description?: string;
|
38314
|
+
/**
|
38315
|
+
* The unique name of the domain.
|
38316
|
+
* @minLength `1`
|
38317
|
+
* @maxLength `64`
|
38318
|
+
* @pattern `^[a-zA-Z0-9_-]+$`
|
38319
|
+
*/
|
38320
|
+
DomainName: string;
|
38321
|
+
/**
|
38322
|
+
* A list of conditions that determine when an event should trigger the destination.
|
38323
|
+
* @minLength `1`
|
38324
|
+
* @maxLength `5`
|
38325
|
+
*/
|
38326
|
+
EventTriggerConditions: CustomerProfilesEventTriggerEventTriggerCondition[];
|
38327
|
+
/**
|
38328
|
+
* Defines limits controlling whether an event triggers the destination, based on ingestion latency and the number of invocations per profile over specific time periods.
|
38329
|
+
*/
|
38330
|
+
EventTriggerLimits?: CustomerProfilesEventTriggerEventTriggerLimits;
|
38331
|
+
/**
|
38332
|
+
* The unique name of the event trigger.
|
38333
|
+
* @minLength `1`
|
38334
|
+
* @maxLength `64`
|
38335
|
+
* @pattern `^[a-zA-Z0-9_-]+$`
|
38336
|
+
*/
|
38337
|
+
EventTriggerName: string;
|
38338
|
+
/**
|
38339
|
+
* The unique name of the object type.
|
38340
|
+
* @minLength `1`
|
38341
|
+
* @maxLength `255`
|
38342
|
+
* @pattern `^[a-zA-Z_][a-zA-Z_0-9-]*$`
|
38343
|
+
*/
|
38344
|
+
ObjectTypeName: string;
|
38345
|
+
/**
|
38346
|
+
* The destination is triggered only for profiles that meet the criteria of a segment definition.
|
38347
|
+
* @minLength `1`
|
38348
|
+
* @maxLength `64`
|
38349
|
+
* @pattern `^[a-zA-Z0-9_-]+$`
|
38350
|
+
*/
|
38351
|
+
SegmentFilter?: string;
|
38352
|
+
/**
|
38353
|
+
* An array of key-value pairs to apply to this resource.
|
38354
|
+
* @minLength `0`
|
38355
|
+
* @maxLength `50`
|
38356
|
+
*/
|
38357
|
+
Tags?: CustomerProfilesEventTriggerTag[];
|
38358
|
+
};
|
38359
|
+
/**
|
38360
|
+
* Attribute type definition for `AWS::CustomerProfiles::EventTrigger`.
|
38361
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-eventtrigger.html#aws-resource-customerprofiles-eventtrigger-return-values}
|
38362
|
+
*/
|
38363
|
+
export type CustomerProfilesEventTriggerAttributes = {
|
38364
|
+
/**
|
38365
|
+
* The timestamp of when the event trigger was created.
|
38366
|
+
*/
|
38367
|
+
CreatedAt: string;
|
38368
|
+
/**
|
38369
|
+
* The timestamp of when the event trigger was most recently updated.
|
38370
|
+
*/
|
38371
|
+
LastUpdatedAt: string;
|
38372
|
+
};
|
38373
|
+
/**
|
38374
|
+
* Type definition for `AWS::CustomerProfiles::EventTrigger.EventTriggerCondition`.
|
38375
|
+
* Specifies the circumstances under which the event should trigger the destination.
|
38376
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventtrigger-eventtriggercondition.html}
|
38377
|
+
*/
|
38378
|
+
export type CustomerProfilesEventTriggerEventTriggerCondition = {
|
38379
|
+
/**
|
38380
|
+
* A list of dimensions to be evaluated for the event.
|
38381
|
+
* @minLength `1`
|
38382
|
+
* @maxLength `10`
|
38383
|
+
*/
|
38384
|
+
EventTriggerDimensions: CustomerProfilesEventTriggerEventTriggerDimension[];
|
38385
|
+
/**
|
38386
|
+
* The operator used to combine multiple dimensions.
|
38387
|
+
*/
|
38388
|
+
LogicalOperator: CustomerProfilesEventTriggerEventTriggerLogicalOperator;
|
38389
|
+
};
|
38390
|
+
/**
|
38391
|
+
* Type definition for `AWS::CustomerProfiles::EventTrigger.EventTriggerDimension`.
|
38392
|
+
* A specific event dimension to be assessed.
|
38393
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventtrigger-eventtriggerdimension.html}
|
38394
|
+
*/
|
38395
|
+
export type CustomerProfilesEventTriggerEventTriggerDimension = {
|
38396
|
+
/**
|
38397
|
+
* A list of object attributes to be evaluated.
|
38398
|
+
* @minLength `1`
|
38399
|
+
* @maxLength `10`
|
38400
|
+
*/
|
38401
|
+
ObjectAttributes: CustomerProfilesEventTriggerObjectAttribute[];
|
38402
|
+
};
|
38403
|
+
/**
|
38404
|
+
* Type definition for `AWS::CustomerProfiles::EventTrigger.EventTriggerLimits`.
|
38405
|
+
* Defines limits controlling whether an event triggers the destination, based on ingestion latency and the number of invocations per profile over specific time periods.
|
38406
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventtrigger-eventtriggerlimits.html}
|
38407
|
+
*/
|
38408
|
+
export type CustomerProfilesEventTriggerEventTriggerLimits = {
|
38409
|
+
/**
|
38410
|
+
* Specifies that an event will only trigger the destination if it is processed within a certain latency period.
|
38411
|
+
*/
|
38412
|
+
EventExpiration?: number;
|
38413
|
+
/**
|
38414
|
+
* A list of time periods during which the limits apply.
|
38415
|
+
* @minLength `1`
|
38416
|
+
* @maxLength `4`
|
38417
|
+
*/
|
38418
|
+
Periods?: CustomerProfilesEventTriggerPeriod[];
|
38419
|
+
};
|
38420
|
+
/**
|
38421
|
+
* Type definition for `AWS::CustomerProfiles::EventTrigger.EventTriggerLogicalOperator`.
|
38422
|
+
* The operator used to combine multiple dimensions.
|
38423
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventtrigger-eventtriggerlogicaloperator.html}
|
38424
|
+
*/
|
38425
|
+
export type CustomerProfilesEventTriggerEventTriggerLogicalOperator = "ANY" | "ALL" | "NONE";
|
38426
|
+
/**
|
38427
|
+
* Type definition for `AWS::CustomerProfiles::EventTrigger.ObjectAttribute`.
|
38428
|
+
* The criteria that a specific object attribute must meet to trigger the destination.
|
38429
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventtrigger-objectattribute.html}
|
38430
|
+
*/
|
38431
|
+
export type CustomerProfilesEventTriggerObjectAttribute = {
|
38432
|
+
/**
|
38433
|
+
* The operator used to compare an attribute against a list of values.
|
38434
|
+
*/
|
38435
|
+
ComparisonOperator: "INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH" | "GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL" | "LESS_THAN_OR_EQUAL" | "EQUAL" | "BEFORE" | "AFTER" | "ON" | "BETWEEN" | "NOT_BETWEEN";
|
38436
|
+
/**
|
38437
|
+
* A field defined within an object type.
|
38438
|
+
* @minLength `1`
|
38439
|
+
* @maxLength `64`
|
38440
|
+
* @pattern `^[a-zA-Z0-9_.-]+$`
|
38441
|
+
*/
|
38442
|
+
FieldName?: string;
|
38443
|
+
/**
|
38444
|
+
* An attribute contained within a source object.
|
38445
|
+
* @minLength `1`
|
38446
|
+
* @maxLength `1000`
|
38447
|
+
*/
|
38448
|
+
Source?: string;
|
38449
|
+
/**
|
38450
|
+
* A list of attribute values used for comparison.
|
38451
|
+
* @minLength `1`
|
38452
|
+
* @maxLength `10`
|
38453
|
+
*/
|
38454
|
+
Values: string[];
|
38455
|
+
};
|
38456
|
+
/**
|
38457
|
+
* Type definition for `AWS::CustomerProfiles::EventTrigger.Period`.
|
38458
|
+
* Defines a limit and the time period during which it is enforced.
|
38459
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventtrigger-period.html}
|
38460
|
+
*/
|
38461
|
+
export type CustomerProfilesEventTriggerPeriod = {
|
38462
|
+
/**
|
38463
|
+
* The maximum allowed number of destination invocations per profile.
|
38464
|
+
* @min `1`
|
38465
|
+
* @max `1000`
|
38466
|
+
*/
|
38467
|
+
MaxInvocationsPerProfile?: number;
|
38468
|
+
/**
|
38469
|
+
* The unit of time.
|
38470
|
+
*/
|
38471
|
+
Unit: "HOURS" | "DAYS" | "WEEKS" | "MONTHS";
|
38472
|
+
/**
|
38473
|
+
* If set to true, there is no limit on the number of destination invocations per profile. The default is false.
|
38474
|
+
*/
|
38475
|
+
Unlimited?: boolean;
|
38476
|
+
/**
|
38477
|
+
* The amount of time of the specified unit.
|
38478
|
+
* @min `1`
|
38479
|
+
* @max `24`
|
38480
|
+
*/
|
38481
|
+
Value: number;
|
38482
|
+
};
|
38483
|
+
/**
|
38484
|
+
* Type definition for `AWS::CustomerProfiles::EventTrigger.Tag`.
|
38485
|
+
* A key-value pair to associate with a resource.
|
38486
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventtrigger-tag.html}
|
38487
|
+
*/
|
38488
|
+
export type CustomerProfilesEventTriggerTag = {
|
38489
|
+
/**
|
38490
|
+
* 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 -.
|
38491
|
+
* @minLength `1`
|
38492
|
+
* @maxLength `128`
|
38493
|
+
*/
|
38494
|
+
Key: string;
|
38495
|
+
/**
|
38496
|
+
* 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 -.
|
38497
|
+
* @minLength `0`
|
38498
|
+
* @maxLength `256`
|
38499
|
+
*/
|
38500
|
+
Value: string;
|
38501
|
+
};
|
38207
38502
|
/**
|
38208
38503
|
* Resource type definition for `AWS::CustomerProfiles::Integration`.
|
38209
38504
|
* The resource schema for creating an Amazon Connect Customer Profiles Integration.
|
@@ -46427,6 +46722,11 @@ export type DynamoDBGlobalTableLocalSecondaryIndex = {
|
|
46427
46722
|
*/
|
46428
46723
|
export type DynamoDBGlobalTablePointInTimeRecoverySpecification = {
|
46429
46724
|
PointInTimeRecoveryEnabled?: boolean;
|
46725
|
+
/**
|
46726
|
+
* @min `1`
|
46727
|
+
* @max `35`
|
46728
|
+
*/
|
46729
|
+
RecoveryPeriodInDays?: number;
|
46430
46730
|
};
|
46431
46731
|
/**
|
46432
46732
|
* Type definition for `AWS::DynamoDB::GlobalTable.Projection`.
|
@@ -57230,6 +57530,9 @@ export type ECSTaskDefinitionProps = {
|
|
57230
57530
|
This option requires Linux platform ``1.4.0`` or later.
|
57231
57531
|
*/
|
57232
57532
|
Cpu?: string;
|
57533
|
+
/**
|
57534
|
+
* Enables fault injection and allows for fault injection requests to be accepted from the task's containers. The default value is ``false``.
|
57535
|
+
*/
|
57233
57536
|
EnableFaultInjection?: boolean;
|
57234
57537
|
/**
|
57235
57538
|
* The ephemeral storage settings to use for tasks run with the task definition.
|
@@ -57990,7 +58293,7 @@ export type ECSTaskDefinitionLogConfiguration = {
|
|
57990
58293
|
When you use the ``awsfirelens`` log router to route logs to an AWS Service or AWS Partner Network destination for log storage and analytics, you can set the ``log-driver-buffer-limit`` option to limit the number of events that are buffered in memory, before being sent to the log router container. It can help to resolve potential log loss issue because high throughput might result in memory running out for the buffer inside of Docker.
|
57991
58294
|
Other options you can specify when using ``awsfirelens`` to route logs depend on the destination. When you export logs to Amazon Data Firehose, you can specify the AWS Region with ``region`` and a name for the log stream with ``delivery_stream``.
|
57992
58295
|
When you export logs to Amazon Kinesis Data Streams, you can specify an AWS Region with ``region`` and a data stream name with ``stream``.
|
57993
|
-
When you export logs to Amazon OpenSearch Service, you can specify options like ``Name``, ``Host`` (OpenSearch Service endpoint without protocol), ``Port``, ``Index``, ``Type``, ``Aws_auth``, ``Aws_region``, ``Suppress_Type_Name``, and ``tls``.
|
58296
|
+
When you export logs to Amazon OpenSearch Service, you can specify options like ``Name``, ``Host`` (OpenSearch Service endpoint without protocol), ``Port``, ``Index``, ``Type``, ``Aws_auth``, ``Aws_region``, ``Suppress_Type_Name``, and ``tls``. For more information, see [Under the hood: FireLens for Amazon ECS Tasks](https://docs.aws.amazon.com/containers/under-the-hood-firelens-for-amazon-ecs-tasks/).
|
57994
58297
|
When you export logs to Amazon S3, you can specify the bucket using the ``bucket`` option. You can also specify ``region``, ``total_file_size``, ``upload_timeout``, and ``use_put_object`` as options.
|
57995
58298
|
This parameter requires version 1.19 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: ``sudo docker version --format '{{.Server.APIVersion}}'``
|
57996
58299
|
*/
|
@@ -58724,7 +59027,13 @@ export type EFSFileSystemAttributes = {
|
|
58724
59027
|
* @maxLength `1`
|
58725
59028
|
*/
|
58726
59029
|
Destinations: {
|
59030
|
+
/**
|
59031
|
+
* Describes the status of the replication configuration. For more information about replication status, see [Viewing replication details](https://docs.aws.amazon.com//efs/latest/ug/awsbackup.html#restoring-backup-efsmonitoring-replication-status.html) in the *Amazon EFS User Guide*.
|
59032
|
+
*/
|
58727
59033
|
Status: string;
|
59034
|
+
/**
|
59035
|
+
* Message that provides details about the ``PAUSED`` or ``ERRROR`` state of the replication destination configuration. For more information about replication status messages, see [Viewing replication details](https://docs.aws.amazon.com//efs/latest/ug/awsbackup.html#restoring-backup-efsmonitoring-replication-status.html) in the *Amazon EFS User Guide*.
|
59036
|
+
*/
|
58728
59037
|
StatusMessage: string;
|
58729
59038
|
}[];
|
58730
59039
|
};
|
@@ -58767,7 +59076,7 @@ export type EFSFileSystemFileSystemProtection = {
|
|
58767
59076
|
* The status of the file system's replication overwrite protection.
|
58768
59077
|
+ ``ENABLED`` – The file system cannot be used as the destination file system in a replication configuration. The file system is writeable. Replication overwrite protection is ``ENABLED`` by default.
|
58769
59078
|
+ ``DISABLED`` – The file system can be used as the destination file system in a replication configuration. The file system is read-only and can only be modified by EFS replication.
|
58770
|
-
+ ``REPLICATING`` – The file system is being used as the destination file system in a replication configuration. The file system is read-only and is
|
59079
|
+
+ ``REPLICATING`` – The file system is being used as the destination file system in a replication configuration. The file system is read-only and is modified only by EFS replication.
|
58771
59080
|
|
58772
59081
|
If the replication configuration is deleted, the file system's replication overwrite protection is re-enabled, the file system becomes writeable.
|
58773
59082
|
*/
|
@@ -58833,6 +59142,9 @@ export type EFSFileSystemReplicationDestination = {
|
|
58833
59142
|
For One Zone file systems, the replication configuration must specify the AWS-Region in which the destination file system is located.
|
58834
59143
|
*/
|
58835
59144
|
Region?: string;
|
59145
|
+
/**
|
59146
|
+
* The Amazon Resource Name (ARN) of the current source file system in the replication configuration.
|
59147
|
+
*/
|
58836
59148
|
RoleArn?: string;
|
58837
59149
|
};
|
58838
59150
|
/**
|
@@ -80275,63 +80587,6 @@ export type IoTTopicRuleDestinationVpcDestinationProperties = {
|
|
80275
80587
|
SubnetIds?: string[];
|
80276
80588
|
VpcId?: string;
|
80277
80589
|
};
|
80278
|
-
/**
|
80279
|
-
* Resource Type definition for AWS::IoT1Click::Device
|
80280
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html}
|
80281
|
-
*/
|
80282
|
-
export type IoT1ClickDeviceProps = {
|
80283
|
-
Enabled: boolean;
|
80284
|
-
};
|
80285
|
-
/**
|
80286
|
-
* Attribute type definition for `AWS::IoT1Click::Device`.
|
80287
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-device.html#aws-resource-iot1click-device-return-values}
|
80288
|
-
*/
|
80289
|
-
export type IoT1ClickDeviceAttributes = {
|
80290
|
-
Arn: string;
|
80291
|
-
DeviceId: string;
|
80292
|
-
};
|
80293
|
-
/**
|
80294
|
-
* Resource Type definition for AWS::IoT1Click::Placement
|
80295
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html}
|
80296
|
-
*/
|
80297
|
-
export type IoT1ClickPlacementProps = {
|
80298
|
-
AssociatedDevices?: Record<string, any>;
|
80299
|
-
Attributes?: Record<string, any>;
|
80300
|
-
PlacementName?: string;
|
80301
|
-
ProjectName: string;
|
80302
|
-
};
|
80303
|
-
/**
|
80304
|
-
* Attribute type definition for `AWS::IoT1Click::Placement`.
|
80305
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-placement.html#aws-resource-iot1click-placement-return-values}
|
80306
|
-
*/
|
80307
|
-
export type IoT1ClickPlacementAttributes = {
|
80308
|
-
Id: string;
|
80309
|
-
};
|
80310
|
-
/**
|
80311
|
-
* Resource Type definition for AWS::IoT1Click::Project
|
80312
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html}
|
80313
|
-
*/
|
80314
|
-
export type IoT1ClickProjectProps = {
|
80315
|
-
Description?: string;
|
80316
|
-
PlacementTemplate: IoT1ClickProjectPlacementTemplate;
|
80317
|
-
ProjectName?: string;
|
80318
|
-
};
|
80319
|
-
/**
|
80320
|
-
* Attribute type definition for `AWS::IoT1Click::Project`.
|
80321
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot1click-project.html#aws-resource-iot1click-project-return-values}
|
80322
|
-
*/
|
80323
|
-
export type IoT1ClickProjectAttributes = {
|
80324
|
-
Arn: string;
|
80325
|
-
Id: string;
|
80326
|
-
};
|
80327
|
-
/**
|
80328
|
-
* Type definition for `AWS::IoT1Click::Project.PlacementTemplate`.
|
80329
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html}
|
80330
|
-
*/
|
80331
|
-
export type IoT1ClickProjectPlacementTemplate = {
|
80332
|
-
DefaultAttributes?: Record<string, any>;
|
80333
|
-
DeviceTemplates?: Record<string, any>;
|
80334
|
-
};
|
80335
80590
|
/**
|
80336
80591
|
* Resource Type definition for AWS::IoTAnalytics::Channel
|
80337
80592
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-channel.html}
|
@@ -95033,6 +95288,10 @@ export type LexBotProps = {
|
|
95033
95288
|
* @pattern `^([0-9a-zA-Z][_-]?)+$`
|
95034
95289
|
*/
|
95035
95290
|
Name: string;
|
95291
|
+
/**
|
95292
|
+
* Parameter used to create a replication of the source bot in the secondary region.
|
95293
|
+
*/
|
95294
|
+
Replication?: LexBotReplication;
|
95036
95295
|
/**
|
95037
95296
|
* The Amazon Resource Name (ARN) of an IAM role that has permission to access the bot.
|
95038
95297
|
* @minLength `32`
|
@@ -96213,6 +96472,19 @@ export type LexBotPromptSpecification = {
|
|
96213
96472
|
*/
|
96214
96473
|
PromptAttemptsSpecification?: Record<string, LexBotPromptAttemptSpecification>;
|
96215
96474
|
};
|
96475
|
+
/**
|
96476
|
+
* Type definition for `AWS::Lex::Bot.Replication`.
|
96477
|
+
* Parameter used to create a replication of the source bot in the secondary region.
|
96478
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-replication.html}
|
96479
|
+
*/
|
96480
|
+
export type LexBotReplication = {
|
96481
|
+
/**
|
96482
|
+
* List of secondary regions for bot replication.
|
96483
|
+
* @minLength `1`
|
96484
|
+
* @maxLength `1`
|
96485
|
+
*/
|
96486
|
+
ReplicaRegions: string[];
|
96487
|
+
};
|
96216
96488
|
/**
|
96217
96489
|
* Type definition for `AWS::Lex::Bot.ResponseSpecification`.
|
96218
96490
|
* A list of message groups that Amazon Lex uses to respond the user input.
|
@@ -118846,7 +119118,7 @@ export type PipesPipeProps = {
|
|
118846
119118
|
/**
|
118847
119119
|
* @minLength `0`
|
118848
119120
|
* @maxLength `1600`
|
118849
|
-
* @pattern `^$|arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-]+):([a-z]{2}((-gov)|(-iso(
|
119121
|
+
* @pattern `^$|arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-]+):([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(\d{12})?:(.+)$`
|
118850
119122
|
*/
|
118851
119123
|
Enrichment?: string;
|
118852
119124
|
EnrichmentParameters?: PipesPipePipeEnrichmentParameters;
|
@@ -118871,7 +119143,7 @@ export type PipesPipeProps = {
|
|
118871
119143
|
/**
|
118872
119144
|
* @minLength `1`
|
118873
119145
|
* @maxLength `1600`
|
118874
|
-
* @pattern `^smk://(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9]):[0-9]{1,5}|arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-]+):([a-z]{2}((-gov)|(-iso(
|
119146
|
+
* @pattern `^smk://(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9]):[0-9]{1,5}|arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-]+):([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(\d{12})?:(.+)$`
|
118875
119147
|
*/
|
118876
119148
|
Source: string;
|
118877
119149
|
SourceParameters?: PipesPipePipeSourceParameters;
|
@@ -118879,7 +119151,7 @@ export type PipesPipeProps = {
|
|
118879
119151
|
/**
|
118880
119152
|
* @minLength `1`
|
118881
119153
|
* @maxLength `1600`
|
118882
|
-
* @pattern `^arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-]+):([a-z]{2}((-gov)|(-iso(
|
119154
|
+
* @pattern `^arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-]+):([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(\d{12})?:(.+)$`
|
118883
119155
|
*/
|
118884
119156
|
Target: string;
|
118885
119157
|
TargetParameters?: PipesPipePipeTargetParameters;
|
@@ -119027,7 +119299,7 @@ export type PipesPipeCloudwatchLogsLogDestination = {
|
|
119027
119299
|
/**
|
119028
119300
|
* @minLength `1`
|
119029
119301
|
* @maxLength `1600`
|
119030
|
-
* @pattern `^(^arn:aws([a-z]|\-)*:logs:([a-z]{2}((-gov)|(-iso(
|
119302
|
+
* @pattern `^(^arn:aws([a-z]|\-)*:logs:([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}):(\d{12}):log-group:.+)$`
|
119031
119303
|
*/
|
119032
119304
|
LogGroupArn?: string;
|
119033
119305
|
};
|
@@ -119039,7 +119311,7 @@ export type PipesPipeDeadLetterConfig = {
|
|
119039
119311
|
/**
|
119040
119312
|
* @minLength `1`
|
119041
119313
|
* @maxLength `1600`
|
119042
|
-
* @pattern `^arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-]+):([a-z]{2}((-gov)|(-iso(
|
119314
|
+
* @pattern `^arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-]+):([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(\d{12})?:(.+)$`
|
119043
119315
|
*/
|
119044
119316
|
Arn?: string;
|
119045
119317
|
};
|
@@ -119148,7 +119420,7 @@ export type PipesPipeEcsTaskOverride = {
|
|
119148
119420
|
/**
|
119149
119421
|
* @minLength `1`
|
119150
119422
|
* @maxLength `1600`
|
119151
|
-
* @pattern `^arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-]+):([a-z]{2}((-gov)|(-iso(
|
119423
|
+
* @pattern `^arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-]+):([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(\d{12})?:(.+)|(\$(\.[\w/_-]+(\[(\d+|\*)\])*)*)$`
|
119152
119424
|
*/
|
119153
119425
|
ExecutionRoleArn?: string;
|
119154
119426
|
InferenceAcceleratorOverrides?: PipesPipeEcsInferenceAcceleratorOverride[];
|
@@ -119156,7 +119428,7 @@ export type PipesPipeEcsTaskOverride = {
|
|
119156
119428
|
/**
|
119157
119429
|
* @minLength `1`
|
119158
119430
|
* @maxLength `1600`
|
119159
|
-
* @pattern `^arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-]+):([a-z]{2}((-gov)|(-iso(
|
119431
|
+
* @pattern `^arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-]+):([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(\d{12})?:(.+)|(\$(\.[\w/_-]+(\[(\d+|\*)\])*)*)$`
|
119160
119432
|
*/
|
119161
119433
|
TaskRoleArn?: string;
|
119162
119434
|
};
|
@@ -119195,7 +119467,7 @@ export type PipesPipeFirehoseLogDestination = {
|
|
119195
119467
|
/**
|
119196
119468
|
* @minLength `1`
|
119197
119469
|
* @maxLength `1600`
|
119198
|
-
* @pattern `^(^arn:aws([a-z]|\-)*:firehose:([a-z]{2}((-gov)|(-iso(
|
119470
|
+
* @pattern `^(^arn:aws([a-z]|\-)*:firehose:([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}):(\d{12}):deliverystream/.+)$`
|
119199
119471
|
*/
|
119200
119472
|
DeliveryStreamArn?: string;
|
119201
119473
|
};
|
@@ -119238,7 +119510,7 @@ export type PipesPipeMQBrokerAccessCredentials = {
|
|
119238
119510
|
* Optional SecretManager ARN which stores the database credentials
|
119239
119511
|
* @minLength `1`
|
119240
119512
|
* @maxLength `1600`
|
119241
|
-
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso(
|
119513
|
+
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}):(\d{12}):secret:.+)$`
|
119242
119514
|
*/
|
119243
119515
|
BasicAuth: string;
|
119244
119516
|
};
|
@@ -119251,7 +119523,7 @@ export type PipesPipeMSKAccessCredentials = {
|
|
119251
119523
|
* Optional SecretManager ARN which stores the database credentials
|
119252
119524
|
* @minLength `1`
|
119253
119525
|
* @maxLength `1600`
|
119254
|
-
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso(
|
119526
|
+
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}):(\d{12}):secret:.+)$`
|
119255
119527
|
*/
|
119256
119528
|
SaslScram512Auth: string;
|
119257
119529
|
} | {
|
@@ -119259,7 +119531,7 @@ export type PipesPipeMSKAccessCredentials = {
|
|
119259
119531
|
* Optional SecretManager ARN which stores the database credentials
|
119260
119532
|
* @minLength `1`
|
119261
119533
|
* @maxLength `1600`
|
119262
|
-
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso(
|
119534
|
+
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}):(\d{12}):secret:.+)$`
|
119263
119535
|
*/
|
119264
119536
|
ClientCertificateTlsAuth: string;
|
119265
119537
|
};
|
@@ -119541,7 +119813,7 @@ export type PipesPipePipeSourceSelfManagedKafkaParameters = {
|
|
119541
119813
|
* Optional SecretManager ARN which stores the database credentials
|
119542
119814
|
* @minLength `1`
|
119543
119815
|
* @maxLength `1600`
|
119544
|
-
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso(
|
119816
|
+
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}):(\d{12}):secret:.+)$`
|
119545
119817
|
*/
|
119546
119818
|
ServerRootCaCertificate?: string;
|
119547
119819
|
StartingPosition?: PipesPipeSelfManagedKafkaStartPosition;
|
@@ -119649,7 +119921,7 @@ export type PipesPipePipeTargetEcsTaskParameters = {
|
|
119649
119921
|
/**
|
119650
119922
|
* @minLength `1`
|
119651
119923
|
* @maxLength `1600`
|
119652
|
-
* @pattern `^arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-]+):([a-z]{2}((-gov)|(-iso(
|
119924
|
+
* @pattern `^arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-]+):([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(\d{12})?:(.+)|(\$(\.[\w/_-]+(\[(\d+|\*)\])*)*)$`
|
119653
119925
|
*/
|
119654
119926
|
TaskDefinitionArn: string;
|
119655
119927
|
};
|
@@ -119763,7 +120035,7 @@ export type PipesPipePipeTargetRedshiftDataParameters = {
|
|
119763
120035
|
* Optional SecretManager ARN which stores the database credentials
|
119764
120036
|
* @minLength `1`
|
119765
120037
|
* @maxLength `1600`
|
119766
|
-
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso(
|
120038
|
+
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}):(\d{12}):secret:.+)|(\$(\.[\w/_-]+(\[(\d+|\*)\])*)*)$`
|
119767
120039
|
*/
|
119768
120040
|
SecretManagerArn?: string;
|
119769
120041
|
/**
|
@@ -119942,7 +120214,7 @@ export type PipesPipeSelfManagedKafkaAccessConfigurationCredentials = {
|
|
119942
120214
|
* Optional SecretManager ARN which stores the database credentials
|
119943
120215
|
* @minLength `1`
|
119944
120216
|
* @maxLength `1600`
|
119945
|
-
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso(
|
120217
|
+
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}):(\d{12}):secret:.+)$`
|
119946
120218
|
*/
|
119947
120219
|
BasicAuth: string;
|
119948
120220
|
} | {
|
@@ -119950,7 +120222,7 @@ export type PipesPipeSelfManagedKafkaAccessConfigurationCredentials = {
|
|
119950
120222
|
* Optional SecretManager ARN which stores the database credentials
|
119951
120223
|
* @minLength `1`
|
119952
120224
|
* @maxLength `1600`
|
119953
|
-
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso(
|
120225
|
+
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}):(\d{12}):secret:.+)$`
|
119954
120226
|
*/
|
119955
120227
|
SaslScram512Auth: string;
|
119956
120228
|
} | {
|
@@ -119958,7 +120230,7 @@ export type PipesPipeSelfManagedKafkaAccessConfigurationCredentials = {
|
|
119958
120230
|
* Optional SecretManager ARN which stores the database credentials
|
119959
120231
|
* @minLength `1`
|
119960
120232
|
* @maxLength `1600`
|
119961
|
-
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso(
|
120233
|
+
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}):(\d{12}):secret:.+)$`
|
119962
120234
|
*/
|
119963
120235
|
SaslScram256Auth: string;
|
119964
120236
|
} | {
|
@@ -119966,7 +120238,7 @@ export type PipesPipeSelfManagedKafkaAccessConfigurationCredentials = {
|
|
119966
120238
|
* Optional SecretManager ARN which stores the database credentials
|
119967
120239
|
* @minLength `1`
|
119968
120240
|
* @maxLength `1600`
|
119969
|
-
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso(
|
120241
|
+
* @pattern `^(^arn:aws([a-z]|\-)*:secretsmanager:([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}):(\d{12}):secret:.+)$`
|
119970
120242
|
*/
|
119971
120243
|
ClientCertificateTlsAuth: string;
|
119972
120244
|
};
|
@@ -150723,6 +150995,11 @@ export type RDSDBClusterProps = {
|
|
150723
150995
|
* Reserved for future use.
|
150724
150996
|
*/
|
150725
150997
|
DBSystemId?: string;
|
150998
|
+
/**
|
150999
|
+
* The mode of Database Insights to enable for the DB cluster.
|
151000
|
+
If you set this value to ``advanced``, you must also set the ``PerformanceInsightsEnabled`` parameter to ``true`` and the ``PerformanceInsightsRetentionPeriod`` parameter to 465.
|
151001
|
+
Valid for Cluster Type: Aurora DB clusters only
|
151002
|
+
*/
|
150726
151003
|
DatabaseInsightsMode?: string;
|
150727
151004
|
/**
|
150728
151005
|
* The name of your database. If you don't provide a name, then Amazon RDS won't create a database in this DB cluster. For naming constraints, see [Naming Constraints](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_Limits.html#RDS_Limits.Constraints) in the *Amazon Aurora User Guide*.
|
@@ -150764,10 +151041,6 @@ export type RDSDBClusterProps = {
|
|
150764
151041
|
/**
|
150765
151042
|
* Specifies whether to enable the HTTP endpoint for the DB cluster. By default, the HTTP endpoint isn't enabled.
|
150766
151043
|
When enabled, the HTTP endpoint provides a connectionless web service API (RDS Data API) for running SQL queries on the DB cluster. You can also query your database from inside the RDS console with the RDS query editor.
|
150767
|
-
RDS Data API is supported with the following DB clusters:
|
150768
|
-
+ Aurora PostgreSQL Serverless v2 and provisioned
|
150769
|
-
+ Aurora PostgreSQL and Aurora MySQL Serverless v1
|
150770
|
-
|
150771
151044
|
For more information, see [Using RDS Data API](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html) in the *Amazon Aurora User Guide*.
|
150772
151045
|
Valid for Cluster Type: Aurora DB clusters only
|
150773
151046
|
*/
|
@@ -155083,6 +155356,11 @@ export type ResilienceHubAppProps = {
|
|
155083
155356
|
* Defines the roles and credentials that AWS Resilience Hub would use while creating the application, importing its resources, and running an assessment.
|
155084
155357
|
*/
|
155085
155358
|
PermissionModel?: ResilienceHubAppPermissionModel;
|
155359
|
+
/**
|
155360
|
+
* Amazon Resource Name (ARN) of the Regulatory Policy.
|
155361
|
+
* @pattern `^arn:(aws|aws-cn|aws-iso|aws-iso-[a-z]{1}|aws-us-gov):[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:([a-z]{2}-((iso[a-z]{0,1}-)|(gov-)){0,1}[a-z]+-[0-9]):[0-9]{12}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}$`
|
155362
|
+
*/
|
155363
|
+
RegulatoryPolicyArn?: string;
|
155086
155364
|
/**
|
155087
155365
|
* Amazon Resource Name (ARN) of the Resiliency Policy.
|
155088
155366
|
* @pattern `^arn:(aws|aws-cn|aws-iso|aws-iso-[a-z]{1}|aws-us-gov):[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:([a-z]{2}-((iso[a-z]{0,1}-)|(gov-)){0,1}[a-z]+-[0-9]):[0-9]{12}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}$`
|
@@ -173567,6 +173845,11 @@ export type SESConfigurationSetTrackingOptions = {
|
|
173567
173845
|
* The domain to use for tracking open and click events.
|
173568
173846
|
*/
|
173569
173847
|
CustomRedirectDomain?: string;
|
173848
|
+
/**
|
173849
|
+
* The https policy to use for tracking open and click events.
|
173850
|
+
* @pattern `REQUIRE|REQUIRE_OPEN_ONLY|OPTIONAL`
|
173851
|
+
*/
|
173852
|
+
HttpsPolicy?: string;
|
173570
173853
|
};
|
173571
173854
|
/**
|
173572
173855
|
* Type definition for `AWS::SES::ConfigurationSet.VdmOptions`.
|
@@ -185230,6 +185513,7 @@ export type WisdomAIAgentAttributes = {
|
|
185230
185513
|
* @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}){0,2}$`
|
185231
185514
|
*/
|
185232
185515
|
AssistantArn: string;
|
185516
|
+
ModifiedTimeSeconds: number;
|
185233
185517
|
};
|
185234
185518
|
/**
|
185235
185519
|
* Type definition for `AWS::Wisdom::AIAgent.AIAgentAssociationConfigurationType`.
|
@@ -185825,6 +186109,7 @@ export type WisdomAIPromptAttributes = {
|
|
185825
186109
|
* @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}){0,2}$`
|
185826
186110
|
*/
|
185827
186111
|
AssistantArn: string;
|
186112
|
+
ModifiedTimeSeconds: number;
|
185828
186113
|
};
|
185829
186114
|
/**
|
185830
186115
|
* Type definition for `AWS::Wisdom::AIPrompt.AIPromptAPIFormat`.
|
@@ -188759,6 +189044,7 @@ export interface ResourceTypes {
|
|
188759
189044
|
"AWS::CustomerProfiles::CalculatedAttributeDefinition": CustomerProfilesCalculatedAttributeDefinitionProps;
|
188760
189045
|
"AWS::CustomerProfiles::Domain": CustomerProfilesDomainProps;
|
188761
189046
|
"AWS::CustomerProfiles::EventStream": CustomerProfilesEventStreamProps;
|
189047
|
+
"AWS::CustomerProfiles::EventTrigger": CustomerProfilesEventTriggerProps;
|
188762
189048
|
"AWS::CustomerProfiles::Integration": CustomerProfilesIntegrationProps;
|
188763
189049
|
"AWS::CustomerProfiles::ObjectType": CustomerProfilesObjectTypeProps;
|
188764
189050
|
"AWS::CustomerProfiles::SegmentDefinition": CustomerProfilesSegmentDefinitionProps;
|
@@ -189157,9 +189443,6 @@ export interface ResourceTypes {
|
|
189157
189443
|
"AWS::IoT::ThingType": IoTThingTypeProps;
|
189158
189444
|
"AWS::IoT::TopicRule": IoTTopicRuleProps;
|
189159
189445
|
"AWS::IoT::TopicRuleDestination": IoTTopicRuleDestinationProps;
|
189160
|
-
"AWS::IoT1Click::Device": IoT1ClickDeviceProps;
|
189161
|
-
"AWS::IoT1Click::Placement": IoT1ClickPlacementProps;
|
189162
|
-
"AWS::IoT1Click::Project": IoT1ClickProjectProps;
|
189163
189446
|
"AWS::IoTAnalytics::Channel": IoTAnalyticsChannelProps;
|
189164
189447
|
"AWS::IoTAnalytics::Dataset": IoTAnalyticsDatasetProps;
|
189165
189448
|
"AWS::IoTAnalytics::Datastore": IoTAnalyticsDatastoreProps;
|
@@ -190090,6 +190373,7 @@ export interface AttributeTypes {
|
|
190090
190373
|
"AWS::CustomerProfiles::CalculatedAttributeDefinition": CustomerProfilesCalculatedAttributeDefinitionAttributes;
|
190091
190374
|
"AWS::CustomerProfiles::Domain": CustomerProfilesDomainAttributes;
|
190092
190375
|
"AWS::CustomerProfiles::EventStream": CustomerProfilesEventStreamAttributes;
|
190376
|
+
"AWS::CustomerProfiles::EventTrigger": CustomerProfilesEventTriggerAttributes;
|
190093
190377
|
"AWS::CustomerProfiles::Integration": CustomerProfilesIntegrationAttributes;
|
190094
190378
|
"AWS::CustomerProfiles::ObjectType": CustomerProfilesObjectTypeAttributes;
|
190095
190379
|
"AWS::CustomerProfiles::SegmentDefinition": CustomerProfilesSegmentDefinitionAttributes;
|
@@ -190446,9 +190730,6 @@ export interface AttributeTypes {
|
|
190446
190730
|
"AWS::IoT::ThingType": IoTThingTypeAttributes;
|
190447
190731
|
"AWS::IoT::TopicRule": IoTTopicRuleAttributes;
|
190448
190732
|
"AWS::IoT::TopicRuleDestination": IoTTopicRuleDestinationAttributes;
|
190449
|
-
"AWS::IoT1Click::Device": IoT1ClickDeviceAttributes;
|
190450
|
-
"AWS::IoT1Click::Placement": IoT1ClickPlacementAttributes;
|
190451
|
-
"AWS::IoT1Click::Project": IoT1ClickProjectAttributes;
|
190452
190733
|
"AWS::IoTAnalytics::Channel": IoTAnalyticsChannelAttributes;
|
190453
190734
|
"AWS::IoTAnalytics::Dataset": IoTAnalyticsDatasetAttributes;
|
190454
190735
|
"AWS::IoTAnalytics::Datastore": IoTAnalyticsDatastoreAttributes;
|
@@ -191349,6 +191630,7 @@ export declare const ResourceType: {
|
|
191349
191630
|
readonly CustomerProfilesCalculatedAttributeDefinition: "AWS::CustomerProfiles::CalculatedAttributeDefinition";
|
191350
191631
|
readonly CustomerProfilesDomain: "AWS::CustomerProfiles::Domain";
|
191351
191632
|
readonly CustomerProfilesEventStream: "AWS::CustomerProfiles::EventStream";
|
191633
|
+
readonly CustomerProfilesEventTrigger: "AWS::CustomerProfiles::EventTrigger";
|
191352
191634
|
readonly CustomerProfilesIntegration: "AWS::CustomerProfiles::Integration";
|
191353
191635
|
readonly CustomerProfilesObjectType: "AWS::CustomerProfiles::ObjectType";
|
191354
191636
|
readonly CustomerProfilesSegmentDefinition: "AWS::CustomerProfiles::SegmentDefinition";
|
@@ -191747,9 +192029,6 @@ export declare const ResourceType: {
|
|
191747
192029
|
readonly IoTThingType: "AWS::IoT::ThingType";
|
191748
192030
|
readonly IoTTopicRule: "AWS::IoT::TopicRule";
|
191749
192031
|
readonly IoTTopicRuleDestination: "AWS::IoT::TopicRuleDestination";
|
191750
|
-
readonly IoT1ClickDevice: "AWS::IoT1Click::Device";
|
191751
|
-
readonly IoT1ClickPlacement: "AWS::IoT1Click::Placement";
|
191752
|
-
readonly IoT1ClickProject: "AWS::IoT1Click::Project";
|
191753
192032
|
readonly IoTAnalyticsChannel: "AWS::IoTAnalytics::Channel";
|
191754
192033
|
readonly IoTAnalyticsDataset: "AWS::IoTAnalytics::Dataset";
|
191755
192034
|
readonly IoTAnalyticsDatastore: "AWS::IoTAnalytics::Datastore";
|