@propulsionworks/cloudformation 0.1.31 → 0.1.32
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/out/exports/resources.generated/aws-applicationsignals-groupingconfiguration.d.ts +1 -1
- package/out/exports/resources.generated/aws-aps-anomalydetector.d.ts +3 -1
- package/out/exports/resources.generated/aws-billingconductor-billinggroup.d.ts +1 -1
- package/out/exports/resources.generated/aws-billingconductor-pricingplan.d.ts +1 -1
- package/out/exports/resources.generated/aws-cloudfront-distribution.d.ts +4 -0
- package/out/exports/resources.generated/aws-cloudfront-vpcorigin.d.ts +4 -0
- package/out/exports/resources.generated/aws-connect-emailaddress.d.ts +17 -0
- package/out/exports/resources.generated/aws-connect-evaluationform.d.ts +155 -0
- package/out/exports/resources.generated/aws-docdb-dbcluster.d.ts +7 -0
- package/out/exports/resources.generated/aws-ec2-capacitymanagerdataexport.d.ts +46 -0
- package/out/exports/resources.generated/aws-ec2-capacityreservation.d.ts +3 -3
- package/out/exports/resources.generated/aws-ec2-natgateway.d.ts +1 -0
- package/out/exports/resources.generated/aws-elasticloadbalancingv2-listenerrule.d.ts +76 -4
- package/out/exports/resources.generated/aws-emrserverless-application.d.ts +1 -1
- package/out/exports/resources.generated/aws-events-eventbuspolicy.d.ts +14 -11
- package/out/exports/resources.generated/aws-fsx-filesystem.d.ts +4 -0
- package/out/exports/resources.generated/aws-imagebuilder-image.d.ts +92 -0
- package/out/exports/resources.generated/aws-imagebuilder-imagepipeline.d.ts +5 -0
- package/out/exports/resources.generated/aws-lambda-permission.d.ts +1 -1
- package/out/exports/resources.generated/aws-mediapackagev2-originendpoint.d.ts +50 -2
- package/out/exports/resources.generated/aws-neptune-dbinstance.d.ts +5 -1
- package/out/exports/resources.generated/aws-observabilityadmin-organizationcentralizationrule.d.ts +29 -3
- package/out/exports/resources.generated/aws-observabilityadmin-organizationtelemetryrule.d.ts +20 -20
- package/out/exports/resources.generated/aws-observabilityadmin-telemetryrule.d.ts +20 -20
- package/out/exports/resources.generated/aws-organizations-account.d.ts +5 -0
- package/out/exports/resources.generated/aws-osis-pipeline.d.ts +22 -1
- package/out/exports/resources.generated/aws-route53-recordset.d.ts +1 -3
- package/out/exports/resources.generated/aws-route53-recordsetgroup.d.ts +1 -3
- package/out/exports/resources.generated/aws-route53resolver-resolverrule.d.ts +2 -0
- package/out/exports/resources.generated/aws-route53resolver-resolverruleassociation.d.ts +2 -0
- package/out/exports/resources.generated/aws-rtbfabric-link.d.ts +137 -0
- package/out/exports/resources.generated/aws-rtbfabric-requestergateway.d.ts +72 -0
- package/out/exports/resources.generated/aws-rtbfabric-respondergateway.d.ts +151 -0
- package/out/exports/resources.generated/aws-sagemaker-cluster.d.ts +1 -0
- package/out/exports/resources.generated/aws-synthetics-canary.d.ts +21 -0
- package/package.json +1 -1
|
@@ -20,7 +20,7 @@ export type ApplicationSignalsGroupingConfigurationProps = {
|
|
|
20
20
|
*/
|
|
21
21
|
export type ApplicationSignalsGroupingConfigurationAttribs = {
|
|
22
22
|
/**
|
|
23
|
-
* The
|
|
23
|
+
* The 12 digit AWS Account ID for the account.
|
|
24
24
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationsignals-groupingconfiguration.html#cfn-applicationsignals-groupingconfiguration-accountid}
|
|
25
25
|
*/
|
|
26
26
|
AccountId: string;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
+
* AnomalyDetector schema for cloudformation.
|
|
3
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-anomalydetector.html}
|
|
4
5
|
*/
|
|
5
6
|
export type APSAnomalyDetector = ResourceDefinitionWithAttributes<"AWS::APS::AnomalyDetector", APSAnomalyDetectorProps, APSAnomalyDetectorAttribs>;
|
|
6
7
|
/**
|
|
8
|
+
* AnomalyDetector schema for cloudformation.
|
|
7
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-anomalydetector.html}
|
|
8
10
|
*/
|
|
9
11
|
export type APSAnomalyDetectorProps = {
|
|
@@ -41,7 +43,7 @@ export type APSAnomalyDetectorProps = {
|
|
|
41
43
|
*/
|
|
42
44
|
Tags?: Tag[] | undefined;
|
|
43
45
|
/**
|
|
44
|
-
*
|
|
46
|
+
* An Amazon Managed Service for Prometheus workspace is a logical and isolated Prometheus server dedicated to ingesting, storing, and querying your Prometheus-compatible metrics.
|
|
45
47
|
* @pattern ^arn:(aws|aws-us-gov|aws-cn):aps:[a-z0-9-]+:[0-9]+:workspace/[a-zA-Z0-9-]+$
|
|
46
48
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-anomalydetector.html#cfn-aps-anomalydetector-workspace}
|
|
47
49
|
*/
|
|
@@ -108,7 +108,7 @@ export type BillingGroupStatus = "ACTIVE" | "PRIMARY_ACCOUNT_MISSING";
|
|
|
108
108
|
export type ComputationPreference = {
|
|
109
109
|
/**
|
|
110
110
|
* The Amazon Resource Name (ARN) of the pricing plan used to compute the AWS charges for a billing group.
|
|
111
|
-
* @pattern arn:aws(-cn)?:billingconductor::[0-9]{12}:pricingplan/[a-zA-Z0-9]{10}
|
|
111
|
+
* @pattern arn:aws(-cn)?:billingconductor::(aws|[0-9]{12}):pricingplan/(BasicPricingPlan|[a-zA-Z0-9]{10})
|
|
112
112
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billingconductor-billinggroup-computationpreference.html#cfn-billingconductor-billinggroup-computationpreference-pricingplanarn}
|
|
113
113
|
*/
|
|
114
114
|
PricingPlanArn: string;
|
|
@@ -40,7 +40,7 @@ export type BillingConductorPricingPlanProps = {
|
|
|
40
40
|
export type BillingConductorPricingPlanAttribs = {
|
|
41
41
|
/**
|
|
42
42
|
* The Amazon Resource Name (ARN) of the created pricing plan.
|
|
43
|
-
* @pattern arn:aws(-cn)?:billingconductor::[0-9]{12}:pricingplan/[a-zA-Z0-9]{10}
|
|
43
|
+
* @pattern arn:aws(-cn)?:billingconductor::(aws|[0-9]{12}):pricingplan/(BasicPricingPlan|[a-zA-Z0-9]{10})
|
|
44
44
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billingconductor-pricingplan.html#cfn-billingconductor-pricingplan-arn}
|
|
45
45
|
*/
|
|
46
46
|
Arn: string;
|
|
@@ -1392,6 +1392,10 @@ export type VpcOriginConfig = {
|
|
|
1392
1392
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-vpcoriginconfig.html#cfn-cloudfront-distribution-vpcoriginconfig-originreadtimeout}
|
|
1393
1393
|
*/
|
|
1394
1394
|
OriginReadTimeout?: number | undefined;
|
|
1395
|
+
/**
|
|
1396
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-vpcoriginconfig.html#cfn-cloudfront-distribution-vpcoriginconfig-owneraccountid}
|
|
1397
|
+
*/
|
|
1398
|
+
OwnerAccountId?: string | undefined;
|
|
1395
1399
|
/**
|
|
1396
1400
|
* The VPC origin ID.
|
|
1397
1401
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-vpcoriginconfig.html#cfn-cloudfront-distribution-vpcoriginconfig-vpcoriginid}
|
|
@@ -24,6 +24,10 @@ export type CloudFrontVpcOriginProps = {
|
|
|
24
24
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-vpcorigin.html#aws-resource-cloudfront-vpcorigin-return-values}
|
|
25
25
|
*/
|
|
26
26
|
export type CloudFrontVpcOriginAttribs = {
|
|
27
|
+
/**
|
|
28
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-vpcorigin.html#cfn-cloudfront-vpcorigin-accountid}
|
|
29
|
+
*/
|
|
30
|
+
AccountId: string;
|
|
27
31
|
/**
|
|
28
32
|
* The VPC origin ARN.
|
|
29
33
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-vpcorigin.html#cfn-cloudfront-vpcorigin-arn}
|
|
@@ -9,6 +9,11 @@ export type ConnectEmailAddress = ResourceDefinitionWithAttributes<"AWS::Connect
|
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html}
|
|
10
10
|
*/
|
|
11
11
|
export type ConnectEmailAddressProps = {
|
|
12
|
+
/**
|
|
13
|
+
* List of alias configurations for the email address
|
|
14
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html#cfn-connect-emailaddress-aliasconfigurations}
|
|
15
|
+
*/
|
|
16
|
+
AliasConfigurations?: AliasConfiguration[] | undefined;
|
|
12
17
|
/**
|
|
13
18
|
* The description of the email address.
|
|
14
19
|
* @minLength 1
|
|
@@ -58,4 +63,16 @@ export type ConnectEmailAddressAttribs = {
|
|
|
58
63
|
*/
|
|
59
64
|
EmailAddressArn: string;
|
|
60
65
|
};
|
|
66
|
+
/**
|
|
67
|
+
* Configuration for an email address alias
|
|
68
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-emailaddress-aliasconfiguration.html}
|
|
69
|
+
*/
|
|
70
|
+
export type AliasConfiguration = {
|
|
71
|
+
/**
|
|
72
|
+
* The identifier of the email address alias
|
|
73
|
+
* @pattern ^arn:(aws|aws-us-gov):connect:[a-z]{2}-[a-z]+-[0-9]{1}:[0-9]{1,20}:instance/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}/email-address/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$
|
|
74
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-emailaddress-aliasconfiguration.html#cfn-connect-emailaddress-aliasconfiguration-emailaddressarn}
|
|
75
|
+
*/
|
|
76
|
+
EmailAddressArn: string;
|
|
77
|
+
};
|
|
61
78
|
//# sourceMappingURL=aws-connect-emailaddress.d.ts.map
|
|
@@ -82,6 +82,17 @@ export type AutoEvaluationConfiguration = {
|
|
|
82
82
|
*/
|
|
83
83
|
Enabled?: boolean | undefined;
|
|
84
84
|
};
|
|
85
|
+
/**
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-automaticfailconfiguration.html}
|
|
87
|
+
*/
|
|
88
|
+
export type AutomaticFailConfiguration = {
|
|
89
|
+
/**
|
|
90
|
+
* The target section refId to control failure propagation boundary.
|
|
91
|
+
* @pattern ^[a-zA-Z0-9._-]{1,40}$
|
|
92
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-automaticfailconfiguration.html#cfn-connect-evaluationform-automaticfailconfiguration-targetsection}
|
|
93
|
+
*/
|
|
94
|
+
TargetSection?: string | undefined;
|
|
95
|
+
};
|
|
85
96
|
/**
|
|
86
97
|
* An item at the root level. All items must be sections.
|
|
87
98
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformbaseitem.html}
|
|
@@ -109,11 +120,107 @@ export type EvaluationFormItem = {
|
|
|
109
120
|
*/
|
|
110
121
|
Section?: EvaluationFormSection | undefined;
|
|
111
122
|
};
|
|
123
|
+
/**
|
|
124
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementcondition.html}
|
|
125
|
+
*/
|
|
126
|
+
export type EvaluationFormItemEnablementCondition = {
|
|
127
|
+
/**
|
|
128
|
+
* The list of operands that compose the condition. Each operand represents a specific criteria to be evaluated.
|
|
129
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementcondition.html#cfn-connect-evaluationform-evaluationformitemenablementcondition-operands}
|
|
130
|
+
*/
|
|
131
|
+
Operands: EvaluationFormItemEnablementConditionOperand[];
|
|
132
|
+
/**
|
|
133
|
+
* The logical operator used to combine multiple operands, determining how the condition is evaluated as a whole.
|
|
134
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementcondition.html#cfn-connect-evaluationform-evaluationformitemenablementcondition-operator}
|
|
135
|
+
*/
|
|
136
|
+
Operator?: "OR" | "AND" | undefined;
|
|
137
|
+
};
|
|
138
|
+
/**
|
|
139
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconditionoperand.html}
|
|
140
|
+
*/
|
|
141
|
+
export type EvaluationFormItemEnablementConditionOperand = {
|
|
142
|
+
/**
|
|
143
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconditionoperand.html#cfn-connect-evaluationform-evaluationformitemenablementconditionoperand-expression}
|
|
144
|
+
*/
|
|
145
|
+
Expression?: EvaluationFormItemEnablementExpression | undefined;
|
|
146
|
+
};
|
|
147
|
+
/**
|
|
148
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconfiguration.html}
|
|
149
|
+
*/
|
|
150
|
+
export type EvaluationFormItemEnablementConfiguration = {
|
|
151
|
+
/**
|
|
152
|
+
* Defines the enablement status to be applied when the specified condition is met.
|
|
153
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconfiguration.html#cfn-connect-evaluationform-evaluationformitemenablementconfiguration-action}
|
|
154
|
+
*/
|
|
155
|
+
Action: "DISABLE" | "ENABLE";
|
|
156
|
+
/**
|
|
157
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconfiguration.html#cfn-connect-evaluationform-evaluationformitemenablementconfiguration-condition}
|
|
158
|
+
*/
|
|
159
|
+
Condition: EvaluationFormItemEnablementCondition;
|
|
160
|
+
/**
|
|
161
|
+
* Specifies the default enablement status to be applied when the condition is not satisfied.
|
|
162
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconfiguration.html#cfn-connect-evaluationform-evaluationformitemenablementconfiguration-defaultaction}
|
|
163
|
+
*/
|
|
164
|
+
DefaultAction?: "DISABLE" | "ENABLE" | undefined;
|
|
165
|
+
};
|
|
166
|
+
/**
|
|
167
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementexpression.html}
|
|
168
|
+
*/
|
|
169
|
+
export type EvaluationFormItemEnablementExpression = {
|
|
170
|
+
/**
|
|
171
|
+
* Specifies the comparison method to determine if the source value matches any of the specified values.
|
|
172
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementexpression.html#cfn-connect-evaluationform-evaluationformitemenablementexpression-comparator}
|
|
173
|
+
*/
|
|
174
|
+
Comparator: "IN" | "NOT_IN";
|
|
175
|
+
/**
|
|
176
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementexpression.html#cfn-connect-evaluationform-evaluationformitemenablementexpression-source}
|
|
177
|
+
*/
|
|
178
|
+
Source: EvaluationFormItemEnablementSource;
|
|
179
|
+
/**
|
|
180
|
+
* The list of possible values to compare against the source form item's value.
|
|
181
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementexpression.html#cfn-connect-evaluationform-evaluationformitemenablementexpression-values}
|
|
182
|
+
*/
|
|
183
|
+
Values: EvaluationFormItemEnablementSourceValue[];
|
|
184
|
+
};
|
|
185
|
+
/**
|
|
186
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementsource.html}
|
|
187
|
+
*/
|
|
188
|
+
export type EvaluationFormItemEnablementSource = {
|
|
189
|
+
/**
|
|
190
|
+
* The identifier to reference the item.
|
|
191
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementsource.html#cfn-connect-evaluationform-evaluationformitemenablementsource-refid}
|
|
192
|
+
*/
|
|
193
|
+
RefId?: string | undefined;
|
|
194
|
+
/**
|
|
195
|
+
* The type of the source entity.
|
|
196
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementsource.html#cfn-connect-evaluationform-evaluationformitemenablementsource-type}
|
|
197
|
+
*/
|
|
198
|
+
Type: "QUESTION_REF_ID";
|
|
199
|
+
};
|
|
200
|
+
/**
|
|
201
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementsourcevalue.html}
|
|
202
|
+
*/
|
|
203
|
+
export type EvaluationFormItemEnablementSourceValue = {
|
|
204
|
+
/**
|
|
205
|
+
* The identifier to reference the item.
|
|
206
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementsourcevalue.html#cfn-connect-evaluationform-evaluationformitemenablementsourcevalue-refid}
|
|
207
|
+
*/
|
|
208
|
+
RefId?: string | undefined;
|
|
209
|
+
/**
|
|
210
|
+
* Type of the source entity value.
|
|
211
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementsourcevalue.html#cfn-connect-evaluationform-evaluationformitemenablementsourcevalue-type}
|
|
212
|
+
*/
|
|
213
|
+
Type?: "OPTION_REF_ID" | undefined;
|
|
214
|
+
};
|
|
112
215
|
/**
|
|
113
216
|
* Information about the automation configuration in numeric questions.
|
|
114
217
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionautomation.html}
|
|
115
218
|
*/
|
|
116
219
|
export type EvaluationFormNumericQuestionAutomation = {
|
|
220
|
+
/**
|
|
221
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionautomation.html#cfn-connect-evaluationform-evaluationformnumericquestionautomation-answersource}
|
|
222
|
+
*/
|
|
223
|
+
AnswerSource?: EvaluationFormQuestionAutomationAnswerSource | undefined;
|
|
117
224
|
/**
|
|
118
225
|
* The property value of the automation.
|
|
119
226
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionautomation.html#cfn-connect-evaluationform-evaluationformnumericquestionautomation-propertyvalue}
|
|
@@ -130,6 +237,10 @@ export type EvaluationFormNumericQuestionOption = {
|
|
|
130
237
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionoption.html#cfn-connect-evaluationform-evaluationformnumericquestionoption-automaticfail}
|
|
131
238
|
*/
|
|
132
239
|
AutomaticFail?: boolean | undefined;
|
|
240
|
+
/**
|
|
241
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionoption.html#cfn-connect-evaluationform-evaluationformnumericquestionoption-automaticfailconfiguration}
|
|
242
|
+
*/
|
|
243
|
+
AutomaticFailConfiguration?: AutomaticFailConfiguration | undefined;
|
|
133
244
|
/**
|
|
134
245
|
* The maximum answer value of the range option.
|
|
135
246
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionoption.html#cfn-connect-evaluationform-evaluationformnumericquestionoption-maxvalue}
|
|
@@ -181,6 +292,10 @@ export type EvaluationFormNumericQuestionProperties = {
|
|
|
181
292
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestion.html}
|
|
182
293
|
*/
|
|
183
294
|
export type EvaluationFormQuestion = {
|
|
295
|
+
/**
|
|
296
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestion.html#cfn-connect-evaluationform-evaluationformquestion-enablement}
|
|
297
|
+
*/
|
|
298
|
+
Enablement?: EvaluationFormItemEnablementConfiguration | undefined;
|
|
184
299
|
/**
|
|
185
300
|
* The instructions of the section.
|
|
186
301
|
*
|
|
@@ -232,6 +347,16 @@ export type EvaluationFormQuestion = {
|
|
|
232
347
|
*/
|
|
233
348
|
Weight?: number | undefined;
|
|
234
349
|
};
|
|
350
|
+
/**
|
|
351
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestionautomationanswersource.html}
|
|
352
|
+
*/
|
|
353
|
+
export type EvaluationFormQuestionAutomationAnswerSource = {
|
|
354
|
+
/**
|
|
355
|
+
* The type of the answer sourcr
|
|
356
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestionautomationanswersource.html#cfn-connect-evaluationform-evaluationformquestionautomationanswersource-sourcetype}
|
|
357
|
+
*/
|
|
358
|
+
SourceType: "CONTACT_LENS_DATA" | "GEN_AI";
|
|
359
|
+
};
|
|
235
360
|
/**
|
|
236
361
|
* 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.
|
|
237
362
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestiontypeproperties.html}
|
|
@@ -247,6 +372,10 @@ export type EvaluationFormQuestionTypeProperties = {
|
|
|
247
372
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestiontypeproperties.html#cfn-connect-evaluationform-evaluationformquestiontypeproperties-singleselect}
|
|
248
373
|
*/
|
|
249
374
|
SingleSelect?: EvaluationFormSingleSelectQuestionProperties | undefined;
|
|
375
|
+
/**
|
|
376
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestiontypeproperties.html#cfn-connect-evaluationform-evaluationformquestiontypeproperties-text}
|
|
377
|
+
*/
|
|
378
|
+
Text?: EvaluationFormTextQuestionProperties | undefined;
|
|
250
379
|
};
|
|
251
380
|
/**
|
|
252
381
|
* Information about a section from an evaluation form. A section can contain sections and/or questions. Evaluation forms can only contain sections and subsections (two level nesting).
|
|
@@ -297,6 +426,10 @@ export type EvaluationFormSection = {
|
|
|
297
426
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformsingleselectquestionautomation.html}
|
|
298
427
|
*/
|
|
299
428
|
export type EvaluationFormSingleSelectQuestionAutomation = {
|
|
429
|
+
/**
|
|
430
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformsingleselectquestionautomation.html#cfn-connect-evaluationform-evaluationformsingleselectquestionautomation-answersource}
|
|
431
|
+
*/
|
|
432
|
+
AnswerSource?: EvaluationFormQuestionAutomationAnswerSource | undefined;
|
|
300
433
|
/**
|
|
301
434
|
* The identifier of the default answer option, when none of the automation options match the criteria.
|
|
302
435
|
*
|
|
@@ -335,6 +468,10 @@ export type EvaluationFormSingleSelectQuestionOption = {
|
|
|
335
468
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformsingleselectquestionoption.html#cfn-connect-evaluationform-evaluationformsingleselectquestionoption-automaticfail}
|
|
336
469
|
*/
|
|
337
470
|
AutomaticFail?: boolean | undefined;
|
|
471
|
+
/**
|
|
472
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformsingleselectquestionoption.html#cfn-connect-evaluationform-evaluationformsingleselectquestionoption-automaticfailconfiguration}
|
|
473
|
+
*/
|
|
474
|
+
AutomaticFailConfiguration?: AutomaticFailConfiguration | undefined;
|
|
338
475
|
/**
|
|
339
476
|
* The identifier of the answer option. An identifier must be unique within the question.
|
|
340
477
|
*
|
|
@@ -388,6 +525,24 @@ export type EvaluationFormSingleSelectQuestionProperties = {
|
|
|
388
525
|
*/
|
|
389
526
|
Options: EvaluationFormSingleSelectQuestionOption[];
|
|
390
527
|
};
|
|
528
|
+
/**
|
|
529
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtextquestionautomation.html}
|
|
530
|
+
*/
|
|
531
|
+
export type EvaluationFormTextQuestionAutomation = {
|
|
532
|
+
/**
|
|
533
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtextquestionautomation.html#cfn-connect-evaluationform-evaluationformtextquestionautomation-answersource}
|
|
534
|
+
*/
|
|
535
|
+
AnswerSource?: EvaluationFormQuestionAutomationAnswerSource | undefined;
|
|
536
|
+
};
|
|
537
|
+
/**
|
|
538
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtextquestionproperties.html}
|
|
539
|
+
*/
|
|
540
|
+
export type EvaluationFormTextQuestionProperties = {
|
|
541
|
+
/**
|
|
542
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtextquestionproperties.html#cfn-connect-evaluationform-evaluationformtextquestionproperties-automation}
|
|
543
|
+
*/
|
|
544
|
+
Automation?: EvaluationFormTextQuestionAutomation | undefined;
|
|
545
|
+
};
|
|
391
546
|
/**
|
|
392
547
|
* Information about the property value used in automation of a numeric questions.
|
|
393
548
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-numericquestionpropertyvalueautomation.html}
|
|
@@ -129,6 +129,13 @@ export type DocDBDBClusterProps = {
|
|
|
129
129
|
*/
|
|
130
130
|
MasterUsername?: string | undefined;
|
|
131
131
|
/**
|
|
132
|
+
* The network type of the cluster.
|
|
133
|
+
*
|
|
134
|
+
* The network type is determined by the `DBSubnetGroup` specified for the cluster. A `DBSubnetGroup` can support only the IPv4 protocol or the IPv4 and the IPv6 protocols ( `DUAL` ).
|
|
135
|
+
*
|
|
136
|
+
* For more information, see [DocumentDB clusters in a VPC](https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html) in the Amazon DocumentDB Developer Guide.
|
|
137
|
+
*
|
|
138
|
+
* Valid Values: `IPV4` | `DUAL`
|
|
132
139
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-networktype}
|
|
133
140
|
*/
|
|
134
141
|
NetworkType?: string | undefined;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html}
|
|
4
|
+
*/
|
|
5
|
+
export type EC2CapacityManagerDataExport = ResourceDefinitionWithAttributes<"AWS::EC2::CapacityManagerDataExport", EC2CapacityManagerDataExportProps, EC2CapacityManagerDataExportAttribs>;
|
|
6
|
+
/**
|
|
7
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html}
|
|
8
|
+
*/
|
|
9
|
+
export type EC2CapacityManagerDataExportProps = {
|
|
10
|
+
/**
|
|
11
|
+
* The format of the exported capacity manager data. Choose 'csv' for comma-separated values or 'parquet' for optimized columnar storage format.
|
|
12
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html#cfn-ec2-capacitymanagerdataexport-outputformat}
|
|
13
|
+
*/
|
|
14
|
+
OutputFormat: "csv" | "parquet";
|
|
15
|
+
/**
|
|
16
|
+
* The name of the Amazon S3 bucket where the capacity manager data export will be stored. The bucket must exist and be accessible by EC2 Capacity Manager service.
|
|
17
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html#cfn-ec2-capacitymanagerdataexport-s3bucketname}
|
|
18
|
+
*/
|
|
19
|
+
S3BucketName: string;
|
|
20
|
+
/**
|
|
21
|
+
* The prefix for the S3 bucket location where exported files will be placed. If not specified, files will be placed in the root of the bucket.
|
|
22
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html#cfn-ec2-capacitymanagerdataexport-s3bucketprefix}
|
|
23
|
+
*/
|
|
24
|
+
S3BucketPrefix?: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* The schedule for the capacity manager data export. Currently supports hourly exports that provide periodic snapshots of capacity manager data.
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html#cfn-ec2-capacitymanagerdataexport-schedule}
|
|
28
|
+
*/
|
|
29
|
+
Schedule: "hourly";
|
|
30
|
+
/**
|
|
31
|
+
* An array of key-value pairs to apply to the capacity manager data export.
|
|
32
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html#cfn-ec2-capacitymanagerdataexport-tags}
|
|
33
|
+
*/
|
|
34
|
+
Tags?: Tag[] | undefined;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html#aws-resource-ec2-capacitymanagerdataexport-return-values}
|
|
38
|
+
*/
|
|
39
|
+
export type EC2CapacityManagerDataExportAttribs = {
|
|
40
|
+
/**
|
|
41
|
+
* The unique identifier of the capacity manager data export.
|
|
42
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html#cfn-ec2-capacitymanagerdataexport-capacitymanagerdataexportid}
|
|
43
|
+
*/
|
|
44
|
+
CapacityManagerDataExportId: string;
|
|
45
|
+
};
|
|
46
|
+
//# sourceMappingURL=aws-ec2-capacitymanagerdataexport.d.ts.map
|
|
@@ -15,7 +15,7 @@ export type EC2CapacityReservationProps = {
|
|
|
15
15
|
*/
|
|
16
16
|
AvailabilityZone?: string | undefined;
|
|
17
17
|
/**
|
|
18
|
-
* The Availability Zone
|
|
18
|
+
* The ID of the Availability Zone in which the capacity is reserved.
|
|
19
19
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-availabilityzoneid}
|
|
20
20
|
*/
|
|
21
21
|
AvailabilityZoneId?: string | undefined;
|
|
@@ -143,7 +143,7 @@ export type EC2CapacityReservationAttribs = {
|
|
|
143
143
|
*/
|
|
144
144
|
CapacityReservationFleetId: string;
|
|
145
145
|
/**
|
|
146
|
-
* The date and time
|
|
146
|
+
* The date and time the Capacity Reservation was created.
|
|
147
147
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-createdate}
|
|
148
148
|
*/
|
|
149
149
|
CreateDate: string;
|
|
@@ -173,7 +173,7 @@ export type EC2CapacityReservationAttribs = {
|
|
|
173
173
|
*/
|
|
174
174
|
ReservationType: string;
|
|
175
175
|
/**
|
|
176
|
-
* The date and time
|
|
176
|
+
* The date and time the Capacity Reservation was started.
|
|
177
177
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html#cfn-ec2-capacityreservation-startdate}
|
|
178
178
|
*/
|
|
179
179
|
StartDate: string;
|
|
@@ -72,6 +72,7 @@ export type EC2NatGatewayProps = {
|
|
|
72
72
|
*/
|
|
73
73
|
Tags?: Tag[] | undefined;
|
|
74
74
|
/**
|
|
75
|
+
* The ID of the VPC in which the NAT gateway is located.
|
|
75
76
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html#cfn-ec2-natgateway-vpcid}
|
|
76
77
|
*/
|
|
77
78
|
VpcId?: string | undefined;
|
|
@@ -39,6 +39,10 @@ export type ElasticLoadBalancingV2ListenerRuleProps = {
|
|
|
39
39
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority}
|
|
40
40
|
*/
|
|
41
41
|
Priority: number;
|
|
42
|
+
/**
|
|
43
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-transforms}
|
|
44
|
+
*/
|
|
45
|
+
Transforms?: Transform[] | undefined;
|
|
42
46
|
};
|
|
43
47
|
/**
|
|
44
48
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#aws-resource-elasticloadbalancingv2-listenerrule-return-values}
|
|
@@ -341,7 +345,11 @@ export type ForwardConfig = {
|
|
|
341
345
|
*/
|
|
342
346
|
export type HostHeaderConfig = {
|
|
343
347
|
/**
|
|
344
|
-
*
|
|
348
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-hostheaderconfig.html#cfn-elasticloadbalancingv2-listenerrule-hostheaderconfig-regexvalues}
|
|
349
|
+
*/
|
|
350
|
+
RegexValues?: string[] | undefined;
|
|
351
|
+
/**
|
|
352
|
+
* The host names. The maximum length of each string 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.
|
|
345
353
|
*
|
|
346
354
|
* If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
|
|
347
355
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-hostheaderconfig.html#cfn-elasticloadbalancingv2-listenerrule-hostheaderconfig-values}
|
|
@@ -361,7 +369,11 @@ export type HttpHeaderConfig = {
|
|
|
361
369
|
*/
|
|
362
370
|
HttpHeaderName?: string | undefined;
|
|
363
371
|
/**
|
|
364
|
-
*
|
|
372
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-httpheaderconfig.html#cfn-elasticloadbalancingv2-listenerrule-httpheaderconfig-regexvalues}
|
|
373
|
+
*/
|
|
374
|
+
RegexValues?: string[] | undefined;
|
|
375
|
+
/**
|
|
376
|
+
* The strings to compare against the value of the HTTP header. The maximum length 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).
|
|
365
377
|
*
|
|
366
378
|
* If the same header appears multiple times in the request, we search them in order until a match is found.
|
|
367
379
|
*
|
|
@@ -378,7 +390,7 @@ export type HttpHeaderConfig = {
|
|
|
378
390
|
*/
|
|
379
391
|
export type HttpRequestMethodConfig = {
|
|
380
392
|
/**
|
|
381
|
-
* The name of the request method. The maximum
|
|
393
|
+
* The name of the request method. The maximum length is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
|
|
382
394
|
*
|
|
383
395
|
* If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
|
|
384
396
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-httprequestmethodconfig.html#cfn-elasticloadbalancingv2-listenerrule-httprequestmethodconfig-values}
|
|
@@ -390,6 +402,10 @@ export type HttpRequestMethodConfig = {
|
|
|
390
402
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-pathpatternconfig.html}
|
|
391
403
|
*/
|
|
392
404
|
export type PathPatternConfig = {
|
|
405
|
+
/**
|
|
406
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-pathpatternconfig.html#cfn-elasticloadbalancingv2-listenerrule-pathpatternconfig-regexvalues}
|
|
407
|
+
*/
|
|
408
|
+
RegexValues?: string[] | undefined;
|
|
393
409
|
/**
|
|
394
410
|
* 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).
|
|
395
411
|
*
|
|
@@ -406,7 +422,7 @@ export type PathPatternConfig = {
|
|
|
406
422
|
*/
|
|
407
423
|
export type QueryStringConfig = {
|
|
408
424
|
/**
|
|
409
|
-
* The key/value pairs or values to find in the query string. The maximum
|
|
425
|
+
* The key/value pairs or values to find in the query string. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). To search for a literal '*' or '?' character in a query string, you must escape these characters in `Values` using a '\' character.
|
|
410
426
|
*
|
|
411
427
|
* If you specify multiple key/value pairs or values, the condition is satisfied if one of them is found in the query string.
|
|
412
428
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-querystringconfig.html#cfn-elasticloadbalancingv2-listenerrule-querystringconfig-values}
|
|
@@ -477,6 +493,28 @@ export type RedirectConfig = {
|
|
|
477
493
|
*/
|
|
478
494
|
StatusCode: string;
|
|
479
495
|
};
|
|
496
|
+
/**
|
|
497
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-rewriteconfig.html}
|
|
498
|
+
*/
|
|
499
|
+
export type RewriteConfig = {
|
|
500
|
+
/**
|
|
501
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-rewriteconfig.html#cfn-elasticloadbalancingv2-listenerrule-rewriteconfig-regex}
|
|
502
|
+
*/
|
|
503
|
+
Regex: string;
|
|
504
|
+
/**
|
|
505
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-rewriteconfig.html#cfn-elasticloadbalancingv2-listenerrule-rewriteconfig-replace}
|
|
506
|
+
*/
|
|
507
|
+
Replace: string;
|
|
508
|
+
};
|
|
509
|
+
/**
|
|
510
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-rewriteconfigobject.html}
|
|
511
|
+
*/
|
|
512
|
+
export type RewriteConfigObject = {
|
|
513
|
+
/**
|
|
514
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-rewriteconfigobject.html#cfn-elasticloadbalancingv2-listenerrule-rewriteconfigobject-rewrites}
|
|
515
|
+
*/
|
|
516
|
+
Rewrites: RewriteConfig[];
|
|
517
|
+
};
|
|
480
518
|
/**
|
|
481
519
|
* Specifies a condition for a listener rule.
|
|
482
520
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-rulecondition.html}
|
|
@@ -519,6 +557,10 @@ export type RuleCondition = {
|
|
|
519
557
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-rulecondition.html#cfn-elasticloadbalancingv2-listenerrule-rulecondition-querystringconfig}
|
|
520
558
|
*/
|
|
521
559
|
QueryStringConfig?: QueryStringConfig | undefined;
|
|
560
|
+
/**
|
|
561
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-rulecondition.html#cfn-elasticloadbalancingv2-listenerrule-rulecondition-regexvalues}
|
|
562
|
+
*/
|
|
563
|
+
RegexValues?: string[] | undefined;
|
|
522
564
|
/**
|
|
523
565
|
* Information for a source IP condition. Specify only when `Field` is `source-ip` .
|
|
524
566
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-rulecondition.html#cfn-elasticloadbalancingv2-listenerrule-rulecondition-sourceipconfig}
|
|
@@ -592,4 +634,34 @@ export type TargetGroupTuple = {
|
|
|
592
634
|
*/
|
|
593
635
|
Weight?: number | undefined;
|
|
594
636
|
};
|
|
637
|
+
/**
|
|
638
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-transform.html}
|
|
639
|
+
*/
|
|
640
|
+
export type Transform = {
|
|
641
|
+
/**
|
|
642
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-transform.html#cfn-elasticloadbalancingv2-listenerrule-transform-hostheaderrewriteconfig}
|
|
643
|
+
*/
|
|
644
|
+
HostHeaderRewriteConfig: RewriteConfigObject;
|
|
645
|
+
/**
|
|
646
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-transform.html#cfn-elasticloadbalancingv2-listenerrule-transform-type}
|
|
647
|
+
*/
|
|
648
|
+
Type: string;
|
|
649
|
+
/**
|
|
650
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-transform.html#cfn-elasticloadbalancingv2-listenerrule-transform-urlrewriteconfig}
|
|
651
|
+
*/
|
|
652
|
+
UrlRewriteConfig?: RewriteConfigObject | undefined;
|
|
653
|
+
} | {
|
|
654
|
+
/**
|
|
655
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-transform.html#cfn-elasticloadbalancingv2-listenerrule-transform-hostheaderrewriteconfig}
|
|
656
|
+
*/
|
|
657
|
+
HostHeaderRewriteConfig?: RewriteConfigObject | undefined;
|
|
658
|
+
/**
|
|
659
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-transform.html#cfn-elasticloadbalancingv2-listenerrule-transform-type}
|
|
660
|
+
*/
|
|
661
|
+
Type: string;
|
|
662
|
+
/**
|
|
663
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-transform.html#cfn-elasticloadbalancingv2-listenerrule-transform-urlrewriteconfig}
|
|
664
|
+
*/
|
|
665
|
+
UrlRewriteConfig: RewriteConfigObject;
|
|
666
|
+
};
|
|
595
667
|
//# sourceMappingURL=aws-elasticloadbalancingv2-listenerrule.d.ts.map
|
|
@@ -113,7 +113,7 @@ export type EMRServerlessApplicationAttribs = {
|
|
|
113
113
|
*/
|
|
114
114
|
ApplicationId: string;
|
|
115
115
|
/**
|
|
116
|
-
* The Amazon Resource Name (ARN) of the
|
|
116
|
+
* The Amazon Resource Name (ARN) of the EMR Serverless Application.
|
|
117
117
|
* @pattern ^arn:(aws[a-zA-Z0-9-]*):emr-serverless:.+:(\d{12}):\/applications\/[0-9a-zA-Z]+$
|
|
118
118
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrserverless-application.html#cfn-emrserverless-application-arn}
|
|
119
119
|
*/
|