@awboost/cfn-resource-types 0.1.292 → 0.1.293

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.
@@ -9,6 +9,10 @@ export type MediaConnectFlowProperties = {
9
9
  * The Availability Zone that you want to create the flow in. These options are limited to the Availability Zones within the current AWS.
10
10
  */
11
11
  AvailabilityZone?: string;
12
+ /**
13
+ * Determines the processing capacity and feature set of the flow. Set this optional parameter to LARGE if you want to enable NDI outputs on the flow.
14
+ */
15
+ FlowSize?: "MEDIUM" | "LARGE";
12
16
  /**
13
17
  * The maintenance settings you want to use for the flow.
14
18
  */
@@ -21,6 +25,10 @@ export type MediaConnectFlowProperties = {
21
25
  * The name of the flow.
22
26
  */
23
27
  Name: string;
28
+ /**
29
+ * Specifies the configuration settings for NDI outputs. Required when the flow includes NDI outputs.
30
+ */
31
+ NdiConfig?: NdiConfig;
24
32
  /**
25
33
  * The source of the flow.
26
34
  */
@@ -55,6 +63,10 @@ export type MediaConnectFlowAttributes = {
55
63
  * The Availability Zone that you want to create the flow in. These options are limited to the Availability Zones within the current AWS.(ReadOnly)
56
64
  */
57
65
  FlowAvailabilityZone: string;
66
+ /**
67
+ * A prefix for the names of the NDI sources that the flow creates.(ReadOnly)
68
+ */
69
+ FlowNdiMachineName: string;
58
70
  /**
59
71
  * The media streams associated with the flow. You can associate any of these media streams with sources and outputs on the flow.
60
72
  */
@@ -360,6 +372,44 @@ export type MediaStreamSourceConfiguration = {
360
372
  */
361
373
  MediaStreamName: string;
362
374
  };
375
+ /**
376
+ * Type definition for `AWS::MediaConnect::Flow.NdiConfig`.
377
+ * Specifies the configuration settings for NDI outputs. Required when the flow includes NDI outputs.
378
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-ndiconfig.html}
379
+ */
380
+ export type NdiConfig = {
381
+ /**
382
+ * A prefix for the names of the NDI sources that the flow creates. If a custom name isn't specified, MediaConnect generates a unique 12-character ID as the prefix.
383
+ */
384
+ MachineName?: string;
385
+ /**
386
+ * A list of up to three NDI discovery server configurations. While not required by the API, this configuration is necessary for NDI functionality to work properly.
387
+ */
388
+ NdiDiscoveryServers?: NdiDiscoveryServerConfig[];
389
+ /**
390
+ * A setting that controls whether NDI outputs can be used in the flow. Must be ENABLED to add NDI outputs. Default is DISABLED.
391
+ */
392
+ NdiState?: "ENABLED" | "DISABLED";
393
+ };
394
+ /**
395
+ * Type definition for `AWS::MediaConnect::Flow.NdiDiscoveryServerConfig`.
396
+ * Specifies the configuration settings for individual NDI discovery servers. A maximum of 3 servers is allowed.
397
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-ndidiscoveryserverconfig.html}
398
+ */
399
+ export type NdiDiscoveryServerConfig = {
400
+ /**
401
+ * The unique network address of the NDI discovery server.
402
+ */
403
+ DiscoveryServerAddress: string;
404
+ /**
405
+ * The port for the NDI discovery server. Defaults to 5959 if a custom port isn't specified.
406
+ */
407
+ DiscoveryServerPort?: number;
408
+ /**
409
+ * The identifier for the Virtual Private Cloud (VPC) network interface used by the flow.
410
+ */
411
+ VpcInterfaceAdapter: string;
412
+ };
363
413
  /**
364
414
  * Type definition for `AWS::MediaConnect::Flow.SilentAudio`.
365
415
  * Configures settings for the SilentAudio metric.
@@ -41,6 +41,14 @@ export type MediaConnectFlowOutputProperties = {
41
41
  * The name of the output. This value must be unique within the current flow.
42
42
  */
43
43
  Name?: string;
44
+ /**
45
+ * A suffix for the names of the NDI sources that the flow creates. If a custom name isn't specified, MediaConnect uses the output name.
46
+ */
47
+ NdiProgramName?: string;
48
+ /**
49
+ * A quality setting for the NDI Speed HQ encoder.
50
+ */
51
+ NdiSpeedHqQuality?: number;
44
52
  /**
45
53
  * An indication of whether the output should transmit data or not.
46
54
  */
@@ -52,7 +60,7 @@ export type MediaConnectFlowOutputProperties = {
52
60
  /**
53
61
  * The protocol that is used by the source or output.
54
62
  */
55
- Protocol: "zixi-push" | "rtp-fec" | "rtp" | "zixi-pull" | "rist" | "fujitsu-qos" | "srt-listener" | "srt-caller" | "st2110-jpegxs" | "cdi";
63
+ Protocol: "zixi-push" | "rtp-fec" | "rtp" | "zixi-pull" | "rist" | "fujitsu-qos" | "srt-listener" | "srt-caller" | "st2110-jpegxs" | "cdi" | "ndi-speed-hq";
56
64
  /**
57
65
  * The remote ID for the Zixi-pull stream.
58
66
  */
@@ -330,7 +330,7 @@ export type RDSDBClusterProperties = {
330
330
  */
331
331
  PerformanceInsightsKmsKeyId?: string;
332
332
  /**
333
- * The number of days to retain Performance Insights data.
333
+ * The number of days to retain Performance Insights data. When creating a DB cluster without enabling Performance Insights, you can't specify the parameter ``PerformanceInsightsRetentionPeriod``.
334
334
  Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
335
335
  Valid Values:
336
336
  + ``7``
@@ -104,6 +104,11 @@ export type RDSDBInstanceProperties = {
104
104
  * The AWS-Region associated with the automated backup.
105
105
  */
106
106
  AutomaticBackupReplicationRegion?: string;
107
+ /**
108
+ * @min `1`
109
+ * @max `35`
110
+ */
111
+ AutomaticBackupReplicationRetentionPeriod?: number;
107
112
  /**
108
113
  * The Availability Zone (AZ) where the database will be created. For information on AWS-Regions and Availability Zones, see [Regions and Availability Zones](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
109
114
  For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones. Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one.
@@ -124,6 +129,7 @@ export type RDSDBInstanceProperties = {
124
129
  + Must be a value from 0 to 35
125
130
  + Can't be set to 0 if the DB instance is a source to read replicas
126
131
  * @min `0`
132
+ * @max `35`
127
133
  */
128
134
  BackupRetentionPeriod?: number;
129
135
  /**
@@ -613,7 +619,7 @@ export type RDSDBInstanceProperties = {
613
619
  */
614
620
  PerformanceInsightsKMSKeyId?: string;
615
621
  /**
616
- * The number of days to retain Performance Insights data.
622
+ * The number of days to retain Performance Insights data. When creating a DB instance without enabling Performance Insights, you can't specify the parameter ``PerformanceInsightsRetentionPeriod``.
617
623
  This setting doesn't apply to RDS Custom DB instances.
618
624
  Valid Values:
619
625
  + ``7``
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.292",
3
+ "version": "0.1.293",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },