@awboost/cfn-resource-types 0.1.458 → 0.1.460
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-CloudFront-Distribution.d.ts +1 -0
- package/lib/AWS-CloudFront-VpcOrigin.d.ts +1 -0
- package/lib/AWS-Connect-EmailAddress.d.ts +17 -0
- package/lib/AWS-EC2-CapacityManagerDataExport.d.ts +66 -0
- package/lib/AWS-EC2-CapacityManagerDataExport.js +12 -0
- package/lib/AWS-FSx-FileSystem.d.ts +1 -0
- package/lib/AWS-Organizations-Account.d.ts +4 -0
- package/lib/AWS-RTBFabric-Link.d.ts +143 -0
- package/lib/AWS-RTBFabric-Link.js +12 -0
- package/lib/AWS-RTBFabric-RequesterGateway.d.ts +92 -0
- package/lib/AWS-RTBFabric-RequesterGateway.js +12 -0
- package/lib/AWS-RTBFabric-ResponderGateway.d.ts +160 -0
- package/lib/AWS-RTBFabric-ResponderGateway.js +12 -0
- package/package.json +1 -1
|
@@ -1068,6 +1068,7 @@ export type VpcOriginConfig = {
|
|
|
1068
1068
|
For more information, see [Response timeout](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout) in the *Amazon CloudFront Developer Guide*.
|
|
1069
1069
|
*/
|
|
1070
1070
|
OriginReadTimeout?: number;
|
|
1071
|
+
OwnerAccountId?: string;
|
|
1071
1072
|
/**
|
|
1072
1073
|
* The VPC origin ID.
|
|
1073
1074
|
*/
|
|
@@ -20,6 +20,7 @@ export type CloudFrontVpcOriginProperties = {
|
|
|
20
20
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-vpcorigin.html#aws-resource-cloudfront-vpcorigin-return-values}
|
|
21
21
|
*/
|
|
22
22
|
export type CloudFrontVpcOriginAttributes = {
|
|
23
|
+
AccountId: string;
|
|
23
24
|
Arn: string;
|
|
24
25
|
CreatedTime: string;
|
|
25
26
|
Id: string;
|
|
@@ -5,6 +5,11 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ConnectEmailAddressProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* List of alias configurations for the email address
|
|
10
|
+
* @maxLength `1`
|
|
11
|
+
*/
|
|
12
|
+
AliasConfigurations?: AliasConfiguration[];
|
|
8
13
|
/**
|
|
9
14
|
* A description for the email address.
|
|
10
15
|
* @minLength `1`
|
|
@@ -50,6 +55,18 @@ export type ConnectEmailAddressAttributes = {
|
|
|
50
55
|
*/
|
|
51
56
|
EmailAddressArn: string;
|
|
52
57
|
};
|
|
58
|
+
/**
|
|
59
|
+
* Type definition for `AWS::Connect::EmailAddress.AliasConfiguration`.
|
|
60
|
+
* Configuration for an email address alias
|
|
61
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-emailaddress-aliasconfiguration.html}
|
|
62
|
+
*/
|
|
63
|
+
export type AliasConfiguration = {
|
|
64
|
+
/**
|
|
65
|
+
* The identifier of the email address alias
|
|
66
|
+
* @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}$`
|
|
67
|
+
*/
|
|
68
|
+
EmailAddressArn: string;
|
|
69
|
+
};
|
|
53
70
|
/**
|
|
54
71
|
* Type definition for `AWS::Connect::EmailAddress.Tag`.
|
|
55
72
|
* A key-value pair to associate with a resource.
|
|
@@ -0,0 +1,66 @@
|
|
|
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::EC2::CapacityManagerDataExport
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html}
|
|
6
|
+
*/
|
|
7
|
+
export type EC2CapacityManagerDataExportProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The format of the exported capacity manager data. Choose 'csv' for comma-separated values or 'parquet' for optimized columnar storage format.
|
|
10
|
+
*/
|
|
11
|
+
OutputFormat: "csv" | "parquet";
|
|
12
|
+
/**
|
|
13
|
+
* 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.
|
|
14
|
+
*/
|
|
15
|
+
S3BucketName: string;
|
|
16
|
+
/**
|
|
17
|
+
* 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.
|
|
18
|
+
*/
|
|
19
|
+
S3BucketPrefix?: string;
|
|
20
|
+
/**
|
|
21
|
+
* The schedule for the capacity manager data export. Currently supports hourly exports that provide periodic snapshots of capacity manager data.
|
|
22
|
+
*/
|
|
23
|
+
Schedule: "hourly";
|
|
24
|
+
/**
|
|
25
|
+
* An array of key-value pairs to apply to the capacity manager data export.
|
|
26
|
+
*/
|
|
27
|
+
Tags?: Tag[];
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Attribute type definition for `AWS::EC2::CapacityManagerDataExport`.
|
|
31
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html#aws-resource-ec2-capacitymanagerdataexport-return-values}
|
|
32
|
+
*/
|
|
33
|
+
export type EC2CapacityManagerDataExportAttributes = {
|
|
34
|
+
/**
|
|
35
|
+
* The unique identifier of the capacity manager data export.
|
|
36
|
+
*/
|
|
37
|
+
CapacityManagerDataExportId: string;
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Type definition for `AWS::EC2::CapacityManagerDataExport.Tag`.
|
|
41
|
+
* A key-value pair to associate with a resource.
|
|
42
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-capacitymanagerdataexport-tag.html}
|
|
43
|
+
*/
|
|
44
|
+
export type Tag = {
|
|
45
|
+
/**
|
|
46
|
+
* 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 -.
|
|
47
|
+
* @minLength `1`
|
|
48
|
+
* @maxLength `128`
|
|
49
|
+
*/
|
|
50
|
+
Key: string;
|
|
51
|
+
/**
|
|
52
|
+
* 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 -.
|
|
53
|
+
* @minLength `0`
|
|
54
|
+
* @maxLength `256`
|
|
55
|
+
*/
|
|
56
|
+
Value: string;
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* Resource Type definition for AWS::EC2::CapacityManagerDataExport
|
|
60
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html}
|
|
61
|
+
*/
|
|
62
|
+
export declare class EC2CapacityManagerDataExport extends $Resource<"AWS::EC2::CapacityManagerDataExport", EC2CapacityManagerDataExportProperties, EC2CapacityManagerDataExportAttributes> {
|
|
63
|
+
static readonly Type = "AWS::EC2::CapacityManagerDataExport";
|
|
64
|
+
constructor(logicalId: string, properties: EC2CapacityManagerDataExportProperties, options?: $ResourceOptions);
|
|
65
|
+
}
|
|
66
|
+
//# sourceMappingURL=AWS-EC2-CapacityManagerDataExport.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::EC2::CapacityManagerDataExport
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html}
|
|
5
|
+
*/
|
|
6
|
+
export class EC2CapacityManagerDataExport extends $Resource {
|
|
7
|
+
static Type = "AWS::EC2::CapacityManagerDataExport";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, EC2CapacityManagerDataExport.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-EC2-CapacityManagerDataExport.js.map
|
|
@@ -111,6 +111,7 @@ export type OntapConfiguration = {
|
|
|
111
111
|
DeploymentType: string;
|
|
112
112
|
DiskIopsConfiguration?: DiskIopsConfiguration;
|
|
113
113
|
EndpointIpAddressRange?: string;
|
|
114
|
+
EndpointIpv6AddressRange?: string;
|
|
114
115
|
FsxAdminPassword?: string;
|
|
115
116
|
HAPairs?: number;
|
|
116
117
|
PreferredSubnetId?: string;
|
|
@@ -59,6 +59,10 @@ export type OrganizationsAccountAttributes = {
|
|
|
59
59
|
* The date the account became a part of the organization.
|
|
60
60
|
*/
|
|
61
61
|
JoinedTimestamp: string;
|
|
62
|
+
/**
|
|
63
|
+
* The state of the account in the organization.
|
|
64
|
+
*/
|
|
65
|
+
State: "PENDING_ACTIVATION" | "ACTIVE" | "SUSPENDED" | "PENDING_CLOSURE" | "CLOSED";
|
|
62
66
|
/**
|
|
63
67
|
* The status of the account in the organization.
|
|
64
68
|
*/
|
|
@@ -0,0 +1,143 @@
|
|
|
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::Link Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html}
|
|
6
|
+
*/
|
|
7
|
+
export type RTBFabricLinkProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @pattern `^rtb-gw-[a-z0-9-]{1,25}$`
|
|
10
|
+
*/
|
|
11
|
+
GatewayId: string;
|
|
12
|
+
HttpResponderAllowed?: boolean;
|
|
13
|
+
LinkAttributes?: LinkAttributes;
|
|
14
|
+
LinkLogSettings: LinkLogSettings;
|
|
15
|
+
/**
|
|
16
|
+
* @pattern `^rtb-gw-[a-z0-9-]{1,25}$`
|
|
17
|
+
*/
|
|
18
|
+
PeerGatewayId: string;
|
|
19
|
+
/**
|
|
20
|
+
* Tags to assign to the Link.
|
|
21
|
+
* @minLength `0`
|
|
22
|
+
* @maxLength `50`
|
|
23
|
+
*/
|
|
24
|
+
Tags?: Tag[];
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Attribute type definition for `AWS::RTBFabric::Link`.
|
|
28
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html#aws-resource-rtbfabric-link-return-values}
|
|
29
|
+
*/
|
|
30
|
+
export type RTBFabricLinkAttributes = {
|
|
31
|
+
/**
|
|
32
|
+
* @minLength `20`
|
|
33
|
+
* @maxLength `2048`
|
|
34
|
+
* @pattern `^arn:aws:rtbfabric:[a-zA-Z0-9_-]+:[0-9]{12}:gateway/[a-zA-Z0-9-]+/link/[a-zA-Z0-9-]+$`
|
|
35
|
+
*/
|
|
36
|
+
Arn: string;
|
|
37
|
+
CreatedTimestamp: string;
|
|
38
|
+
LinkDirection: LinkDirection;
|
|
39
|
+
/**
|
|
40
|
+
* @pattern `^link-[a-z0-9-]{1,25}$`
|
|
41
|
+
*/
|
|
42
|
+
LinkId: string;
|
|
43
|
+
LinkStatus: LinkStatus;
|
|
44
|
+
UpdatedTimestamp: string;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* Type definition for `AWS::RTBFabric::Link.LinkAttributes`.
|
|
48
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-linkattributes.html}
|
|
49
|
+
*/
|
|
50
|
+
export type LinkAttributes = {
|
|
51
|
+
CustomerProvidedId?: string;
|
|
52
|
+
/**
|
|
53
|
+
* @minLength `1`
|
|
54
|
+
* @maxLength `200`
|
|
55
|
+
*/
|
|
56
|
+
ResponderErrorMasking?: ResponderErrorMaskingForHttpCode[];
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* Type definition for `AWS::RTBFabric::Link.LinkDirection`.
|
|
60
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-linkdirection.html}
|
|
61
|
+
*/
|
|
62
|
+
export type LinkDirection = "REQUEST" | "RESPONSE";
|
|
63
|
+
/**
|
|
64
|
+
* Type definition for `AWS::RTBFabric::Link.LinkLogSettings`.
|
|
65
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-linklogsettings.html}
|
|
66
|
+
*/
|
|
67
|
+
export type LinkLogSettings = {
|
|
68
|
+
ApplicationLogs: {
|
|
69
|
+
LinkApplicationLogSampling: {
|
|
70
|
+
/**
|
|
71
|
+
* @min `0`
|
|
72
|
+
* @max `100`
|
|
73
|
+
*/
|
|
74
|
+
ErrorLog: number;
|
|
75
|
+
/**
|
|
76
|
+
* @min `0`
|
|
77
|
+
* @max `100`
|
|
78
|
+
*/
|
|
79
|
+
FilterLog: number;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* Type definition for `AWS::RTBFabric::Link.LinkStatus`.
|
|
85
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-linkstatus.html}
|
|
86
|
+
*/
|
|
87
|
+
export type LinkStatus = "PENDING_CREATION" | "PENDING_REQUEST" | "REQUESTED" | "ACCEPTED" | "ACTIVE" | "DECLINED" | "FAILED" | "PENDING_DELETION" | "DELETED" | "PENDING_UPDATE" | "PENDING_ISOLATION" | "ISOLATED" | "PENDING_RESTORATION" | "UNKNOWN_TO_SDK_VERSION";
|
|
88
|
+
/**
|
|
89
|
+
* Type definition for `AWS::RTBFabric::Link.ResponderErrorMaskingForHttpCode`.
|
|
90
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-respondererrormaskingforhttpcode.html}
|
|
91
|
+
*/
|
|
92
|
+
export type ResponderErrorMaskingForHttpCode = {
|
|
93
|
+
Action: "NO_BID" | "PASSTHROUGH";
|
|
94
|
+
/**
|
|
95
|
+
* @minLength `3`
|
|
96
|
+
* @maxLength `7`
|
|
97
|
+
* @pattern `^DEFAULT|4XX|5XX|\d{3}$`
|
|
98
|
+
*/
|
|
99
|
+
HttpCode: string;
|
|
100
|
+
/**
|
|
101
|
+
* @minLength `1`
|
|
102
|
+
* @maxLength `2`
|
|
103
|
+
*/
|
|
104
|
+
LoggingTypes: ResponderErrorMaskingLoggingType[];
|
|
105
|
+
/**
|
|
106
|
+
* @min `0`
|
|
107
|
+
* @max `100`
|
|
108
|
+
*/
|
|
109
|
+
ResponseLoggingPercentage?: number;
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* Type definition for `AWS::RTBFabric::Link.ResponderErrorMaskingLoggingType`.
|
|
113
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-respondererrormaskingloggingtype.html}
|
|
114
|
+
*/
|
|
115
|
+
export type ResponderErrorMaskingLoggingType = "NONE" | "METRIC" | "RESPONSE";
|
|
116
|
+
/**
|
|
117
|
+
* Type definition for `AWS::RTBFabric::Link.Tag`.
|
|
118
|
+
* A key-value pair to associate with a resource.
|
|
119
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-tag.html}
|
|
120
|
+
*/
|
|
121
|
+
export type Tag = {
|
|
122
|
+
/**
|
|
123
|
+
* 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 -.
|
|
124
|
+
* @minLength `1`
|
|
125
|
+
* @maxLength `128`
|
|
126
|
+
*/
|
|
127
|
+
Key: string;
|
|
128
|
+
/**
|
|
129
|
+
* 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 -.
|
|
130
|
+
* @minLength `0`
|
|
131
|
+
* @maxLength `256`
|
|
132
|
+
*/
|
|
133
|
+
Value?: string;
|
|
134
|
+
};
|
|
135
|
+
/**
|
|
136
|
+
* Resource Type definition for AWS::RTBFabric::Link Resource Type
|
|
137
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html}
|
|
138
|
+
*/
|
|
139
|
+
export declare class RTBFabricLink extends $Resource<"AWS::RTBFabric::Link", RTBFabricLinkProperties, RTBFabricLinkAttributes> {
|
|
140
|
+
static readonly Type = "AWS::RTBFabric::Link";
|
|
141
|
+
constructor(logicalId: string, properties: RTBFabricLinkProperties, options?: $ResourceOptions);
|
|
142
|
+
}
|
|
143
|
+
//# sourceMappingURL=AWS-RTBFabric-Link.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::Link Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html}
|
|
5
|
+
*/
|
|
6
|
+
export class RTBFabricLink extends $Resource {
|
|
7
|
+
static Type = "AWS::RTBFabric::Link";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, RTBFabricLink.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-RTBFabric-Link.js.map
|
|
@@ -0,0 +1,92 @@
|
|
|
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::RequesterGateway Resource Type.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html}
|
|
6
|
+
*/
|
|
7
|
+
export type RTBFabricRequesterGatewayProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @pattern `^[A-Za-z0-9 ]+$`
|
|
10
|
+
*/
|
|
11
|
+
Description?: string;
|
|
12
|
+
/**
|
|
13
|
+
* The ID of one or more security groups in order to create a requester gateway.
|
|
14
|
+
* @minLength `1`
|
|
15
|
+
*/
|
|
16
|
+
SecurityGroupIds: string[];
|
|
17
|
+
/**
|
|
18
|
+
* The ID of one or more subnets in order to create a requester gateway.
|
|
19
|
+
* @minLength `1`
|
|
20
|
+
*/
|
|
21
|
+
SubnetIds: string[];
|
|
22
|
+
/**
|
|
23
|
+
* Tags to assign to the Requester Gateway.
|
|
24
|
+
* @minLength `0`
|
|
25
|
+
* @maxLength `50`
|
|
26
|
+
*/
|
|
27
|
+
Tags?: Tag[];
|
|
28
|
+
/**
|
|
29
|
+
* @minLength `5`
|
|
30
|
+
* @maxLength `50`
|
|
31
|
+
*/
|
|
32
|
+
VpcId: string;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Attribute type definition for `AWS::RTBFabric::RequesterGateway`.
|
|
36
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#aws-resource-rtbfabric-requestergateway-return-values}
|
|
37
|
+
*/
|
|
38
|
+
export type RTBFabricRequesterGatewayAttributes = {
|
|
39
|
+
ActiveLinksCount: number;
|
|
40
|
+
/**
|
|
41
|
+
* @minLength `20`
|
|
42
|
+
* @maxLength `2048`
|
|
43
|
+
* @pattern `^arn:aws:(rtbfabric|rtbfabric):[a-zA-Z0-9_-]+:[0-9]{12}:gateway/[a-zA-Z0-9-]+$`
|
|
44
|
+
*/
|
|
45
|
+
Arn: string;
|
|
46
|
+
CreatedTimestamp: string;
|
|
47
|
+
/**
|
|
48
|
+
* @pattern `^(?:[A-Za-z0-9](?:[A-Za-z0-9-]{0,61}[A-Za-z0-9])?)(?:\.(?:[A-Za-z0-9](?:[A-Za-z0-9-]{0,61}[A-Za-z0-9])?))+$`
|
|
49
|
+
*/
|
|
50
|
+
DomainName: string;
|
|
51
|
+
/**
|
|
52
|
+
* @pattern `^(rtbapp-[a-z0-9-]{1,25}|rtb-gw-[a-z0-9-]{1,25})$`
|
|
53
|
+
*/
|
|
54
|
+
GatewayId: string;
|
|
55
|
+
RequesterGatewayStatus: RequesterGatewayStatus;
|
|
56
|
+
TotalLinksCount: number;
|
|
57
|
+
UpdatedTimestamp: string;
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* Type definition for `AWS::RTBFabric::RequesterGateway.RequesterGatewayStatus`.
|
|
61
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-requestergateway-requestergatewaystatus.html}
|
|
62
|
+
*/
|
|
63
|
+
export type RequesterGatewayStatus = "PENDING_CREATION" | "ACTIVE" | "PENDING_DELETION" | "DELETED" | "ERROR" | "PENDING_UPDATE" | "ISOLATED" | "PENDING_ISOLATION" | "PENDING_RESTORATION";
|
|
64
|
+
/**
|
|
65
|
+
* Type definition for `AWS::RTBFabric::RequesterGateway.Tag`.
|
|
66
|
+
* A key-value pair to associate with a resource.
|
|
67
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-requestergateway-tag.html}
|
|
68
|
+
*/
|
|
69
|
+
export type Tag = {
|
|
70
|
+
/**
|
|
71
|
+
* 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 -.
|
|
72
|
+
* @minLength `1`
|
|
73
|
+
* @maxLength `128`
|
|
74
|
+
* @pattern `^(resourceArn|internalId|(?!aws:)[a-zA-Z0-9+\-=._:/@]+)$`
|
|
75
|
+
*/
|
|
76
|
+
Key: string;
|
|
77
|
+
/**
|
|
78
|
+
* 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 -.
|
|
79
|
+
* @minLength `0`
|
|
80
|
+
* @maxLength `1600`
|
|
81
|
+
*/
|
|
82
|
+
Value?: string;
|
|
83
|
+
};
|
|
84
|
+
/**
|
|
85
|
+
* Resource Type definition for AWS::RTBFabric::RequesterGateway Resource Type.
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html}
|
|
87
|
+
*/
|
|
88
|
+
export declare class RTBFabricRequesterGateway extends $Resource<"AWS::RTBFabric::RequesterGateway", RTBFabricRequesterGatewayProperties, RTBFabricRequesterGatewayAttributes> {
|
|
89
|
+
static readonly Type = "AWS::RTBFabric::RequesterGateway";
|
|
90
|
+
constructor(logicalId: string, properties: RTBFabricRequesterGatewayProperties, options?: $ResourceOptions);
|
|
91
|
+
}
|
|
92
|
+
//# sourceMappingURL=AWS-RTBFabric-RequesterGateway.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::RequesterGateway Resource Type.
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html}
|
|
5
|
+
*/
|
|
6
|
+
export class RTBFabricRequesterGateway extends $Resource {
|
|
7
|
+
static Type = "AWS::RTBFabric::RequesterGateway";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, RTBFabricRequesterGateway.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-RTBFabric-RequesterGateway.js.map
|
|
@@ -0,0 +1,160 @@
|
|
|
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::ResponderGateway Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html}
|
|
6
|
+
*/
|
|
7
|
+
export type RTBFabricResponderGatewayProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @pattern `^[A-Za-z0-9 ]+$`
|
|
10
|
+
*/
|
|
11
|
+
Description?: string;
|
|
12
|
+
/**
|
|
13
|
+
* @pattern `^(?:[A-Za-z0-9](?:[A-Za-z0-9-]{0,61}[A-Za-z0-9])?)(?:\.(?:[A-Za-z0-9](?:[A-Za-z0-9-]{0,61}[A-Za-z0-9])?))+$`
|
|
14
|
+
*/
|
|
15
|
+
DomainName?: string;
|
|
16
|
+
ManagedEndpointConfiguration?: ManagedEndpointConfiguration;
|
|
17
|
+
/**
|
|
18
|
+
* @min `1`
|
|
19
|
+
* @max `65535`
|
|
20
|
+
*/
|
|
21
|
+
Port: number;
|
|
22
|
+
Protocol: Protocol;
|
|
23
|
+
/**
|
|
24
|
+
* The ID of one or more security groups in order to create a gateway.
|
|
25
|
+
* @minLength `1`
|
|
26
|
+
*/
|
|
27
|
+
SecurityGroupIds: string[];
|
|
28
|
+
/**
|
|
29
|
+
* The ID of one or more subnets in order to create a gateway.
|
|
30
|
+
* @minLength `1`
|
|
31
|
+
*/
|
|
32
|
+
SubnetIds: string[];
|
|
33
|
+
/**
|
|
34
|
+
* Tags to assign to the Responder Gateway.
|
|
35
|
+
* @minLength `0`
|
|
36
|
+
* @maxLength `50`
|
|
37
|
+
*/
|
|
38
|
+
Tags?: Tag[];
|
|
39
|
+
TrustStoreConfiguration?: TrustStoreConfiguration;
|
|
40
|
+
/**
|
|
41
|
+
* @minLength `5`
|
|
42
|
+
* @maxLength `50`
|
|
43
|
+
*/
|
|
44
|
+
VpcId: string;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* Attribute type definition for `AWS::RTBFabric::ResponderGateway`.
|
|
48
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html#aws-resource-rtbfabric-respondergateway-return-values}
|
|
49
|
+
*/
|
|
50
|
+
export type RTBFabricResponderGatewayAttributes = {
|
|
51
|
+
/**
|
|
52
|
+
* @minLength `20`
|
|
53
|
+
* @maxLength `2048`
|
|
54
|
+
* @pattern `^arn:aws:(rtbfabric|rtbfabric):[a-zA-Z0-9_-]+:[0-9]{12}:gateway/[a-zA-Z0-9-]+$`
|
|
55
|
+
*/
|
|
56
|
+
Arn: string;
|
|
57
|
+
CreatedTimestamp: string;
|
|
58
|
+
/**
|
|
59
|
+
* @pattern `^(rtbapp-[a-z0-9-]{1,25}|rtb-gw-[a-z0-9-]{1,25})$`
|
|
60
|
+
*/
|
|
61
|
+
GatewayId: string;
|
|
62
|
+
ResponderGatewayStatus: ResponderGatewayStatus;
|
|
63
|
+
UpdatedTimestamp: string;
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* Type definition for `AWS::RTBFabric::ResponderGateway.AutoScalingGroupsConfiguration`.
|
|
67
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-autoscalinggroupsconfiguration.html}
|
|
68
|
+
*/
|
|
69
|
+
export type AutoScalingGroupsConfiguration = {
|
|
70
|
+
AutoScalingGroupNameList: string[];
|
|
71
|
+
RoleArn: string;
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* Type definition for `AWS::RTBFabric::ResponderGateway.EksEndpointsConfiguration`.
|
|
75
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-eksendpointsconfiguration.html}
|
|
76
|
+
*/
|
|
77
|
+
export type EksEndpointsConfiguration = {
|
|
78
|
+
/**
|
|
79
|
+
* @minLength `1`
|
|
80
|
+
* @maxLength `2097152`
|
|
81
|
+
*/
|
|
82
|
+
ClusterApiServerCaCertificateChain: string;
|
|
83
|
+
/**
|
|
84
|
+
* @minLength `0`
|
|
85
|
+
* @maxLength `255`
|
|
86
|
+
* @pattern `^(https|http)://(?:[A-Za-z0-9](?:[A-Za-z0-9-]{0,61}[A-Za-z0-9])?)(?:\.(?:[A-Za-z0-9](?:[A-Za-z0-9-]{0,61}[A-Za-z0-9])?))+$`
|
|
87
|
+
*/
|
|
88
|
+
ClusterApiServerEndpointUri: string;
|
|
89
|
+
/**
|
|
90
|
+
* @pattern `^[A-Za-z0-9][A-Za-z0-9-]{0,61}[A-Za-z0-9]$`
|
|
91
|
+
*/
|
|
92
|
+
ClusterName: string;
|
|
93
|
+
/**
|
|
94
|
+
* @pattern `^[A-Za-z0-9][A-Za-z0-9-]{0,61}[A-Za-z0-9]$`
|
|
95
|
+
*/
|
|
96
|
+
EndpointsResourceName: string;
|
|
97
|
+
/**
|
|
98
|
+
* @pattern `^[A-Za-z0-9][A-Za-z0-9-]{0,61}[A-Za-z0-9]$`
|
|
99
|
+
*/
|
|
100
|
+
EndpointsResourceNamespace: string;
|
|
101
|
+
RoleArn: string;
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* Type definition for `AWS::RTBFabric::ResponderGateway.ManagedEndpointConfiguration`.
|
|
105
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-managedendpointconfiguration.html}
|
|
106
|
+
*/
|
|
107
|
+
export type ManagedEndpointConfiguration = {
|
|
108
|
+
AutoScalingGroupsConfiguration: AutoScalingGroupsConfiguration;
|
|
109
|
+
} | {
|
|
110
|
+
EksEndpointsConfiguration: EksEndpointsConfiguration;
|
|
111
|
+
};
|
|
112
|
+
/**
|
|
113
|
+
* Type definition for `AWS::RTBFabric::ResponderGateway.Protocol`.
|
|
114
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-protocol.html}
|
|
115
|
+
*/
|
|
116
|
+
export type Protocol = "HTTP" | "HTTPS";
|
|
117
|
+
/**
|
|
118
|
+
* Type definition for `AWS::RTBFabric::ResponderGateway.ResponderGatewayStatus`.
|
|
119
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-respondergatewaystatus.html}
|
|
120
|
+
*/
|
|
121
|
+
export type ResponderGatewayStatus = "PENDING_CREATION" | "ACTIVE" | "PENDING_DELETION" | "DELETED" | "ERROR" | "PENDING_UPDATE" | "ISOLATED" | "PENDING_ISOLATION" | "PENDING_RESTORATION";
|
|
122
|
+
/**
|
|
123
|
+
* Type definition for `AWS::RTBFabric::ResponderGateway.Tag`.
|
|
124
|
+
* A key-value pair to associate with a resource.
|
|
125
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-tag.html}
|
|
126
|
+
*/
|
|
127
|
+
export type Tag = {
|
|
128
|
+
/**
|
|
129
|
+
* 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 -.
|
|
130
|
+
* @minLength `1`
|
|
131
|
+
* @maxLength `128`
|
|
132
|
+
*/
|
|
133
|
+
Key: string;
|
|
134
|
+
/**
|
|
135
|
+
* 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 -.
|
|
136
|
+
* @minLength `0`
|
|
137
|
+
* @maxLength `256`
|
|
138
|
+
*/
|
|
139
|
+
Value?: string;
|
|
140
|
+
};
|
|
141
|
+
/**
|
|
142
|
+
* Type definition for `AWS::RTBFabric::ResponderGateway.TrustStoreConfiguration`.
|
|
143
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-truststoreconfiguration.html}
|
|
144
|
+
*/
|
|
145
|
+
export type TrustStoreConfiguration = {
|
|
146
|
+
/**
|
|
147
|
+
* @minLength `0`
|
|
148
|
+
* @maxLength `1`
|
|
149
|
+
*/
|
|
150
|
+
CertificateAuthorityCertificates: string[];
|
|
151
|
+
};
|
|
152
|
+
/**
|
|
153
|
+
* Resource Type definition for AWS::RTBFabric::ResponderGateway Resource Type
|
|
154
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html}
|
|
155
|
+
*/
|
|
156
|
+
export declare class RTBFabricResponderGateway extends $Resource<"AWS::RTBFabric::ResponderGateway", RTBFabricResponderGatewayProperties, RTBFabricResponderGatewayAttributes> {
|
|
157
|
+
static readonly Type = "AWS::RTBFabric::ResponderGateway";
|
|
158
|
+
constructor(logicalId: string, properties: RTBFabricResponderGatewayProperties, options?: $ResourceOptions);
|
|
159
|
+
}
|
|
160
|
+
//# sourceMappingURL=AWS-RTBFabric-ResponderGateway.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::ResponderGateway Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html}
|
|
5
|
+
*/
|
|
6
|
+
export class RTBFabricResponderGateway extends $Resource {
|
|
7
|
+
static Type = "AWS::RTBFabric::ResponderGateway";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, RTBFabricResponderGateway.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-RTBFabric-ResponderGateway.js.map
|