@awboost/cfn-resource-types 0.1.474 → 0.1.476
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-APS-Scraper.d.ts +13 -0
- package/lib/AWS-CloudTrail-Trail.d.ts +1 -1
- package/lib/AWS-DSQL-Cluster.d.ts +8 -0
- package/lib/AWS-DynamoDB-GlobalTable.d.ts +1 -1
- package/lib/AWS-EC2-FlowLog.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-IAM-Policy.d.ts +2 -2
- package/lib/AWS-IAM-Policy.js +1 -1
- package/lib/AWS-RTBFabric-InboundExternalLink.d.ts +132 -0
- package/lib/AWS-RTBFabric-InboundExternalLink.js +12 -0
- package/lib/AWS-RTBFabric-Link.d.ts +1 -1
- package/lib/AWS-RTBFabric-RequesterGateway.d.ts +1 -1
- package/lib/AWS-RTBFabric-ResponderGateway.d.ts +1 -1
- package/lib/AWS-Rekognition-Project.d.ts +25 -0
- package/lib/AWS-Route53Resolver-FirewallRuleGroup.d.ts +1 -1
- package/package.json +1 -1
package/lib/AWS-APS-Scraper.d.ts
CHANGED
|
@@ -192,6 +192,19 @@ export type Source = {
|
|
|
192
192
|
*/
|
|
193
193
|
SubnetIds: string[];
|
|
194
194
|
};
|
|
195
|
+
/**
|
|
196
|
+
* Configuration for VPC metrics source
|
|
197
|
+
*/
|
|
198
|
+
VpcConfiguration?: {
|
|
199
|
+
/**
|
|
200
|
+
* List of security group IDs
|
|
201
|
+
*/
|
|
202
|
+
SecurityGroupIds: string[];
|
|
203
|
+
/**
|
|
204
|
+
* List of subnet IDs
|
|
205
|
+
*/
|
|
206
|
+
SubnetIds: string[];
|
|
207
|
+
};
|
|
195
208
|
};
|
|
196
209
|
/**
|
|
197
210
|
* Type definition for `AWS::APS::Scraper.Tag`.
|
|
@@ -83,7 +83,7 @@ export type CloudTrailTrailAttributes = {
|
|
|
83
83
|
};
|
|
84
84
|
/**
|
|
85
85
|
* Type definition for `AWS::CloudTrail::Trail.AdvancedEventSelector`.
|
|
86
|
-
* Advanced event selectors let you create fine-grained selectors for the following AWS CloudTrail event record
|
|
86
|
+
* Advanced event selectors let you create fine-grained selectors for the following AWS CloudTrail event record fields. They help you control costs by logging only those events that are important to you.
|
|
87
87
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-trail-advancedeventselector.html}
|
|
88
88
|
*/
|
|
89
89
|
export type AdvancedEventSelector = {
|
|
@@ -23,6 +23,10 @@ export type DSQLClusterProperties = {
|
|
|
23
23
|
*/
|
|
24
24
|
WitnessRegion?: string;
|
|
25
25
|
};
|
|
26
|
+
/**
|
|
27
|
+
* The IAM policy applied to the cluster resource.
|
|
28
|
+
*/
|
|
29
|
+
PolicyDocument?: string;
|
|
26
30
|
Tags?: Tag[];
|
|
27
31
|
};
|
|
28
32
|
/**
|
|
@@ -55,6 +59,10 @@ export type DSQLClusterAttributes = {
|
|
|
55
59
|
* The ID of the created cluster.
|
|
56
60
|
*/
|
|
57
61
|
Identifier: string;
|
|
62
|
+
/**
|
|
63
|
+
* The version number of the cluster's resource based policy
|
|
64
|
+
*/
|
|
65
|
+
PolicyVersion: string;
|
|
58
66
|
/**
|
|
59
67
|
* The Amazon Resource Name (ARN) for the cluster.
|
|
60
68
|
*/
|
|
@@ -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`.
|
package/lib/AWS-EC2-FlowLog.d.ts
CHANGED
|
@@ -46,7 +46,7 @@ export type EC2FlowLogProperties = {
|
|
|
46
46
|
/**
|
|
47
47
|
* The type of resource for which to create the flow log. For example, if you specified a VPC ID for the ResourceId property, specify VPC for this property.
|
|
48
48
|
*/
|
|
49
|
-
ResourceType: "NetworkInterface" | "Subnet" | "VPC" | "TransitGateway" | "TransitGatewayAttachment";
|
|
49
|
+
ResourceType: "NetworkInterface" | "Subnet" | "VPC" | "TransitGateway" | "TransitGatewayAttachment" | "RegionalNatGateway";
|
|
50
50
|
/**
|
|
51
51
|
* The tags to apply to the flow logs.
|
|
52
52
|
*/
|
|
@@ -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.
|
package/lib/AWS-IAM-Policy.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* Adds or updates an inline policy document that is embedded in the specified IAM group, user or role.
|
|
6
6
|
An IAM user can also have a managed policy attached to it. For information about policies, see [Managed Policies and Inline Policies](https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html) in the *User Guide*.
|
|
7
7
|
The Groups, Roles, and Users properties are optional. However, you must specify at least one of these properties.
|
|
8
|
-
For information about policy documents see [Creating policies](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_create.html) in the *User Guide*.
|
|
8
|
+
For information about policy documents, see [Creating policies](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_create.html) in the *User Guide*.
|
|
9
9
|
For information about limits on the number of inline policies that you can embed in an identity, see [Limitations on Entities](https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html) in the *User Guide*.
|
|
10
10
|
This resource does not support [drift detection](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html). The following inline policy resource types support drift detection:
|
|
11
11
|
+ [AWS::IAM::GroupPolicy](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-grouppolicy.html)
|
|
@@ -59,7 +59,7 @@ export type IAMPolicyAttributes = {
|
|
|
59
59
|
* Adds or updates an inline policy document that is embedded in the specified IAM group, user or role.
|
|
60
60
|
An IAM user can also have a managed policy attached to it. For information about policies, see [Managed Policies and Inline Policies](https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html) in the *User Guide*.
|
|
61
61
|
The Groups, Roles, and Users properties are optional. However, you must specify at least one of these properties.
|
|
62
|
-
For information about policy documents see [Creating policies](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_create.html) in the *User Guide*.
|
|
62
|
+
For information about policy documents, see [Creating policies](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_create.html) in the *User Guide*.
|
|
63
63
|
For information about limits on the number of inline policies that you can embed in an identity, see [Limitations on Entities](https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html) in the *User Guide*.
|
|
64
64
|
This resource does not support [drift detection](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html). The following inline policy resource types support drift detection:
|
|
65
65
|
+ [AWS::IAM::GroupPolicy](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-grouppolicy.html)
|
package/lib/AWS-IAM-Policy.js
CHANGED
|
@@ -4,7 +4,7 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
4
4
|
* Adds or updates an inline policy document that is embedded in the specified IAM group, user or role.
|
|
5
5
|
An IAM user can also have a managed policy attached to it. For information about policies, see [Managed Policies and Inline Policies](https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html) in the *User Guide*.
|
|
6
6
|
The Groups, Roles, and Users properties are optional. However, you must specify at least one of these properties.
|
|
7
|
-
For information about policy documents see [Creating policies](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_create.html) in the *User Guide*.
|
|
7
|
+
For information about policy documents, see [Creating policies](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_create.html) in the *User Guide*.
|
|
8
8
|
For information about limits on the number of inline policies that you can embed in an identity, see [Limitations on Entities](https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html) in the *User Guide*.
|
|
9
9
|
This resource does not support [drift detection](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html). The following inline policy resource types support drift detection:
|
|
10
10
|
+ [AWS::IAM::GroupPolicy](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-grouppolicy.html)
|
|
@@ -0,0 +1,132 @@
|
|
|
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::RTBFabric::InboundExternalLink Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-inboundexternallink.html}
|
|
6
|
+
*/
|
|
7
|
+
export type RTBFabricInboundExternalLinkProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @pattern `^rtb-gw-[a-z0-9-]{1,25}$`
|
|
10
|
+
*/
|
|
11
|
+
GatewayId: string;
|
|
12
|
+
LinkAttributes?: LinkAttributes;
|
|
13
|
+
LinkLogSettings: LinkLogSettings;
|
|
14
|
+
/**
|
|
15
|
+
* Tags to assign to the Link.
|
|
16
|
+
* @minLength `0`
|
|
17
|
+
* @maxLength `50`
|
|
18
|
+
*/
|
|
19
|
+
Tags?: Tag[];
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Attribute type definition for `AWS::RTBFabric::InboundExternalLink`.
|
|
23
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-inboundexternallink.html#aws-resource-rtbfabric-inboundexternallink-return-values}
|
|
24
|
+
*/
|
|
25
|
+
export type RTBFabricInboundExternalLinkAttributes = {
|
|
26
|
+
/**
|
|
27
|
+
* @minLength `20`
|
|
28
|
+
* @maxLength `2048`
|
|
29
|
+
* @pattern `^arn:aws:rtbfabric:[a-zA-Z0-9_-]+:[0-9]{12}:gateway/[a-zA-Z0-9-]+/link/[a-zA-Z0-9-]+$`
|
|
30
|
+
*/
|
|
31
|
+
Arn: string;
|
|
32
|
+
CreatedTimestamp: string;
|
|
33
|
+
/**
|
|
34
|
+
* @pattern `^link-[a-z0-9-]{1,25}$`
|
|
35
|
+
*/
|
|
36
|
+
LinkId: string;
|
|
37
|
+
LinkStatus: LinkStatus;
|
|
38
|
+
UpdatedTimestamp: string;
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* Type definition for `AWS::RTBFabric::InboundExternalLink.LinkAttributes`.
|
|
42
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-inboundexternallink-linkattributes.html}
|
|
43
|
+
*/
|
|
44
|
+
export type LinkAttributes = {
|
|
45
|
+
CustomerProvidedId?: string;
|
|
46
|
+
/**
|
|
47
|
+
* @minLength `1`
|
|
48
|
+
* @maxLength `200`
|
|
49
|
+
*/
|
|
50
|
+
ResponderErrorMasking?: ResponderErrorMaskingForHttpCode[];
|
|
51
|
+
};
|
|
52
|
+
/**
|
|
53
|
+
* Type definition for `AWS::RTBFabric::InboundExternalLink.LinkLogSettings`.
|
|
54
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-inboundexternallink-linklogsettings.html}
|
|
55
|
+
*/
|
|
56
|
+
export type LinkLogSettings = {
|
|
57
|
+
ApplicationLogs: {
|
|
58
|
+
LinkApplicationLogSampling: {
|
|
59
|
+
/**
|
|
60
|
+
* @min `0`
|
|
61
|
+
* @max `100`
|
|
62
|
+
*/
|
|
63
|
+
ErrorLog: number;
|
|
64
|
+
/**
|
|
65
|
+
* @min `0`
|
|
66
|
+
* @max `100`
|
|
67
|
+
*/
|
|
68
|
+
FilterLog: number;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* Type definition for `AWS::RTBFabric::InboundExternalLink.LinkStatus`.
|
|
74
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-inboundexternallink-linkstatus.html}
|
|
75
|
+
*/
|
|
76
|
+
export type LinkStatus = "PENDING_CREATION" | "PENDING_REQUEST" | "REQUESTED" | "ACCEPTED" | "ACTIVE" | "REJECTED" | "FAILED" | "PENDING_DELETION" | "DELETED" | "PENDING_UPDATE" | "PENDING_ISOLATION" | "ISOLATED" | "PENDING_RESTORATION" | "UNKNOWN_TO_SDK_VERSION";
|
|
77
|
+
/**
|
|
78
|
+
* Type definition for `AWS::RTBFabric::InboundExternalLink.ResponderErrorMaskingForHttpCode`.
|
|
79
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-inboundexternallink-respondererrormaskingforhttpcode.html}
|
|
80
|
+
*/
|
|
81
|
+
export type ResponderErrorMaskingForHttpCode = {
|
|
82
|
+
Action: "NO_BID" | "PASSTHROUGH";
|
|
83
|
+
/**
|
|
84
|
+
* @minLength `3`
|
|
85
|
+
* @maxLength `7`
|
|
86
|
+
* @pattern `^DEFAULT|4XX|5XX|\d{3}$`
|
|
87
|
+
*/
|
|
88
|
+
HttpCode: string;
|
|
89
|
+
/**
|
|
90
|
+
* @minLength `1`
|
|
91
|
+
* @maxLength `2`
|
|
92
|
+
*/
|
|
93
|
+
LoggingTypes: ResponderErrorMaskingLoggingType[];
|
|
94
|
+
/**
|
|
95
|
+
* @min `0`
|
|
96
|
+
* @max `100`
|
|
97
|
+
*/
|
|
98
|
+
ResponseLoggingPercentage?: number;
|
|
99
|
+
};
|
|
100
|
+
/**
|
|
101
|
+
* Type definition for `AWS::RTBFabric::InboundExternalLink.ResponderErrorMaskingLoggingType`.
|
|
102
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-inboundexternallink-respondererrormaskingloggingtype.html}
|
|
103
|
+
*/
|
|
104
|
+
export type ResponderErrorMaskingLoggingType = "NONE" | "METRIC" | "RESPONSE";
|
|
105
|
+
/**
|
|
106
|
+
* Type definition for `AWS::RTBFabric::InboundExternalLink.Tag`.
|
|
107
|
+
* A key-value pair to associate with a resource.
|
|
108
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-inboundexternallink-tag.html}
|
|
109
|
+
*/
|
|
110
|
+
export type Tag = {
|
|
111
|
+
/**
|
|
112
|
+
* 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 -.
|
|
113
|
+
* @minLength `1`
|
|
114
|
+
* @maxLength `128`
|
|
115
|
+
*/
|
|
116
|
+
Key: string;
|
|
117
|
+
/**
|
|
118
|
+
* 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 -.
|
|
119
|
+
* @minLength `0`
|
|
120
|
+
* @maxLength `256`
|
|
121
|
+
*/
|
|
122
|
+
Value?: string;
|
|
123
|
+
};
|
|
124
|
+
/**
|
|
125
|
+
* Resource Type definition for AWS::RTBFabric::InboundExternalLink Resource Type
|
|
126
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-inboundexternallink.html}
|
|
127
|
+
*/
|
|
128
|
+
export declare class RTBFabricInboundExternalLink extends $Resource<"AWS::RTBFabric::InboundExternalLink", RTBFabricInboundExternalLinkProperties, RTBFabricInboundExternalLinkAttributes> {
|
|
129
|
+
static readonly Type = "AWS::RTBFabric::InboundExternalLink";
|
|
130
|
+
constructor(logicalId: string, properties: RTBFabricInboundExternalLinkProperties, options?: $ResourceOptions);
|
|
131
|
+
}
|
|
132
|
+
//# sourceMappingURL=AWS-RTBFabric-InboundExternalLink.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::RTBFabric::InboundExternalLink Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-inboundexternallink.html}
|
|
5
|
+
*/
|
|
6
|
+
export class RTBFabricInboundExternalLink extends $Resource {
|
|
7
|
+
static Type = "AWS::RTBFabric::InboundExternalLink";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, RTBFabricInboundExternalLink.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-RTBFabric-InboundExternalLink.js.map
|
|
@@ -111,7 +111,7 @@ export type LinkLogSettings = {
|
|
|
111
111
|
* Type definition for `AWS::RTBFabric::Link.LinkStatus`.
|
|
112
112
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-linkstatus.html}
|
|
113
113
|
*/
|
|
114
|
-
export type LinkStatus = "PENDING_CREATION" | "PENDING_REQUEST" | "REQUESTED" | "ACCEPTED" | "ACTIVE" | "
|
|
114
|
+
export type LinkStatus = "PENDING_CREATION" | "PENDING_REQUEST" | "REQUESTED" | "ACCEPTED" | "ACTIVE" | "REJECTED" | "FAILED" | "PENDING_DELETION" | "DELETED" | "PENDING_UPDATE" | "PENDING_ISOLATION" | "ISOLATED" | "PENDING_RESTORATION" | "UNKNOWN_TO_SDK_VERSION";
|
|
115
115
|
/**
|
|
116
116
|
* Type definition for `AWS::RTBFabric::Link.ModuleConfiguration`.
|
|
117
117
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-moduleconfiguration.html}
|
|
@@ -40,7 +40,7 @@ export type RTBFabricRequesterGatewayAttributes = {
|
|
|
40
40
|
/**
|
|
41
41
|
* @minLength `20`
|
|
42
42
|
* @maxLength `2048`
|
|
43
|
-
* @pattern `^arn:aws:
|
|
43
|
+
* @pattern `^arn:aws:rtbfabric:[a-zA-Z0-9_-]+:[0-9]{12}:gateway/[a-zA-Z0-9-]+$`
|
|
44
44
|
*/
|
|
45
45
|
Arn: string;
|
|
46
46
|
CreatedTimestamp: string;
|
|
@@ -51,7 +51,7 @@ export type RTBFabricResponderGatewayAttributes = {
|
|
|
51
51
|
/**
|
|
52
52
|
* @minLength `20`
|
|
53
53
|
* @maxLength `2048`
|
|
54
|
-
* @pattern `^arn:aws:
|
|
54
|
+
* @pattern `^arn:aws:rtbfabric:[a-zA-Z0-9_-]+:[0-9]{12}:gateway/[a-zA-Z0-9-]+$`
|
|
55
55
|
*/
|
|
56
56
|
Arn: string;
|
|
57
57
|
CreatedTimestamp: string;
|
|
@@ -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}
|