@awboost/cfn-resource-types 0.1.457 → 0.1.459

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.
@@ -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.
@@ -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;
@@ -21,6 +21,10 @@ export type ImageBuilderImageProperties = {
21
21
  * The execution role name/ARN for the image build, if provided
22
22
  */
23
23
  ExecutionRole?: string;
24
+ /**
25
+ * The image pipeline execution settings of the image.
26
+ */
27
+ ImagePipelineExecutionSettings?: ImagePipelineExecutionSettings;
24
28
  /**
25
29
  * The Amazon Resource Name (ARN) of the image recipe that defines how images are configured, tested, and assessed.
26
30
  */
@@ -119,6 +123,21 @@ export type ImageLoggingConfiguration = {
119
123
  */
120
124
  LogGroupName?: string;
121
125
  };
126
+ /**
127
+ * Type definition for `AWS::ImageBuilder::Image.ImagePipelineExecutionSettings`.
128
+ * The settings for starting an image pipeline execution.
129
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagepipelineexecutionsettings.html}
130
+ */
131
+ export type ImagePipelineExecutionSettings = {
132
+ /**
133
+ * The deployment ID of the pipeline, used to trigger new image pipeline executions.
134
+ */
135
+ DeploymentId?: string;
136
+ /**
137
+ * Whether to trigger the image pipeline when the pipeline is updated. False by default.
138
+ */
139
+ OnUpdate?: boolean;
140
+ };
122
141
  /**
123
142
  * Type definition for `AWS::ImageBuilder::Image.ImageScanningConfiguration`.
124
143
  * Contains settings for Image Builder image resource and container image scans.
@@ -75,6 +75,10 @@ export type ImageBuilderImagePipelineAttributes = {
75
75
  * The Amazon Resource Name (ARN) of the image pipeline.
76
76
  */
77
77
  Arn: string;
78
+ /**
79
+ * The deployment ID of the pipeline, used for resource create/update triggers.
80
+ */
81
+ DeploymentId: string;
78
82
  };
79
83
  /**
80
84
  * Type definition for `AWS::ImageBuilder::ImagePipeline.AutoDisablePolicy`.
@@ -41,6 +41,10 @@ export type MediaPackageV2OriginEndpointProperties = {
41
41
  * <p>A low-latency HLS manifest configuration.</p>
42
42
  */
43
43
  LowLatencyHlsManifests?: LowLatencyHlsManifestConfiguration[];
44
+ /**
45
+ * <p>The Microsoft Smooth Streaming (MSS) manifest configurations associated with this origin endpoint.</p>
46
+ */
47
+ MssManifests?: MssManifestConfiguration[];
44
48
  /**
45
49
  * @minLength `1`
46
50
  * @maxLength `256`
@@ -97,6 +101,7 @@ export type MediaPackageV2OriginEndpointAttributes = {
97
101
  * <p>The date and time the origin endpoint was modified.</p>
98
102
  */
99
103
  ModifiedAt: string;
104
+ MssManifestUrls: string[];
100
105
  };
101
106
  /**
102
107
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.AdMarkerDash`.
@@ -107,7 +112,7 @@ export type AdMarkerDash = "BINARY" | "XML";
107
112
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.AdMarkerHls`.
108
113
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-admarkerhls.html}
109
114
  */
110
- export type AdMarkerHls = "DATERANGE";
115
+ export type AdMarkerHls = "DATERANGE" | "SCTE35_ENHANCED";
111
116
  /**
112
117
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.CmafEncryptionMethod`.
113
118
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-cmafencryptionmethod.html}
@@ -117,7 +122,7 @@ export type CmafEncryptionMethod = "CENC" | "CBCS";
117
122
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.ContainerType`.
118
123
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-containertype.html}
119
124
  */
120
- export type ContainerType = "TS" | "CMAF";
125
+ export type ContainerType = "TS" | "CMAF" | "ISM";
121
126
  /**
122
127
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.DashBaseUrl`.
123
128
  * <p>The base URLs to use for retrieving segments. You can specify multiple locations and indicate the priority and weight for when each should be used, for use in mutli-CDN workflows.</p>
@@ -445,6 +450,7 @@ export type EncryptionContractConfiguration = {
445
450
  */
446
451
  export type EncryptionMethod = {
447
452
  CmafEncryptionMethod?: CmafEncryptionMethod;
453
+ IsmEncryptionMethod?: IsmEncryptionMethod;
448
454
  TsEncryptionMethod?: TsEncryptionMethod;
449
455
  };
450
456
  /**
@@ -539,6 +545,11 @@ export type HlsManifestConfiguration = {
539
545
  */
540
546
  UrlEncodeChildManifest?: boolean;
541
547
  };
548
+ /**
549
+ * Type definition for `AWS::MediaPackageV2::OriginEndpoint.IsmEncryptionMethod`.
550
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-ismencryptionmethod.html}
551
+ */
552
+ export type IsmEncryptionMethod = "CENC";
542
553
  /**
543
554
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.LowLatencyHlsManifestConfiguration`.
544
555
  * <p>Retrieve the low-latency HTTP live streaming (HLS) manifest configuration.</p>
@@ -584,6 +595,34 @@ export type LowLatencyHlsManifestConfiguration = {
584
595
  */
585
596
  UrlEncodeChildManifest?: boolean;
586
597
  };
598
+ /**
599
+ * Type definition for `AWS::MediaPackageV2::OriginEndpoint.MssManifestConfiguration`.
600
+ * <p>Configuration details for a Microsoft Smooth Streaming (MSS) manifest associated with an origin endpoint. This includes all the settings and properties that define how the MSS content is packaged and delivered.</p>
601
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-mssmanifestconfiguration.html}
602
+ */
603
+ export type MssManifestConfiguration = {
604
+ /**
605
+ * <p>Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest. </p>
606
+ */
607
+ FilterConfiguration?: FilterConfiguration;
608
+ ManifestLayout?: MssManifestLayout;
609
+ /**
610
+ * <p>The name of the MSS manifest. This name is appended to the origin endpoint URL to create the unique path for accessing this specific MSS manifest.</p>
611
+ * @minLength `1`
612
+ * @maxLength `256`
613
+ * @pattern `^[a-zA-Z0-9-]+$`
614
+ */
615
+ ManifestName: string;
616
+ /**
617
+ * <p>The duration (in seconds) of the manifest window. This represents the total amount of content available in the manifest at any given time.</p>
618
+ */
619
+ ManifestWindowSeconds?: number;
620
+ };
621
+ /**
622
+ * Type definition for `AWS::MediaPackageV2::OriginEndpoint.MssManifestLayout`.
623
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-mssmanifestlayout.html}
624
+ */
625
+ export type MssManifestLayout = "FULL" | "COMPACT";
587
626
  /**
588
627
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.PresetSpeke20Audio`.
589
628
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-presetspeke20audio.html}
@@ -63,6 +63,10 @@ export type NetworkManagerConnectAttachmentAttributes = {
63
63
  * Creation time of the attachment.
64
64
  */
65
65
  CreatedAt: string;
66
+ /**
67
+ * Errors from the last modification of the attachment.
68
+ */
69
+ LastModificationErrors: string[];
66
70
  /**
67
71
  * The ID of the attachment account owner.
68
72
  */
@@ -55,6 +55,10 @@ export type NetworkManagerDirectConnectGatewayAttachmentAttributes = {
55
55
  * Creation time of the attachment.
56
56
  */
57
57
  CreatedAt: string;
58
+ /**
59
+ * Errors from the last modification of the attachment.
60
+ */
61
+ LastModificationErrors: string[];
58
62
  /**
59
63
  * The name of the network function group attachment.
60
64
  */
@@ -59,6 +59,10 @@ export type NetworkManagerSiteToSiteVpnAttachmentAttributes = {
59
59
  * The Region where the edge is located.
60
60
  */
61
61
  EdgeLocation: string;
62
+ /**
63
+ * Errors from the last modification of the attachment.
64
+ */
65
+ LastModificationErrors: string[];
62
66
  /**
63
67
  * Owner account of the attachment.
64
68
  */
@@ -35,6 +35,10 @@ export type NetworkManagerTransitGatewayPeeringAttributes = {
35
35
  * The location of the transit gateway peering
36
36
  */
37
37
  EdgeLocation: string;
38
+ /**
39
+ * Errors from the last modification of the transit gateway peering.
40
+ */
41
+ LastModificationErrors: string[];
38
42
  /**
39
43
  * Peering owner account Id
40
44
  */
@@ -63,6 +63,10 @@ export type NetworkManagerVpcAttachmentAttributes = {
63
63
  * The Region where the edge is located.
64
64
  */
65
65
  EdgeLocation: string;
66
+ /**
67
+ * Errors from the last modification of the attachment.
68
+ */
69
+ LastModificationErrors: string[];
66
70
  /**
67
71
  * The name of the network function group attachment.
68
72
  */
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.457",
3
+ "version": "0.1.459",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },