@awboost/cfntypes 0.100.50 → 0.100.52
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.
@@ -13210,6 +13210,7 @@ export type AutoScalingAutoScalingGroupProps = {
|
|
13210
13210
|
*/
|
13211
13211
|
AutoScalingGroupName?: string;
|
13212
13212
|
AvailabilityZoneDistribution?: AutoScalingAutoScalingGroupAvailabilityZoneDistribution;
|
13213
|
+
AvailabilityZoneImpairmentPolicy?: AutoScalingAutoScalingGroupAvailabilityZoneImpairmentPolicy;
|
13213
13214
|
/**
|
13214
13215
|
* A list of Availability Zones where instances in the Auto Scaling group can be created. Used for launching into the default VPC subnet in each Availability Zone when not using the ``VPCZoneIdentifier`` property, or for attaching a network interface when an existing network interface ID is specified in a launch template.
|
13215
13216
|
*/
|
@@ -13334,6 +13335,7 @@ export type AutoScalingAutoScalingGroupProps = {
|
|
13334
13335
|
* The Amazon Resource Name (ARN) of the service-linked role that the Auto Scaling group uses to call other AWS service on your behalf. By default, Amazon EC2 Auto Scaling uses a service-linked role named ``AWSServiceRoleForAutoScaling``, which it creates if it does not exist. For more information, see [Service-linked roles](https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-service-linked-role.html) in the *Amazon EC2 Auto Scaling User Guide*.
|
13335
13336
|
*/
|
13336
13337
|
ServiceLinkedRoleARN?: string;
|
13338
|
+
SkipZonalShiftValidation?: boolean;
|
13337
13339
|
/**
|
13338
13340
|
* One or more tags. You can tag your Auto Scaling group and propagate the tags to the Amazon EC2 instances it launches. Tags are not propagated to Amazon EBS volumes. To add tags to Amazon EBS volumes, specify the tags in a launch template but use caution. If the launch template specifies an instance tag with a key that is also specified for the Auto Scaling group, Amazon EC2 Auto Scaling overrides the value of that instance tag with the value specified by the Auto Scaling group. For more information, see [Tag Auto Scaling groups and instances](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-tagging.html) in the *Amazon EC2 Auto Scaling User Guide*.
|
13339
13341
|
*/
|
@@ -13396,6 +13398,14 @@ export type AutoScalingAutoScalingGroupAcceleratorTotalMemoryMiBRequest = {
|
|
13396
13398
|
export type AutoScalingAutoScalingGroupAvailabilityZoneDistribution = {
|
13397
13399
|
CapacityDistributionStrategy?: "balanced-best-effort" | "balanced-only";
|
13398
13400
|
};
|
13401
|
+
/**
|
13402
|
+
* Type definition for `AWS::AutoScaling::AutoScalingGroup.AvailabilityZoneImpairmentPolicy`.
|
13403
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-availabilityzoneimpairmentpolicy.html}
|
13404
|
+
*/
|
13405
|
+
export type AutoScalingAutoScalingGroupAvailabilityZoneImpairmentPolicy = {
|
13406
|
+
ImpairedZoneHealthCheckBehavior: "IgnoreUnhealthy" | "ReplaceUnhealthy";
|
13407
|
+
ZonalShiftEnabled: boolean;
|
13408
|
+
};
|
13399
13409
|
/**
|
13400
13410
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.BaselineEbsBandwidthMbpsRequest`.
|
13401
13411
|
* ``BaselineEbsBandwidthMbpsRequest`` is a property of the ``InstanceRequirements`` property of the [AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplateoverrides.html) property type that describes the minimum and maximum baseline bandwidth performance for an instance type, in Mbps.
|
@@ -13411,6 +13421,20 @@ export type AutoScalingAutoScalingGroupBaselineEbsBandwidthMbpsRequest = {
|
|
13411
13421
|
*/
|
13412
13422
|
Min?: number;
|
13413
13423
|
};
|
13424
|
+
/**
|
13425
|
+
* Type definition for `AWS::AutoScaling::AutoScalingGroup.BaselinePerformanceFactorsRequest`.
|
13426
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-baselineperformancefactorsrequest.html}
|
13427
|
+
*/
|
13428
|
+
export type AutoScalingAutoScalingGroupBaselinePerformanceFactorsRequest = {
|
13429
|
+
Cpu?: AutoScalingAutoScalingGroupCpuPerformanceFactorRequest;
|
13430
|
+
};
|
13431
|
+
/**
|
13432
|
+
* Type definition for `AWS::AutoScaling::AutoScalingGroup.CpuPerformanceFactorRequest`.
|
13433
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-cpuperformancefactorrequest.html}
|
13434
|
+
*/
|
13435
|
+
export type AutoScalingAutoScalingGroupCpuPerformanceFactorRequest = {
|
13436
|
+
References?: AutoScalingAutoScalingGroupPerformanceFactorReferenceRequest[];
|
13437
|
+
};
|
13414
13438
|
/**
|
13415
13439
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.InstanceMaintenancePolicy`.
|
13416
13440
|
* ``InstanceMaintenancePolicy`` is a property of the [AWS::AutoScaling::AutoScalingGroup](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html) resource.
|
@@ -13504,6 +13528,7 @@ export type AutoScalingAutoScalingGroupInstanceRequirements = {
|
|
13504
13528
|
Default: No minimum or maximum limits
|
13505
13529
|
*/
|
13506
13530
|
BaselineEbsBandwidthMbps?: AutoScalingAutoScalingGroupBaselineEbsBandwidthMbpsRequest;
|
13531
|
+
BaselinePerformanceFactors?: AutoScalingAutoScalingGroupBaselinePerformanceFactorsRequest;
|
13507
13532
|
/**
|
13508
13533
|
* Indicates whether burstable performance instance types are included, excluded, or required. For more information, see [Burstable performance instances](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/burstable-performance-instances.html) in the *Amazon EC2 User Guide for Linux Instances*.
|
13509
13534
|
Default: ``excluded``
|
@@ -13916,6 +13941,13 @@ export type AutoScalingAutoScalingGroupNotificationConfiguration = {
|
|
13916
13941
|
*/
|
13917
13942
|
TopicARN: string | string[];
|
13918
13943
|
};
|
13944
|
+
/**
|
13945
|
+
* Type definition for `AWS::AutoScaling::AutoScalingGroup.PerformanceFactorReferenceRequest`.
|
13946
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-performancefactorreferencerequest.html}
|
13947
|
+
*/
|
13948
|
+
export type AutoScalingAutoScalingGroupPerformanceFactorReferenceRequest = {
|
13949
|
+
InstanceFamily?: string;
|
13950
|
+
};
|
13919
13951
|
/**
|
13920
13952
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.TagProperty`.
|
13921
13953
|
* A structure that specifies a tag for the ``Tags`` property of [AWS::AutoScaling::AutoScalingGroup](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html) resource.
|
@@ -14733,12 +14765,12 @@ export type B2BICapabilityX12Details = {
|
|
14733
14765
|
* Type definition for `AWS::B2BI::Capability.X12TransactionSet`.
|
14734
14766
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-x12transactionset.html}
|
14735
14767
|
*/
|
14736
|
-
export type B2BICapabilityX12TransactionSet = "X12_110" | "X12_180" | "X12_204" | "X12_210" | "X12_211" | "X12_214" | "X12_215" | "X12_259" | "X12_260" | "X12_266" | "X12_269" | "X12_270" | "X12_271" | "X12_274" | "X12_275" | "X12_276" | "X12_277" | "X12_278" | "X12_310" | "X12_315" | "X12_322" | "X12_404" | "X12_410" | "X12_417" | "X12_421" | "X12_426" | "X12_810" | "X12_820" | "X12_824" | "X12_830" | "X12_832" | "X12_834" | "X12_835" | "X12_837" | "X12_844" | "X12_846" | "X12_849" | "X12_850" | "X12_852" | "X12_855" | "X12_856" | "X12_860" | "X12_861" | "X12_864" | "X12_865" | "X12_869" | "X12_870" | "X12_940" | "X12_945" | "X12_990" | "X12_997" | "X12_999" | "X12_270_X279" | "X12_271_X279" | "X12_275_X210" | "X12_275_X211" | "X12_276_X212" | "X12_277_X212" | "X12_277_X214" | "X12_277_X364" | "X12_278_X217" | "X12_820_X218" | "X12_820_X306" | "X12_824_X186" | "X12_834_X220" | "X12_834_X307" | "X12_834_X318" | "X12_835_X221" | "X12_837_X222" | "X12_837_X223" | "X12_837_X224" | "X12_837_X291" | "X12_837_X292" | "X12_837_X298" | "X12_999_X231";
|
14768
|
+
export type B2BICapabilityX12TransactionSet = "X12_100" | "X12_101" | "X12_102" | "X12_103" | "X12_104" | "X12_105" | "X12_106" | "X12_107" | "X12_108" | "X12_109" | "X12_110" | "X12_111" | "X12_112" | "X12_113" | "X12_120" | "X12_121" | "X12_124" | "X12_125" | "X12_126" | "X12_127" | "X12_128" | "X12_129" | "X12_130" | "X12_131" | "X12_132" | "X12_133" | "X12_135" | "X12_138" | "X12_139" | "X12_140" | "X12_141" | "X12_142" | "X12_143" | "X12_144" | "X12_146" | "X12_147" | "X12_148" | "X12_149" | "X12_150" | "X12_151" | "X12_152" | "X12_153" | "X12_154" | "X12_155" | "X12_157" | "X12_158" | "X12_159" | "X12_160" | "X12_161" | "X12_163" | "X12_170" | "X12_175" | "X12_176" | "X12_179" | "X12_180" | "X12_185" | "X12_186" | "X12_187" | "X12_188" | "X12_189" | "X12_190" | "X12_191" | "X12_194" | "X12_195" | "X12_196" | "X12_197" | "X12_198" | "X12_199" | "X12_200" | "X12_201" | "X12_202" | "X12_203" | "X12_204" | "X12_205" | "X12_206" | "X12_210" | "X12_211" | "X12_212" | "X12_213" | "X12_214" | "X12_215" | "X12_216" | "X12_217" | "X12_218" | "X12_219" | "X12_220" | "X12_222" | "X12_223" | "X12_224" | "X12_225" | "X12_227" | "X12_228" | "X12_240" | "X12_242" | "X12_244" | "X12_245" | "X12_248" | "X12_249" | "X12_250" | "X12_251" | "X12_252" | "X12_255" | "X12_256" | "X12_259" | "X12_260" | "X12_261" | "X12_262" | "X12_263" | "X12_264" | "X12_265" | "X12_266" | "X12_267" | "X12_268" | "X12_269" | "X12_270" | "X12_271" | "X12_272" | "X12_273" | "X12_274" | "X12_275" | "X12_276" | "X12_277" | "X12_278" | "X12_280" | "X12_283" | "X12_284" | "X12_285" | "X12_286" | "X12_288" | "X12_290" | "X12_300" | "X12_301" | "X12_303" | "X12_304" | "X12_309" | "X12_310" | "X12_311" | "X12_312" | "X12_313" | "X12_315" | "X12_317" | "X12_319" | "X12_322" | "X12_323" | "X12_324" | "X12_325" | "X12_326" | "X12_350" | "X12_352" | "X12_353" | "X12_354" | "X12_355" | "X12_356" | "X12_357" | "X12_358" | "X12_361" | "X12_362" | "X12_404" | "X12_410" | "X12_412" | "X12_414" | "X12_417" | "X12_418" | "X12_419" | "X12_420" | "X12_421" | "X12_422" | "X12_423" | "X12_424" | "X12_425" | "X12_426" | "X12_429" | "X12_431" | "X12_432" | "X12_433" | "X12_434" | "X12_435" | "X12_436" | "X12_437" | "X12_440" | "X12_451" | "X12_452" | "X12_453" | "X12_455" | "X12_456" | "X12_460" | "X12_463" | "X12_466" | "X12_468" | "X12_470" | "X12_475" | "X12_485" | "X12_486" | "X12_490" | "X12_492" | "X12_494" | "X12_500" | "X12_501" | "X12_503" | "X12_504" | "X12_511" | "X12_517" | "X12_521" | "X12_527" | "X12_536" | "X12_540" | "X12_561" | "X12_567" | "X12_568" | "X12_601" | "X12_602" | "X12_620" | "X12_625" | "X12_650" | "X12_715" | "X12_753" | "X12_754" | "X12_805" | "X12_806" | "X12_810" | "X12_811" | "X12_812" | "X12_813" | "X12_814" | "X12_815" | "X12_816" | "X12_818" | "X12_819" | "X12_820" | "X12_821" | "X12_822" | "X12_823" | "X12_824" | "X12_826" | "X12_827" | "X12_828" | "X12_829" | "X12_830" | "X12_831" | "X12_832" | "X12_833" | "X12_834" | "X12_835" | "X12_836" | "X12_837" | "X12_838" | "X12_839" | "X12_840" | "X12_841" | "X12_842" | "X12_843" | "X12_844" | "X12_845" | "X12_846" | "X12_847" | "X12_848" | "X12_849" | "X12_850" | "X12_851" | "X12_852" | "X12_853" | "X12_854" | "X12_855" | "X12_856" | "X12_857" | "X12_858" | "X12_859" | "X12_860" | "X12_861" | "X12_862" | "X12_863" | "X12_864" | "X12_865" | "X12_866" | "X12_867" | "X12_868" | "X12_869" | "X12_870" | "X12_871" | "X12_872" | "X12_873" | "X12_874" | "X12_875" | "X12_876" | "X12_877" | "X12_878" | "X12_879" | "X12_880" | "X12_881" | "X12_882" | "X12_883" | "X12_884" | "X12_885" | "X12_886" | "X12_887" | "X12_888" | "X12_889" | "X12_891" | "X12_893" | "X12_894" | "X12_895" | "X12_896" | "X12_920" | "X12_924" | "X12_925" | "X12_926" | "X12_928" | "X12_940" | "X12_943" | "X12_944" | "X12_945" | "X12_947" | "X12_980" | "X12_990" | "X12_993" | "X12_996" | "X12_997" | "X12_998" | "X12_999" | "X12_270_X279" | "X12_271_X279" | "X12_275_X210" | "X12_275_X211" | "X12_276_X212" | "X12_277_X212" | "X12_277_X214" | "X12_277_X364" | "X12_278_X217" | "X12_820_X218" | "X12_820_X306" | "X12_824_X186" | "X12_834_X220" | "X12_834_X307" | "X12_834_X318" | "X12_835_X221" | "X12_837_X222" | "X12_837_X223" | "X12_837_X224" | "X12_837_X291" | "X12_837_X292" | "X12_837_X298" | "X12_999_X231";
|
14737
14769
|
/**
|
14738
14770
|
* Type definition for `AWS::B2BI::Capability.X12Version`.
|
14739
14771
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-x12version.html}
|
14740
14772
|
*/
|
14741
|
-
export type B2BICapabilityX12Version = "VERSION_4010" | "VERSION_4030" | "VERSION_5010" | "VERSION_5010_HIPAA";
|
14773
|
+
export type B2BICapabilityX12Version = "VERSION_4010" | "VERSION_4030" | "VERSION_4050" | "VERSION_4060" | "VERSION_5010" | "VERSION_5010_HIPAA";
|
14742
14774
|
/**
|
14743
14775
|
* Definition of AWS::B2BI::Partnership Resource Type
|
14744
14776
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html}
|
@@ -15199,12 +15231,12 @@ export type B2BITransformerX12Details = {
|
|
15199
15231
|
* Type definition for `AWS::B2BI::Transformer.X12TransactionSet`.
|
15200
15232
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12transactionset.html}
|
15201
15233
|
*/
|
15202
|
-
export type B2BITransformerX12TransactionSet = "X12_110" | "X12_180" | "X12_204" | "X12_210" | "X12_211" | "X12_214" | "X12_215" | "X12_259" | "X12_260" | "X12_266" | "X12_269" | "X12_270" | "X12_271" | "X12_274" | "X12_275" | "X12_276" | "X12_277" | "X12_278" | "X12_310" | "X12_315" | "X12_322" | "X12_404" | "X12_410" | "X12_417" | "X12_421" | "X12_426" | "X12_810" | "X12_820" | "X12_824" | "X12_830" | "X12_832" | "X12_834" | "X12_835" | "X12_837" | "X12_844" | "X12_846" | "X12_849" | "X12_850" | "X12_852" | "X12_855" | "X12_856" | "X12_860" | "X12_861" | "X12_864" | "X12_865" | "X12_869" | "X12_870" | "X12_940" | "X12_945" | "X12_990" | "X12_997" | "X12_999" | "X12_270_X279" | "X12_271_X279" | "X12_275_X210" | "X12_275_X211" | "X12_276_X212" | "X12_277_X212" | "X12_277_X214" | "X12_277_X364" | "X12_278_X217" | "X12_820_X218" | "X12_820_X306" | "X12_824_X186" | "X12_834_X220" | "X12_834_X307" | "X12_834_X318" | "X12_835_X221" | "X12_837_X222" | "X12_837_X223" | "X12_837_X224" | "X12_837_X291" | "X12_837_X292" | "X12_837_X298" | "X12_999_X231";
|
15234
|
+
export type B2BITransformerX12TransactionSet = "X12_100" | "X12_101" | "X12_102" | "X12_103" | "X12_104" | "X12_105" | "X12_106" | "X12_107" | "X12_108" | "X12_109" | "X12_110" | "X12_111" | "X12_112" | "X12_113" | "X12_120" | "X12_121" | "X12_124" | "X12_125" | "X12_126" | "X12_127" | "X12_128" | "X12_129" | "X12_130" | "X12_131" | "X12_132" | "X12_133" | "X12_135" | "X12_138" | "X12_139" | "X12_140" | "X12_141" | "X12_142" | "X12_143" | "X12_144" | "X12_146" | "X12_147" | "X12_148" | "X12_149" | "X12_150" | "X12_151" | "X12_152" | "X12_153" | "X12_154" | "X12_155" | "X12_157" | "X12_158" | "X12_159" | "X12_160" | "X12_161" | "X12_163" | "X12_170" | "X12_175" | "X12_176" | "X12_179" | "X12_180" | "X12_185" | "X12_186" | "X12_187" | "X12_188" | "X12_189" | "X12_190" | "X12_191" | "X12_194" | "X12_195" | "X12_196" | "X12_197" | "X12_198" | "X12_199" | "X12_200" | "X12_201" | "X12_202" | "X12_203" | "X12_204" | "X12_205" | "X12_206" | "X12_210" | "X12_211" | "X12_212" | "X12_213" | "X12_214" | "X12_215" | "X12_216" | "X12_217" | "X12_218" | "X12_219" | "X12_220" | "X12_222" | "X12_223" | "X12_224" | "X12_225" | "X12_227" | "X12_228" | "X12_240" | "X12_242" | "X12_244" | "X12_245" | "X12_248" | "X12_249" | "X12_250" | "X12_251" | "X12_252" | "X12_255" | "X12_256" | "X12_259" | "X12_260" | "X12_261" | "X12_262" | "X12_263" | "X12_264" | "X12_265" | "X12_266" | "X12_267" | "X12_268" | "X12_269" | "X12_270" | "X12_271" | "X12_272" | "X12_273" | "X12_274" | "X12_275" | "X12_276" | "X12_277" | "X12_278" | "X12_280" | "X12_283" | "X12_284" | "X12_285" | "X12_286" | "X12_288" | "X12_290" | "X12_300" | "X12_301" | "X12_303" | "X12_304" | "X12_309" | "X12_310" | "X12_311" | "X12_312" | "X12_313" | "X12_315" | "X12_317" | "X12_319" | "X12_322" | "X12_323" | "X12_324" | "X12_325" | "X12_326" | "X12_350" | "X12_352" | "X12_353" | "X12_354" | "X12_355" | "X12_356" | "X12_357" | "X12_358" | "X12_361" | "X12_362" | "X12_404" | "X12_410" | "X12_412" | "X12_414" | "X12_417" | "X12_418" | "X12_419" | "X12_420" | "X12_421" | "X12_422" | "X12_423" | "X12_424" | "X12_425" | "X12_426" | "X12_429" | "X12_431" | "X12_432" | "X12_433" | "X12_434" | "X12_435" | "X12_436" | "X12_437" | "X12_440" | "X12_451" | "X12_452" | "X12_453" | "X12_455" | "X12_456" | "X12_460" | "X12_463" | "X12_466" | "X12_468" | "X12_470" | "X12_475" | "X12_485" | "X12_486" | "X12_490" | "X12_492" | "X12_494" | "X12_500" | "X12_501" | "X12_503" | "X12_504" | "X12_511" | "X12_517" | "X12_521" | "X12_527" | "X12_536" | "X12_540" | "X12_561" | "X12_567" | "X12_568" | "X12_601" | "X12_602" | "X12_620" | "X12_625" | "X12_650" | "X12_715" | "X12_753" | "X12_754" | "X12_805" | "X12_806" | "X12_810" | "X12_811" | "X12_812" | "X12_813" | "X12_814" | "X12_815" | "X12_816" | "X12_818" | "X12_819" | "X12_820" | "X12_821" | "X12_822" | "X12_823" | "X12_824" | "X12_826" | "X12_827" | "X12_828" | "X12_829" | "X12_830" | "X12_831" | "X12_832" | "X12_833" | "X12_834" | "X12_835" | "X12_836" | "X12_837" | "X12_838" | "X12_839" | "X12_840" | "X12_841" | "X12_842" | "X12_843" | "X12_844" | "X12_845" | "X12_846" | "X12_847" | "X12_848" | "X12_849" | "X12_850" | "X12_851" | "X12_852" | "X12_853" | "X12_854" | "X12_855" | "X12_856" | "X12_857" | "X12_858" | "X12_859" | "X12_860" | "X12_861" | "X12_862" | "X12_863" | "X12_864" | "X12_865" | "X12_866" | "X12_867" | "X12_868" | "X12_869" | "X12_870" | "X12_871" | "X12_872" | "X12_873" | "X12_874" | "X12_875" | "X12_876" | "X12_877" | "X12_878" | "X12_879" | "X12_880" | "X12_881" | "X12_882" | "X12_883" | "X12_884" | "X12_885" | "X12_886" | "X12_887" | "X12_888" | "X12_889" | "X12_891" | "X12_893" | "X12_894" | "X12_895" | "X12_896" | "X12_920" | "X12_924" | "X12_925" | "X12_926" | "X12_928" | "X12_940" | "X12_943" | "X12_944" | "X12_945" | "X12_947" | "X12_980" | "X12_990" | "X12_993" | "X12_996" | "X12_997" | "X12_998" | "X12_999" | "X12_270_X279" | "X12_271_X279" | "X12_275_X210" | "X12_275_X211" | "X12_276_X212" | "X12_277_X212" | "X12_277_X214" | "X12_277_X364" | "X12_278_X217" | "X12_820_X218" | "X12_820_X306" | "X12_824_X186" | "X12_834_X220" | "X12_834_X307" | "X12_834_X318" | "X12_835_X221" | "X12_837_X222" | "X12_837_X223" | "X12_837_X224" | "X12_837_X291" | "X12_837_X292" | "X12_837_X298" | "X12_999_X231";
|
15203
15235
|
/**
|
15204
15236
|
* Type definition for `AWS::B2BI::Transformer.X12Version`.
|
15205
15237
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12version.html}
|
15206
15238
|
*/
|
15207
|
-
export type B2BITransformerX12Version = "VERSION_4010" | "VERSION_4030" | "VERSION_5010" | "VERSION_5010_HIPAA";
|
15239
|
+
export type B2BITransformerX12Version = "VERSION_4010" | "VERSION_4030" | "VERSION_4050" | "VERSION_4060" | "VERSION_5010" | "VERSION_5010_HIPAA";
|
15208
15240
|
/**
|
15209
15241
|
* Resource Type definition for AWS::Backup::BackupPlan
|
15210
15242
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-backupplan.html}
|
@@ -34661,6 +34693,554 @@ export type ConnectCampaignsCampaignTag = {
|
|
34661
34693
|
*/
|
34662
34694
|
Value: string;
|
34663
34695
|
};
|
34696
|
+
/**
|
34697
|
+
* Definition of AWS::ConnectCampaignsV2::Campaign Resource Type
|
34698
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html}
|
34699
|
+
*/
|
34700
|
+
export type ConnectCampaignsV2CampaignProps = {
|
34701
|
+
/**
|
34702
|
+
* The possible types of channel subtype config parameters
|
34703
|
+
*/
|
34704
|
+
ChannelSubtypeConfig: ConnectCampaignsV2CampaignChannelSubtypeConfig;
|
34705
|
+
/**
|
34706
|
+
* Communication limits config
|
34707
|
+
*/
|
34708
|
+
CommunicationLimitsOverride?: ConnectCampaignsV2CampaignCommunicationLimitsConfig;
|
34709
|
+
/**
|
34710
|
+
* Campaign communication time config
|
34711
|
+
*/
|
34712
|
+
CommunicationTimeConfig?: ConnectCampaignsV2CampaignCommunicationTimeConfig;
|
34713
|
+
/**
|
34714
|
+
* Arn
|
34715
|
+
* @minLength `20`
|
34716
|
+
* @maxLength `500`
|
34717
|
+
* @pattern `^arn:.*$`
|
34718
|
+
*/
|
34719
|
+
ConnectCampaignFlowArn?: string;
|
34720
|
+
/**
|
34721
|
+
* Amazon Connect Instance Id
|
34722
|
+
* @minLength `0`
|
34723
|
+
* @maxLength `256`
|
34724
|
+
* @pattern `^[a-zA-Z0-9_\-.]*$`
|
34725
|
+
*/
|
34726
|
+
ConnectInstanceId: string;
|
34727
|
+
/**
|
34728
|
+
* Campaign name
|
34729
|
+
* @minLength `1`
|
34730
|
+
* @maxLength `127`
|
34731
|
+
*/
|
34732
|
+
Name: string;
|
34733
|
+
/**
|
34734
|
+
* Campaign schedule
|
34735
|
+
*/
|
34736
|
+
Schedule?: ConnectCampaignsV2CampaignSchedule;
|
34737
|
+
/**
|
34738
|
+
* The possible types of channel config parameters
|
34739
|
+
*/
|
34740
|
+
Source?: ConnectCampaignsV2CampaignSource;
|
34741
|
+
/**
|
34742
|
+
* One or more tags.
|
34743
|
+
* @maxLength `50`
|
34744
|
+
*/
|
34745
|
+
Tags?: ConnectCampaignsV2CampaignTag[];
|
34746
|
+
};
|
34747
|
+
/**
|
34748
|
+
* Attribute type definition for `AWS::ConnectCampaignsV2::Campaign`.
|
34749
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html#aws-resource-connectcampaignsv2-campaign-return-values}
|
34750
|
+
*/
|
34751
|
+
export type ConnectCampaignsV2CampaignAttributes = {
|
34752
|
+
/**
|
34753
|
+
* Amazon Connect Campaign Arn
|
34754
|
+
* @minLength `0`
|
34755
|
+
* @maxLength `256`
|
34756
|
+
* @pattern `^arn:aws[-a-z0-9]*:connect-campaigns:[-a-z0-9]*:[0-9]{12}:campaign/[-a-zA-Z0-9]*$`
|
34757
|
+
*/
|
34758
|
+
Arn: string;
|
34759
|
+
};
|
34760
|
+
/**
|
34761
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.AgentlessConfig`.
|
34762
|
+
* Agentless config
|
34763
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-agentlessconfig.html}
|
34764
|
+
*/
|
34765
|
+
export type ConnectCampaignsV2CampaignAgentlessConfig = Record<string, any>;
|
34766
|
+
/**
|
34767
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.AnswerMachineDetectionConfig`.
|
34768
|
+
* The configuration used for answering machine detection during outbound calls
|
34769
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-answermachinedetectionconfig.html}
|
34770
|
+
*/
|
34771
|
+
export type ConnectCampaignsV2CampaignAnswerMachineDetectionConfig = {
|
34772
|
+
/**
|
34773
|
+
* Enables detection of prompts (e.g., beep after after a voicemail greeting)
|
34774
|
+
*/
|
34775
|
+
AwaitAnswerMachinePrompt?: boolean;
|
34776
|
+
/**
|
34777
|
+
* Flag to decided whether outbound calls should have answering machine detection enabled or not
|
34778
|
+
*/
|
34779
|
+
EnableAnswerMachineDetection: boolean;
|
34780
|
+
};
|
34781
|
+
/**
|
34782
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.ChannelSubtypeConfig`.
|
34783
|
+
* The possible types of channel subtype config parameters
|
34784
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-channelsubtypeconfig.html}
|
34785
|
+
*/
|
34786
|
+
export type ConnectCampaignsV2CampaignChannelSubtypeConfig = {
|
34787
|
+
/**
|
34788
|
+
* Email Channel Subtype config
|
34789
|
+
*/
|
34790
|
+
Email?: ConnectCampaignsV2CampaignEmailChannelSubtypeConfig;
|
34791
|
+
/**
|
34792
|
+
* SMS Channel Subtype config
|
34793
|
+
*/
|
34794
|
+
Sms?: ConnectCampaignsV2CampaignSmsChannelSubtypeConfig;
|
34795
|
+
/**
|
34796
|
+
* Telephony Channel Subtype config
|
34797
|
+
*/
|
34798
|
+
Telephony?: ConnectCampaignsV2CampaignTelephonyChannelSubtypeConfig;
|
34799
|
+
};
|
34800
|
+
/**
|
34801
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.CommunicationLimit`.
|
34802
|
+
* Communication Limit
|
34803
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimit.html}
|
34804
|
+
*/
|
34805
|
+
export type ConnectCampaignsV2CampaignCommunicationLimit = {
|
34806
|
+
/**
|
34807
|
+
* @min `1`
|
34808
|
+
*/
|
34809
|
+
Frequency: number;
|
34810
|
+
/**
|
34811
|
+
* @min `1`
|
34812
|
+
*/
|
34813
|
+
MaxCountPerRecipient: number;
|
34814
|
+
/**
|
34815
|
+
* The communication limit time unit
|
34816
|
+
*/
|
34817
|
+
Unit: ConnectCampaignsV2CampaignCommunicationLimitTimeUnit;
|
34818
|
+
};
|
34819
|
+
/**
|
34820
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.CommunicationLimits`.
|
34821
|
+
* Communication limits
|
34822
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimits.html}
|
34823
|
+
*/
|
34824
|
+
export type ConnectCampaignsV2CampaignCommunicationLimits = {
|
34825
|
+
/**
|
34826
|
+
* List of communication limit
|
34827
|
+
*/
|
34828
|
+
CommunicationLimitList?: ConnectCampaignsV2CampaignCommunicationLimit[];
|
34829
|
+
};
|
34830
|
+
/**
|
34831
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.CommunicationLimitsConfig`.
|
34832
|
+
* Communication limits config
|
34833
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimitsconfig.html}
|
34834
|
+
*/
|
34835
|
+
export type ConnectCampaignsV2CampaignCommunicationLimitsConfig = {
|
34836
|
+
/**
|
34837
|
+
* Communication limits
|
34838
|
+
*/
|
34839
|
+
AllChannelsSubtypes?: ConnectCampaignsV2CampaignCommunicationLimits;
|
34840
|
+
};
|
34841
|
+
/**
|
34842
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.CommunicationLimitTimeUnit`.
|
34843
|
+
* The communication limit time unit
|
34844
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimittimeunit.html}
|
34845
|
+
*/
|
34846
|
+
export type ConnectCampaignsV2CampaignCommunicationLimitTimeUnit = "DAY";
|
34847
|
+
/**
|
34848
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.CommunicationTimeConfig`.
|
34849
|
+
* Campaign communication time config
|
34850
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationtimeconfig.html}
|
34851
|
+
*/
|
34852
|
+
export type ConnectCampaignsV2CampaignCommunicationTimeConfig = {
|
34853
|
+
/**
|
34854
|
+
* Time window config
|
34855
|
+
*/
|
34856
|
+
Email?: ConnectCampaignsV2CampaignTimeWindow;
|
34857
|
+
/**
|
34858
|
+
* Local time zone config
|
34859
|
+
*/
|
34860
|
+
LocalTimeZoneConfig: ConnectCampaignsV2CampaignLocalTimeZoneConfig;
|
34861
|
+
/**
|
34862
|
+
* Time window config
|
34863
|
+
*/
|
34864
|
+
Sms?: ConnectCampaignsV2CampaignTimeWindow;
|
34865
|
+
/**
|
34866
|
+
* Time window config
|
34867
|
+
*/
|
34868
|
+
Telephony?: ConnectCampaignsV2CampaignTimeWindow;
|
34869
|
+
};
|
34870
|
+
/**
|
34871
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.DailyHour`.
|
34872
|
+
* Daily Hour
|
34873
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-dailyhour.html}
|
34874
|
+
*/
|
34875
|
+
export type ConnectCampaignsV2CampaignDailyHour = {
|
34876
|
+
/**
|
34877
|
+
* Day of week
|
34878
|
+
*/
|
34879
|
+
Key?: ConnectCampaignsV2CampaignDayOfWeek;
|
34880
|
+
/**
|
34881
|
+
* List of time range
|
34882
|
+
*/
|
34883
|
+
Value?: ConnectCampaignsV2CampaignTimeRange[];
|
34884
|
+
};
|
34885
|
+
/**
|
34886
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.DayOfWeek`.
|
34887
|
+
* Day of week
|
34888
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-dayofweek.html}
|
34889
|
+
*/
|
34890
|
+
export type ConnectCampaignsV2CampaignDayOfWeek = "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY";
|
34891
|
+
/**
|
34892
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.EmailChannelSubtypeConfig`.
|
34893
|
+
* Email Channel Subtype config
|
34894
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-emailchannelsubtypeconfig.html}
|
34895
|
+
*/
|
34896
|
+
export type ConnectCampaignsV2CampaignEmailChannelSubtypeConfig = {
|
34897
|
+
/**
|
34898
|
+
* Allocates outbound capacity for the specific channel of this campaign between multiple active campaigns
|
34899
|
+
* @min `0.01`
|
34900
|
+
* @max `1`
|
34901
|
+
*/
|
34902
|
+
Capacity?: number;
|
34903
|
+
/**
|
34904
|
+
* Default SMS outbound config
|
34905
|
+
*/
|
34906
|
+
DefaultOutboundConfig: ConnectCampaignsV2CampaignEmailOutboundConfig;
|
34907
|
+
/**
|
34908
|
+
* Email Outbound Mode
|
34909
|
+
*/
|
34910
|
+
OutboundMode: ConnectCampaignsV2CampaignEmailOutboundMode;
|
34911
|
+
};
|
34912
|
+
/**
|
34913
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.EmailOutboundConfig`.
|
34914
|
+
* Default SMS outbound config
|
34915
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-emailoutboundconfig.html}
|
34916
|
+
*/
|
34917
|
+
export type ConnectCampaignsV2CampaignEmailOutboundConfig = {
|
34918
|
+
/**
|
34919
|
+
* Email address used for Email messages
|
34920
|
+
* @minLength `1`
|
34921
|
+
* @maxLength `255`
|
34922
|
+
* @pattern `^[\w-\.\+]+@([\w-]+\.)+[\w-]{2,4}$`
|
34923
|
+
*/
|
34924
|
+
ConnectSourceEmailAddress: string;
|
34925
|
+
/**
|
34926
|
+
* The name of the source email address display name
|
34927
|
+
* @minLength `1`
|
34928
|
+
* @maxLength `127`
|
34929
|
+
*/
|
34930
|
+
SourceEmailAddressDisplayName?: string;
|
34931
|
+
/**
|
34932
|
+
* Arn
|
34933
|
+
* @minLength `20`
|
34934
|
+
* @maxLength `500`
|
34935
|
+
* @pattern `^arn:.*$`
|
34936
|
+
*/
|
34937
|
+
WisdomTemplateArn: string;
|
34938
|
+
};
|
34939
|
+
/**
|
34940
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.EmailOutboundMode`.
|
34941
|
+
* Email Outbound Mode
|
34942
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-emailoutboundmode.html}
|
34943
|
+
*/
|
34944
|
+
export type ConnectCampaignsV2CampaignEmailOutboundMode = {
|
34945
|
+
/**
|
34946
|
+
* Agentless config
|
34947
|
+
*/
|
34948
|
+
AgentlessConfig?: ConnectCampaignsV2CampaignAgentlessConfig;
|
34949
|
+
};
|
34950
|
+
/**
|
34951
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.LocalTimeZoneConfig`.
|
34952
|
+
* Local time zone config
|
34953
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-localtimezoneconfig.html}
|
34954
|
+
*/
|
34955
|
+
export type ConnectCampaignsV2CampaignLocalTimeZoneConfig = {
|
34956
|
+
/**
|
34957
|
+
* Time Zone Id in the IANA format
|
34958
|
+
*/
|
34959
|
+
DefaultTimeZone?: string;
|
34960
|
+
/**
|
34961
|
+
* Local TimeZone Detection method list
|
34962
|
+
*/
|
34963
|
+
LocalTimeZoneDetection?: ConnectCampaignsV2CampaignLocalTimeZoneDetectionType[];
|
34964
|
+
};
|
34965
|
+
/**
|
34966
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.LocalTimeZoneDetectionType`.
|
34967
|
+
* Local TimeZone Detection method
|
34968
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-localtimezonedetectiontype.html}
|
34969
|
+
*/
|
34970
|
+
export type ConnectCampaignsV2CampaignLocalTimeZoneDetectionType = "ZIP_CODE" | "AREA_CODE";
|
34971
|
+
/**
|
34972
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.OpenHours`.
|
34973
|
+
* Open Hours config
|
34974
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-openhours.html}
|
34975
|
+
*/
|
34976
|
+
export type ConnectCampaignsV2CampaignOpenHours = {
|
34977
|
+
/**
|
34978
|
+
* Daily Hours map
|
34979
|
+
*/
|
34980
|
+
DailyHours: ConnectCampaignsV2CampaignDailyHour[];
|
34981
|
+
};
|
34982
|
+
/**
|
34983
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.PredictiveConfig`.
|
34984
|
+
* Predictive config
|
34985
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-predictiveconfig.html}
|
34986
|
+
*/
|
34987
|
+
export type ConnectCampaignsV2CampaignPredictiveConfig = {
|
34988
|
+
/**
|
34989
|
+
* The bandwidth allocation of a queue resource.
|
34990
|
+
* @min `0`
|
34991
|
+
* @max `1`
|
34992
|
+
*/
|
34993
|
+
BandwidthAllocation: number;
|
34994
|
+
};
|
34995
|
+
/**
|
34996
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.ProgressiveConfig`.
|
34997
|
+
* Progressive config
|
34998
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-progressiveconfig.html}
|
34999
|
+
*/
|
35000
|
+
export type ConnectCampaignsV2CampaignProgressiveConfig = {
|
35001
|
+
/**
|
35002
|
+
* The bandwidth allocation of a queue resource.
|
35003
|
+
* @min `0`
|
35004
|
+
* @max `1`
|
35005
|
+
*/
|
35006
|
+
BandwidthAllocation: number;
|
35007
|
+
};
|
35008
|
+
/**
|
35009
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.RestrictedPeriod`.
|
35010
|
+
* Restricted period
|
35011
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-restrictedperiod.html}
|
35012
|
+
*/
|
35013
|
+
export type ConnectCampaignsV2CampaignRestrictedPeriod = {
|
35014
|
+
/**
|
35015
|
+
* Date in ISO 8601 format, e.g. 2024-01-01
|
35016
|
+
* @pattern `^\d{4}-\d{2}-\d{2}$`
|
35017
|
+
*/
|
35018
|
+
EndDate: string;
|
35019
|
+
/**
|
35020
|
+
* The name of a restricted period
|
35021
|
+
* @maxLength `127`
|
35022
|
+
*/
|
35023
|
+
Name?: string;
|
35024
|
+
/**
|
35025
|
+
* Date in ISO 8601 format, e.g. 2024-01-01
|
35026
|
+
* @pattern `^\d{4}-\d{2}-\d{2}$`
|
35027
|
+
*/
|
35028
|
+
StartDate: string;
|
35029
|
+
};
|
35030
|
+
/**
|
35031
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.RestrictedPeriods`.
|
35032
|
+
* Restricted period config
|
35033
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-restrictedperiods.html}
|
35034
|
+
*/
|
35035
|
+
export type ConnectCampaignsV2CampaignRestrictedPeriods = {
|
35036
|
+
/**
|
35037
|
+
* List of restricted period
|
35038
|
+
*/
|
35039
|
+
RestrictedPeriodList?: ConnectCampaignsV2CampaignRestrictedPeriod[];
|
35040
|
+
};
|
35041
|
+
/**
|
35042
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.Schedule`.
|
35043
|
+
* Campaign schedule
|
35044
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-schedule.html}
|
35045
|
+
*/
|
35046
|
+
export type ConnectCampaignsV2CampaignSchedule = {
|
35047
|
+
/**
|
35048
|
+
* Timestamp with no UTC offset or timezone
|
35049
|
+
* @maxLength `100`
|
35050
|
+
*/
|
35051
|
+
EndTime: string;
|
35052
|
+
/**
|
35053
|
+
* Time duration in ISO 8601 format
|
35054
|
+
* @minLength `0`
|
35055
|
+
* @maxLength `50`
|
35056
|
+
* @pattern `^[a-zA-Z0-9.]*$`
|
35057
|
+
*/
|
35058
|
+
RefreshFrequency?: string;
|
35059
|
+
/**
|
35060
|
+
* Timestamp with no UTC offset or timezone
|
35061
|
+
* @maxLength `100`
|
35062
|
+
*/
|
35063
|
+
StartTime: string;
|
35064
|
+
};
|
35065
|
+
/**
|
35066
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.SmsChannelSubtypeConfig`.
|
35067
|
+
* SMS Channel Subtype config
|
35068
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-smschannelsubtypeconfig.html}
|
35069
|
+
*/
|
35070
|
+
export type ConnectCampaignsV2CampaignSmsChannelSubtypeConfig = {
|
35071
|
+
/**
|
35072
|
+
* Allocates outbound capacity for the specific channel of this campaign between multiple active campaigns
|
35073
|
+
* @min `0.01`
|
35074
|
+
* @max `1`
|
35075
|
+
*/
|
35076
|
+
Capacity?: number;
|
35077
|
+
/**
|
35078
|
+
* Default SMS outbound config
|
35079
|
+
*/
|
35080
|
+
DefaultOutboundConfig: ConnectCampaignsV2CampaignSmsOutboundConfig;
|
35081
|
+
/**
|
35082
|
+
* SMS Outbound Mode
|
35083
|
+
*/
|
35084
|
+
OutboundMode: ConnectCampaignsV2CampaignSmsOutboundMode;
|
35085
|
+
};
|
35086
|
+
/**
|
35087
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.SmsOutboundConfig`.
|
35088
|
+
* Default SMS outbound config
|
35089
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-smsoutboundconfig.html}
|
35090
|
+
*/
|
35091
|
+
export type ConnectCampaignsV2CampaignSmsOutboundConfig = {
|
35092
|
+
/**
|
35093
|
+
* Arn
|
35094
|
+
* @minLength `20`
|
35095
|
+
* @maxLength `500`
|
35096
|
+
* @pattern `^arn:.*$`
|
35097
|
+
*/
|
35098
|
+
ConnectSourcePhoneNumberArn: string;
|
35099
|
+
/**
|
35100
|
+
* Arn
|
35101
|
+
* @minLength `20`
|
35102
|
+
* @maxLength `500`
|
35103
|
+
* @pattern `^arn:.*$`
|
35104
|
+
*/
|
35105
|
+
WisdomTemplateArn: string;
|
35106
|
+
};
|
35107
|
+
/**
|
35108
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.SmsOutboundMode`.
|
35109
|
+
* SMS Outbound Mode
|
35110
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-smsoutboundmode.html}
|
35111
|
+
*/
|
35112
|
+
export type ConnectCampaignsV2CampaignSmsOutboundMode = {
|
35113
|
+
/**
|
35114
|
+
* Agentless config
|
35115
|
+
*/
|
35116
|
+
AgentlessConfig?: ConnectCampaignsV2CampaignAgentlessConfig;
|
35117
|
+
};
|
35118
|
+
/**
|
35119
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.Source`.
|
35120
|
+
* The possible types of channel config parameters
|
35121
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-source.html}
|
35122
|
+
*/
|
35123
|
+
export type ConnectCampaignsV2CampaignSource = {
|
35124
|
+
/**
|
35125
|
+
* Arn
|
35126
|
+
* @minLength `20`
|
35127
|
+
* @maxLength `500`
|
35128
|
+
* @pattern `^arn:.*$`
|
35129
|
+
*/
|
35130
|
+
CustomerProfilesSegmentArn?: string;
|
35131
|
+
};
|
35132
|
+
/**
|
35133
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.Tag`.
|
35134
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-tag.html}
|
35135
|
+
*/
|
35136
|
+
export type ConnectCampaignsV2CampaignTag = {
|
35137
|
+
/**
|
35138
|
+
* The key name of the tag.
|
35139
|
+
*/
|
35140
|
+
Key: string;
|
35141
|
+
/**
|
35142
|
+
* The value for the tag.
|
35143
|
+
*/
|
35144
|
+
Value: string;
|
35145
|
+
};
|
35146
|
+
/**
|
35147
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.TelephonyChannelSubtypeConfig`.
|
35148
|
+
* Telephony Channel Subtype config
|
35149
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonychannelsubtypeconfig.html}
|
35150
|
+
*/
|
35151
|
+
export type ConnectCampaignsV2CampaignTelephonyChannelSubtypeConfig = {
|
35152
|
+
/**
|
35153
|
+
* Allocates outbound capacity for the specific channel of this campaign between multiple active campaigns
|
35154
|
+
* @min `0.01`
|
35155
|
+
* @max `1`
|
35156
|
+
*/
|
35157
|
+
Capacity?: number;
|
35158
|
+
/**
|
35159
|
+
* The queue for the call
|
35160
|
+
* @maxLength `500`
|
35161
|
+
*/
|
35162
|
+
ConnectQueueId?: string;
|
35163
|
+
/**
|
35164
|
+
* Default Telephone Outbound config
|
35165
|
+
*/
|
35166
|
+
DefaultOutboundConfig: ConnectCampaignsV2CampaignTelephonyOutboundConfig;
|
35167
|
+
/**
|
35168
|
+
* Telephony Outbound Mode
|
35169
|
+
*/
|
35170
|
+
OutboundMode: ConnectCampaignsV2CampaignTelephonyOutboundMode;
|
35171
|
+
};
|
35172
|
+
/**
|
35173
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.TelephonyOutboundConfig`.
|
35174
|
+
* Default Telephone Outbound config
|
35175
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonyoutboundconfig.html}
|
35176
|
+
*/
|
35177
|
+
export type ConnectCampaignsV2CampaignTelephonyOutboundConfig = {
|
35178
|
+
/**
|
35179
|
+
* The configuration used for answering machine detection during outbound calls
|
35180
|
+
*/
|
35181
|
+
AnswerMachineDetectionConfig?: ConnectCampaignsV2CampaignAnswerMachineDetectionConfig;
|
35182
|
+
/**
|
35183
|
+
* The identifier of the contact flow for the outbound call
|
35184
|
+
* @maxLength `500`
|
35185
|
+
*/
|
35186
|
+
ConnectContactFlowId: string;
|
35187
|
+
/**
|
35188
|
+
* The phone number associated with the Amazon Connect instance, in E.164 format. If you do not specify a source phone number, you must specify a queue.
|
35189
|
+
* @maxLength `100`
|
35190
|
+
*/
|
35191
|
+
ConnectSourcePhoneNumber?: string;
|
35192
|
+
};
|
35193
|
+
/**
|
35194
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.TelephonyOutboundMode`.
|
35195
|
+
* Telephony Outbound Mode
|
35196
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonyoutboundmode.html}
|
35197
|
+
*/
|
35198
|
+
export type ConnectCampaignsV2CampaignTelephonyOutboundMode = {
|
35199
|
+
/**
|
35200
|
+
* Agentless config
|
35201
|
+
*/
|
35202
|
+
AgentlessConfig?: ConnectCampaignsV2CampaignAgentlessConfig;
|
35203
|
+
/**
|
35204
|
+
* Predictive config
|
35205
|
+
*/
|
35206
|
+
PredictiveConfig?: ConnectCampaignsV2CampaignPredictiveConfig;
|
35207
|
+
/**
|
35208
|
+
* Progressive config
|
35209
|
+
*/
|
35210
|
+
ProgressiveConfig?: ConnectCampaignsV2CampaignProgressiveConfig;
|
35211
|
+
};
|
35212
|
+
/**
|
35213
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.TimeRange`.
|
35214
|
+
* Time range in 24 hour format
|
35215
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-timerange.html}
|
35216
|
+
*/
|
35217
|
+
export type ConnectCampaignsV2CampaignTimeRange = {
|
35218
|
+
/**
|
35219
|
+
* Time in ISO 8601 format, e.g. T23:11
|
35220
|
+
* @pattern `^T\d{2}:\d{2}$`
|
35221
|
+
*/
|
35222
|
+
EndTime: string;
|
35223
|
+
/**
|
35224
|
+
* Time in ISO 8601 format, e.g. T23:11
|
35225
|
+
* @pattern `^T\d{2}:\d{2}$`
|
35226
|
+
*/
|
35227
|
+
StartTime: string;
|
35228
|
+
};
|
35229
|
+
/**
|
35230
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.TimeWindow`.
|
35231
|
+
* Time window config
|
35232
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-timewindow.html}
|
35233
|
+
*/
|
35234
|
+
export type ConnectCampaignsV2CampaignTimeWindow = {
|
35235
|
+
/**
|
35236
|
+
* Open Hours config
|
35237
|
+
*/
|
35238
|
+
OpenHours: ConnectCampaignsV2CampaignOpenHours;
|
35239
|
+
/**
|
35240
|
+
* Restricted period config
|
35241
|
+
*/
|
35242
|
+
RestrictedPeriods?: ConnectCampaignsV2CampaignRestrictedPeriods;
|
35243
|
+
};
|
34664
35244
|
/**
|
34665
35245
|
* Definition of AWS::ControlTower::EnabledBaseline Resource Type
|
34666
35246
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledbaseline.html}
|
@@ -35552,6 +36132,12 @@ export type CustomerProfilesIntegrationProps = {
|
|
35552
36132
|
* @pattern `^[a-zA-Z0-9_-]+$`
|
35553
36133
|
*/
|
35554
36134
|
DomainName: string;
|
36135
|
+
/**
|
36136
|
+
* A list of unique names for active event triggers associated with the integration.
|
36137
|
+
* @minLength `1`
|
36138
|
+
* @maxLength `1`
|
36139
|
+
*/
|
36140
|
+
EventTriggerNames?: string[];
|
35555
36141
|
FlowDefinition?: CustomerProfilesIntegrationFlowDefinition;
|
35556
36142
|
/**
|
35557
36143
|
* The name of the ObjectType defined for the 3rd party data in Profile Service
|
@@ -40480,6 +41066,17 @@ export type DeadlineFleetAttributes = {
|
|
40480
41066
|
Status: DeadlineFleetFleetStatus;
|
40481
41067
|
WorkerCount: number;
|
40482
41068
|
};
|
41069
|
+
/**
|
41070
|
+
* Type definition for `AWS::Deadline::Fleet.AcceleratorCapabilities`.
|
41071
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-acceleratorcapabilities.html}
|
41072
|
+
*/
|
41073
|
+
export type DeadlineFleetAcceleratorCapabilities = {
|
41074
|
+
Count?: DeadlineFleetAcceleratorCountRange;
|
41075
|
+
/**
|
41076
|
+
* @minLength `1`
|
41077
|
+
*/
|
41078
|
+
Selections: DeadlineFleetAcceleratorSelection[];
|
41079
|
+
};
|
40483
41080
|
/**
|
40484
41081
|
* Type definition for `AWS::Deadline::Fleet.AcceleratorCountRange`.
|
40485
41082
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-acceleratorcountrange.html}
|
@@ -40496,6 +41093,18 @@ export type DeadlineFleetAcceleratorCountRange = {
|
|
40496
41093
|
*/
|
40497
41094
|
Min: number;
|
40498
41095
|
};
|
41096
|
+
/**
|
41097
|
+
* Type definition for `AWS::Deadline::Fleet.AcceleratorSelection`.
|
41098
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-acceleratorselection.html}
|
41099
|
+
*/
|
41100
|
+
export type DeadlineFleetAcceleratorSelection = {
|
41101
|
+
Name: "t4" | "a10g" | "l4" | "l40s";
|
41102
|
+
/**
|
41103
|
+
* @minLength `1`
|
41104
|
+
* @maxLength `100`
|
41105
|
+
*/
|
41106
|
+
Runtime?: string;
|
41107
|
+
};
|
40499
41108
|
/**
|
40500
41109
|
* Type definition for `AWS::Deadline::Fleet.AcceleratorTotalMemoryMiBRange`.
|
40501
41110
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-acceleratortotalmemorymibrange.html}
|
@@ -40679,6 +41288,7 @@ export type DeadlineFleetServiceManagedEc2FleetConfiguration = {
|
|
40679
41288
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-servicemanagedec2instancecapabilities.html}
|
40680
41289
|
*/
|
40681
41290
|
export type DeadlineFleetServiceManagedEc2InstanceCapabilities = {
|
41291
|
+
AcceleratorCapabilities?: DeadlineFleetAcceleratorCapabilities;
|
40682
41292
|
/**
|
40683
41293
|
* @minLength `1`
|
40684
41294
|
* @maxLength `100`
|
@@ -55265,6 +55875,20 @@ export type EFSFileSystemProps = {
|
|
55265
55875
|
export type EFSFileSystemAttributes = {
|
55266
55876
|
Arn: string;
|
55267
55877
|
FileSystemId: string;
|
55878
|
+
/**
|
55879
|
+
* Describes the replication configuration for a specific file system.
|
55880
|
+
*/
|
55881
|
+
ReplicationConfiguration: {
|
55882
|
+
/**
|
55883
|
+
* An array of destination objects. Only one destination object is supported.
|
55884
|
+
* @minLength `1`
|
55885
|
+
* @maxLength `1`
|
55886
|
+
*/
|
55887
|
+
Destinations: {
|
55888
|
+
Status: string;
|
55889
|
+
StatusMessage: string;
|
55890
|
+
}[];
|
55891
|
+
};
|
55268
55892
|
};
|
55269
55893
|
/**
|
55270
55894
|
* Type definition for `AWS::EFS::FileSystem.BackupPolicy`.
|
@@ -55358,6 +55982,7 @@ export type EFSFileSystemReplicationDestination = {
|
|
55358
55982
|
AvailabilityZoneName?: string;
|
55359
55983
|
/**
|
55360
55984
|
* The ID of the destination Amazon EFS file system.
|
55985
|
+
* @pattern `^(arn:aws[-a-z]*:elasticfilesystem:[0-9a-z-:]+:file-system/fs-[0-9a-f]{8,40}|fs-[0-9a-f]{8,40})$`
|
55361
55986
|
*/
|
55362
55987
|
FileSystemId?: string;
|
55363
55988
|
/**
|
@@ -55369,6 +55994,7 @@ export type EFSFileSystemReplicationDestination = {
|
|
55369
55994
|
For One Zone file systems, the replication configuration must specify the AWS-Region in which the destination file system is located.
|
55370
55995
|
*/
|
55371
55996
|
Region?: string;
|
55997
|
+
RoleArn?: string;
|
55372
55998
|
};
|
55373
55999
|
/**
|
55374
56000
|
* The ``AWS::EFS::MountTarget`` resource is an Amazon EFS resource that creates a mount target for an EFS file system. You can then mount the file system on Amazon EC2 instances or other resources by using the mount target.
|
@@ -75827,6 +76453,9 @@ export type IoTThingTypeProps = {
|
|
75827
76453
|
*/
|
75828
76454
|
ThingTypeName?: string;
|
75829
76455
|
ThingTypeProperties?: {
|
76456
|
+
Mqtt5Configuration?: {
|
76457
|
+
PropagatingAttributes?: IoTThingTypePropagatingAttribute[];
|
76458
|
+
};
|
75830
76459
|
/**
|
75831
76460
|
* @maxLength `3`
|
75832
76461
|
*/
|
@@ -75846,6 +76475,23 @@ export type IoTThingTypeAttributes = {
|
|
75846
76475
|
Arn: string;
|
75847
76476
|
Id: string;
|
75848
76477
|
};
|
76478
|
+
/**
|
76479
|
+
* Type definition for `AWS::IoT::ThingType.PropagatingAttribute`.
|
76480
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thingtype-propagatingattribute.html}
|
76481
|
+
*/
|
76482
|
+
export type IoTThingTypePropagatingAttribute = {
|
76483
|
+
ConnectionAttribute?: "iot:ClientId" | "iot:Thing.ThingName";
|
76484
|
+
/**
|
76485
|
+
* @maxLength `128`
|
76486
|
+
* @pattern `[a-zA-Z0-9_.,@/:#-]+`
|
76487
|
+
*/
|
76488
|
+
ThingAttribute?: string;
|
76489
|
+
/**
|
76490
|
+
* @maxLength `128`
|
76491
|
+
* @pattern `[a-zA-Z0-9:$.]+`
|
76492
|
+
*/
|
76493
|
+
UserPropertyKey: string;
|
76494
|
+
};
|
75849
76495
|
/**
|
75850
76496
|
* Type definition for `AWS::IoT::ThingType.Tag`.
|
75851
76497
|
* A key-value pair to associate with a resource.
|
@@ -78876,6 +79522,11 @@ export type IoTFleetWiseCampaignProps = {
|
|
78876
79522
|
* @maxLength `5`
|
78877
79523
|
*/
|
78878
79524
|
DataExtraDimensions?: string[];
|
79525
|
+
/**
|
79526
|
+
* @minLength `0`
|
79527
|
+
* @maxLength `20`
|
79528
|
+
*/
|
79529
|
+
DataPartitions?: IoTFleetWiseCampaignDataPartition[];
|
78879
79530
|
/**
|
78880
79531
|
* @minLength `1`
|
78881
79532
|
* @maxLength `2048`
|
@@ -78997,6 +79648,48 @@ export type IoTFleetWiseCampaignDataDestinationConfig = {
|
|
78997
79648
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-dataformat.html}
|
78998
79649
|
*/
|
78999
79650
|
export type IoTFleetWiseCampaignDataFormat = "JSON" | "PARQUET";
|
79651
|
+
/**
|
79652
|
+
* Type definition for `AWS::IoTFleetWise::Campaign.DataPartition`.
|
79653
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-datapartition.html}
|
79654
|
+
*/
|
79655
|
+
export type IoTFleetWiseCampaignDataPartition = {
|
79656
|
+
/**
|
79657
|
+
* @minLength `1`
|
79658
|
+
* @maxLength `128`
|
79659
|
+
* @pattern `^[a-zA-Z0-9]+$`
|
79660
|
+
*/
|
79661
|
+
Id: string;
|
79662
|
+
StorageOptions: IoTFleetWiseCampaignDataPartitionStorageOptions;
|
79663
|
+
UploadOptions?: IoTFleetWiseCampaignDataPartitionUploadOptions;
|
79664
|
+
};
|
79665
|
+
/**
|
79666
|
+
* Type definition for `AWS::IoTFleetWise::Campaign.DataPartitionStorageOptions`.
|
79667
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-datapartitionstorageoptions.html}
|
79668
|
+
*/
|
79669
|
+
export type IoTFleetWiseCampaignDataPartitionStorageOptions = {
|
79670
|
+
MaximumSize: IoTFleetWiseCampaignStorageMaximumSize;
|
79671
|
+
MinimumTimeToLive: IoTFleetWiseCampaignStorageMinimumTimeToLive;
|
79672
|
+
/**
|
79673
|
+
* @minLength `1`
|
79674
|
+
* @maxLength `4096`
|
79675
|
+
*/
|
79676
|
+
StorageLocation: string;
|
79677
|
+
};
|
79678
|
+
/**
|
79679
|
+
* Type definition for `AWS::IoTFleetWise::Campaign.DataPartitionUploadOptions`.
|
79680
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-datapartitionuploadoptions.html}
|
79681
|
+
*/
|
79682
|
+
export type IoTFleetWiseCampaignDataPartitionUploadOptions = {
|
79683
|
+
/**
|
79684
|
+
* @min `1`
|
79685
|
+
*/
|
79686
|
+
ConditionLanguageVersion?: number;
|
79687
|
+
/**
|
79688
|
+
* @minLength `1`
|
79689
|
+
* @maxLength `2048`
|
79690
|
+
*/
|
79691
|
+
Expression: string;
|
79692
|
+
};
|
79000
79693
|
/**
|
79001
79694
|
* Type definition for `AWS::IoTFleetWise::Campaign.DiagnosticsMode`.
|
79002
79695
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-diagnosticsmode.html}
|
@@ -79077,6 +79770,12 @@ export type IoTFleetWiseCampaignSignalFetchInformation = {
|
|
79077
79770
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-signalinformation.html}
|
79078
79771
|
*/
|
79079
79772
|
export type IoTFleetWiseCampaignSignalInformation = {
|
79773
|
+
/**
|
79774
|
+
* @minLength `1`
|
79775
|
+
* @maxLength `128`
|
79776
|
+
* @pattern `^[a-zA-Z0-9]+$`
|
79777
|
+
*/
|
79778
|
+
DataPartitionId?: string;
|
79080
79779
|
/**
|
79081
79780
|
* @min `1`
|
79082
79781
|
* @max `4294967295`
|
@@ -79104,6 +79803,40 @@ export type IoTFleetWiseCampaignSpoolingMode = "OFF" | "TO_DISK";
|
|
79104
79803
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-storagecompressionformat.html}
|
79105
79804
|
*/
|
79106
79805
|
export type IoTFleetWiseCampaignStorageCompressionFormat = "NONE" | "GZIP";
|
79806
|
+
/**
|
79807
|
+
* Type definition for `AWS::IoTFleetWise::Campaign.StorageMaximumSize`.
|
79808
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-storagemaximumsize.html}
|
79809
|
+
*/
|
79810
|
+
export type IoTFleetWiseCampaignStorageMaximumSize = {
|
79811
|
+
Unit: IoTFleetWiseCampaignStorageMaximumSizeUnit;
|
79812
|
+
/**
|
79813
|
+
* @min `1`
|
79814
|
+
* @max `1073741824`
|
79815
|
+
*/
|
79816
|
+
Value: number;
|
79817
|
+
};
|
79818
|
+
/**
|
79819
|
+
* Type definition for `AWS::IoTFleetWise::Campaign.StorageMaximumSizeUnit`.
|
79820
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-storagemaximumsizeunit.html}
|
79821
|
+
*/
|
79822
|
+
export type IoTFleetWiseCampaignStorageMaximumSizeUnit = "MB" | "GB" | "TB";
|
79823
|
+
/**
|
79824
|
+
* Type definition for `AWS::IoTFleetWise::Campaign.StorageMinimumTimeToLive`.
|
79825
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-storageminimumtimetolive.html}
|
79826
|
+
*/
|
79827
|
+
export type IoTFleetWiseCampaignStorageMinimumTimeToLive = {
|
79828
|
+
Unit: IoTFleetWiseCampaignStorageMinimumTimeToLiveUnit;
|
79829
|
+
/**
|
79830
|
+
* @min `1`
|
79831
|
+
* @max `10000`
|
79832
|
+
*/
|
79833
|
+
Value: number;
|
79834
|
+
};
|
79835
|
+
/**
|
79836
|
+
* Type definition for `AWS::IoTFleetWise::Campaign.StorageMinimumTimeToLiveUnit`.
|
79837
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-storageminimumtimetoliveunit.html}
|
79838
|
+
*/
|
79839
|
+
export type IoTFleetWiseCampaignStorageMinimumTimeToLiveUnit = "HOURS" | "DAYS" | "WEEKS";
|
79107
79840
|
/**
|
79108
79841
|
* Type definition for `AWS::IoTFleetWise::Campaign.Tag`.
|
79109
79842
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-tag.html}
|
@@ -89636,6 +90369,7 @@ export type LambdaEventSourceMappingProps = {
|
|
89636
90369
|
* @max `10000`
|
89637
90370
|
*/
|
89638
90371
|
MaximumRetryAttempts?: number;
|
90372
|
+
MetricsConfig?: LambdaEventSourceMappingMetricsConfig;
|
89639
90373
|
/**
|
89640
90374
|
* (Kinesis and DynamoDB Streams only) The number of batches to process concurrently from each shard. The default value is 1.
|
89641
90375
|
* @min `1`
|
@@ -89804,6 +90538,18 @@ export type LambdaEventSourceMappingFilterCriteria = {
|
|
89804
90538
|
*/
|
89805
90539
|
Filters?: LambdaEventSourceMappingFilter[];
|
89806
90540
|
};
|
90541
|
+
/**
|
90542
|
+
* Type definition for `AWS::Lambda::EventSourceMapping.MetricsConfig`.
|
90543
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-metricsconfig.html}
|
90544
|
+
*/
|
90545
|
+
export type LambdaEventSourceMappingMetricsConfig = {
|
90546
|
+
/**
|
90547
|
+
* Metric groups to enable.
|
90548
|
+
* @minLength `0`
|
90549
|
+
* @maxLength `1`
|
90550
|
+
*/
|
90551
|
+
Metrics?: "EventCount"[];
|
90552
|
+
};
|
89807
90553
|
/**
|
89808
90554
|
* Type definition for `AWS::Lambda::EventSourceMapping.OnFailure`.
|
89809
90555
|
* A destination for events that failed processing.
|
@@ -90426,7 +91172,7 @@ export type LambdaPermissionProps = {
|
|
90426
91172
|
*/
|
90427
91173
|
FunctionUrlAuthType?: "AWS_IAM" | "NONE";
|
90428
91174
|
/**
|
90429
|
-
* The AWS-service
|
91175
|
+
* The AWS-service, AWS-account, IAM user, or IAM role that invokes the function. If you specify a service, use ``SourceArn`` or ``SourceAccount`` to limit who can invoke the function through that service.
|
90430
91176
|
* @minLength `1`
|
90431
91177
|
* @maxLength `256`
|
90432
91178
|
* @pattern `^.*$`
|
@@ -142137,6 +142883,142 @@ export type RAMResourceShareTag = {
|
|
142137
142883
|
Key: string;
|
142138
142884
|
Value: string;
|
142139
142885
|
};
|
142886
|
+
/**
|
142887
|
+
* Resource Type definition for AWS::Rbin::Rule
|
142888
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rbin-rule.html}
|
142889
|
+
*/
|
142890
|
+
export type RbinRuleProps = {
|
142891
|
+
/**
|
142892
|
+
* The description of the retention rule.
|
142893
|
+
* @maxLength `255`
|
142894
|
+
*/
|
142895
|
+
Description?: string;
|
142896
|
+
/**
|
142897
|
+
* Information about the exclude resource tags used to identify resources that are excluded by the retention rule.
|
142898
|
+
* @maxLength `5`
|
142899
|
+
*/
|
142900
|
+
ExcludeResourceTags?: RbinRuleResourceTag[];
|
142901
|
+
/**
|
142902
|
+
* Information about the retention rule lock configuration.
|
142903
|
+
*/
|
142904
|
+
LockConfiguration?: RbinRuleUnlockDelay;
|
142905
|
+
/**
|
142906
|
+
* Information about the resource tags used to identify resources that are retained by the retention rule.
|
142907
|
+
* @maxLength `50`
|
142908
|
+
*/
|
142909
|
+
ResourceTags?: RbinRuleResourceTag[];
|
142910
|
+
/**
|
142911
|
+
* The resource type retained by the retention rule.
|
142912
|
+
*/
|
142913
|
+
ResourceType: "EBS_SNAPSHOT" | "EC2_IMAGE";
|
142914
|
+
/**
|
142915
|
+
* Information about the retention period for which the retention rule is to retain resources.
|
142916
|
+
*/
|
142917
|
+
RetentionPeriod: RbinRuleRetentionPeriod;
|
142918
|
+
/**
|
142919
|
+
* The state of the retention rule. Only retention rules that are in the available state retain resources.
|
142920
|
+
* @pattern `pending|available`
|
142921
|
+
*/
|
142922
|
+
Status?: string;
|
142923
|
+
/**
|
142924
|
+
* Information about the tags assigned to the retention rule.
|
142925
|
+
* @maxLength `200`
|
142926
|
+
*/
|
142927
|
+
Tags?: RbinRuleTag[];
|
142928
|
+
};
|
142929
|
+
/**
|
142930
|
+
* Attribute type definition for `AWS::Rbin::Rule`.
|
142931
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rbin-rule.html#aws-resource-rbin-rule-return-values}
|
142932
|
+
*/
|
142933
|
+
export type RbinRuleAttributes = {
|
142934
|
+
/**
|
142935
|
+
* Rule Arn is unique for each rule.
|
142936
|
+
* @minLength `0`
|
142937
|
+
* @maxLength `1011`
|
142938
|
+
*/
|
142939
|
+
Arn: string;
|
142940
|
+
/**
|
142941
|
+
* The unique ID of the retention rule.
|
142942
|
+
* @pattern `[0-9a-zA-Z]{11}`
|
142943
|
+
*/
|
142944
|
+
Identifier: string;
|
142945
|
+
/**
|
142946
|
+
* The lock state for the retention rule.
|
142947
|
+
* @pattern `locked|pending_unlock|unlocked`
|
142948
|
+
*/
|
142949
|
+
LockState: string;
|
142950
|
+
};
|
142951
|
+
/**
|
142952
|
+
* Type definition for `AWS::Rbin::Rule.ResourceTag`.
|
142953
|
+
* The resource tag of the rule.
|
142954
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rbin-rule-resourcetag.html}
|
142955
|
+
*/
|
142956
|
+
export type RbinRuleResourceTag = {
|
142957
|
+
/**
|
142958
|
+
* The tag key of the resource.
|
142959
|
+
* @minLength `1`
|
142960
|
+
* @maxLength `128`
|
142961
|
+
*/
|
142962
|
+
ResourceTagKey: string;
|
142963
|
+
/**
|
142964
|
+
* The tag value of the resource
|
142965
|
+
* @minLength `0`
|
142966
|
+
* @maxLength `256`
|
142967
|
+
*/
|
142968
|
+
ResourceTagValue: string;
|
142969
|
+
};
|
142970
|
+
/**
|
142971
|
+
* Type definition for `AWS::Rbin::Rule.RetentionPeriod`.
|
142972
|
+
* The retention period of the rule.
|
142973
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rbin-rule-retentionperiod.html}
|
142974
|
+
*/
|
142975
|
+
export type RbinRuleRetentionPeriod = {
|
142976
|
+
/**
|
142977
|
+
* The retention period unit of the rule
|
142978
|
+
*/
|
142979
|
+
RetentionPeriodUnit: "DAYS";
|
142980
|
+
/**
|
142981
|
+
* The retention period value of the rule.
|
142982
|
+
* @min `1`
|
142983
|
+
* @max `3650`
|
142984
|
+
*/
|
142985
|
+
RetentionPeriodValue: number;
|
142986
|
+
};
|
142987
|
+
/**
|
142988
|
+
* Type definition for `AWS::Rbin::Rule.Tag`.
|
142989
|
+
* Metadata of a retention rule, consisting of a key-value pair.
|
142990
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rbin-rule-tag.html}
|
142991
|
+
*/
|
142992
|
+
export type RbinRuleTag = {
|
142993
|
+
/**
|
142994
|
+
* A unique identifier for the tag.
|
142995
|
+
* @minLength `1`
|
142996
|
+
* @maxLength `128`
|
142997
|
+
*/
|
142998
|
+
Key: string;
|
142999
|
+
/**
|
143000
|
+
* String which you can use to describe or define the tag.
|
143001
|
+
* @minLength `0`
|
143002
|
+
* @maxLength `256`
|
143003
|
+
*/
|
143004
|
+
Value: string;
|
143005
|
+
};
|
143006
|
+
/**
|
143007
|
+
* Type definition for `AWS::Rbin::Rule.UnlockDelay`.
|
143008
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rbin-rule-unlockdelay.html}
|
143009
|
+
*/
|
143010
|
+
export type RbinRuleUnlockDelay = {
|
143011
|
+
/**
|
143012
|
+
* The unit of time in which to measure the unlock delay. Currently, the unlock delay can be measure only in days.
|
143013
|
+
*/
|
143014
|
+
UnlockDelayUnit?: "DAYS";
|
143015
|
+
/**
|
143016
|
+
* The unlock delay period, measured in the unit specified for UnlockDelayUnit.
|
143017
|
+
* @min `7`
|
143018
|
+
* @max `30`
|
143019
|
+
*/
|
143020
|
+
UnlockDelayValue?: number;
|
143021
|
+
};
|
142140
143022
|
/**
|
142141
143023
|
* The AWS::RDS::CustomDBEngineVersion resource creates an Amazon RDS custom DB engine version.
|
142142
143024
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-customdbengineversion.html}
|
@@ -148929,6 +149811,17 @@ export type Route53ResolverFirewallRuleGroupAttributes = {
|
|
148929
149811
|
* @maxLength `255`
|
148930
149812
|
*/
|
148931
149813
|
CreatorRequestId: string;
|
149814
|
+
/**
|
149815
|
+
* FirewallRules
|
149816
|
+
*/
|
149817
|
+
FirewallRules: {
|
149818
|
+
/**
|
149819
|
+
* ResourceId
|
149820
|
+
* @minLength `1`
|
149821
|
+
* @maxLength `64`
|
149822
|
+
*/
|
149823
|
+
FirewallThreatProtectionId: string;
|
149824
|
+
}[];
|
148932
149825
|
/**
|
148933
149826
|
* ResourceId
|
148934
149827
|
* @minLength `1`
|
@@ -148994,12 +149887,20 @@ export type Route53ResolverFirewallRuleGroupFirewallRule = {
|
|
148994
149887
|
* BlockResponse
|
148995
149888
|
*/
|
148996
149889
|
BlockResponse?: "NODATA" | "NXDOMAIN" | "OVERRIDE";
|
149890
|
+
/**
|
149891
|
+
* FirewallDomainRedirectionAction
|
149892
|
+
*/
|
149893
|
+
ConfidenceThreshold?: "LOW" | "MEDIUM" | "HIGH";
|
149894
|
+
/**
|
149895
|
+
* FirewallDomainRedirectionAction
|
149896
|
+
*/
|
149897
|
+
DnsThreatProtection?: "DGA" | "DNS_TUNNELING";
|
148997
149898
|
/**
|
148998
149899
|
* ResourceId
|
148999
149900
|
* @minLength `1`
|
149000
149901
|
* @maxLength `64`
|
149001
149902
|
*/
|
149002
|
-
FirewallDomainListId
|
149903
|
+
FirewallDomainListId?: string;
|
149003
149904
|
/**
|
149004
149905
|
* FirewallDomainRedirectionAction
|
149005
149906
|
*/
|
@@ -172143,9 +173044,9 @@ export type VpcLatticeAccessLogSubscriptionProps = {
|
|
172143
173044
|
*/
|
172144
173045
|
DestinationArn: string;
|
172145
173046
|
/**
|
172146
|
-
* @minLength `
|
173047
|
+
* @minLength `17`
|
172147
173048
|
* @maxLength `2048`
|
172148
|
-
* @pattern `^((((sn)|(svc))-[0-9a-z]{17})|(arn(:[a-z0-9]+([.-][a-z0-9]+)*){2}(:([a-z0-9]+([.-][a-z0-9]+)*)?){2}:((servicenetwork/sn)|(service/svc))-[0-9a-z]{17}))$`
|
173049
|
+
* @pattern `^((((sn)|(svc)|(rcfg))-[0-9a-z]{17})|(arn(:[a-z0-9]+([.-][a-z0-9]+)*){2}(:([a-z0-9]+([.-][a-z0-9]+)*)?){2}:((servicenetwork/sn)|(resourceconfiguration/rcfg)|(service/svc))-[0-9a-z]{17}))$`
|
172149
173050
|
*/
|
172150
173051
|
ResourceIdentifier?: string;
|
172151
173052
|
ServiceNetworkLogType?: "SERVICE" | "RESOURCE";
|
@@ -172640,6 +173541,7 @@ export type VpcLatticeServiceNetworkProps = {
|
|
172640
173541
|
* @pattern `^(?!servicenetwork-)(?![-])(?!.*[-]$)(?!.*[-]{2})[a-z0-9-]+$`
|
172641
173542
|
*/
|
172642
173543
|
Name?: string;
|
173544
|
+
SharingConfig?: VpcLatticeServiceNetworkSharingConfig;
|
172643
173545
|
/**
|
172644
173546
|
* @minLength `0`
|
172645
173547
|
* @maxLength `50`
|
@@ -172666,6 +173568,13 @@ export type VpcLatticeServiceNetworkAttributes = {
|
|
172666
173568
|
Id: string;
|
172667
173569
|
LastUpdatedAt: string;
|
172668
173570
|
};
|
173571
|
+
/**
|
173572
|
+
* Type definition for `AWS::VpcLattice::ServiceNetwork.SharingConfig`.
|
173573
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-servicenetwork-sharingconfig.html}
|
173574
|
+
*/
|
173575
|
+
export type VpcLatticeServiceNetworkSharingConfig = {
|
173576
|
+
enabled: boolean;
|
173577
|
+
};
|
172669
173578
|
/**
|
172670
173579
|
* Type definition for `AWS::VpcLattice::ServiceNetwork.Tag`.
|
172671
173580
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-servicenetwork-tag.html}
|
@@ -178255,6 +179164,7 @@ export interface ResourceTypes {
|
|
178255
179164
|
"AWS::Connect::View": ConnectViewProps;
|
178256
179165
|
"AWS::Connect::ViewVersion": ConnectViewVersionProps;
|
178257
179166
|
"AWS::ConnectCampaigns::Campaign": ConnectCampaignsCampaignProps;
|
179167
|
+
"AWS::ConnectCampaignsV2::Campaign": ConnectCampaignsV2CampaignProps;
|
178258
179168
|
"AWS::ControlTower::EnabledBaseline": ControlTowerEnabledBaselineProps;
|
178259
179169
|
"AWS::ControlTower::EnabledControl": ControlTowerEnabledControlProps;
|
178260
179170
|
"AWS::ControlTower::LandingZone": ControlTowerLandingZoneProps;
|
@@ -178978,6 +179888,7 @@ export interface ResourceTypes {
|
|
178978
179888
|
"AWS::QuickSight::VPCConnection": QuickSightVPCConnectionProps;
|
178979
179889
|
"AWS::RAM::Permission": RAMPermissionProps;
|
178980
179890
|
"AWS::RAM::ResourceShare": RAMResourceShareProps;
|
179891
|
+
"AWS::Rbin::Rule": RbinRuleProps;
|
178981
179892
|
"AWS::RDS::CustomDBEngineVersion": RDSCustomDBEngineVersionProps;
|
178982
179893
|
"AWS::RDS::DBCluster": RDSDBClusterProps;
|
178983
179894
|
"AWS::RDS::DBClusterParameterGroup": RDSDBClusterParameterGroupProps;
|
@@ -179548,6 +180459,7 @@ export interface AttributeTypes {
|
|
179548
180459
|
"AWS::Connect::View": ConnectViewAttributes;
|
179549
180460
|
"AWS::Connect::ViewVersion": ConnectViewVersionAttributes;
|
179550
180461
|
"AWS::ConnectCampaigns::Campaign": ConnectCampaignsCampaignAttributes;
|
180462
|
+
"AWS::ConnectCampaignsV2::Campaign": ConnectCampaignsV2CampaignAttributes;
|
179551
180463
|
"AWS::ControlTower::EnabledBaseline": ControlTowerEnabledBaselineAttributes;
|
179552
180464
|
"AWS::ControlTower::LandingZone": ControlTowerLandingZoneAttributes;
|
179553
180465
|
"AWS::CustomerProfiles::CalculatedAttributeDefinition": CustomerProfilesCalculatedAttributeDefinitionAttributes;
|
@@ -180197,6 +181109,7 @@ export interface AttributeTypes {
|
|
180197
181109
|
"AWS::QuickSight::VPCConnection": QuickSightVPCConnectionAttributes;
|
180198
181110
|
"AWS::RAM::Permission": RAMPermissionAttributes;
|
180199
181111
|
"AWS::RAM::ResourceShare": RAMResourceShareAttributes;
|
181112
|
+
"AWS::Rbin::Rule": RbinRuleAttributes;
|
180200
181113
|
"AWS::RDS::CustomDBEngineVersion": RDSCustomDBEngineVersionAttributes;
|
180201
181114
|
"AWS::RDS::DBCluster": RDSDBClusterAttributes;
|
180202
181115
|
"AWS::RDS::DBInstance": RDSDBInstanceAttributes;
|
@@ -180767,6 +181680,7 @@ export declare const ResourceType: {
|
|
180767
181680
|
readonly ConnectView: "AWS::Connect::View";
|
180768
181681
|
readonly ConnectViewVersion: "AWS::Connect::ViewVersion";
|
180769
181682
|
readonly ConnectCampaignsCampaign: "AWS::ConnectCampaigns::Campaign";
|
181683
|
+
readonly ConnectCampaignsV2Campaign: "AWS::ConnectCampaignsV2::Campaign";
|
180770
181684
|
readonly ControlTowerEnabledBaseline: "AWS::ControlTower::EnabledBaseline";
|
180771
181685
|
readonly ControlTowerEnabledControl: "AWS::ControlTower::EnabledControl";
|
180772
181686
|
readonly ControlTowerLandingZone: "AWS::ControlTower::LandingZone";
|
@@ -181490,6 +182404,7 @@ export declare const ResourceType: {
|
|
181490
182404
|
readonly QuickSightVPCConnection: "AWS::QuickSight::VPCConnection";
|
181491
182405
|
readonly RAMPermission: "AWS::RAM::Permission";
|
181492
182406
|
readonly RAMResourceShare: "AWS::RAM::ResourceShare";
|
182407
|
+
readonly RbinRule: "AWS::Rbin::Rule";
|
181493
182408
|
readonly RDSCustomDBEngineVersion: "AWS::RDS::CustomDBEngineVersion";
|
181494
182409
|
readonly RDSDBCluster: "AWS::RDS::DBCluster";
|
181495
182410
|
readonly RDSDBClusterParameterGroup: "AWS::RDS::DBClusterParameterGroup";
|