@awboost/cfn-resource-types 0.1.476 → 0.1.477

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.
Files changed (33) hide show
  1. package/lib/AWS-ApiGateway-Account.d.ts +2 -0
  2. package/lib/AWS-ApiGateway-Account.js +1 -0
  3. package/lib/AWS-ApiGateway-ApiKey.d.ts +5 -3
  4. package/lib/AWS-ApiGateway-BasePathMapping.d.ts +2 -2
  5. package/lib/AWS-ApiGateway-BasePathMapping.js +1 -1
  6. package/lib/AWS-ApiGateway-ClientCertificate.d.ts +8 -0
  7. package/lib/AWS-ApiGateway-Deployment.d.ts +5 -3
  8. package/lib/AWS-ApiGateway-DocumentationPart.d.ts +2 -2
  9. package/lib/AWS-ApiGateway-DomainName.d.ts +15 -6
  10. package/lib/AWS-ApiGateway-DomainName.js +2 -1
  11. package/lib/AWS-ApiGateway-GatewayResponse.d.ts +2 -2
  12. package/lib/AWS-ApiGateway-GatewayResponse.js +1 -1
  13. package/lib/AWS-ApiGateway-RestApi.d.ts +13 -5
  14. package/lib/AWS-ApiGateway-RestApi.js +1 -1
  15. package/lib/AWS-ApiGateway-Stage.d.ts +6 -4
  16. package/lib/AWS-ApiGateway-UsagePlan.d.ts +4 -2
  17. package/lib/AWS-ApiGateway-VpcLink.d.ts +8 -0
  18. package/lib/AWS-ElasticLoadBalancingV2-TargetGroup.d.ts +4 -0
  19. package/lib/AWS-Lambda-EventSourceMapping.d.ts +21 -4
  20. package/lib/AWS-MediaConnect-Flow.d.ts +61 -0
  21. package/lib/AWS-MediaConnect-FlowOutput.d.ts +62 -1
  22. package/lib/AWS-MediaConnect-RouterInput.d.ts +537 -0
  23. package/lib/AWS-MediaConnect-RouterInput.js +13 -0
  24. package/lib/AWS-MediaConnect-RouterNetworkInterface.d.ts +144 -0
  25. package/lib/AWS-MediaConnect-RouterNetworkInterface.js +13 -0
  26. package/lib/AWS-MediaConnect-RouterOutput.d.ts +464 -0
  27. package/lib/AWS-MediaConnect-RouterOutput.js +13 -0
  28. package/lib/AWS-ServiceCatalog-CloudFormationProduct.d.ts +21 -113
  29. package/lib/AWS-ServiceCatalog-CloudFormationProduct.js +1 -1
  30. package/lib/AWS-WorkSpacesWeb-BrowserSettings.d.ts +28 -1
  31. package/lib/Dev-FSx-StorageVirtualMachine.d.ts +55 -0
  32. package/lib/Dev-FSx-StorageVirtualMachine.js +11 -0
  33. package/package.json +1 -1
@@ -0,0 +1,144 @@
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::MediaConnect::RouterNetworkInterface`.
5
+ * Represents a router network interface in AWS Elemental MediaConnect that is used to define a network boundary for router resources
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routernetworkinterface.html}
7
+ */
8
+ export type MediaConnectRouterNetworkInterfaceProperties = {
9
+ /**
10
+ * The configuration settings for a router network interface.
11
+ */
12
+ Configuration: RouterNetworkInterfaceConfiguration;
13
+ /**
14
+ * The name of the router network interface.
15
+ * @minLength `1`
16
+ * @maxLength `128`
17
+ */
18
+ Name: string;
19
+ /**
20
+ * The AWS Region for the router network interface. Defaults to the current region if not specified.
21
+ */
22
+ RegionName?: string;
23
+ /**
24
+ * Key-value pairs that can be used to tag and organize this router network interface.
25
+ */
26
+ Tags?: Tag[];
27
+ };
28
+ /**
29
+ * Attribute type definition for `AWS::MediaConnect::RouterNetworkInterface`.
30
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routernetworkinterface.html#aws-resource-mediaconnect-routernetworkinterface-return-values}
31
+ */
32
+ export type MediaConnectRouterNetworkInterfaceAttributes = {
33
+ /**
34
+ * @pattern `^arn:(aws[a-zA-Z-]*):mediaconnect:[a-z0-9-]+:[0-9]{12}:routerNetworkInterface:[a-z0-9]{12}$`
35
+ */
36
+ Arn: string;
37
+ /**
38
+ * The number of router inputs associated with the network interface.
39
+ */
40
+ AssociatedInputCount: number;
41
+ /**
42
+ * The number of router outputs associated with the network interface.
43
+ */
44
+ AssociatedOutputCount: number;
45
+ /**
46
+ * The timestamp when the router network interface was created.
47
+ */
48
+ CreatedAt: string;
49
+ /**
50
+ * The unique identifier of the router network interface.
51
+ */
52
+ Id: string;
53
+ NetworkInterfaceType: RouterNetworkInterfaceType;
54
+ State: RouterNetworkInterfaceState;
55
+ /**
56
+ * The timestamp when the router network interface was last updated.
57
+ */
58
+ UpdatedAt: string;
59
+ };
60
+ /**
61
+ * Type definition for `AWS::MediaConnect::RouterNetworkInterface.PublicRouterNetworkInterfaceConfiguration`.
62
+ * The configuration settings for a public router network interface, including the list of allowed CIDR blocks.
63
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routernetworkinterface-publicrouternetworkinterfaceconfiguration.html}
64
+ */
65
+ export type PublicRouterNetworkInterfaceConfiguration = {
66
+ /**
67
+ * The list of allowed CIDR blocks for the public router network interface.
68
+ * @minLength `0`
69
+ * @maxLength `10`
70
+ */
71
+ AllowRules: PublicRouterNetworkInterfaceRule[];
72
+ };
73
+ /**
74
+ * Type definition for `AWS::MediaConnect::RouterNetworkInterface.PublicRouterNetworkInterfaceRule`.
75
+ * A rule that allows a specific CIDR block to access the public router network interface.
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routernetworkinterface-publicrouternetworkinterfacerule.html}
77
+ */
78
+ export type PublicRouterNetworkInterfaceRule = {
79
+ /**
80
+ * The CIDR block that is allowed to access the public router network interface.
81
+ */
82
+ Cidr: string;
83
+ };
84
+ /**
85
+ * Type definition for `AWS::MediaConnect::RouterNetworkInterface.RouterNetworkInterfaceConfiguration`.
86
+ * The configuration settings for a router network interface.
87
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routernetworkinterface-routernetworkinterfaceconfiguration.html}
88
+ */
89
+ export type RouterNetworkInterfaceConfiguration = {
90
+ /**
91
+ * The configuration settings for a public router network interface, including the list of allowed CIDR blocks.
92
+ */
93
+ Public: PublicRouterNetworkInterfaceConfiguration;
94
+ } | {
95
+ /**
96
+ * The configuration settings for a router network interface within a VPC, including the security group IDs and subnet ID.
97
+ */
98
+ Vpc: VpcRouterNetworkInterfaceConfiguration;
99
+ };
100
+ /**
101
+ * Type definition for `AWS::MediaConnect::RouterNetworkInterface.RouterNetworkInterfaceState`.
102
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routernetworkinterface-routernetworkinterfacestate.html}
103
+ */
104
+ export type RouterNetworkInterfaceState = "CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "ERROR" | "RECOVERING";
105
+ /**
106
+ * Type definition for `AWS::MediaConnect::RouterNetworkInterface.RouterNetworkInterfaceType`.
107
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routernetworkinterface-routernetworkinterfacetype.html}
108
+ */
109
+ export type RouterNetworkInterfaceType = "PUBLIC" | "VPC";
110
+ /**
111
+ * Type definition for `AWS::MediaConnect::RouterNetworkInterface.Tag`.
112
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routernetworkinterface-tag.html}
113
+ */
114
+ export type Tag = {
115
+ Key: string;
116
+ Value: string;
117
+ };
118
+ /**
119
+ * Type definition for `AWS::MediaConnect::RouterNetworkInterface.VpcRouterNetworkInterfaceConfiguration`.
120
+ * The configuration settings for a router network interface within a VPC, including the security group IDs and subnet ID.
121
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routernetworkinterface-vpcrouternetworkinterfaceconfiguration.html}
122
+ */
123
+ export type VpcRouterNetworkInterfaceConfiguration = {
124
+ /**
125
+ * The IDs of the security groups to associate with the router network interface within the VPC.
126
+ * @minLength `1`
127
+ * @maxLength `5`
128
+ */
129
+ SecurityGroupIds: string[];
130
+ /**
131
+ * The ID of the subnet within the VPC to associate the router network interface with.
132
+ */
133
+ SubnetId: string;
134
+ };
135
+ /**
136
+ * Resource type definition for `AWS::MediaConnect::RouterNetworkInterface`.
137
+ * Represents a router network interface in AWS Elemental MediaConnect that is used to define a network boundary for router resources
138
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routernetworkinterface.html}
139
+ */
140
+ export declare class MediaConnectRouterNetworkInterface extends $Resource<"AWS::MediaConnect::RouterNetworkInterface", MediaConnectRouterNetworkInterfaceProperties, MediaConnectRouterNetworkInterfaceAttributes> {
141
+ static readonly Type = "AWS::MediaConnect::RouterNetworkInterface";
142
+ constructor(logicalId: string, properties: MediaConnectRouterNetworkInterfaceProperties, options?: $ResourceOptions);
143
+ }
144
+ //# sourceMappingURL=AWS-MediaConnect-RouterNetworkInterface.d.ts.map
@@ -0,0 +1,13 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for `AWS::MediaConnect::RouterNetworkInterface`.
4
+ * Represents a router network interface in AWS Elemental MediaConnect that is used to define a network boundary for router resources
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routernetworkinterface.html}
6
+ */
7
+ export class MediaConnectRouterNetworkInterface extends $Resource {
8
+ static Type = "AWS::MediaConnect::RouterNetworkInterface";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, MediaConnectRouterNetworkInterface.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-MediaConnect-RouterNetworkInterface.js.map
@@ -0,0 +1,464 @@
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::MediaConnect::RouterOutput`.
5
+ * Represents a router input in AWS Elemental MediaConnect that can be used to egress content transmitted from router inputs
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routeroutput.html}
7
+ */
8
+ export type MediaConnectRouterOutputProperties = {
9
+ /**
10
+ * The Availability Zone where you want to create the router output. This must be a valid Availability Zone for the region specified by regionName, or the current region if no regionName is provided.
11
+ */
12
+ AvailabilityZone?: string;
13
+ /**
14
+ * The configuration settings for a router output.
15
+ */
16
+ Configuration: RouterOutputConfiguration;
17
+ /**
18
+ * The configuration settings for maintenance operations, including preferred maintenance windows and schedules.
19
+ */
20
+ MaintenanceConfiguration?: MaintenanceConfiguration;
21
+ /**
22
+ * The maximum bitrate for the router output.
23
+ */
24
+ MaximumBitrate: number;
25
+ /**
26
+ * The name of the router output.
27
+ * @minLength `1`
28
+ * @maxLength `128`
29
+ */
30
+ Name: string;
31
+ /**
32
+ * The AWS Region for the router output. Defaults to the current region if not specified.
33
+ */
34
+ RegionName?: string;
35
+ RoutingScope: RoutingScope;
36
+ /**
37
+ * Key-value pairs that can be used to tag this router output.
38
+ */
39
+ Tags?: Tag[];
40
+ Tier: RouterOutputTier;
41
+ };
42
+ /**
43
+ * Attribute type definition for `AWS::MediaConnect::RouterOutput`.
44
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routeroutput.html#aws-resource-mediaconnect-routeroutput-return-values}
45
+ */
46
+ export type MediaConnectRouterOutputAttributes = {
47
+ /**
48
+ * @pattern `^arn:(aws[a-zA-Z-]*):mediaconnect:[a-z0-9-]+:[0-9]{12}:routerOutput:[a-z0-9]{12}$`
49
+ */
50
+ Arn: string;
51
+ /**
52
+ * The timestamp when the router output was created.
53
+ */
54
+ CreatedAt: string;
55
+ /**
56
+ * The unique identifier of the router output.
57
+ */
58
+ Id: string;
59
+ /**
60
+ * The IP address of the router output.
61
+ */
62
+ IpAddress: string;
63
+ MaintenanceType: MaintenanceType;
64
+ OutputType: RouterOutputType;
65
+ RoutedState: RouterOutputRoutedState;
66
+ State: RouterOutputState;
67
+ /**
68
+ * The timestamp when the router output was last updated.
69
+ */
70
+ UpdatedAt: string;
71
+ };
72
+ /**
73
+ * Type definition for `AWS::MediaConnect::RouterOutput.AutomaticEncryptionKeyConfiguration`.
74
+ * Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.
75
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-automaticencryptionkeyconfiguration.html}
76
+ */
77
+ export type AutomaticEncryptionKeyConfiguration = Record<string, any>;
78
+ /**
79
+ * Type definition for `AWS::MediaConnect::RouterOutput.Day`.
80
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-day.html}
81
+ */
82
+ export type Day = "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY";
83
+ /**
84
+ * Type definition for `AWS::MediaConnect::RouterOutput.DefaultMaintenanceConfiguration`.
85
+ * Configuration settings for default maintenance scheduling.
86
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-defaultmaintenanceconfiguration.html}
87
+ */
88
+ export type DefaultMaintenanceConfiguration = Record<string, any>;
89
+ /**
90
+ * Type definition for `AWS::MediaConnect::RouterOutput.FlowTransitEncryption`.
91
+ * The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.
92
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-flowtransitencryption.html}
93
+ */
94
+ export type FlowTransitEncryption = {
95
+ /**
96
+ * Configuration settings for flow transit encryption keys.
97
+ */
98
+ EncryptionKeyConfiguration: FlowTransitEncryptionKeyConfiguration;
99
+ EncryptionKeyType?: FlowTransitEncryptionKeyType;
100
+ };
101
+ /**
102
+ * Type definition for `AWS::MediaConnect::RouterOutput.FlowTransitEncryptionKeyConfiguration`.
103
+ * Configuration settings for flow transit encryption keys.
104
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-flowtransitencryptionkeyconfiguration.html}
105
+ */
106
+ export type FlowTransitEncryptionKeyConfiguration = {
107
+ /**
108
+ * The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.
109
+ */
110
+ SecretsManager: SecretsManagerEncryptionKeyConfiguration;
111
+ } | {
112
+ /**
113
+ * Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.
114
+ */
115
+ Automatic: AutomaticEncryptionKeyConfiguration;
116
+ };
117
+ /**
118
+ * Type definition for `AWS::MediaConnect::RouterOutput.FlowTransitEncryptionKeyType`.
119
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-flowtransitencryptionkeytype.html}
120
+ */
121
+ export type FlowTransitEncryptionKeyType = "SECRETS_MANAGER" | "AUTOMATIC";
122
+ /**
123
+ * Type definition for `AWS::MediaConnect::RouterOutput.ForwardErrorCorrectionState`.
124
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-forwarderrorcorrectionstate.html}
125
+ */
126
+ export type ForwardErrorCorrectionState = "ENABLED" | "DISABLED";
127
+ /**
128
+ * Type definition for `AWS::MediaConnect::RouterOutput.MaintenanceConfiguration`.
129
+ * The configuration settings for maintenance operations, including preferred maintenance windows and schedules.
130
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-maintenanceconfiguration.html}
131
+ */
132
+ export type MaintenanceConfiguration = {
133
+ /**
134
+ * Configuration for preferred day and time maintenance settings.
135
+ */
136
+ PreferredDayTime: PreferredDayTimeMaintenanceConfiguration;
137
+ } | {
138
+ /**
139
+ * Configuration settings for default maintenance scheduling.
140
+ */
141
+ Default: DefaultMaintenanceConfiguration;
142
+ };
143
+ /**
144
+ * Type definition for `AWS::MediaConnect::RouterOutput.MaintenanceType`.
145
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-maintenancetype.html}
146
+ */
147
+ export type MaintenanceType = "PREFERRED_DAY_TIME" | "DEFAULT";
148
+ /**
149
+ * Type definition for `AWS::MediaConnect::RouterOutput.MediaConnectFlowRouterOutputConfiguration`.
150
+ * Configuration settings for connecting a router output to a MediaConnect flow source.
151
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-mediaconnectflowrouteroutputconfiguration.html}
152
+ */
153
+ export type MediaConnectFlowRouterOutputConfiguration = {
154
+ /**
155
+ * The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.
156
+ */
157
+ DestinationTransitEncryption: FlowTransitEncryption;
158
+ /**
159
+ * The ARN of the flow to connect to this router output.
160
+ * @pattern `^arn:(aws[a-zA-Z-]*):mediaconnect:[a-z0-9-]+:[0-9]{12}:flow:[a-zA-Z0-9-]+:[a-zA-Z0-9_-]+$`
161
+ */
162
+ FlowArn?: string;
163
+ /**
164
+ * The ARN of the flow source to connect to this router output.
165
+ * @pattern `^arn:(aws[a-zA-Z-]*):mediaconnect:[a-z0-9-]+:[0-9]{12}:source:[a-zA-Z0-9-]+:[a-zA-Z0-9_-]+$`
166
+ */
167
+ FlowSourceArn?: string;
168
+ };
169
+ /**
170
+ * Type definition for `AWS::MediaConnect::RouterOutput.MediaLiveInputPipelineId`.
171
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-medialiveinputpipelineid.html}
172
+ */
173
+ export type MediaLiveInputPipelineId = "PIPELINE_0" | "PIPELINE_1";
174
+ /**
175
+ * Type definition for `AWS::MediaConnect::RouterOutput.MediaLiveInputRouterOutputConfiguration`.
176
+ * Configuration settings for connecting a router output to a MediaLive input.
177
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-medialiveinputrouteroutputconfiguration.html}
178
+ */
179
+ export type MediaLiveInputRouterOutputConfiguration = {
180
+ /**
181
+ * The encryption configuration that defines how content is encrypted during transit between MediaConnect Router and MediaLive. This configuration determines whether encryption keys are automatically managed by the service or manually managed through AWS Secrets Manager.
182
+ */
183
+ DestinationTransitEncryption: MediaLiveTransitEncryption;
184
+ /**
185
+ * The ARN of the MediaLive input to connect to this router output.
186
+ * @pattern `^arn:(aws[a-zA-Z-]*):medialive:[a-z0-9-]+:[0-9]{12}:input:[a-zA-Z0-9]+$`
187
+ */
188
+ MediaLiveInputArn?: string;
189
+ MediaLivePipelineId?: MediaLiveInputPipelineId;
190
+ };
191
+ /**
192
+ * Type definition for `AWS::MediaConnect::RouterOutput.MediaLiveTransitEncryption`.
193
+ * The encryption configuration that defines how content is encrypted during transit between MediaConnect Router and MediaLive. This configuration determines whether encryption keys are automatically managed by the service or manually managed through AWS Secrets Manager.
194
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-medialivetransitencryption.html}
195
+ */
196
+ export type MediaLiveTransitEncryption = {
197
+ /**
198
+ * Configuration settings for the MediaLive transit encryption key.
199
+ */
200
+ EncryptionKeyConfiguration: MediaLiveTransitEncryptionKeyConfiguration;
201
+ EncryptionKeyType?: MediaLiveTransitEncryptionKeyType;
202
+ };
203
+ /**
204
+ * Type definition for `AWS::MediaConnect::RouterOutput.MediaLiveTransitEncryptionKeyConfiguration`.
205
+ * Configuration settings for the MediaLive transit encryption key.
206
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-medialivetransitencryptionkeyconfiguration.html}
207
+ */
208
+ export type MediaLiveTransitEncryptionKeyConfiguration = {
209
+ /**
210
+ * The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.
211
+ */
212
+ SecretsManager: SecretsManagerEncryptionKeyConfiguration;
213
+ } | {
214
+ /**
215
+ * Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.
216
+ */
217
+ Automatic: AutomaticEncryptionKeyConfiguration;
218
+ };
219
+ /**
220
+ * Type definition for `AWS::MediaConnect::RouterOutput.MediaLiveTransitEncryptionKeyType`.
221
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-medialivetransitencryptionkeytype.html}
222
+ */
223
+ export type MediaLiveTransitEncryptionKeyType = "SECRETS_MANAGER" | "AUTOMATIC";
224
+ /**
225
+ * Type definition for `AWS::MediaConnect::RouterOutput.PreferredDayTimeMaintenanceConfiguration`.
226
+ * Configuration for preferred day and time maintenance settings.
227
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-preferreddaytimemaintenanceconfiguration.html}
228
+ */
229
+ export type PreferredDayTimeMaintenanceConfiguration = {
230
+ Day: Day;
231
+ /**
232
+ * The preferred time for maintenance operations.
233
+ */
234
+ Time: string;
235
+ };
236
+ /**
237
+ * Type definition for `AWS::MediaConnect::RouterOutput.RistRouterOutputConfiguration`.
238
+ * The configuration settings for a router output using the RIST (Reliable Internet Stream Transport) protocol, including the destination address and port.
239
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-ristrouteroutputconfiguration.html}
240
+ */
241
+ export type RistRouterOutputConfiguration = {
242
+ /**
243
+ * The destination IP address for the RIST protocol in the router output configuration.
244
+ */
245
+ DestinationAddress: string;
246
+ /**
247
+ * The destination port number for the RIST protocol in the router output configuration.
248
+ * @min `0`
249
+ * @max `65535`
250
+ */
251
+ DestinationPort: number;
252
+ };
253
+ /**
254
+ * Type definition for `AWS::MediaConnect::RouterOutput.RouterOutputConfiguration`.
255
+ * The configuration settings for a router output.
256
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-routeroutputconfiguration.html}
257
+ */
258
+ export type RouterOutputConfiguration = {
259
+ /**
260
+ * The configuration settings for a standard router output, including the protocol, protocol-specific configuration, network interface, and availability zone.
261
+ */
262
+ Standard: StandardRouterOutputConfiguration;
263
+ } | {
264
+ /**
265
+ * Configuration settings for connecting a router output to a MediaConnect flow source.
266
+ */
267
+ MediaConnectFlow: MediaConnectFlowRouterOutputConfiguration;
268
+ } | {
269
+ /**
270
+ * Configuration settings for connecting a router output to a MediaLive input.
271
+ */
272
+ MediaLiveInput: MediaLiveInputRouterOutputConfiguration;
273
+ };
274
+ /**
275
+ * Type definition for `AWS::MediaConnect::RouterOutput.RouterOutputProtocol`.
276
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-routeroutputprotocol.html}
277
+ */
278
+ export type RouterOutputProtocol = "RTP" | "RIST" | "SRT_CALLER" | "SRT_LISTENER";
279
+ /**
280
+ * Type definition for `AWS::MediaConnect::RouterOutput.RouterOutputProtocolConfiguration`.
281
+ * The protocol configuration settings for a router output.
282
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-routeroutputprotocolconfiguration.html}
283
+ */
284
+ export type RouterOutputProtocolConfiguration = {
285
+ /**
286
+ * The configuration settings for a router output using the RTP (Real-Time Transport Protocol) protocol, including the destination address and port, and forward error correction state.
287
+ */
288
+ Rtp: RtpRouterOutputConfiguration;
289
+ } | {
290
+ /**
291
+ * The configuration settings for a router output using the RIST (Reliable Internet Stream Transport) protocol, including the destination address and port.
292
+ */
293
+ Rist: RistRouterOutputConfiguration;
294
+ } | {
295
+ /**
296
+ * The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in listener mode, including the port, minimum latency, and encryption key configuration.
297
+ */
298
+ SrtListener: SrtListenerRouterOutputConfiguration;
299
+ } | {
300
+ /**
301
+ * The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in caller mode, including the destination address and port, minimum latency, stream ID, and encryption key configuration.
302
+ */
303
+ SrtCaller: SrtCallerRouterOutputConfiguration;
304
+ };
305
+ /**
306
+ * Type definition for `AWS::MediaConnect::RouterOutput.RouterOutputRoutedState`.
307
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-routeroutputroutedstate.html}
308
+ */
309
+ export type RouterOutputRoutedState = "ROUTED" | "ROUTING" | "UNROUTED";
310
+ /**
311
+ * Type definition for `AWS::MediaConnect::RouterOutput.RouterOutputState`.
312
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-routeroutputstate.html}
313
+ */
314
+ export type RouterOutputState = "CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING";
315
+ /**
316
+ * Type definition for `AWS::MediaConnect::RouterOutput.RouterOutputTier`.
317
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-routeroutputtier.html}
318
+ */
319
+ export type RouterOutputTier = "OUTPUT_100" | "OUTPUT_50" | "OUTPUT_20";
320
+ /**
321
+ * Type definition for `AWS::MediaConnect::RouterOutput.RouterOutputType`.
322
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-routeroutputtype.html}
323
+ */
324
+ export type RouterOutputType = "STANDARD" | "MEDIACONNECT_FLOW" | "MEDIALIVE_INPUT";
325
+ /**
326
+ * Type definition for `AWS::MediaConnect::RouterOutput.RoutingScope`.
327
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-routingscope.html}
328
+ */
329
+ export type RoutingScope = "REGIONAL" | "GLOBAL";
330
+ /**
331
+ * Type definition for `AWS::MediaConnect::RouterOutput.RtpRouterOutputConfiguration`.
332
+ * The configuration settings for a router output using the RTP (Real-Time Transport Protocol) protocol, including the destination address and port, and forward error correction state.
333
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-rtprouteroutputconfiguration.html}
334
+ */
335
+ export type RtpRouterOutputConfiguration = {
336
+ /**
337
+ * The destination IP address for the RTP protocol in the router output configuration.
338
+ */
339
+ DestinationAddress: string;
340
+ /**
341
+ * The destination port number for the RTP protocol in the router output configuration.
342
+ * @min `0`
343
+ * @max `65531`
344
+ */
345
+ DestinationPort: number;
346
+ ForwardErrorCorrection?: ForwardErrorCorrectionState;
347
+ };
348
+ /**
349
+ * Type definition for `AWS::MediaConnect::RouterOutput.SecretsManagerEncryptionKeyConfiguration`.
350
+ * The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.
351
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-secretsmanagerencryptionkeyconfiguration.html}
352
+ */
353
+ export type SecretsManagerEncryptionKeyConfiguration = {
354
+ /**
355
+ * The ARN of the IAM role assumed by MediaConnect to access the AWS Secrets Manager secret.
356
+ * @pattern `^arn:(aws[a-zA-Z-]*):iam::[0-9]{12}:role/[a-zA-Z0-9_+=,.@-]+$`
357
+ */
358
+ RoleArn: string;
359
+ /**
360
+ * The ARN of the AWS Secrets Manager secret used for transit encryption.
361
+ * @pattern `^arn:(aws[a-zA-Z-]*):secretsmanager:[a-z0-9-]+:[0-9]{12}:secret:[a-zA-Z0-9/_+=.@-]+$`
362
+ */
363
+ SecretArn: string;
364
+ };
365
+ /**
366
+ * Type definition for `AWS::MediaConnect::RouterOutput.SrtCallerRouterOutputConfiguration`.
367
+ * The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in caller mode, including the destination address and port, minimum latency, stream ID, and encryption key configuration.
368
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-srtcallerrouteroutputconfiguration.html}
369
+ */
370
+ export type SrtCallerRouterOutputConfiguration = {
371
+ /**
372
+ * The destination IP address for the SRT protocol in caller mode.
373
+ */
374
+ DestinationAddress: string;
375
+ /**
376
+ * The destination port number for the SRT protocol in caller mode.
377
+ * @min `0`
378
+ * @max `65535`
379
+ */
380
+ DestinationPort: number;
381
+ /**
382
+ * Contains the configuration settings for encrypting SRT streams, including the encryption key details and encryption parameters.
383
+ */
384
+ EncryptionConfiguration?: SrtEncryptionConfiguration;
385
+ /**
386
+ * The minimum latency in milliseconds for the SRT protocol in caller mode.
387
+ * @min `10`
388
+ * @max `10000`
389
+ */
390
+ MinimumLatencyMilliseconds: number;
391
+ /**
392
+ * The stream ID for the SRT protocol in caller mode.
393
+ */
394
+ StreamId?: string;
395
+ };
396
+ /**
397
+ * Type definition for `AWS::MediaConnect::RouterOutput.SrtEncryptionConfiguration`.
398
+ * Contains the configuration settings for encrypting SRT streams, including the encryption key details and encryption parameters.
399
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-srtencryptionconfiguration.html}
400
+ */
401
+ export type SrtEncryptionConfiguration = {
402
+ /**
403
+ * The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.
404
+ */
405
+ EncryptionKey: SecretsManagerEncryptionKeyConfiguration;
406
+ };
407
+ /**
408
+ * Type definition for `AWS::MediaConnect::RouterOutput.SrtListenerRouterOutputConfiguration`.
409
+ * The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in listener mode, including the port, minimum latency, and encryption key configuration.
410
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-srtlistenerrouteroutputconfiguration.html}
411
+ */
412
+ export type SrtListenerRouterOutputConfiguration = {
413
+ /**
414
+ * Contains the configuration settings for encrypting SRT streams, including the encryption key details and encryption parameters.
415
+ */
416
+ EncryptionConfiguration?: SrtEncryptionConfiguration;
417
+ /**
418
+ * The minimum latency in milliseconds for the SRT protocol in listener mode.
419
+ * @min `10`
420
+ * @max `10000`
421
+ */
422
+ MinimumLatencyMilliseconds: number;
423
+ /**
424
+ * The port number for the SRT protocol in listener mode.
425
+ * @min `3000`
426
+ * @max `30000`
427
+ */
428
+ Port: number;
429
+ };
430
+ /**
431
+ * Type definition for `AWS::MediaConnect::RouterOutput.StandardRouterOutputConfiguration`.
432
+ * The configuration settings for a standard router output, including the protocol, protocol-specific configuration, network interface, and availability zone.
433
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-standardrouteroutputconfiguration.html}
434
+ */
435
+ export type StandardRouterOutputConfiguration = {
436
+ /**
437
+ * The Amazon Resource Name (ARN) of the network interface associated with the standard router output.
438
+ * @pattern `^arn:(aws[a-zA-Z-]*):mediaconnect:[a-z0-9-]+:[0-9]{12}:routerNetworkInterface:[a-z0-9]{12}$`
439
+ */
440
+ NetworkInterfaceArn: string;
441
+ Protocol?: RouterOutputProtocol;
442
+ /**
443
+ * The protocol configuration settings for a router output.
444
+ */
445
+ ProtocolConfiguration: RouterOutputProtocolConfiguration;
446
+ };
447
+ /**
448
+ * Type definition for `AWS::MediaConnect::RouterOutput.Tag`.
449
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-routeroutput-tag.html}
450
+ */
451
+ export type Tag = {
452
+ Key: string;
453
+ Value: string;
454
+ };
455
+ /**
456
+ * Resource type definition for `AWS::MediaConnect::RouterOutput`.
457
+ * Represents a router input in AWS Elemental MediaConnect that can be used to egress content transmitted from router inputs
458
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routeroutput.html}
459
+ */
460
+ export declare class MediaConnectRouterOutput extends $Resource<"AWS::MediaConnect::RouterOutput", MediaConnectRouterOutputProperties, MediaConnectRouterOutputAttributes> {
461
+ static readonly Type = "AWS::MediaConnect::RouterOutput";
462
+ constructor(logicalId: string, properties: MediaConnectRouterOutputProperties, options?: $ResourceOptions);
463
+ }
464
+ //# sourceMappingURL=AWS-MediaConnect-RouterOutput.d.ts.map
@@ -0,0 +1,13 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for `AWS::MediaConnect::RouterOutput`.
4
+ * Represents a router input in AWS Elemental MediaConnect that can be used to egress content transmitted from router inputs
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routeroutput.html}
6
+ */
7
+ export class MediaConnectRouterOutput extends $Resource {
8
+ static Type = "AWS::MediaConnect::RouterOutput";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, MediaConnectRouterOutput.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-MediaConnect-RouterOutput.js.map