@awboost/cfn-resource-types 0.1.456 → 0.1.458

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.
@@ -73,7 +73,7 @@ export type BillingGroupStatus = "ACTIVE" | "PRIMARY_ACCOUNT_MISSING";
73
73
  export type ComputationPreference = {
74
74
  /**
75
75
  * ARN of the attached pricing plan
76
- * @pattern `arn:aws(-cn)?:billingconductor::[0-9]{12}:pricingplan/[a-zA-Z0-9]{10}`
76
+ * @pattern `arn:aws(-cn)?:billingconductor::(aws|[0-9]{12}):pricingplan/(BasicPricingPlan|[a-zA-Z0-9]{10})`
77
77
  */
78
78
  PricingPlanArn: string;
79
79
  };
@@ -26,7 +26,7 @@ export type BillingConductorPricingPlanProperties = {
26
26
  export type BillingConductorPricingPlanAttributes = {
27
27
  /**
28
28
  * Pricing Plan ARN
29
- * @pattern `arn:aws(-cn)?:billingconductor::[0-9]{12}:pricingplan/[a-zA-Z0-9]{10}`
29
+ * @pattern `arn:aws(-cn)?:billingconductor::(aws|[0-9]{12}):pricingplan/(BasicPricingPlan|[a-zA-Z0-9]{10})`
30
30
  */
31
31
  Arn: string;
32
32
  /**
@@ -64,6 +64,17 @@ export type ConnectEvaluationFormAttributes = {
64
64
  export type AutoEvaluationConfiguration = {
65
65
  Enabled?: boolean;
66
66
  };
67
+ /**
68
+ * Type definition for `AWS::Connect::EvaluationForm.AutomaticFailConfiguration`.
69
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-automaticfailconfiguration.html}
70
+ */
71
+ export type AutomaticFailConfiguration = {
72
+ /**
73
+ * The target section refId to control failure propagation boundary.
74
+ * @pattern `^[a-zA-Z0-9._-]{1,40}$`
75
+ */
76
+ TargetSection?: string;
77
+ };
67
78
  /**
68
79
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormBaseItem`.
69
80
  * An item at the root level. All items must be sections.
@@ -90,12 +101,105 @@ export type EvaluationFormItem = {
90
101
  */
91
102
  Section?: EvaluationFormSection;
92
103
  };
104
+ /**
105
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementCondition`.
106
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementcondition.html}
107
+ */
108
+ export type EvaluationFormItemEnablementCondition = {
109
+ /**
110
+ * The list of operands that compose the condition. Each operand represents a specific criteria to be evaluated.
111
+ * @minLength `1`
112
+ */
113
+ Operands: EvaluationFormItemEnablementConditionOperand[];
114
+ /**
115
+ * The logical operator used to combine multiple operands, determining how the condition is evaluated as a whole.
116
+ */
117
+ Operator?: "OR" | "AND";
118
+ };
119
+ /**
120
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementConditionOperand`.
121
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconditionoperand.html}
122
+ */
123
+ export type EvaluationFormItemEnablementConditionOperand = {
124
+ /**
125
+ * A direct comparison expression that evaluates a form item's value against specified criteria.
126
+ */
127
+ Expression?: EvaluationFormItemEnablementExpression;
128
+ };
129
+ /**
130
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementConfiguration`.
131
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconfiguration.html}
132
+ */
133
+ export type EvaluationFormItemEnablementConfiguration = {
134
+ /**
135
+ * Defines the enablement status to be applied when the specified condition is met.
136
+ */
137
+ Action: "DISABLE" | "ENABLE";
138
+ /**
139
+ * Specifies the logical condition that determines when to apply the enablement rules.
140
+ */
141
+ Condition: EvaluationFormItemEnablementCondition;
142
+ /**
143
+ * Specifies the default enablement status to be applied when the condition is not satisfied.
144
+ */
145
+ DefaultAction?: "DISABLE" | "ENABLE";
146
+ };
147
+ /**
148
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementExpression`.
149
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementexpression.html}
150
+ */
151
+ export type EvaluationFormItemEnablementExpression = {
152
+ /**
153
+ * Specifies the comparison method to determine if the source value matches any of the specified values.
154
+ */
155
+ Comparator: "IN" | "NOT_IN";
156
+ /**
157
+ * Identifies the form item whose value will be evaluated in the expression.
158
+ */
159
+ Source: EvaluationFormItemEnablementSource;
160
+ /**
161
+ * The list of possible values to compare against the source form item's value.
162
+ * @minLength `1`
163
+ */
164
+ Values: EvaluationFormItemEnablementSourceValue[];
165
+ };
166
+ /**
167
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementSource`.
168
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementsource.html}
169
+ */
170
+ export type EvaluationFormItemEnablementSource = {
171
+ /**
172
+ * The identifier to reference the item.
173
+ * @pattern `^[a-zA-Z0-9._-]{1,40}$`
174
+ */
175
+ RefId?: string;
176
+ /**
177
+ * The type of the source entity.
178
+ */
179
+ Type: "QUESTION_REF_ID";
180
+ };
181
+ /**
182
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementSourceValue`.
183
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementsourcevalue.html}
184
+ */
185
+ export type EvaluationFormItemEnablementSourceValue = {
186
+ /**
187
+ * The reference id of the source entity value.
188
+ * @pattern `^[a-zA-Z0-9._-]{1,40}$`
189
+ */
190
+ RefId?: string;
191
+ /**
192
+ * Type of the source entity value.
193
+ */
194
+ Type?: "OPTION_REF_ID";
195
+ };
93
196
  /**
94
197
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormNumericQuestionAutomation`.
95
198
  * Information about the automation configuration in numeric questions.
96
199
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionautomation.html}
97
200
  */
98
201
  export type EvaluationFormNumericQuestionAutomation = {
202
+ AnswerSource?: EvaluationFormQuestionAutomationAnswerSource;
99
203
  /**
100
204
  * The property value of the automation.
101
205
  */
@@ -111,6 +215,7 @@ export type EvaluationFormNumericQuestionOption = {
111
215
  * The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.
112
216
  */
113
217
  AutomaticFail?: boolean;
218
+ AutomaticFailConfiguration?: AutomaticFailConfiguration;
114
219
  /**
115
220
  * The maximum answer value of the range option.
116
221
  */
@@ -159,6 +264,7 @@ export type EvaluationFormNumericQuestionProperties = {
159
264
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestion.html}
160
265
  */
161
266
  export type EvaluationFormQuestion = {
267
+ Enablement?: EvaluationFormItemEnablementConfiguration;
162
268
  /**
163
269
  * The instructions of the section.
164
270
  *Length Constraints*: Minimum length of 0. Maximum length of 1024.
@@ -200,6 +306,16 @@ export type EvaluationFormQuestion = {
200
306
  */
201
307
  Weight?: number;
202
308
  };
309
+ /**
310
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormQuestionAutomationAnswerSource`.
311
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestionautomationanswersource.html}
312
+ */
313
+ export type EvaluationFormQuestionAutomationAnswerSource = {
314
+ /**
315
+ * The type of the answer sourcr
316
+ */
317
+ SourceType: "CONTACT_LENS_DATA" | "GEN_AI";
318
+ };
203
319
  /**
204
320
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormQuestionTypeProperties`.
205
321
  * Information about properties for a question in an evaluation form. The question type properties must be either for a numeric question or a single select question.
@@ -214,6 +330,7 @@ export type EvaluationFormQuestionTypeProperties = {
214
330
  * The properties of the numeric question.
215
331
  */
216
332
  SingleSelect?: EvaluationFormSingleSelectQuestionProperties;
333
+ Text?: EvaluationFormTextQuestionProperties;
217
334
  };
218
335
  /**
219
336
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormSection`.
@@ -261,6 +378,7 @@ export type EvaluationFormSection = {
261
378
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformsingleselectquestionautomation.html}
262
379
  */
263
380
  export type EvaluationFormSingleSelectQuestionAutomation = {
381
+ AnswerSource?: EvaluationFormQuestionAutomationAnswerSource;
264
382
  /**
265
383
  * The identifier of the default answer option, when none of the automation options match the criteria.
266
384
  *Length Constraints*: Minimum length of 1. Maximum length of 40.
@@ -297,6 +415,7 @@ export type EvaluationFormSingleSelectQuestionOption = {
297
415
  * The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.
298
416
  */
299
417
  AutomaticFail?: boolean;
418
+ AutomaticFailConfiguration?: AutomaticFailConfiguration;
300
419
  /**
301
420
  * The identifier of the answer option. An identifier must be unique within the question.
302
421
  *Length Constraints*: Minimum length of 1. Maximum length of 40.
@@ -343,6 +462,26 @@ export type EvaluationFormSingleSelectQuestionProperties = {
343
462
  */
344
463
  Options: EvaluationFormSingleSelectQuestionOption[];
345
464
  };
465
+ /**
466
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormTextQuestionAutomation`.
467
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtextquestionautomation.html}
468
+ */
469
+ export type EvaluationFormTextQuestionAutomation = {
470
+ /**
471
+ * The source of automation answer of the question.
472
+ */
473
+ AnswerSource?: EvaluationFormQuestionAutomationAnswerSource;
474
+ };
475
+ /**
476
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormTextQuestionProperties`.
477
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtextquestionproperties.html}
478
+ */
479
+ export type EvaluationFormTextQuestionProperties = {
480
+ /**
481
+ * Specifies how the question can be automatically answered.
482
+ */
483
+ Automation?: EvaluationFormTextQuestionAutomation;
484
+ };
346
485
  /**
347
486
  * Type definition for `AWS::Connect::EvaluationForm.NumericQuestionPropertyValueAutomation`.
348
487
  * Information about the property value used in automation of a numeric questions.
@@ -82,8 +82,9 @@ export type ECSServiceProperties = {
82
82
  */
83
83
  HealthCheckGracePeriodSeconds?: number;
84
84
  /**
85
- * The launch type on which to run your service. For more information, see [Amazon ECS Launch Types](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html) in the *Amazon Elastic Container Service Developer Guide*.
86
- */
85
+ * The launch type on which to run your service. For more information, see [Amazon ECS Launch Types](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html) in the *Amazon Elastic Container Service Developer Guide*.
86
+ If you want to use Managed Instances, you must use the ``capacityProviderStrategy`` request parameter
87
+ */
87
88
  LaunchType?: "EC2" | "FARGATE" | "EXTERNAL";
88
89
  /**
89
90
  * A list of load balancer objects to associate with the service. If you specify the ``Role`` property, ``LoadBalancers`` must be specified as well. For information about the number of load balancers that you can specify per service, see [Service Load Balancing](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-load-balancing.html) in the *Amazon Elastic Container Service Developer Guide*.
@@ -73,8 +73,9 @@ export type Action = {
73
73
  */
74
74
  FixedResponseConfig?: FixedResponseConfig;
75
75
  /**
76
- * Information for creating an action that distributes requests among one or more target groups. For Network Load Balancers, you can specify a single target group. Specify only when ``Type`` is ``forward``. If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
77
- */
76
+ * Information for creating an action that distributes requests among multiple target groups. Specify only when ``Type`` is ``forward``.
77
+ If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
78
+ */
78
79
  ForwardConfig?: ForwardConfig;
79
80
  /**
80
81
  * The order for the action. This value is required for rules with multiple actions. The action with the lowest value for order is performed first.
@@ -85,7 +86,7 @@ export type Action = {
85
86
  */
86
87
  RedirectConfig?: RedirectConfig;
87
88
  /**
88
- * The Amazon Resource Name (ARN) of the target group. Specify only when ``Type`` is ``forward`` and you want to route to a single target group. To route to one or more target groups, use ``ForwardConfig`` instead.
89
+ * The Amazon Resource Name (ARN) of the target group. Specify only when ``Type`` is ``forward`` and you want to route to a single target group. To route to multiple target groups, you must use ``ForwardConfig`` instead.
89
90
  */
90
91
  TargetGroupArn?: string;
91
92
  /**
@@ -228,7 +229,8 @@ export type FixedResponseConfig = {
228
229
  };
229
230
  /**
230
231
  * Type definition for `AWS::ElasticLoadBalancingV2::Listener.ForwardConfig`.
231
- * Information for creating an action that distributes requests among one or more target groups. For Network Load Balancers, you can specify a single target group. Specify only when ``Type`` is ``forward``. If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
232
+ * Information for creating an action that distributes requests among multiple target groups. Specify only when ``Type`` is ``forward``.
233
+ If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
232
234
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-forwardconfig.html}
233
235
  */
234
236
  export type ForwardConfig = {
@@ -349,7 +351,7 @@ export type RedirectConfig = {
349
351
  */
350
352
  export type TargetGroupStickinessConfig = {
351
353
  /**
352
- * The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.
354
+ * [Application Load Balancers] The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.
353
355
  */
354
356
  DurationSeconds?: number;
355
357
  /**
@@ -26,6 +26,7 @@ export type ElasticLoadBalancingV2ListenerRuleProperties = {
26
26
  If you try to reorder rules by updating their priorities, do not specify a new priority if an existing rule already uses this priority, as this can cause an error. If you need to reuse a priority with a different rule, you must remove it as a priority first, and then specify it in a subsequent update.
27
27
  */
28
28
  Priority: number;
29
+ Transforms?: Transform[];
29
30
  };
30
31
  /**
31
32
  * Attribute type definition for `AWS::ElasticLoadBalancingV2::ListenerRule`.
@@ -54,8 +55,9 @@ export type Action = {
54
55
  */
55
56
  FixedResponseConfig?: FixedResponseConfig;
56
57
  /**
57
- * Information for creating an action that distributes requests among one or more target groups. For Network Load Balancers, you can specify a single target group. Specify only when ``Type`` is ``forward``. If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
58
- */
58
+ * Information for creating an action that distributes requests among multiple target groups. Specify only when ``Type`` is ``forward``.
59
+ If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
60
+ */
59
61
  ForwardConfig?: ForwardConfig;
60
62
  /**
61
63
  * The order for the action. This value is required for rules with multiple actions. The action with the lowest value for order is performed first.
@@ -66,7 +68,7 @@ export type Action = {
66
68
  */
67
69
  RedirectConfig?: RedirectConfig;
68
70
  /**
69
- * The Amazon Resource Name (ARN) of the target group. Specify only when ``Type`` is ``forward`` and you want to route to a single target group. To route to one or more target groups, use ``ForwardConfig`` instead.
71
+ * The Amazon Resource Name (ARN) of the target group. Specify only when ``Type`` is ``forward`` and you want to route to a single target group. To route to multiple target groups, you must use ``ForwardConfig`` instead.
70
72
  */
71
73
  TargetGroupArn?: string;
72
74
  /**
@@ -198,7 +200,8 @@ export type FixedResponseConfig = {
198
200
  };
199
201
  /**
200
202
  * Type definition for `AWS::ElasticLoadBalancingV2::ListenerRule.ForwardConfig`.
201
- * Information for creating an action that distributes requests among one or more target groups. For Network Load Balancers, you can specify a single target group. Specify only when ``Type`` is ``forward``. If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
203
+ * Information for creating an action that distributes requests among multiple target groups. Specify only when ``Type`` is ``forward``.
204
+ If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
202
205
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-forwardconfig.html}
203
206
  */
204
207
  export type ForwardConfig = {
@@ -217,6 +220,7 @@ export type ForwardConfig = {
217
220
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-hostheaderconfig.html}
218
221
  */
219
222
  export type HostHeaderConfig = {
223
+ RegexValues?: string[];
220
224
  /**
221
225
  * The host names. The maximum size of each name is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
222
226
  If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
@@ -234,6 +238,7 @@ export type HttpHeaderConfig = {
234
238
  * The name of the HTTP header field. The maximum size is 40 characters. The header name is case insensitive. The allowed characters are specified by RFC 7230. Wildcards are not supported.
235
239
  */
236
240
  HttpHeaderName?: string;
241
+ RegexValues?: string[];
237
242
  /**
238
243
  * The strings to compare against the value of the HTTP header. The maximum size of each string is 128 characters. The comparison strings are case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
239
244
  If the same header appears multiple times in the request, we search them in order until a match is found.
@@ -260,6 +265,7 @@ export type HttpRequestMethodConfig = {
260
265
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-pathpatternconfig.html}
261
266
  */
262
267
  export type PathPatternConfig = {
268
+ RegexValues?: string[];
263
269
  /**
264
270
  * The path patterns to compare against the request URL. The maximum size of each string is 128 characters. The comparison is case sensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
265
271
  If you specify multiple strings, the condition is satisfied if one of them matches the request URL. The path pattern is compared only to the path of the URL, not to its query string.
@@ -334,6 +340,21 @@ export type RedirectConfig = {
334
340
  */
335
341
  StatusCode: string;
336
342
  };
343
+ /**
344
+ * Type definition for `AWS::ElasticLoadBalancingV2::ListenerRule.RewriteConfig`.
345
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-rewriteconfig.html}
346
+ */
347
+ export type RewriteConfig = {
348
+ Regex: string;
349
+ Replace: string;
350
+ };
351
+ /**
352
+ * Type definition for `AWS::ElasticLoadBalancingV2::ListenerRule.RewriteConfigObject`.
353
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-rewriteconfigobject.html}
354
+ */
355
+ export type RewriteConfigObject = {
356
+ Rewrites: RewriteConfig[];
357
+ };
337
358
  /**
338
359
  * Type definition for `AWS::ElasticLoadBalancingV2::ListenerRule.RuleCondition`.
339
360
  * Specifies a condition for a listener rule.
@@ -370,6 +391,7 @@ export type RuleCondition = {
370
391
  * Information for a query string condition. Specify only when ``Field`` is ``query-string``.
371
392
  */
372
393
  QueryStringConfig?: QueryStringConfig;
394
+ RegexValues?: string[];
373
395
  /**
374
396
  * Information for a source IP condition. Specify only when ``Field`` is ``source-ip``.
375
397
  */
@@ -411,7 +433,7 @@ export type SourceIpConfig = {
411
433
  */
412
434
  export type TargetGroupStickinessConfig = {
413
435
  /**
414
- * The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.
436
+ * [Application Load Balancers] The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.
415
437
  */
416
438
  DurationSeconds?: number;
417
439
  /**
@@ -434,6 +456,15 @@ export type TargetGroupTuple = {
434
456
  */
435
457
  Weight?: number;
436
458
  };
459
+ /**
460
+ * Type definition for `AWS::ElasticLoadBalancingV2::ListenerRule.Transform`.
461
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-transform.html}
462
+ */
463
+ export type Transform = {
464
+ HostHeaderRewriteConfig?: RewriteConfigObject;
465
+ Type: string;
466
+ UrlRewriteConfig?: RewriteConfigObject;
467
+ };
437
468
  /**
438
469
  * Resource type definition for `AWS::ElasticLoadBalancingV2::ListenerRule`.
439
470
  * Specifies a listener rule. The listener must be associated with an Application Load Balancer. Each rule consists of a priority, one or more actions, and one or more conditions.
@@ -21,6 +21,10 @@ export type ImageBuilderImageProperties = {
21
21
  * The execution role name/ARN for the image build, if provided
22
22
  */
23
23
  ExecutionRole?: string;
24
+ /**
25
+ * The image pipeline execution settings of the image.
26
+ */
27
+ ImagePipelineExecutionSettings?: ImagePipelineExecutionSettings;
24
28
  /**
25
29
  * The Amazon Resource Name (ARN) of the image recipe that defines how images are configured, tested, and assessed.
26
30
  */
@@ -119,6 +123,21 @@ export type ImageLoggingConfiguration = {
119
123
  */
120
124
  LogGroupName?: string;
121
125
  };
126
+ /**
127
+ * Type definition for `AWS::ImageBuilder::Image.ImagePipelineExecutionSettings`.
128
+ * The settings for starting an image pipeline execution.
129
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagepipelineexecutionsettings.html}
130
+ */
131
+ export type ImagePipelineExecutionSettings = {
132
+ /**
133
+ * The deployment ID of the pipeline, used to trigger new image pipeline executions.
134
+ */
135
+ DeploymentId?: string;
136
+ /**
137
+ * Whether to trigger the image pipeline when the pipeline is updated. False by default.
138
+ */
139
+ OnUpdate?: boolean;
140
+ };
122
141
  /**
123
142
  * Type definition for `AWS::ImageBuilder::Image.ImageScanningConfiguration`.
124
143
  * Contains settings for Image Builder image resource and container image scans.
@@ -75,6 +75,10 @@ export type ImageBuilderImagePipelineAttributes = {
75
75
  * The Amazon Resource Name (ARN) of the image pipeline.
76
76
  */
77
77
  Arn: string;
78
+ /**
79
+ * The deployment ID of the pipeline, used for resource create/update triggers.
80
+ */
81
+ DeploymentId: string;
78
82
  };
79
83
  /**
80
84
  * Type definition for `AWS::ImageBuilder::ImagePipeline.AutoDisablePolicy`.
@@ -41,6 +41,10 @@ export type MediaPackageV2OriginEndpointProperties = {
41
41
  * <p>A low-latency HLS manifest configuration.</p>
42
42
  */
43
43
  LowLatencyHlsManifests?: LowLatencyHlsManifestConfiguration[];
44
+ /**
45
+ * <p>The Microsoft Smooth Streaming (MSS) manifest configurations associated with this origin endpoint.</p>
46
+ */
47
+ MssManifests?: MssManifestConfiguration[];
44
48
  /**
45
49
  * @minLength `1`
46
50
  * @maxLength `256`
@@ -97,6 +101,7 @@ export type MediaPackageV2OriginEndpointAttributes = {
97
101
  * <p>The date and time the origin endpoint was modified.</p>
98
102
  */
99
103
  ModifiedAt: string;
104
+ MssManifestUrls: string[];
100
105
  };
101
106
  /**
102
107
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.AdMarkerDash`.
@@ -107,7 +112,7 @@ export type AdMarkerDash = "BINARY" | "XML";
107
112
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.AdMarkerHls`.
108
113
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-admarkerhls.html}
109
114
  */
110
- export type AdMarkerHls = "DATERANGE";
115
+ export type AdMarkerHls = "DATERANGE" | "SCTE35_ENHANCED";
111
116
  /**
112
117
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.CmafEncryptionMethod`.
113
118
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-cmafencryptionmethod.html}
@@ -117,7 +122,7 @@ export type CmafEncryptionMethod = "CENC" | "CBCS";
117
122
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.ContainerType`.
118
123
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-containertype.html}
119
124
  */
120
- export type ContainerType = "TS" | "CMAF";
125
+ export type ContainerType = "TS" | "CMAF" | "ISM";
121
126
  /**
122
127
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.DashBaseUrl`.
123
128
  * <p>The base URLs to use for retrieving segments. You can specify multiple locations and indicate the priority and weight for when each should be used, for use in mutli-CDN workflows.</p>
@@ -445,6 +450,7 @@ export type EncryptionContractConfiguration = {
445
450
  */
446
451
  export type EncryptionMethod = {
447
452
  CmafEncryptionMethod?: CmafEncryptionMethod;
453
+ IsmEncryptionMethod?: IsmEncryptionMethod;
448
454
  TsEncryptionMethod?: TsEncryptionMethod;
449
455
  };
450
456
  /**
@@ -539,6 +545,11 @@ export type HlsManifestConfiguration = {
539
545
  */
540
546
  UrlEncodeChildManifest?: boolean;
541
547
  };
548
+ /**
549
+ * Type definition for `AWS::MediaPackageV2::OriginEndpoint.IsmEncryptionMethod`.
550
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-ismencryptionmethod.html}
551
+ */
552
+ export type IsmEncryptionMethod = "CENC";
542
553
  /**
543
554
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.LowLatencyHlsManifestConfiguration`.
544
555
  * <p>Retrieve the low-latency HTTP live streaming (HLS) manifest configuration.</p>
@@ -584,6 +595,34 @@ export type LowLatencyHlsManifestConfiguration = {
584
595
  */
585
596
  UrlEncodeChildManifest?: boolean;
586
597
  };
598
+ /**
599
+ * Type definition for `AWS::MediaPackageV2::OriginEndpoint.MssManifestConfiguration`.
600
+ * <p>Configuration details for a Microsoft Smooth Streaming (MSS) manifest associated with an origin endpoint. This includes all the settings and properties that define how the MSS content is packaged and delivered.</p>
601
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-mssmanifestconfiguration.html}
602
+ */
603
+ export type MssManifestConfiguration = {
604
+ /**
605
+ * <p>Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest. </p>
606
+ */
607
+ FilterConfiguration?: FilterConfiguration;
608
+ ManifestLayout?: MssManifestLayout;
609
+ /**
610
+ * <p>The name of the MSS manifest. This name is appended to the origin endpoint URL to create the unique path for accessing this specific MSS manifest.</p>
611
+ * @minLength `1`
612
+ * @maxLength `256`
613
+ * @pattern `^[a-zA-Z0-9-]+$`
614
+ */
615
+ ManifestName: string;
616
+ /**
617
+ * <p>The duration (in seconds) of the manifest window. This represents the total amount of content available in the manifest at any given time.</p>
618
+ */
619
+ ManifestWindowSeconds?: number;
620
+ };
621
+ /**
622
+ * Type definition for `AWS::MediaPackageV2::OriginEndpoint.MssManifestLayout`.
623
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-mssmanifestlayout.html}
624
+ */
625
+ export type MssManifestLayout = "FULL" | "COMPACT";
587
626
  /**
588
627
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.PresetSpeke20Audio`.
589
628
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-presetspeke20audio.html}
@@ -43,6 +43,14 @@ export type OSISPipelineProperties = {
43
43
  * @pattern `[a-z][a-z0-9\-]+`
44
44
  */
45
45
  PipelineName: string;
46
+ /**
47
+ * The Pipeline Role (ARN) for the pipeline.
48
+ * @minLength `20`
49
+ * @maxLength `2048`
50
+ * @pattern `^arn:(aws|aws\-cn|aws\-us\-gov|aws\-iso|aws\-iso\-b|aws\-iso\-e|aws\-iso\-f):iam::[0-9]+:role\/.*$`
51
+ */
52
+ PipelineRoleArn?: string;
53
+ ResourcePolicy?: ResourcePolicy;
46
54
  /**
47
55
  * An array of key-value pairs to apply to this resource.
48
56
  */
@@ -64,7 +72,7 @@ export type OSISPipelineAttributes = {
64
72
  /**
65
73
  * The Amazon Resource Name (ARN) of the pipeline.
66
74
  * @minLength `46`
67
- * @maxLength `76`
75
+ * @maxLength `78`
68
76
  * @pattern `^arn:(aws|aws\-cn|aws\-us\-gov|aws\-iso|aws\-iso\-b):osis:.+:pipeline\/.+$`
69
77
  */
70
78
  PipelineArn: string;
@@ -163,6 +171,13 @@ export type LogPublishingOptions = {
163
171
  */
164
172
  IsLoggingEnabled?: boolean;
165
173
  };
174
+ /**
175
+ * Type definition for `AWS::OSIS::Pipeline.ResourcePolicy`.
176
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-osis-pipeline-resourcepolicy.html}
177
+ */
178
+ export type ResourcePolicy = {
179
+ Policy: Record<string, any>;
180
+ };
166
181
  /**
167
182
  * Type definition for `AWS::OSIS::Pipeline.Tag`.
168
183
  * A key-value pair to associate with a resource.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.456",
3
+ "version": "0.1.458",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },