@awboost/cfn-resource-types 0.1.464 → 0.1.465
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.
|
@@ -342,10 +342,17 @@ export type RedirectConfig = {
|
|
|
342
342
|
};
|
|
343
343
|
/**
|
|
344
344
|
* Type definition for `AWS::ElasticLoadBalancingV2::ListenerRule.RewriteConfig`.
|
|
345
|
+
* Information about a rewrite transform. This transform matches a pattern and replaces it with the specified string.
|
|
345
346
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-rewriteconfig.html}
|
|
346
347
|
*/
|
|
347
348
|
export type RewriteConfig = {
|
|
349
|
+
/**
|
|
350
|
+
* The regular expression to match in the input string. The maximum length of the string is 1,024 characters.
|
|
351
|
+
*/
|
|
348
352
|
Regex: string;
|
|
353
|
+
/**
|
|
354
|
+
* The replacement string to use when rewriting the matched input. The maximum length of the string is 1,024 characters. You can specify capture groups in the regular expression (for example, $1 and $2).
|
|
355
|
+
*/
|
|
349
356
|
Replace: string;
|
|
350
357
|
};
|
|
351
358
|
/**
|
|
@@ -391,6 +398,9 @@ export type RuleCondition = {
|
|
|
391
398
|
* Information for a query string condition. Specify only when ``Field`` is ``query-string``.
|
|
392
399
|
*/
|
|
393
400
|
QueryStringConfig?: QueryStringConfig;
|
|
401
|
+
/**
|
|
402
|
+
* The regular expressions to match against the condition field. The maximum length of each string is 128 characters. Specify only when ``Field`` is ``http-header``, ``host-header``, or ``path-pattern``.
|
|
403
|
+
*/
|
|
394
404
|
RegexValues?: string[];
|
|
395
405
|
/**
|
|
396
406
|
* Information for a source IP condition. Specify only when ``Field`` is ``source-ip``.
|
|
@@ -14,7 +14,7 @@ export type SSOAssignmentProperties = {
|
|
|
14
14
|
*/
|
|
15
15
|
InstanceArn: string;
|
|
16
16
|
/**
|
|
17
|
-
* The permission set that the
|
|
17
|
+
* The permission set that the assignment will be assigned
|
|
18
18
|
* @minLength `10`
|
|
19
19
|
* @maxLength `1224`
|
|
20
20
|
* @pattern `arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso:::permissionSet/(sso)?ins-[a-zA-Z0-9-.]{16}/ps-[a-zA-Z0-9-./]{16}`
|
|
@@ -37,7 +37,7 @@ export type SSOAssignmentProperties = {
|
|
|
37
37
|
*/
|
|
38
38
|
TargetId: string;
|
|
39
39
|
/**
|
|
40
|
-
* The type of resource to be
|
|
40
|
+
* The type of resource to be provisioned to, only aws account now
|
|
41
41
|
*/
|
|
42
42
|
TargetType: "AWS_ACCOUNT";
|
|
43
43
|
};
|