@awboost/cfn-resource-types 0.1.475 → 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.
- package/lib/AWS-APS-Scraper.d.ts +13 -0
- package/lib/AWS-ApiGateway-Account.d.ts +2 -0
- package/lib/AWS-ApiGateway-Account.js +1 -0
- package/lib/AWS-ApiGateway-ApiKey.d.ts +5 -3
- package/lib/AWS-ApiGateway-BasePathMapping.d.ts +2 -2
- package/lib/AWS-ApiGateway-BasePathMapping.js +1 -1
- package/lib/AWS-ApiGateway-ClientCertificate.d.ts +8 -0
- package/lib/AWS-ApiGateway-Deployment.d.ts +5 -3
- package/lib/AWS-ApiGateway-DocumentationPart.d.ts +2 -2
- package/lib/AWS-ApiGateway-DomainName.d.ts +15 -6
- package/lib/AWS-ApiGateway-DomainName.js +2 -1
- package/lib/AWS-ApiGateway-GatewayResponse.d.ts +2 -2
- package/lib/AWS-ApiGateway-GatewayResponse.js +1 -1
- package/lib/AWS-ApiGateway-RestApi.d.ts +13 -5
- package/lib/AWS-ApiGateway-RestApi.js +1 -1
- package/lib/AWS-ApiGateway-Stage.d.ts +6 -4
- package/lib/AWS-ApiGateway-UsagePlan.d.ts +4 -2
- package/lib/AWS-ApiGateway-VpcLink.d.ts +8 -0
- package/lib/AWS-CloudTrail-Trail.d.ts +1 -1
- package/lib/AWS-DSQL-Cluster.d.ts +8 -0
- package/lib/AWS-EC2-FlowLog.d.ts +1 -1
- package/lib/AWS-ElasticLoadBalancingV2-TargetGroup.d.ts +4 -0
- package/lib/AWS-IAM-Policy.d.ts +2 -2
- package/lib/AWS-IAM-Policy.js +1 -1
- package/lib/AWS-Lambda-EventSourceMapping.d.ts +21 -4
- package/lib/AWS-MediaConnect-Flow.d.ts +61 -0
- package/lib/AWS-MediaConnect-FlowOutput.d.ts +62 -1
- package/lib/AWS-MediaConnect-RouterInput.d.ts +537 -0
- package/lib/AWS-MediaConnect-RouterInput.js +13 -0
- package/lib/AWS-MediaConnect-RouterNetworkInterface.d.ts +144 -0
- package/lib/AWS-MediaConnect-RouterNetworkInterface.js +13 -0
- package/lib/AWS-MediaConnect-RouterOutput.d.ts +464 -0
- package/lib/AWS-MediaConnect-RouterOutput.js +13 -0
- package/lib/AWS-RTBFabric-InboundExternalLink.d.ts +132 -0
- package/lib/AWS-RTBFabric-InboundExternalLink.js +12 -0
- package/lib/AWS-RTBFabric-Link.d.ts +1 -1
- package/lib/AWS-RTBFabric-RequesterGateway.d.ts +1 -1
- package/lib/AWS-RTBFabric-ResponderGateway.d.ts +1 -1
- package/lib/AWS-ServiceCatalog-CloudFormationProduct.d.ts +21 -113
- package/lib/AWS-ServiceCatalog-CloudFormationProduct.js +1 -1
- package/lib/AWS-WorkSpacesWeb-BrowserSettings.d.ts +28 -1
- package/lib/Dev-FSx-StorageVirtualMachine.d.ts +55 -0
- package/lib/Dev-FSx-StorageVirtualMachine.js +11 -0
- package/package.json +1 -1
|
@@ -114,6 +114,12 @@ export type AudioMonitoringSetting = {
|
|
|
114
114
|
*/
|
|
115
115
|
SilentAudio?: SilentAudio;
|
|
116
116
|
};
|
|
117
|
+
/**
|
|
118
|
+
* Type definition for `AWS::MediaConnect::Flow.AutomaticEncryptionKeyConfiguration`.
|
|
119
|
+
* Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.
|
|
120
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-automaticencryptionkeyconfiguration.html}
|
|
121
|
+
*/
|
|
122
|
+
export type AutomaticEncryptionKeyConfiguration = Record<string, any>;
|
|
117
123
|
/**
|
|
118
124
|
* Type definition for `AWS::MediaConnect::Flow.BlackFrames`.
|
|
119
125
|
* Configures settings for the BlackFrames metric.
|
|
@@ -197,6 +203,39 @@ export type FailoverConfig = {
|
|
|
197
203
|
};
|
|
198
204
|
State?: "ENABLED" | "DISABLED";
|
|
199
205
|
};
|
|
206
|
+
/**
|
|
207
|
+
* Type definition for `AWS::MediaConnect::Flow.FlowTransitEncryption`.
|
|
208
|
+
* The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.
|
|
209
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-flowtransitencryption.html}
|
|
210
|
+
*/
|
|
211
|
+
export type FlowTransitEncryption = {
|
|
212
|
+
/**
|
|
213
|
+
* Configuration settings for flow transit encryption keys.
|
|
214
|
+
*/
|
|
215
|
+
EncryptionKeyConfiguration: FlowTransitEncryptionKeyConfiguration;
|
|
216
|
+
EncryptionKeyType?: FlowTransitEncryptionKeyType;
|
|
217
|
+
};
|
|
218
|
+
/**
|
|
219
|
+
* Type definition for `AWS::MediaConnect::Flow.FlowTransitEncryptionKeyConfiguration`.
|
|
220
|
+
* Configuration settings for flow transit encryption keys.
|
|
221
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-flowtransitencryptionkeyconfiguration.html}
|
|
222
|
+
*/
|
|
223
|
+
export type FlowTransitEncryptionKeyConfiguration = {
|
|
224
|
+
/**
|
|
225
|
+
* The configuration settings for transit encryption of a flow source using AWS Secrets Manager, including the secret ARN and role ARN.
|
|
226
|
+
*/
|
|
227
|
+
SecretsManager: SecretsManagerEncryptionKeyConfiguration;
|
|
228
|
+
} | {
|
|
229
|
+
/**
|
|
230
|
+
* Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.
|
|
231
|
+
*/
|
|
232
|
+
Automatic: AutomaticEncryptionKeyConfiguration;
|
|
233
|
+
};
|
|
234
|
+
/**
|
|
235
|
+
* Type definition for `AWS::MediaConnect::Flow.FlowTransitEncryptionKeyType`.
|
|
236
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-flowtransitencryptionkeytype.html}
|
|
237
|
+
*/
|
|
238
|
+
export type FlowTransitEncryptionKeyType = "SECRETS_MANAGER" | "AUTOMATIC";
|
|
200
239
|
/**
|
|
201
240
|
* Type definition for `AWS::MediaConnect::Flow.Fmtp`.
|
|
202
241
|
* A set of parameters that define the media stream.
|
|
@@ -410,6 +449,23 @@ export type NdiDiscoveryServerConfig = {
|
|
|
410
449
|
*/
|
|
411
450
|
VpcInterfaceAdapter: string;
|
|
412
451
|
};
|
|
452
|
+
/**
|
|
453
|
+
* Type definition for `AWS::MediaConnect::Flow.SecretsManagerEncryptionKeyConfiguration`.
|
|
454
|
+
* The configuration settings for transit encryption of a flow source using AWS Secrets Manager, including the secret ARN and role ARN.
|
|
455
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-secretsmanagerencryptionkeyconfiguration.html}
|
|
456
|
+
*/
|
|
457
|
+
export type SecretsManagerEncryptionKeyConfiguration = {
|
|
458
|
+
/**
|
|
459
|
+
* The ARN of the IAM role used for transit encryption from the router output using AWS Secrets Manager.
|
|
460
|
+
* @pattern `^arn:(aws[a-zA-Z-]*):iam::[0-9]{12}:role/[a-zA-Z0-9_+=,.@-]+$`
|
|
461
|
+
*/
|
|
462
|
+
RoleArn: string;
|
|
463
|
+
/**
|
|
464
|
+
* The ARN of the AWS Secrets Manager secret used for transit encryption from the router output.
|
|
465
|
+
* @pattern `^arn:(aws[a-zA-Z-]*):secretsmanager:[a-z0-9-]+:[0-9]{12}:secret:[a-zA-Z0-9/_+=.@-]+$`
|
|
466
|
+
*/
|
|
467
|
+
SecretArn: string;
|
|
468
|
+
};
|
|
413
469
|
/**
|
|
414
470
|
* Type definition for `AWS::MediaConnect::Flow.SilentAudio`.
|
|
415
471
|
* Configures settings for the SilentAudio metric.
|
|
@@ -479,6 +535,11 @@ export type Source = {
|
|
|
479
535
|
* The protocol that is used by the source.
|
|
480
536
|
*/
|
|
481
537
|
Protocol?: "zixi-push" | "rtp-fec" | "rtp" | "rist" | "fujitsu-qos" | "srt-listener" | "srt-caller" | "st2110-jpegxs" | "cdi";
|
|
538
|
+
RouterIntegrationState?: "ENABLED" | "DISABLED";
|
|
539
|
+
/**
|
|
540
|
+
* The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.
|
|
541
|
+
*/
|
|
542
|
+
RouterIntegrationTransitDecryption?: FlowTransitEncryption;
|
|
482
543
|
/**
|
|
483
544
|
* The port that the flow uses to send outbound requests to initiate connection with the sender for fujitsu-qos protocol.
|
|
484
545
|
*/
|
|
@@ -60,11 +60,16 @@ export type MediaConnectFlowOutputProperties = {
|
|
|
60
60
|
/**
|
|
61
61
|
* The protocol that is used by the source or output.
|
|
62
62
|
*/
|
|
63
|
-
Protocol
|
|
63
|
+
Protocol?: "zixi-push" | "rtp-fec" | "rtp" | "zixi-pull" | "rist" | "fujitsu-qos" | "srt-listener" | "srt-caller" | "st2110-jpegxs" | "cdi" | "ndi-speed-hq";
|
|
64
64
|
/**
|
|
65
65
|
* The remote ID for the Zixi-pull stream.
|
|
66
66
|
*/
|
|
67
67
|
RemoteId?: string;
|
|
68
|
+
RouterIntegrationState?: "ENABLED" | "DISABLED";
|
|
69
|
+
/**
|
|
70
|
+
* The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.
|
|
71
|
+
*/
|
|
72
|
+
RouterIntegrationTransitEncryption?: FlowTransitEncryption;
|
|
68
73
|
/**
|
|
69
74
|
* The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
|
|
70
75
|
*/
|
|
@@ -88,6 +93,12 @@ export type MediaConnectFlowOutputAttributes = {
|
|
|
88
93
|
*/
|
|
89
94
|
OutputArn: string;
|
|
90
95
|
};
|
|
96
|
+
/**
|
|
97
|
+
* Type definition for `AWS::MediaConnect::FlowOutput.AutomaticEncryptionKeyConfiguration`.
|
|
98
|
+
* Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.
|
|
99
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flowoutput-automaticencryptionkeyconfiguration.html}
|
|
100
|
+
*/
|
|
101
|
+
export type AutomaticEncryptionKeyConfiguration = Record<string, any>;
|
|
91
102
|
/**
|
|
92
103
|
* Type definition for `AWS::MediaConnect::FlowOutput.DestinationConfiguration`.
|
|
93
104
|
* The definition of a media stream that is associated with the output.
|
|
@@ -145,6 +156,39 @@ export type Encryption = {
|
|
|
145
156
|
*/
|
|
146
157
|
SecretArn: string;
|
|
147
158
|
};
|
|
159
|
+
/**
|
|
160
|
+
* Type definition for `AWS::MediaConnect::FlowOutput.FlowTransitEncryption`.
|
|
161
|
+
* The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.
|
|
162
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flowoutput-flowtransitencryption.html}
|
|
163
|
+
*/
|
|
164
|
+
export type FlowTransitEncryption = {
|
|
165
|
+
/**
|
|
166
|
+
* Configuration settings for flow transit encryption keys.
|
|
167
|
+
*/
|
|
168
|
+
EncryptionKeyConfiguration: FlowTransitEncryptionKeyConfiguration;
|
|
169
|
+
EncryptionKeyType?: FlowTransitEncryptionKeyType;
|
|
170
|
+
};
|
|
171
|
+
/**
|
|
172
|
+
* Type definition for `AWS::MediaConnect::FlowOutput.FlowTransitEncryptionKeyConfiguration`.
|
|
173
|
+
* Configuration settings for flow transit encryption keys.
|
|
174
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flowoutput-flowtransitencryptionkeyconfiguration.html}
|
|
175
|
+
*/
|
|
176
|
+
export type FlowTransitEncryptionKeyConfiguration = {
|
|
177
|
+
/**
|
|
178
|
+
* The configuration settings for transit encryption of a flow output using AWS Secrets Manager, including the secret ARN and role ARN.
|
|
179
|
+
*/
|
|
180
|
+
SecretsManager: SecretsManagerEncryptionKeyConfiguration;
|
|
181
|
+
} | {
|
|
182
|
+
/**
|
|
183
|
+
* Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.
|
|
184
|
+
*/
|
|
185
|
+
Automatic: AutomaticEncryptionKeyConfiguration;
|
|
186
|
+
};
|
|
187
|
+
/**
|
|
188
|
+
* Type definition for `AWS::MediaConnect::FlowOutput.FlowTransitEncryptionKeyType`.
|
|
189
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flowoutput-flowtransitencryptionkeytype.html}
|
|
190
|
+
*/
|
|
191
|
+
export type FlowTransitEncryptionKeyType = "SECRETS_MANAGER" | "AUTOMATIC";
|
|
148
192
|
/**
|
|
149
193
|
* Type definition for `AWS::MediaConnect::FlowOutput.Interface`.
|
|
150
194
|
* The VPC interface that you want to use for the media stream associated with the output.
|
|
@@ -179,6 +223,23 @@ export type MediaStreamOutputConfiguration = {
|
|
|
179
223
|
*/
|
|
180
224
|
MediaStreamName: string;
|
|
181
225
|
};
|
|
226
|
+
/**
|
|
227
|
+
* Type definition for `AWS::MediaConnect::FlowOutput.SecretsManagerEncryptionKeyConfiguration`.
|
|
228
|
+
* The configuration settings for transit encryption of a flow output using AWS Secrets Manager, including the secret ARN and role ARN.
|
|
229
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flowoutput-secretsmanagerencryptionkeyconfiguration.html}
|
|
230
|
+
*/
|
|
231
|
+
export type SecretsManagerEncryptionKeyConfiguration = {
|
|
232
|
+
/**
|
|
233
|
+
* The ARN of the IAM role used for transit encryption to the router input using AWS Secrets Manager.
|
|
234
|
+
* @pattern `^arn:(aws[a-zA-Z-]*):iam::[0-9]{12}:role/[a-zA-Z0-9_+=,.@-]+$`
|
|
235
|
+
*/
|
|
236
|
+
RoleArn: string;
|
|
237
|
+
/**
|
|
238
|
+
* The ARN of the AWS Secrets Manager secret used for transit encryption to the router input.
|
|
239
|
+
* @pattern `^arn:(aws[a-zA-Z-]*):secretsmanager:[a-z0-9-]+:[0-9]{12}:secret:[a-zA-Z0-9/_+=.@-]+$`
|
|
240
|
+
*/
|
|
241
|
+
SecretArn: string;
|
|
242
|
+
};
|
|
182
243
|
/**
|
|
183
244
|
* Type definition for `AWS::MediaConnect::FlowOutput.VpcInterfaceAttachment`.
|
|
184
245
|
* The settings for attaching a VPC interface to an output.
|