@awboost/cfn-resource-types 0.1.474 → 0.1.475
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-DynamoDB-GlobalTable.d.ts +1 -1
- package/lib/AWS-EC2-IPAMScope.d.ts +19 -0
- package/lib/AWS-ECS-Cluster.d.ts +5 -5
- package/lib/AWS-ElasticLoadBalancingV2-Listener.d.ts +19 -0
- package/lib/AWS-ElasticLoadBalancingV2-ListenerRule.d.ts +19 -0
- package/lib/AWS-Rekognition-Project.d.ts +25 -0
- package/lib/AWS-Route53Resolver-FirewallRuleGroup.d.ts +1 -1
- package/package.json +1 -1
|
@@ -235,7 +235,7 @@ export type ReplicaSSESpecification = {
|
|
|
235
235
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-replicastreamspecification.html}
|
|
236
236
|
*/
|
|
237
237
|
export type ReplicaStreamSpecification = {
|
|
238
|
-
ResourcePolicy
|
|
238
|
+
ResourcePolicy: ResourcePolicy;
|
|
239
239
|
};
|
|
240
240
|
/**
|
|
241
241
|
* Type definition for `AWS::DynamoDB::GlobalTable.ResourcePolicy`.
|
|
@@ -6,6 +6,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
*/
|
|
7
7
|
export type EC2IPAMScopeProperties = {
|
|
8
8
|
Description?: string;
|
|
9
|
+
/**
|
|
10
|
+
* External service configuration to connect your AWS IPAM scope.
|
|
11
|
+
*/
|
|
12
|
+
ExternalAuthorityConfiguration?: IpamScopeExternalAuthorityConfiguration;
|
|
9
13
|
/**
|
|
10
14
|
* The Id of the IPAM this scope is a part of.
|
|
11
15
|
*/
|
|
@@ -45,6 +49,21 @@ export type EC2IPAMScopeAttributes = {
|
|
|
45
49
|
*/
|
|
46
50
|
PoolCount: number;
|
|
47
51
|
};
|
|
52
|
+
/**
|
|
53
|
+
* Type definition for `AWS::EC2::IPAMScope.IpamScopeExternalAuthorityConfiguration`.
|
|
54
|
+
* External service configuration to connect your AWS IPAM scope.
|
|
55
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ipamscope-ipamscopeexternalauthorityconfiguration.html}
|
|
56
|
+
*/
|
|
57
|
+
export type IpamScopeExternalAuthorityConfiguration = {
|
|
58
|
+
/**
|
|
59
|
+
* Resource identifier of the scope in the external service connecting to your AWS IPAM scope.
|
|
60
|
+
*/
|
|
61
|
+
ExternalResourceIdentifier: string;
|
|
62
|
+
/**
|
|
63
|
+
* An external service connecting to your AWS IPAM scope.
|
|
64
|
+
*/
|
|
65
|
+
IpamScopeExternalAuthorityType: "infoblox";
|
|
66
|
+
};
|
|
48
67
|
/**
|
|
49
68
|
* Type definition for `AWS::EC2::IPAMScope.Tag`.
|
|
50
69
|
* A key-value pair to associate with a resource.
|
package/lib/AWS-ECS-Cluster.d.ts
CHANGED
|
@@ -65,13 +65,13 @@ export type CapacityProviderStrategyItem = {
|
|
|
65
65
|
* The *base* value designates how many tasks, at a minimum, to run on the specified capacity provider for each service. Only one capacity provider in a capacity provider strategy can have a *base* defined. If no value is specified, the default value of ``0`` is used.
|
|
66
66
|
Base value characteristics:
|
|
67
67
|
+ Only one capacity provider in a strategy can have a base defined
|
|
68
|
-
+
|
|
69
|
-
+
|
|
68
|
+
+ The default value is ``0`` if not specified
|
|
69
|
+
+ The valid range is 0 to 100,000
|
|
70
70
|
+ Base requirements are satisfied first before weight distribution
|
|
71
71
|
*/
|
|
72
72
|
Base?: number;
|
|
73
73
|
/**
|
|
74
|
-
* The short name of the capacity provider.
|
|
74
|
+
* The short name of the capacity provider. This can be either an AWS managed capacity provider (``FARGATE`` or ``FARGATE_SPOT``) or the name of a custom capacity provider that you created.
|
|
75
75
|
*/
|
|
76
76
|
CapacityProvider?: string;
|
|
77
77
|
/**
|
|
@@ -79,8 +79,8 @@ export type CapacityProviderStrategyItem = {
|
|
|
79
79
|
If no ``weight`` value is specified, the default value of ``0`` is used. When multiple capacity providers are specified within a capacity provider strategy, at least one of the capacity providers must have a weight value greater than zero and any capacity providers with a weight of ``0`` can't be used to place tasks. If you specify multiple capacity providers in a strategy that all have a weight of ``0``, any ``RunTask`` or ``CreateService`` actions using the capacity provider strategy will fail.
|
|
80
80
|
Weight value characteristics:
|
|
81
81
|
+ Weight is considered after the base value is satisfied
|
|
82
|
-
+
|
|
83
|
-
+
|
|
82
|
+
+ The default value is ``0`` if not specified
|
|
83
|
+
+ The valid range is 0 to 1,000
|
|
84
84
|
+ At least one capacity provider must have a weight greater than zero
|
|
85
85
|
+ Capacity providers with weight of ``0`` cannot place tasks
|
|
86
86
|
|
|
@@ -77,6 +77,7 @@ export type Action = {
|
|
|
77
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
79
|
ForwardConfig?: ForwardConfig;
|
|
80
|
+
JwtValidationConfig?: JwtValidationConfig;
|
|
80
81
|
/**
|
|
81
82
|
* 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.
|
|
82
83
|
*/
|
|
@@ -243,6 +244,24 @@ export type ForwardConfig = {
|
|
|
243
244
|
*/
|
|
244
245
|
TargetGroups?: TargetGroupTuple[];
|
|
245
246
|
};
|
|
247
|
+
/**
|
|
248
|
+
* Type definition for `AWS::ElasticLoadBalancingV2::Listener.JwtValidationActionAdditionalClaim`.
|
|
249
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-jwtvalidationactionadditionalclaim.html}
|
|
250
|
+
*/
|
|
251
|
+
export type JwtValidationActionAdditionalClaim = {
|
|
252
|
+
Format: string;
|
|
253
|
+
Name: string;
|
|
254
|
+
Values: string[];
|
|
255
|
+
};
|
|
256
|
+
/**
|
|
257
|
+
* Type definition for `AWS::ElasticLoadBalancingV2::Listener.JwtValidationConfig`.
|
|
258
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-jwtvalidationconfig.html}
|
|
259
|
+
*/
|
|
260
|
+
export type JwtValidationConfig = {
|
|
261
|
+
AdditionalClaims?: JwtValidationActionAdditionalClaim[];
|
|
262
|
+
Issuer: string;
|
|
263
|
+
JwksEndpoint: string;
|
|
264
|
+
};
|
|
246
265
|
/**
|
|
247
266
|
* Type definition for `AWS::ElasticLoadBalancingV2::Listener.ListenerAttribute`.
|
|
248
267
|
* Information about a listener attribute.
|
|
@@ -59,6 +59,7 @@ export type Action = {
|
|
|
59
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
60
|
*/
|
|
61
61
|
ForwardConfig?: ForwardConfig;
|
|
62
|
+
JwtValidationConfig?: JwtValidationConfig;
|
|
62
63
|
/**
|
|
63
64
|
* 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.
|
|
64
65
|
*/
|
|
@@ -259,6 +260,24 @@ export type HttpRequestMethodConfig = {
|
|
|
259
260
|
*/
|
|
260
261
|
Values?: string[];
|
|
261
262
|
};
|
|
263
|
+
/**
|
|
264
|
+
* Type definition for `AWS::ElasticLoadBalancingV2::ListenerRule.JwtValidationActionAdditionalClaim`.
|
|
265
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-jwtvalidationactionadditionalclaim.html}
|
|
266
|
+
*/
|
|
267
|
+
export type JwtValidationActionAdditionalClaim = {
|
|
268
|
+
Format: string;
|
|
269
|
+
Name: string;
|
|
270
|
+
Values: string[];
|
|
271
|
+
};
|
|
272
|
+
/**
|
|
273
|
+
* Type definition for `AWS::ElasticLoadBalancingV2::ListenerRule.JwtValidationConfig`.
|
|
274
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-jwtvalidationconfig.html}
|
|
275
|
+
*/
|
|
276
|
+
export type JwtValidationConfig = {
|
|
277
|
+
AdditionalClaims?: JwtValidationActionAdditionalClaim[];
|
|
278
|
+
Issuer: string;
|
|
279
|
+
JwksEndpoint: string;
|
|
280
|
+
};
|
|
262
281
|
/**
|
|
263
282
|
* Type definition for `AWS::ElasticLoadBalancingV2::ListenerRule.PathPatternConfig`.
|
|
264
283
|
* Information about a path pattern condition.
|
|
@@ -12,6 +12,12 @@ export type RekognitionProjectProperties = {
|
|
|
12
12
|
* @pattern `[a-zA-Z0-9][a-zA-Z0-9_\-]*`
|
|
13
13
|
*/
|
|
14
14
|
ProjectName: string;
|
|
15
|
+
/**
|
|
16
|
+
* An array of key-value pairs to apply to this resource.
|
|
17
|
+
* @minLength `0`
|
|
18
|
+
* @maxLength `200`
|
|
19
|
+
*/
|
|
20
|
+
Tags?: Tag[];
|
|
15
21
|
};
|
|
16
22
|
/**
|
|
17
23
|
* Attribute type definition for `AWS::Rekognition::Project`.
|
|
@@ -24,6 +30,25 @@ export type RekognitionProjectAttributes = {
|
|
|
24
30
|
*/
|
|
25
31
|
Arn: string;
|
|
26
32
|
};
|
|
33
|
+
/**
|
|
34
|
+
* Type definition for `AWS::Rekognition::Project.Tag`.
|
|
35
|
+
* A key-value pair to associate with a resource.
|
|
36
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rekognition-project-tag.html}
|
|
37
|
+
*/
|
|
38
|
+
export type Tag = {
|
|
39
|
+
/**
|
|
40
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
41
|
+
* @maxLength `128`
|
|
42
|
+
* @pattern `\A(?!aws:)[a-zA-Z0-9+\-=\._\:\/@]+$`
|
|
43
|
+
*/
|
|
44
|
+
Key: string;
|
|
45
|
+
/**
|
|
46
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
47
|
+
* @maxLength `256`
|
|
48
|
+
* @pattern `\A[a-zA-Z0-9+\-=\._\:\/@]+$`
|
|
49
|
+
*/
|
|
50
|
+
Value: string;
|
|
51
|
+
};
|
|
27
52
|
/**
|
|
28
53
|
* The AWS::Rekognition::Project type creates an Amazon Rekognition CustomLabels Project. A project is a grouping of the resources needed to create and manage Dataset and ProjectVersions.
|
|
29
54
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rekognition-project.html}
|