@awboost/cfn-resource-types 0.1.196 → 0.1.197
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/AWS-AutoScaling-AutoScalingGroup.d.ts +32 -0
- package/lib/AWS-B2BI-Capability.d.ts +2 -2
- package/lib/AWS-B2BI-Transformer.d.ts +2 -2
- package/lib/AWS-ConnectCampaignsV2-Campaign.d.ts +559 -0
- package/lib/AWS-ConnectCampaignsV2-Campaign.js +12 -0
- package/lib/AWS-CustomerProfiles-Integration.d.ts +6 -0
- package/lib/AWS-Deadline-Fleet.d.ts +24 -0
- package/lib/AWS-EFS-FileSystem.d.ts +16 -0
- package/lib/AWS-IoT-ThingType.d.ts +20 -0
- package/lib/AWS-IoTFleetWise-Campaign.d.ts +87 -0
- package/lib/AWS-Lambda-Permission.d.ts +1 -1
- package/lib/AWS-Rbin-Rule.d.ts +147 -0
- package/lib/AWS-Rbin-Rule.js +12 -0
- package/lib/AWS-Route53Resolver-FirewallRuleGroup.d.ts +20 -1
- package/package.json +1 -1
|
@@ -15,6 +15,7 @@ export type AutoScalingAutoScalingGroupProperties = {
|
|
|
15
15
|
*/
|
|
16
16
|
AutoScalingGroupName?: string;
|
|
17
17
|
AvailabilityZoneDistribution?: AvailabilityZoneDistribution;
|
|
18
|
+
AvailabilityZoneImpairmentPolicy?: AvailabilityZoneImpairmentPolicy;
|
|
18
19
|
/**
|
|
19
20
|
* 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.
|
|
20
21
|
*/
|
|
@@ -139,6 +140,7 @@ export type AutoScalingAutoScalingGroupProperties = {
|
|
|
139
140
|
* 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*.
|
|
140
141
|
*/
|
|
141
142
|
ServiceLinkedRoleARN?: string;
|
|
143
|
+
SkipZonalShiftValidation?: boolean;
|
|
142
144
|
/**
|
|
143
145
|
* 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*.
|
|
144
146
|
*/
|
|
@@ -201,6 +203,14 @@ export type AcceleratorTotalMemoryMiBRequest = {
|
|
|
201
203
|
export type AvailabilityZoneDistribution = {
|
|
202
204
|
CapacityDistributionStrategy?: "balanced-best-effort" | "balanced-only";
|
|
203
205
|
};
|
|
206
|
+
/**
|
|
207
|
+
* Type definition for `AWS::AutoScaling::AutoScalingGroup.AvailabilityZoneImpairmentPolicy`.
|
|
208
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-availabilityzoneimpairmentpolicy.html}
|
|
209
|
+
*/
|
|
210
|
+
export type AvailabilityZoneImpairmentPolicy = {
|
|
211
|
+
ImpairedZoneHealthCheckBehavior: "IgnoreUnhealthy" | "ReplaceUnhealthy";
|
|
212
|
+
ZonalShiftEnabled: boolean;
|
|
213
|
+
};
|
|
204
214
|
/**
|
|
205
215
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.BaselineEbsBandwidthMbpsRequest`.
|
|
206
216
|
* ``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.
|
|
@@ -216,6 +226,20 @@ export type BaselineEbsBandwidthMbpsRequest = {
|
|
|
216
226
|
*/
|
|
217
227
|
Min?: number;
|
|
218
228
|
};
|
|
229
|
+
/**
|
|
230
|
+
* Type definition for `AWS::AutoScaling::AutoScalingGroup.BaselinePerformanceFactorsRequest`.
|
|
231
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-baselineperformancefactorsrequest.html}
|
|
232
|
+
*/
|
|
233
|
+
export type BaselinePerformanceFactorsRequest = {
|
|
234
|
+
Cpu?: CpuPerformanceFactorRequest;
|
|
235
|
+
};
|
|
236
|
+
/**
|
|
237
|
+
* Type definition for `AWS::AutoScaling::AutoScalingGroup.CpuPerformanceFactorRequest`.
|
|
238
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-cpuperformancefactorrequest.html}
|
|
239
|
+
*/
|
|
240
|
+
export type CpuPerformanceFactorRequest = {
|
|
241
|
+
References?: PerformanceFactorReferenceRequest[];
|
|
242
|
+
};
|
|
219
243
|
/**
|
|
220
244
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.InstanceMaintenancePolicy`.
|
|
221
245
|
* ``InstanceMaintenancePolicy`` is a property of the [AWS::AutoScaling::AutoScalingGroup](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html) resource.
|
|
@@ -309,6 +333,7 @@ export type InstanceRequirements = {
|
|
|
309
333
|
Default: No minimum or maximum limits
|
|
310
334
|
*/
|
|
311
335
|
BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbpsRequest;
|
|
336
|
+
BaselinePerformanceFactors?: BaselinePerformanceFactorsRequest;
|
|
312
337
|
/**
|
|
313
338
|
* 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*.
|
|
314
339
|
Default: ``excluded``
|
|
@@ -721,6 +746,13 @@ export type NotificationConfiguration = {
|
|
|
721
746
|
*/
|
|
722
747
|
TopicARN: string | string[];
|
|
723
748
|
};
|
|
749
|
+
/**
|
|
750
|
+
* Type definition for `AWS::AutoScaling::AutoScalingGroup.PerformanceFactorReferenceRequest`.
|
|
751
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-performancefactorreferencerequest.html}
|
|
752
|
+
*/
|
|
753
|
+
export type PerformanceFactorReferenceRequest = {
|
|
754
|
+
InstanceFamily?: string;
|
|
755
|
+
};
|
|
724
756
|
/**
|
|
725
757
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.TagProperty`.
|
|
726
758
|
* 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.
|
|
@@ -126,12 +126,12 @@ export type X12Details = {
|
|
|
126
126
|
* Type definition for `AWS::B2BI::Capability.X12TransactionSet`.
|
|
127
127
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-x12transactionset.html}
|
|
128
128
|
*/
|
|
129
|
-
export type X12TransactionSet = "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";
|
|
129
|
+
export type X12TransactionSet = "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";
|
|
130
130
|
/**
|
|
131
131
|
* Type definition for `AWS::B2BI::Capability.X12Version`.
|
|
132
132
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-x12version.html}
|
|
133
133
|
*/
|
|
134
|
-
export type X12Version = "VERSION_4010" | "VERSION_4030" | "VERSION_5010" | "VERSION_5010_HIPAA";
|
|
134
|
+
export type X12Version = "VERSION_4010" | "VERSION_4030" | "VERSION_4050" | "VERSION_4060" | "VERSION_5010" | "VERSION_5010_HIPAA";
|
|
135
135
|
/**
|
|
136
136
|
* Definition of AWS::B2BI::Capability Resource Type
|
|
137
137
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-capability.html}
|
|
@@ -178,12 +178,12 @@ export type X12Details = {
|
|
|
178
178
|
* Type definition for `AWS::B2BI::Transformer.X12TransactionSet`.
|
|
179
179
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12transactionset.html}
|
|
180
180
|
*/
|
|
181
|
-
export type X12TransactionSet = "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";
|
|
181
|
+
export type X12TransactionSet = "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";
|
|
182
182
|
/**
|
|
183
183
|
* Type definition for `AWS::B2BI::Transformer.X12Version`.
|
|
184
184
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12version.html}
|
|
185
185
|
*/
|
|
186
|
-
export type X12Version = "VERSION_4010" | "VERSION_4030" | "VERSION_5010" | "VERSION_5010_HIPAA";
|
|
186
|
+
export type X12Version = "VERSION_4010" | "VERSION_4030" | "VERSION_4050" | "VERSION_4060" | "VERSION_5010" | "VERSION_5010_HIPAA";
|
|
187
187
|
/**
|
|
188
188
|
* Definition of AWS::B2BI::Transformer Resource Type
|
|
189
189
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-transformer.html}
|
|
@@ -0,0 +1,559 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Definition of AWS::ConnectCampaignsV2::Campaign Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html}
|
|
6
|
+
*/
|
|
7
|
+
export type ConnectCampaignsV2CampaignProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The possible types of channel subtype config parameters
|
|
10
|
+
*/
|
|
11
|
+
ChannelSubtypeConfig: ChannelSubtypeConfig;
|
|
12
|
+
/**
|
|
13
|
+
* Communication limits config
|
|
14
|
+
*/
|
|
15
|
+
CommunicationLimitsOverride?: CommunicationLimitsConfig;
|
|
16
|
+
/**
|
|
17
|
+
* Campaign communication time config
|
|
18
|
+
*/
|
|
19
|
+
CommunicationTimeConfig?: CommunicationTimeConfig;
|
|
20
|
+
/**
|
|
21
|
+
* Arn
|
|
22
|
+
* @minLength `20`
|
|
23
|
+
* @maxLength `500`
|
|
24
|
+
* @pattern `^arn:.*$`
|
|
25
|
+
*/
|
|
26
|
+
ConnectCampaignFlowArn?: string;
|
|
27
|
+
/**
|
|
28
|
+
* Amazon Connect Instance Id
|
|
29
|
+
* @minLength `0`
|
|
30
|
+
* @maxLength `256`
|
|
31
|
+
* @pattern `^[a-zA-Z0-9_\-.]*$`
|
|
32
|
+
*/
|
|
33
|
+
ConnectInstanceId: string;
|
|
34
|
+
/**
|
|
35
|
+
* Campaign name
|
|
36
|
+
* @minLength `1`
|
|
37
|
+
* @maxLength `127`
|
|
38
|
+
*/
|
|
39
|
+
Name: string;
|
|
40
|
+
/**
|
|
41
|
+
* Campaign schedule
|
|
42
|
+
*/
|
|
43
|
+
Schedule?: Schedule;
|
|
44
|
+
/**
|
|
45
|
+
* The possible types of channel config parameters
|
|
46
|
+
*/
|
|
47
|
+
Source?: Source;
|
|
48
|
+
/**
|
|
49
|
+
* One or more tags.
|
|
50
|
+
* @maxLength `50`
|
|
51
|
+
*/
|
|
52
|
+
Tags?: Tag[];
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* Attribute type definition for `AWS::ConnectCampaignsV2::Campaign`.
|
|
56
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html#aws-resource-connectcampaignsv2-campaign-return-values}
|
|
57
|
+
*/
|
|
58
|
+
export type ConnectCampaignsV2CampaignAttributes = {
|
|
59
|
+
/**
|
|
60
|
+
* Amazon Connect Campaign Arn
|
|
61
|
+
* @minLength `0`
|
|
62
|
+
* @maxLength `256`
|
|
63
|
+
* @pattern `^arn:aws[-a-z0-9]*:connect-campaigns:[-a-z0-9]*:[0-9]{12}:campaign/[-a-zA-Z0-9]*$`
|
|
64
|
+
*/
|
|
65
|
+
Arn: string;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.AgentlessConfig`.
|
|
69
|
+
* Agentless config
|
|
70
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-agentlessconfig.html}
|
|
71
|
+
*/
|
|
72
|
+
export type AgentlessConfig = Record<string, any>;
|
|
73
|
+
/**
|
|
74
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.AnswerMachineDetectionConfig`.
|
|
75
|
+
* The configuration used for answering machine detection during outbound calls
|
|
76
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-answermachinedetectionconfig.html}
|
|
77
|
+
*/
|
|
78
|
+
export type AnswerMachineDetectionConfig = {
|
|
79
|
+
/**
|
|
80
|
+
* Enables detection of prompts (e.g., beep after after a voicemail greeting)
|
|
81
|
+
*/
|
|
82
|
+
AwaitAnswerMachinePrompt?: boolean;
|
|
83
|
+
/**
|
|
84
|
+
* Flag to decided whether outbound calls should have answering machine detection enabled or not
|
|
85
|
+
*/
|
|
86
|
+
EnableAnswerMachineDetection: boolean;
|
|
87
|
+
};
|
|
88
|
+
/**
|
|
89
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.ChannelSubtypeConfig`.
|
|
90
|
+
* The possible types of channel subtype config parameters
|
|
91
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-channelsubtypeconfig.html}
|
|
92
|
+
*/
|
|
93
|
+
export type ChannelSubtypeConfig = {
|
|
94
|
+
/**
|
|
95
|
+
* Email Channel Subtype config
|
|
96
|
+
*/
|
|
97
|
+
Email?: EmailChannelSubtypeConfig;
|
|
98
|
+
/**
|
|
99
|
+
* SMS Channel Subtype config
|
|
100
|
+
*/
|
|
101
|
+
Sms?: SmsChannelSubtypeConfig;
|
|
102
|
+
/**
|
|
103
|
+
* Telephony Channel Subtype config
|
|
104
|
+
*/
|
|
105
|
+
Telephony?: TelephonyChannelSubtypeConfig;
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.CommunicationLimit`.
|
|
109
|
+
* Communication Limit
|
|
110
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimit.html}
|
|
111
|
+
*/
|
|
112
|
+
export type CommunicationLimit = {
|
|
113
|
+
/**
|
|
114
|
+
* @min `1`
|
|
115
|
+
*/
|
|
116
|
+
Frequency: number;
|
|
117
|
+
/**
|
|
118
|
+
* @min `1`
|
|
119
|
+
*/
|
|
120
|
+
MaxCountPerRecipient: number;
|
|
121
|
+
/**
|
|
122
|
+
* The communication limit time unit
|
|
123
|
+
*/
|
|
124
|
+
Unit: CommunicationLimitTimeUnit;
|
|
125
|
+
};
|
|
126
|
+
/**
|
|
127
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.CommunicationLimits`.
|
|
128
|
+
* Communication limits
|
|
129
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimits.html}
|
|
130
|
+
*/
|
|
131
|
+
export type CommunicationLimits = {
|
|
132
|
+
/**
|
|
133
|
+
* List of communication limit
|
|
134
|
+
*/
|
|
135
|
+
CommunicationLimitList?: CommunicationLimit[];
|
|
136
|
+
};
|
|
137
|
+
/**
|
|
138
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.CommunicationLimitsConfig`.
|
|
139
|
+
* Communication limits config
|
|
140
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimitsconfig.html}
|
|
141
|
+
*/
|
|
142
|
+
export type CommunicationLimitsConfig = {
|
|
143
|
+
/**
|
|
144
|
+
* Communication limits
|
|
145
|
+
*/
|
|
146
|
+
AllChannelsSubtypes?: CommunicationLimits;
|
|
147
|
+
};
|
|
148
|
+
/**
|
|
149
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.CommunicationLimitTimeUnit`.
|
|
150
|
+
* The communication limit time unit
|
|
151
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationlimittimeunit.html}
|
|
152
|
+
*/
|
|
153
|
+
export type CommunicationLimitTimeUnit = "DAY";
|
|
154
|
+
/**
|
|
155
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.CommunicationTimeConfig`.
|
|
156
|
+
* Campaign communication time config
|
|
157
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-communicationtimeconfig.html}
|
|
158
|
+
*/
|
|
159
|
+
export type CommunicationTimeConfig = {
|
|
160
|
+
/**
|
|
161
|
+
* Time window config
|
|
162
|
+
*/
|
|
163
|
+
Email?: TimeWindow;
|
|
164
|
+
/**
|
|
165
|
+
* Local time zone config
|
|
166
|
+
*/
|
|
167
|
+
LocalTimeZoneConfig: LocalTimeZoneConfig;
|
|
168
|
+
/**
|
|
169
|
+
* Time window config
|
|
170
|
+
*/
|
|
171
|
+
Sms?: TimeWindow;
|
|
172
|
+
/**
|
|
173
|
+
* Time window config
|
|
174
|
+
*/
|
|
175
|
+
Telephony?: TimeWindow;
|
|
176
|
+
};
|
|
177
|
+
/**
|
|
178
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.DailyHour`.
|
|
179
|
+
* Daily Hour
|
|
180
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-dailyhour.html}
|
|
181
|
+
*/
|
|
182
|
+
export type DailyHour = {
|
|
183
|
+
/**
|
|
184
|
+
* Day of week
|
|
185
|
+
*/
|
|
186
|
+
Key?: DayOfWeek;
|
|
187
|
+
/**
|
|
188
|
+
* List of time range
|
|
189
|
+
*/
|
|
190
|
+
Value?: TimeRange[];
|
|
191
|
+
};
|
|
192
|
+
/**
|
|
193
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.DayOfWeek`.
|
|
194
|
+
* Day of week
|
|
195
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-dayofweek.html}
|
|
196
|
+
*/
|
|
197
|
+
export type DayOfWeek = "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY";
|
|
198
|
+
/**
|
|
199
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.EmailChannelSubtypeConfig`.
|
|
200
|
+
* Email Channel Subtype config
|
|
201
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-emailchannelsubtypeconfig.html}
|
|
202
|
+
*/
|
|
203
|
+
export type EmailChannelSubtypeConfig = {
|
|
204
|
+
/**
|
|
205
|
+
* Allocates outbound capacity for the specific channel of this campaign between multiple active campaigns
|
|
206
|
+
* @min `0.01`
|
|
207
|
+
* @max `1`
|
|
208
|
+
*/
|
|
209
|
+
Capacity?: number;
|
|
210
|
+
/**
|
|
211
|
+
* Default SMS outbound config
|
|
212
|
+
*/
|
|
213
|
+
DefaultOutboundConfig: EmailOutboundConfig;
|
|
214
|
+
/**
|
|
215
|
+
* Email Outbound Mode
|
|
216
|
+
*/
|
|
217
|
+
OutboundMode: EmailOutboundMode;
|
|
218
|
+
};
|
|
219
|
+
/**
|
|
220
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.EmailOutboundConfig`.
|
|
221
|
+
* Default SMS outbound config
|
|
222
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-emailoutboundconfig.html}
|
|
223
|
+
*/
|
|
224
|
+
export type EmailOutboundConfig = {
|
|
225
|
+
/**
|
|
226
|
+
* Email address used for Email messages
|
|
227
|
+
* @minLength `1`
|
|
228
|
+
* @maxLength `255`
|
|
229
|
+
* @pattern `^[\w-\.\+]+@([\w-]+\.)+[\w-]{2,4}$`
|
|
230
|
+
*/
|
|
231
|
+
ConnectSourceEmailAddress: string;
|
|
232
|
+
/**
|
|
233
|
+
* The name of the source email address display name
|
|
234
|
+
* @minLength `1`
|
|
235
|
+
* @maxLength `127`
|
|
236
|
+
*/
|
|
237
|
+
SourceEmailAddressDisplayName?: string;
|
|
238
|
+
/**
|
|
239
|
+
* Arn
|
|
240
|
+
* @minLength `20`
|
|
241
|
+
* @maxLength `500`
|
|
242
|
+
* @pattern `^arn:.*$`
|
|
243
|
+
*/
|
|
244
|
+
WisdomTemplateArn: string;
|
|
245
|
+
};
|
|
246
|
+
/**
|
|
247
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.EmailOutboundMode`.
|
|
248
|
+
* Email Outbound Mode
|
|
249
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-emailoutboundmode.html}
|
|
250
|
+
*/
|
|
251
|
+
export type EmailOutboundMode = {
|
|
252
|
+
/**
|
|
253
|
+
* Agentless config
|
|
254
|
+
*/
|
|
255
|
+
AgentlessConfig?: AgentlessConfig;
|
|
256
|
+
};
|
|
257
|
+
/**
|
|
258
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.LocalTimeZoneConfig`.
|
|
259
|
+
* Local time zone config
|
|
260
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-localtimezoneconfig.html}
|
|
261
|
+
*/
|
|
262
|
+
export type LocalTimeZoneConfig = {
|
|
263
|
+
/**
|
|
264
|
+
* Time Zone Id in the IANA format
|
|
265
|
+
*/
|
|
266
|
+
DefaultTimeZone?: string;
|
|
267
|
+
/**
|
|
268
|
+
* Local TimeZone Detection method list
|
|
269
|
+
*/
|
|
270
|
+
LocalTimeZoneDetection?: LocalTimeZoneDetectionType[];
|
|
271
|
+
};
|
|
272
|
+
/**
|
|
273
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.LocalTimeZoneDetectionType`.
|
|
274
|
+
* Local TimeZone Detection method
|
|
275
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-localtimezonedetectiontype.html}
|
|
276
|
+
*/
|
|
277
|
+
export type LocalTimeZoneDetectionType = "ZIP_CODE" | "AREA_CODE";
|
|
278
|
+
/**
|
|
279
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.OpenHours`.
|
|
280
|
+
* Open Hours config
|
|
281
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-openhours.html}
|
|
282
|
+
*/
|
|
283
|
+
export type OpenHours = {
|
|
284
|
+
/**
|
|
285
|
+
* Daily Hours map
|
|
286
|
+
*/
|
|
287
|
+
DailyHours: DailyHour[];
|
|
288
|
+
};
|
|
289
|
+
/**
|
|
290
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.PredictiveConfig`.
|
|
291
|
+
* Predictive config
|
|
292
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-predictiveconfig.html}
|
|
293
|
+
*/
|
|
294
|
+
export type PredictiveConfig = {
|
|
295
|
+
/**
|
|
296
|
+
* The bandwidth allocation of a queue resource.
|
|
297
|
+
* @min `0`
|
|
298
|
+
* @max `1`
|
|
299
|
+
*/
|
|
300
|
+
BandwidthAllocation: number;
|
|
301
|
+
};
|
|
302
|
+
/**
|
|
303
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.ProgressiveConfig`.
|
|
304
|
+
* Progressive config
|
|
305
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-progressiveconfig.html}
|
|
306
|
+
*/
|
|
307
|
+
export type ProgressiveConfig = {
|
|
308
|
+
/**
|
|
309
|
+
* The bandwidth allocation of a queue resource.
|
|
310
|
+
* @min `0`
|
|
311
|
+
* @max `1`
|
|
312
|
+
*/
|
|
313
|
+
BandwidthAllocation: number;
|
|
314
|
+
};
|
|
315
|
+
/**
|
|
316
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.RestrictedPeriod`.
|
|
317
|
+
* Restricted period
|
|
318
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-restrictedperiod.html}
|
|
319
|
+
*/
|
|
320
|
+
export type RestrictedPeriod = {
|
|
321
|
+
/**
|
|
322
|
+
* Date in ISO 8601 format, e.g. 2024-01-01
|
|
323
|
+
* @pattern `^\d{4}-\d{2}-\d{2}$`
|
|
324
|
+
*/
|
|
325
|
+
EndDate: string;
|
|
326
|
+
/**
|
|
327
|
+
* The name of a restricted period
|
|
328
|
+
* @maxLength `127`
|
|
329
|
+
*/
|
|
330
|
+
Name?: string;
|
|
331
|
+
/**
|
|
332
|
+
* Date in ISO 8601 format, e.g. 2024-01-01
|
|
333
|
+
* @pattern `^\d{4}-\d{2}-\d{2}$`
|
|
334
|
+
*/
|
|
335
|
+
StartDate: string;
|
|
336
|
+
};
|
|
337
|
+
/**
|
|
338
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.RestrictedPeriods`.
|
|
339
|
+
* Restricted period config
|
|
340
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-restrictedperiods.html}
|
|
341
|
+
*/
|
|
342
|
+
export type RestrictedPeriods = {
|
|
343
|
+
/**
|
|
344
|
+
* List of restricted period
|
|
345
|
+
*/
|
|
346
|
+
RestrictedPeriodList?: RestrictedPeriod[];
|
|
347
|
+
};
|
|
348
|
+
/**
|
|
349
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.Schedule`.
|
|
350
|
+
* Campaign schedule
|
|
351
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-schedule.html}
|
|
352
|
+
*/
|
|
353
|
+
export type Schedule = {
|
|
354
|
+
/**
|
|
355
|
+
* Timestamp with no UTC offset or timezone
|
|
356
|
+
* @maxLength `100`
|
|
357
|
+
*/
|
|
358
|
+
EndTime: string;
|
|
359
|
+
/**
|
|
360
|
+
* Time duration in ISO 8601 format
|
|
361
|
+
* @minLength `0`
|
|
362
|
+
* @maxLength `50`
|
|
363
|
+
* @pattern `^[a-zA-Z0-9.]*$`
|
|
364
|
+
*/
|
|
365
|
+
RefreshFrequency?: string;
|
|
366
|
+
/**
|
|
367
|
+
* Timestamp with no UTC offset or timezone
|
|
368
|
+
* @maxLength `100`
|
|
369
|
+
*/
|
|
370
|
+
StartTime: string;
|
|
371
|
+
};
|
|
372
|
+
/**
|
|
373
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.SmsChannelSubtypeConfig`.
|
|
374
|
+
* SMS Channel Subtype config
|
|
375
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-smschannelsubtypeconfig.html}
|
|
376
|
+
*/
|
|
377
|
+
export type SmsChannelSubtypeConfig = {
|
|
378
|
+
/**
|
|
379
|
+
* Allocates outbound capacity for the specific channel of this campaign between multiple active campaigns
|
|
380
|
+
* @min `0.01`
|
|
381
|
+
* @max `1`
|
|
382
|
+
*/
|
|
383
|
+
Capacity?: number;
|
|
384
|
+
/**
|
|
385
|
+
* Default SMS outbound config
|
|
386
|
+
*/
|
|
387
|
+
DefaultOutboundConfig: SmsOutboundConfig;
|
|
388
|
+
/**
|
|
389
|
+
* SMS Outbound Mode
|
|
390
|
+
*/
|
|
391
|
+
OutboundMode: SmsOutboundMode;
|
|
392
|
+
};
|
|
393
|
+
/**
|
|
394
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.SmsOutboundConfig`.
|
|
395
|
+
* Default SMS outbound config
|
|
396
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-smsoutboundconfig.html}
|
|
397
|
+
*/
|
|
398
|
+
export type SmsOutboundConfig = {
|
|
399
|
+
/**
|
|
400
|
+
* Arn
|
|
401
|
+
* @minLength `20`
|
|
402
|
+
* @maxLength `500`
|
|
403
|
+
* @pattern `^arn:.*$`
|
|
404
|
+
*/
|
|
405
|
+
ConnectSourcePhoneNumberArn: string;
|
|
406
|
+
/**
|
|
407
|
+
* Arn
|
|
408
|
+
* @minLength `20`
|
|
409
|
+
* @maxLength `500`
|
|
410
|
+
* @pattern `^arn:.*$`
|
|
411
|
+
*/
|
|
412
|
+
WisdomTemplateArn: string;
|
|
413
|
+
};
|
|
414
|
+
/**
|
|
415
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.SmsOutboundMode`.
|
|
416
|
+
* SMS Outbound Mode
|
|
417
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-smsoutboundmode.html}
|
|
418
|
+
*/
|
|
419
|
+
export type SmsOutboundMode = {
|
|
420
|
+
/**
|
|
421
|
+
* Agentless config
|
|
422
|
+
*/
|
|
423
|
+
AgentlessConfig?: AgentlessConfig;
|
|
424
|
+
};
|
|
425
|
+
/**
|
|
426
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.Source`.
|
|
427
|
+
* The possible types of channel config parameters
|
|
428
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-source.html}
|
|
429
|
+
*/
|
|
430
|
+
export type Source = {
|
|
431
|
+
/**
|
|
432
|
+
* Arn
|
|
433
|
+
* @minLength `20`
|
|
434
|
+
* @maxLength `500`
|
|
435
|
+
* @pattern `^arn:.*$`
|
|
436
|
+
*/
|
|
437
|
+
CustomerProfilesSegmentArn?: string;
|
|
438
|
+
};
|
|
439
|
+
/**
|
|
440
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.Tag`.
|
|
441
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-tag.html}
|
|
442
|
+
*/
|
|
443
|
+
export type Tag = {
|
|
444
|
+
/**
|
|
445
|
+
* The key name of the tag.
|
|
446
|
+
*/
|
|
447
|
+
Key: string;
|
|
448
|
+
/**
|
|
449
|
+
* The value for the tag.
|
|
450
|
+
*/
|
|
451
|
+
Value: string;
|
|
452
|
+
};
|
|
453
|
+
/**
|
|
454
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.TelephonyChannelSubtypeConfig`.
|
|
455
|
+
* Telephony Channel Subtype config
|
|
456
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonychannelsubtypeconfig.html}
|
|
457
|
+
*/
|
|
458
|
+
export type TelephonyChannelSubtypeConfig = {
|
|
459
|
+
/**
|
|
460
|
+
* Allocates outbound capacity for the specific channel of this campaign between multiple active campaigns
|
|
461
|
+
* @min `0.01`
|
|
462
|
+
* @max `1`
|
|
463
|
+
*/
|
|
464
|
+
Capacity?: number;
|
|
465
|
+
/**
|
|
466
|
+
* The queue for the call
|
|
467
|
+
* @maxLength `500`
|
|
468
|
+
*/
|
|
469
|
+
ConnectQueueId?: string;
|
|
470
|
+
/**
|
|
471
|
+
* Default Telephone Outbound config
|
|
472
|
+
*/
|
|
473
|
+
DefaultOutboundConfig: TelephonyOutboundConfig;
|
|
474
|
+
/**
|
|
475
|
+
* Telephony Outbound Mode
|
|
476
|
+
*/
|
|
477
|
+
OutboundMode: TelephonyOutboundMode;
|
|
478
|
+
};
|
|
479
|
+
/**
|
|
480
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.TelephonyOutboundConfig`.
|
|
481
|
+
* Default Telephone Outbound config
|
|
482
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonyoutboundconfig.html}
|
|
483
|
+
*/
|
|
484
|
+
export type TelephonyOutboundConfig = {
|
|
485
|
+
/**
|
|
486
|
+
* The configuration used for answering machine detection during outbound calls
|
|
487
|
+
*/
|
|
488
|
+
AnswerMachineDetectionConfig?: AnswerMachineDetectionConfig;
|
|
489
|
+
/**
|
|
490
|
+
* The identifier of the contact flow for the outbound call
|
|
491
|
+
* @maxLength `500`
|
|
492
|
+
*/
|
|
493
|
+
ConnectContactFlowId: string;
|
|
494
|
+
/**
|
|
495
|
+
* 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.
|
|
496
|
+
* @maxLength `100`
|
|
497
|
+
*/
|
|
498
|
+
ConnectSourcePhoneNumber?: string;
|
|
499
|
+
};
|
|
500
|
+
/**
|
|
501
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.TelephonyOutboundMode`.
|
|
502
|
+
* Telephony Outbound Mode
|
|
503
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-telephonyoutboundmode.html}
|
|
504
|
+
*/
|
|
505
|
+
export type TelephonyOutboundMode = {
|
|
506
|
+
/**
|
|
507
|
+
* Agentless config
|
|
508
|
+
*/
|
|
509
|
+
AgentlessConfig?: AgentlessConfig;
|
|
510
|
+
/**
|
|
511
|
+
* Predictive config
|
|
512
|
+
*/
|
|
513
|
+
PredictiveConfig?: PredictiveConfig;
|
|
514
|
+
/**
|
|
515
|
+
* Progressive config
|
|
516
|
+
*/
|
|
517
|
+
ProgressiveConfig?: ProgressiveConfig;
|
|
518
|
+
};
|
|
519
|
+
/**
|
|
520
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.TimeRange`.
|
|
521
|
+
* Time range in 24 hour format
|
|
522
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-timerange.html}
|
|
523
|
+
*/
|
|
524
|
+
export type TimeRange = {
|
|
525
|
+
/**
|
|
526
|
+
* Time in ISO 8601 format, e.g. T23:11
|
|
527
|
+
* @pattern `^T\d{2}:\d{2}$`
|
|
528
|
+
*/
|
|
529
|
+
EndTime: string;
|
|
530
|
+
/**
|
|
531
|
+
* Time in ISO 8601 format, e.g. T23:11
|
|
532
|
+
* @pattern `^T\d{2}:\d{2}$`
|
|
533
|
+
*/
|
|
534
|
+
StartTime: string;
|
|
535
|
+
};
|
|
536
|
+
/**
|
|
537
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.TimeWindow`.
|
|
538
|
+
* Time window config
|
|
539
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-timewindow.html}
|
|
540
|
+
*/
|
|
541
|
+
export type TimeWindow = {
|
|
542
|
+
/**
|
|
543
|
+
* Open Hours config
|
|
544
|
+
*/
|
|
545
|
+
OpenHours: OpenHours;
|
|
546
|
+
/**
|
|
547
|
+
* Restricted period config
|
|
548
|
+
*/
|
|
549
|
+
RestrictedPeriods?: RestrictedPeriods;
|
|
550
|
+
};
|
|
551
|
+
/**
|
|
552
|
+
* Definition of AWS::ConnectCampaignsV2::Campaign Resource Type
|
|
553
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html}
|
|
554
|
+
*/
|
|
555
|
+
export declare class ConnectCampaignsV2Campaign extends $Resource<"AWS::ConnectCampaignsV2::Campaign", ConnectCampaignsV2CampaignProperties, ConnectCampaignsV2CampaignAttributes> {
|
|
556
|
+
static readonly Type = "AWS::ConnectCampaignsV2::Campaign";
|
|
557
|
+
constructor(logicalId: string, properties: ConnectCampaignsV2CampaignProperties, options?: $ResourceOptions);
|
|
558
|
+
}
|
|
559
|
+
//# sourceMappingURL=AWS-ConnectCampaignsV2-Campaign.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::ConnectCampaignsV2::Campaign Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html}
|
|
5
|
+
*/
|
|
6
|
+
export class ConnectCampaignsV2Campaign extends $Resource {
|
|
7
|
+
static Type = "AWS::ConnectCampaignsV2::Campaign";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, ConnectCampaignsV2Campaign.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-ConnectCampaignsV2-Campaign.js.map
|
|
@@ -13,6 +13,12 @@ export type CustomerProfilesIntegrationProperties = {
|
|
|
13
13
|
* @pattern `^[a-zA-Z0-9_-]+$`
|
|
14
14
|
*/
|
|
15
15
|
DomainName: string;
|
|
16
|
+
/**
|
|
17
|
+
* A list of unique names for active event triggers associated with the integration.
|
|
18
|
+
* @minLength `1`
|
|
19
|
+
* @maxLength `1`
|
|
20
|
+
*/
|
|
21
|
+
EventTriggerNames?: string[];
|
|
16
22
|
FlowDefinition?: FlowDefinition;
|
|
17
23
|
/**
|
|
18
24
|
* The name of the ObjectType defined for the 3rd party data in Profile Service
|
|
@@ -89,6 +89,17 @@ export type DeadlineFleetAttributes = {
|
|
|
89
89
|
Status: FleetStatus;
|
|
90
90
|
WorkerCount: number;
|
|
91
91
|
};
|
|
92
|
+
/**
|
|
93
|
+
* Type definition for `AWS::Deadline::Fleet.AcceleratorCapabilities`.
|
|
94
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-acceleratorcapabilities.html}
|
|
95
|
+
*/
|
|
96
|
+
export type AcceleratorCapabilities = {
|
|
97
|
+
Count?: AcceleratorCountRange;
|
|
98
|
+
/**
|
|
99
|
+
* @minLength `1`
|
|
100
|
+
*/
|
|
101
|
+
Selections: AcceleratorSelection[];
|
|
102
|
+
};
|
|
92
103
|
/**
|
|
93
104
|
* Type definition for `AWS::Deadline::Fleet.AcceleratorCountRange`.
|
|
94
105
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-acceleratorcountrange.html}
|
|
@@ -105,6 +116,18 @@ export type AcceleratorCountRange = {
|
|
|
105
116
|
*/
|
|
106
117
|
Min: number;
|
|
107
118
|
};
|
|
119
|
+
/**
|
|
120
|
+
* Type definition for `AWS::Deadline::Fleet.AcceleratorSelection`.
|
|
121
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-acceleratorselection.html}
|
|
122
|
+
*/
|
|
123
|
+
export type AcceleratorSelection = {
|
|
124
|
+
Name: "t4" | "a10g" | "l4" | "l40s";
|
|
125
|
+
/**
|
|
126
|
+
* @minLength `1`
|
|
127
|
+
* @maxLength `100`
|
|
128
|
+
*/
|
|
129
|
+
Runtime?: string;
|
|
130
|
+
};
|
|
108
131
|
/**
|
|
109
132
|
* Type definition for `AWS::Deadline::Fleet.AcceleratorTotalMemoryMiBRange`.
|
|
110
133
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-acceleratortotalmemorymibrange.html}
|
|
@@ -288,6 +311,7 @@ export type ServiceManagedEc2FleetConfiguration = {
|
|
|
288
311
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-servicemanagedec2instancecapabilities.html}
|
|
289
312
|
*/
|
|
290
313
|
export type ServiceManagedEc2InstanceCapabilities = {
|
|
314
|
+
AcceleratorCapabilities?: AcceleratorCapabilities;
|
|
291
315
|
/**
|
|
292
316
|
* @minLength `1`
|
|
293
317
|
* @maxLength `100`
|
|
@@ -80,6 +80,20 @@ export type EFSFileSystemProperties = {
|
|
|
80
80
|
export type EFSFileSystemAttributes = {
|
|
81
81
|
Arn: string;
|
|
82
82
|
FileSystemId: string;
|
|
83
|
+
/**
|
|
84
|
+
* Describes the replication configuration for a specific file system.
|
|
85
|
+
*/
|
|
86
|
+
ReplicationConfiguration: {
|
|
87
|
+
/**
|
|
88
|
+
* An array of destination objects. Only one destination object is supported.
|
|
89
|
+
* @minLength `1`
|
|
90
|
+
* @maxLength `1`
|
|
91
|
+
*/
|
|
92
|
+
Destinations: {
|
|
93
|
+
Status: string;
|
|
94
|
+
StatusMessage: string;
|
|
95
|
+
}[];
|
|
96
|
+
};
|
|
83
97
|
};
|
|
84
98
|
/**
|
|
85
99
|
* Type definition for `AWS::EFS::FileSystem.BackupPolicy`.
|
|
@@ -173,6 +187,7 @@ export type ReplicationDestination = {
|
|
|
173
187
|
AvailabilityZoneName?: string;
|
|
174
188
|
/**
|
|
175
189
|
* The ID of the destination Amazon EFS file system.
|
|
190
|
+
* @pattern `^(arn:aws[-a-z]*:elasticfilesystem:[0-9a-z-:]+:file-system/fs-[0-9a-f]{8,40}|fs-[0-9a-f]{8,40})$`
|
|
176
191
|
*/
|
|
177
192
|
FileSystemId?: string;
|
|
178
193
|
/**
|
|
@@ -184,6 +199,7 @@ export type ReplicationDestination = {
|
|
|
184
199
|
For One Zone file systems, the replication configuration must specify the AWS-Region in which the destination file system is located.
|
|
185
200
|
*/
|
|
186
201
|
Region?: string;
|
|
202
|
+
RoleArn?: string;
|
|
187
203
|
};
|
|
188
204
|
/**
|
|
189
205
|
* The ``AWS::EFS::FileSystem`` resource creates a new, empty file system in EFSlong (EFS). You must create a mount target ([AWS::EFS::MountTarget](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html)) to mount your EFS file system on an EC2 or other AWS cloud compute resource.
|
|
@@ -18,6 +18,9 @@ export type IoTThingTypeProperties = {
|
|
|
18
18
|
*/
|
|
19
19
|
ThingTypeName?: string;
|
|
20
20
|
ThingTypeProperties?: {
|
|
21
|
+
Mqtt5Configuration?: {
|
|
22
|
+
PropagatingAttributes?: PropagatingAttribute[];
|
|
23
|
+
};
|
|
21
24
|
/**
|
|
22
25
|
* @maxLength `3`
|
|
23
26
|
*/
|
|
@@ -37,6 +40,23 @@ export type IoTThingTypeAttributes = {
|
|
|
37
40
|
Arn: string;
|
|
38
41
|
Id: string;
|
|
39
42
|
};
|
|
43
|
+
/**
|
|
44
|
+
* Type definition for `AWS::IoT::ThingType.PropagatingAttribute`.
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thingtype-propagatingattribute.html}
|
|
46
|
+
*/
|
|
47
|
+
export type PropagatingAttribute = {
|
|
48
|
+
ConnectionAttribute?: "iot:ClientId" | "iot:Thing.ThingName";
|
|
49
|
+
/**
|
|
50
|
+
* @maxLength `128`
|
|
51
|
+
* @pattern `[a-zA-Z0-9_.,@/:#-]+`
|
|
52
|
+
*/
|
|
53
|
+
ThingAttribute?: string;
|
|
54
|
+
/**
|
|
55
|
+
* @maxLength `128`
|
|
56
|
+
* @pattern `[a-zA-Z0-9:$.]+`
|
|
57
|
+
*/
|
|
58
|
+
UserPropertyKey: string;
|
|
59
|
+
};
|
|
40
60
|
/**
|
|
41
61
|
* Type definition for `AWS::IoT::ThingType.Tag`.
|
|
42
62
|
* A key-value pair to associate with a resource.
|
|
@@ -18,6 +18,11 @@ export type IoTFleetWiseCampaignProperties = {
|
|
|
18
18
|
* @maxLength `5`
|
|
19
19
|
*/
|
|
20
20
|
DataExtraDimensions?: string[];
|
|
21
|
+
/**
|
|
22
|
+
* @minLength `0`
|
|
23
|
+
* @maxLength `20`
|
|
24
|
+
*/
|
|
25
|
+
DataPartitions?: DataPartition[];
|
|
21
26
|
/**
|
|
22
27
|
* @minLength `1`
|
|
23
28
|
* @maxLength `2048`
|
|
@@ -139,6 +144,48 @@ export type DataDestinationConfig = {
|
|
|
139
144
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-dataformat.html}
|
|
140
145
|
*/
|
|
141
146
|
export type DataFormat = "JSON" | "PARQUET";
|
|
147
|
+
/**
|
|
148
|
+
* Type definition for `AWS::IoTFleetWise::Campaign.DataPartition`.
|
|
149
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-datapartition.html}
|
|
150
|
+
*/
|
|
151
|
+
export type DataPartition = {
|
|
152
|
+
/**
|
|
153
|
+
* @minLength `1`
|
|
154
|
+
* @maxLength `128`
|
|
155
|
+
* @pattern `^[a-zA-Z0-9]+$`
|
|
156
|
+
*/
|
|
157
|
+
Id: string;
|
|
158
|
+
StorageOptions: DataPartitionStorageOptions;
|
|
159
|
+
UploadOptions?: DataPartitionUploadOptions;
|
|
160
|
+
};
|
|
161
|
+
/**
|
|
162
|
+
* Type definition for `AWS::IoTFleetWise::Campaign.DataPartitionStorageOptions`.
|
|
163
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-datapartitionstorageoptions.html}
|
|
164
|
+
*/
|
|
165
|
+
export type DataPartitionStorageOptions = {
|
|
166
|
+
MaximumSize: StorageMaximumSize;
|
|
167
|
+
MinimumTimeToLive: StorageMinimumTimeToLive;
|
|
168
|
+
/**
|
|
169
|
+
* @minLength `1`
|
|
170
|
+
* @maxLength `4096`
|
|
171
|
+
*/
|
|
172
|
+
StorageLocation: string;
|
|
173
|
+
};
|
|
174
|
+
/**
|
|
175
|
+
* Type definition for `AWS::IoTFleetWise::Campaign.DataPartitionUploadOptions`.
|
|
176
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-datapartitionuploadoptions.html}
|
|
177
|
+
*/
|
|
178
|
+
export type DataPartitionUploadOptions = {
|
|
179
|
+
/**
|
|
180
|
+
* @min `1`
|
|
181
|
+
*/
|
|
182
|
+
ConditionLanguageVersion?: number;
|
|
183
|
+
/**
|
|
184
|
+
* @minLength `1`
|
|
185
|
+
* @maxLength `2048`
|
|
186
|
+
*/
|
|
187
|
+
Expression: string;
|
|
188
|
+
};
|
|
142
189
|
/**
|
|
143
190
|
* Type definition for `AWS::IoTFleetWise::Campaign.DiagnosticsMode`.
|
|
144
191
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-diagnosticsmode.html}
|
|
@@ -219,6 +266,12 @@ export type SignalFetchInformation = {
|
|
|
219
266
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-signalinformation.html}
|
|
220
267
|
*/
|
|
221
268
|
export type SignalInformation = {
|
|
269
|
+
/**
|
|
270
|
+
* @minLength `1`
|
|
271
|
+
* @maxLength `128`
|
|
272
|
+
* @pattern `^[a-zA-Z0-9]+$`
|
|
273
|
+
*/
|
|
274
|
+
DataPartitionId?: string;
|
|
222
275
|
/**
|
|
223
276
|
* @min `1`
|
|
224
277
|
* @max `4294967295`
|
|
@@ -246,6 +299,40 @@ export type SpoolingMode = "OFF" | "TO_DISK";
|
|
|
246
299
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-storagecompressionformat.html}
|
|
247
300
|
*/
|
|
248
301
|
export type StorageCompressionFormat = "NONE" | "GZIP";
|
|
302
|
+
/**
|
|
303
|
+
* Type definition for `AWS::IoTFleetWise::Campaign.StorageMaximumSize`.
|
|
304
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-storagemaximumsize.html}
|
|
305
|
+
*/
|
|
306
|
+
export type StorageMaximumSize = {
|
|
307
|
+
Unit: StorageMaximumSizeUnit;
|
|
308
|
+
/**
|
|
309
|
+
* @min `1`
|
|
310
|
+
* @max `1073741824`
|
|
311
|
+
*/
|
|
312
|
+
Value: number;
|
|
313
|
+
};
|
|
314
|
+
/**
|
|
315
|
+
* Type definition for `AWS::IoTFleetWise::Campaign.StorageMaximumSizeUnit`.
|
|
316
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-storagemaximumsizeunit.html}
|
|
317
|
+
*/
|
|
318
|
+
export type StorageMaximumSizeUnit = "MB" | "GB" | "TB";
|
|
319
|
+
/**
|
|
320
|
+
* Type definition for `AWS::IoTFleetWise::Campaign.StorageMinimumTimeToLive`.
|
|
321
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-storageminimumtimetolive.html}
|
|
322
|
+
*/
|
|
323
|
+
export type StorageMinimumTimeToLive = {
|
|
324
|
+
Unit: StorageMinimumTimeToLiveUnit;
|
|
325
|
+
/**
|
|
326
|
+
* @min `1`
|
|
327
|
+
* @max `10000`
|
|
328
|
+
*/
|
|
329
|
+
Value: number;
|
|
330
|
+
};
|
|
331
|
+
/**
|
|
332
|
+
* Type definition for `AWS::IoTFleetWise::Campaign.StorageMinimumTimeToLiveUnit`.
|
|
333
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-storageminimumtimetoliveunit.html}
|
|
334
|
+
*/
|
|
335
|
+
export type StorageMinimumTimeToLiveUnit = "HOURS" | "DAYS" | "WEEKS";
|
|
249
336
|
/**
|
|
250
337
|
* Type definition for `AWS::IoTFleetWise::Campaign.Tag`.
|
|
251
338
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-tag.html}
|
|
@@ -40,7 +40,7 @@ export type LambdaPermissionProperties = {
|
|
|
40
40
|
*/
|
|
41
41
|
FunctionUrlAuthType?: "AWS_IAM" | "NONE";
|
|
42
42
|
/**
|
|
43
|
-
* The AWS-service
|
|
43
|
+
* 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.
|
|
44
44
|
* @minLength `1`
|
|
45
45
|
* @maxLength `256`
|
|
46
46
|
* @pattern `^.*$`
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource Type definition for AWS::Rbin::Rule
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rbin-rule.html}
|
|
6
|
+
*/
|
|
7
|
+
export type RbinRuleProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The description of the retention rule.
|
|
10
|
+
* @maxLength `255`
|
|
11
|
+
*/
|
|
12
|
+
Description?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Information about the exclude resource tags used to identify resources that are excluded by the retention rule.
|
|
15
|
+
* @maxLength `5`
|
|
16
|
+
*/
|
|
17
|
+
ExcludeResourceTags?: ResourceTag[];
|
|
18
|
+
/**
|
|
19
|
+
* Information about the retention rule lock configuration.
|
|
20
|
+
*/
|
|
21
|
+
LockConfiguration?: UnlockDelay;
|
|
22
|
+
/**
|
|
23
|
+
* Information about the resource tags used to identify resources that are retained by the retention rule.
|
|
24
|
+
* @maxLength `50`
|
|
25
|
+
*/
|
|
26
|
+
ResourceTags?: ResourceTag[];
|
|
27
|
+
/**
|
|
28
|
+
* The resource type retained by the retention rule.
|
|
29
|
+
*/
|
|
30
|
+
ResourceType: "EBS_SNAPSHOT" | "EC2_IMAGE";
|
|
31
|
+
/**
|
|
32
|
+
* Information about the retention period for which the retention rule is to retain resources.
|
|
33
|
+
*/
|
|
34
|
+
RetentionPeriod: RetentionPeriod;
|
|
35
|
+
/**
|
|
36
|
+
* The state of the retention rule. Only retention rules that are in the available state retain resources.
|
|
37
|
+
* @pattern `pending|available`
|
|
38
|
+
*/
|
|
39
|
+
Status?: string;
|
|
40
|
+
/**
|
|
41
|
+
* Information about the tags assigned to the retention rule.
|
|
42
|
+
* @maxLength `200`
|
|
43
|
+
*/
|
|
44
|
+
Tags?: Tag[];
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* Attribute type definition for `AWS::Rbin::Rule`.
|
|
48
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rbin-rule.html#aws-resource-rbin-rule-return-values}
|
|
49
|
+
*/
|
|
50
|
+
export type RbinRuleAttributes = {
|
|
51
|
+
/**
|
|
52
|
+
* Rule Arn is unique for each rule.
|
|
53
|
+
* @minLength `0`
|
|
54
|
+
* @maxLength `1011`
|
|
55
|
+
*/
|
|
56
|
+
Arn: string;
|
|
57
|
+
/**
|
|
58
|
+
* The unique ID of the retention rule.
|
|
59
|
+
* @pattern `[0-9a-zA-Z]{11}`
|
|
60
|
+
*/
|
|
61
|
+
Identifier: string;
|
|
62
|
+
/**
|
|
63
|
+
* The lock state for the retention rule.
|
|
64
|
+
* @pattern `locked|pending_unlock|unlocked`
|
|
65
|
+
*/
|
|
66
|
+
LockState: string;
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* Type definition for `AWS::Rbin::Rule.ResourceTag`.
|
|
70
|
+
* The resource tag of the rule.
|
|
71
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rbin-rule-resourcetag.html}
|
|
72
|
+
*/
|
|
73
|
+
export type ResourceTag = {
|
|
74
|
+
/**
|
|
75
|
+
* The tag key of the resource.
|
|
76
|
+
* @minLength `1`
|
|
77
|
+
* @maxLength `128`
|
|
78
|
+
*/
|
|
79
|
+
ResourceTagKey: string;
|
|
80
|
+
/**
|
|
81
|
+
* The tag value of the resource
|
|
82
|
+
* @minLength `0`
|
|
83
|
+
* @maxLength `256`
|
|
84
|
+
*/
|
|
85
|
+
ResourceTagValue: string;
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* Type definition for `AWS::Rbin::Rule.RetentionPeriod`.
|
|
89
|
+
* The retention period of the rule.
|
|
90
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rbin-rule-retentionperiod.html}
|
|
91
|
+
*/
|
|
92
|
+
export type RetentionPeriod = {
|
|
93
|
+
/**
|
|
94
|
+
* The retention period unit of the rule
|
|
95
|
+
*/
|
|
96
|
+
RetentionPeriodUnit: "DAYS";
|
|
97
|
+
/**
|
|
98
|
+
* The retention period value of the rule.
|
|
99
|
+
* @min `1`
|
|
100
|
+
* @max `3650`
|
|
101
|
+
*/
|
|
102
|
+
RetentionPeriodValue: number;
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* Type definition for `AWS::Rbin::Rule.Tag`.
|
|
106
|
+
* Metadata of a retention rule, consisting of a key-value pair.
|
|
107
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rbin-rule-tag.html}
|
|
108
|
+
*/
|
|
109
|
+
export type Tag = {
|
|
110
|
+
/**
|
|
111
|
+
* A unique identifier for the tag.
|
|
112
|
+
* @minLength `1`
|
|
113
|
+
* @maxLength `128`
|
|
114
|
+
*/
|
|
115
|
+
Key: string;
|
|
116
|
+
/**
|
|
117
|
+
* String which you can use to describe or define the tag.
|
|
118
|
+
* @minLength `0`
|
|
119
|
+
* @maxLength `256`
|
|
120
|
+
*/
|
|
121
|
+
Value: string;
|
|
122
|
+
};
|
|
123
|
+
/**
|
|
124
|
+
* Type definition for `AWS::Rbin::Rule.UnlockDelay`.
|
|
125
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rbin-rule-unlockdelay.html}
|
|
126
|
+
*/
|
|
127
|
+
export type UnlockDelay = {
|
|
128
|
+
/**
|
|
129
|
+
* The unit of time in which to measure the unlock delay. Currently, the unlock delay can be measure only in days.
|
|
130
|
+
*/
|
|
131
|
+
UnlockDelayUnit?: "DAYS";
|
|
132
|
+
/**
|
|
133
|
+
* The unlock delay period, measured in the unit specified for UnlockDelayUnit.
|
|
134
|
+
* @min `7`
|
|
135
|
+
* @max `30`
|
|
136
|
+
*/
|
|
137
|
+
UnlockDelayValue?: number;
|
|
138
|
+
};
|
|
139
|
+
/**
|
|
140
|
+
* Resource Type definition for AWS::Rbin::Rule
|
|
141
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rbin-rule.html}
|
|
142
|
+
*/
|
|
143
|
+
export declare class RbinRule extends $Resource<"AWS::Rbin::Rule", RbinRuleProperties, RbinRuleAttributes> {
|
|
144
|
+
static readonly Type = "AWS::Rbin::Rule";
|
|
145
|
+
constructor(logicalId: string, properties: RbinRuleProperties, options?: $ResourceOptions);
|
|
146
|
+
}
|
|
147
|
+
//# sourceMappingURL=AWS-Rbin-Rule.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::Rbin::Rule
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rbin-rule.html}
|
|
5
|
+
*/
|
|
6
|
+
export class RbinRule extends $Resource {
|
|
7
|
+
static Type = "AWS::Rbin::Rule";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, RbinRule.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Rbin-Rule.js.map
|
|
@@ -44,6 +44,17 @@ export type Route53ResolverFirewallRuleGroupAttributes = {
|
|
|
44
44
|
* @maxLength `255`
|
|
45
45
|
*/
|
|
46
46
|
CreatorRequestId: string;
|
|
47
|
+
/**
|
|
48
|
+
* FirewallRules
|
|
49
|
+
*/
|
|
50
|
+
FirewallRules: {
|
|
51
|
+
/**
|
|
52
|
+
* ResourceId
|
|
53
|
+
* @minLength `1`
|
|
54
|
+
* @maxLength `64`
|
|
55
|
+
*/
|
|
56
|
+
FirewallThreatProtectionId: string;
|
|
57
|
+
}[];
|
|
47
58
|
/**
|
|
48
59
|
* ResourceId
|
|
49
60
|
* @minLength `1`
|
|
@@ -109,12 +120,20 @@ export type FirewallRule = {
|
|
|
109
120
|
* BlockResponse
|
|
110
121
|
*/
|
|
111
122
|
BlockResponse?: "NODATA" | "NXDOMAIN" | "OVERRIDE";
|
|
123
|
+
/**
|
|
124
|
+
* FirewallDomainRedirectionAction
|
|
125
|
+
*/
|
|
126
|
+
ConfidenceThreshold?: "LOW" | "MEDIUM" | "HIGH";
|
|
127
|
+
/**
|
|
128
|
+
* FirewallDomainRedirectionAction
|
|
129
|
+
*/
|
|
130
|
+
DnsThreatProtection?: "DGA" | "DNS_TUNNELING";
|
|
112
131
|
/**
|
|
113
132
|
* ResourceId
|
|
114
133
|
* @minLength `1`
|
|
115
134
|
* @maxLength `64`
|
|
116
135
|
*/
|
|
117
|
-
FirewallDomainListId
|
|
136
|
+
FirewallDomainListId?: string;
|
|
118
137
|
/**
|
|
119
138
|
* FirewallDomainRedirectionAction
|
|
120
139
|
*/
|