@awboost/cfn-resource-types 0.1.205 → 0.1.206

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.
@@ -6,6 +6,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  */
7
7
  export type CodeBuildProjectProperties = {
8
8
  Artifacts: Artifacts;
9
+ AutoRetryLimit?: number;
9
10
  BadgeEnabled?: boolean;
10
11
  BuildBatchConfig?: ProjectBuildBatchConfig;
11
12
  Cache?: ProjectCache;
@@ -7,6 +7,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
7
7
  export type CognitoUserPoolDomainProperties = {
8
8
  CustomDomainConfig?: CustomDomainConfigType;
9
9
  Domain: string;
10
+ ManagedLoginVersion?: number;
10
11
  UserPoolId: string;
11
12
  };
12
13
  /**
@@ -22,6 +22,7 @@ export type DocDBDBClusterProperties = {
22
22
  PreferredMaintenanceWindow?: string;
23
23
  RestoreToTime?: string;
24
24
  RestoreType?: string;
25
+ ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
25
26
  SnapshotIdentifier?: string;
26
27
  SourceDBClusterIdentifier?: string;
27
28
  StorageEncrypted?: boolean;
@@ -40,6 +41,14 @@ export type DocDBDBClusterAttributes = {
40
41
  Id: string;
41
42
  ReadEndpoint: string;
42
43
  };
44
+ /**
45
+ * Type definition for `AWS::DocDB::DBCluster.ServerlessV2ScalingConfiguration`.
46
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-docdb-dbcluster-serverlessv2scalingconfiguration.html}
47
+ */
48
+ export type ServerlessV2ScalingConfiguration = {
49
+ MaxCapacity: number;
50
+ MinCapacity: number;
51
+ };
43
52
  /**
44
53
  * Type definition for `AWS::DocDB::DBCluster.Tag`.
45
54
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-docdb-dbcluster-tag.html}
@@ -12,6 +12,12 @@ export type EventsConnectionProperties = {
12
12
  * @maxLength `512`
13
13
  */
14
14
  Description?: string;
15
+ /**
16
+ * The private resource the HTTP request will be sent to.
17
+ */
18
+ InvocationConnectivityParameters?: {
19
+ ResourceParameters: ResourceParameters;
20
+ };
15
21
  /**
16
22
  * Name of the connection.
17
23
  * @minLength `1`
@@ -30,6 +36,31 @@ export type EventsConnectionAttributes = {
30
36
  * @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:connection\/[\.\-_A-Za-z0-9]+\/[\-A-Za-z0-9]+$`
31
37
  */
32
38
  Arn: string;
39
+ AuthParameters: {
40
+ ConnectivityParameters: {
41
+ ResourceParameters: {
42
+ /**
43
+ * @minLength `20`
44
+ * @maxLength `2048`
45
+ * @pattern `^arn:[a-z0-9\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:servicenetworkresourceassociation/snra-[0-9a-z]{17}$`
46
+ */
47
+ ResourceAssociationArn: string;
48
+ };
49
+ };
50
+ };
51
+ /**
52
+ * The private resource the HTTP request will be sent to.
53
+ */
54
+ InvocationConnectivityParameters: {
55
+ ResourceParameters: {
56
+ /**
57
+ * @minLength `20`
58
+ * @maxLength `2048`
59
+ * @pattern `^arn:[a-z0-9\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:servicenetworkresourceassociation/snra-[0-9a-z]{17}$`
60
+ */
61
+ ResourceAssociationArn: string;
62
+ };
63
+ };
33
64
  /**
34
65
  * The arn of the secrets manager secret created in the customer account.
35
66
  * @pattern `^arn:aws([a-z]|\-)*:secretsmanager:([a-z]|\d|\-)*:([0-9]{12})?:secret:([a-z]|\d|\-)*(!)*[\/_+=\.@\-A-Za-z0-9]+$`
@@ -57,6 +88,7 @@ export type ApiKeyAuthParameters = {
57
88
  export type AuthParameters = {
58
89
  ApiKeyAuthParameters?: ApiKeyAuthParameters;
59
90
  BasicAuthParameters?: BasicAuthParameters;
91
+ ConnectivityParameters?: ConnectivityParameters;
60
92
  InvocationHttpParameters?: ConnectionHttpParameters;
61
93
  OAuthParameters?: OAuthParameters;
62
94
  };
@@ -97,6 +129,13 @@ export type ConnectionHttpParameters = {
97
129
  HeaderParameters?: Parameter[];
98
130
  QueryStringParameters?: Parameter[];
99
131
  };
132
+ /**
133
+ * Type definition for `AWS::Events::Connection.ConnectivityParameters`.
134
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-connectivityparameters.html}
135
+ */
136
+ export type ConnectivityParameters = {
137
+ ResourceParameters: ResourceParameters;
138
+ };
100
139
  /**
101
140
  * Type definition for `AWS::Events::Connection.OAuthParameters`.
102
141
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-oauthparameters.html}
@@ -121,6 +160,17 @@ export type Parameter = {
121
160
  Key: string;
122
161
  Value: string;
123
162
  };
163
+ /**
164
+ * Type definition for `AWS::Events::Connection.ResourceParameters`.
165
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-resourceparameters.html}
166
+ */
167
+ export type ResourceParameters = {
168
+ /**
169
+ * @maxLength `2048`
170
+ * @pattern `^arn:[a-z0-9f\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:resourceconfiguration/rcfg-[0-9a-z]{17}$`
171
+ */
172
+ ResourceConfigurationArn: string;
173
+ };
124
174
  /**
125
175
  * Resource Type definition for AWS::Events::Connection.
126
176
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-connection.html}
@@ -0,0 +1,76 @@
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::Invoicing::InvoiceUnit`.
5
+ * An invoice unit is a set of mutually exclusive accounts that correspond to your business entity. Invoice units allow you to separate AWS account costs and configures your invoice for each business entity.
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html}
7
+ */
8
+ export type InvoicingInvoiceUnitProperties = {
9
+ /**
10
+ * @minLength `0`
11
+ * @maxLength `500`
12
+ * @pattern `^[\S\s]*$`
13
+ */
14
+ Description?: string;
15
+ /**
16
+ * @minLength `12`
17
+ * @maxLength `12`
18
+ * @pattern `^\d{12}$`
19
+ */
20
+ InvoiceReceiver: string;
21
+ /**
22
+ * @minLength `1`
23
+ * @maxLength `50`
24
+ * @pattern `^(?! )[\p{L}\p{N}\p{Z}-_]*(?<! )$`
25
+ */
26
+ Name: string;
27
+ ResourceTags?: ResourceTag[];
28
+ Rule: Rule;
29
+ TaxInheritanceDisabled?: boolean;
30
+ };
31
+ /**
32
+ * Attribute type definition for `AWS::Invoicing::InvoiceUnit`.
33
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html#aws-resource-invoicing-invoiceunit-return-values}
34
+ */
35
+ export type InvoicingInvoiceUnitAttributes = {
36
+ /**
37
+ * @minLength `1`
38
+ * @maxLength `256`
39
+ * @pattern `^arn:aws[-a-z0-9]*:[a-z0-9]+:[-a-z0-9]*:[0-9]{12}:[-a-zA-Z0-9/:_]+$`
40
+ */
41
+ InvoiceUnitArn: string;
42
+ LastModified: number;
43
+ };
44
+ /**
45
+ * Type definition for `AWS::Invoicing::InvoiceUnit.ResourceTag`.
46
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-invoicing-invoiceunit-resourcetag.html}
47
+ */
48
+ export type ResourceTag = {
49
+ /**
50
+ * @minLength `1`
51
+ * @maxLength `256`
52
+ */
53
+ Key: string;
54
+ /**
55
+ * @minLength `0`
56
+ * @maxLength `200`
57
+ */
58
+ Value: string;
59
+ };
60
+ /**
61
+ * Type definition for `AWS::Invoicing::InvoiceUnit.Rule`.
62
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-invoicing-invoiceunit-rule.html}
63
+ */
64
+ export type Rule = {
65
+ LinkedAccounts: string[];
66
+ };
67
+ /**
68
+ * Resource type definition for `AWS::Invoicing::InvoiceUnit`.
69
+ * An invoice unit is a set of mutually exclusive accounts that correspond to your business entity. Invoice units allow you to separate AWS account costs and configures your invoice for each business entity.
70
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html}
71
+ */
72
+ export declare class InvoicingInvoiceUnit extends $Resource<"AWS::Invoicing::InvoiceUnit", InvoicingInvoiceUnitProperties, InvoicingInvoiceUnitAttributes> {
73
+ static readonly Type = "AWS::Invoicing::InvoiceUnit";
74
+ constructor(logicalId: string, properties: InvoicingInvoiceUnitProperties, options?: $ResourceOptions);
75
+ }
76
+ //# sourceMappingURL=AWS-Invoicing-InvoiceUnit.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::Invoicing::InvoiceUnit`.
4
+ * An invoice unit is a set of mutually exclusive accounts that correspond to your business entity. Invoice units allow you to separate AWS account costs and configures your invoice for each business entity.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html}
6
+ */
7
+ export class InvoicingInvoiceUnit extends $Resource {
8
+ static Type = "AWS::Invoicing::InvoiceUnit";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, InvoicingInvoiceUnit.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-Invoicing-InvoiceUnit.js.map
@@ -0,0 +1,76 @@
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::Logs::Integration`.
5
+ * Resource Schema for Logs Integration Resource
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-integration.html}
7
+ */
8
+ export type LogsIntegrationProperties = {
9
+ /**
10
+ * User provided identifier for integration, unique to the user account.
11
+ * @minLength `1`
12
+ * @maxLength `256`
13
+ * @pattern `[\.\-_/#A-Za-z0-9]+`
14
+ */
15
+ IntegrationName: string;
16
+ /**
17
+ * The type of the Integration.
18
+ */
19
+ IntegrationType: "OPENSEARCH";
20
+ /**
21
+ * OpenSearchResourceConfig for the given Integration
22
+ */
23
+ ResourceConfig: {
24
+ OpenSearchResourceConfig?: OpenSearchResourceConfig;
25
+ };
26
+ };
27
+ /**
28
+ * Attribute type definition for `AWS::Logs::Integration`.
29
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-integration.html#aws-resource-logs-integration-return-values}
30
+ */
31
+ export type LogsIntegrationAttributes = {
32
+ /**
33
+ * Status of creation for the Integration and its resources
34
+ */
35
+ IntegrationStatus: "PROVISIONING" | "ACTIVE" | "FAILED";
36
+ };
37
+ /**
38
+ * Type definition for `AWS::Logs::Integration.OpenSearchResourceConfig`.
39
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-integration-opensearchresourceconfig.html}
40
+ */
41
+ export type OpenSearchResourceConfig = {
42
+ /**
43
+ * @minLength `20`
44
+ * @maxLength `2048`
45
+ * @pattern `[\w#+=/:,.@-]*\*?`
46
+ */
47
+ ApplicationARN?: string;
48
+ DashboardViewerPrincipals: string[];
49
+ /**
50
+ * @minLength `20`
51
+ * @maxLength `2048`
52
+ * @pattern `[\w#+=/:,.@-]*\*?`
53
+ */
54
+ DataSourceRoleArn: string;
55
+ /**
56
+ * @minLength `20`
57
+ * @maxLength `2048`
58
+ * @pattern `[\w#+=/:,.@-]*\*?`
59
+ */
60
+ KmsKeyArn?: string;
61
+ /**
62
+ * @min `1`
63
+ * @max `3650`
64
+ */
65
+ RetentionDays?: number;
66
+ };
67
+ /**
68
+ * Resource type definition for `AWS::Logs::Integration`.
69
+ * Resource Schema for Logs Integration Resource
70
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-integration.html}
71
+ */
72
+ export declare class LogsIntegration extends $Resource<"AWS::Logs::Integration", LogsIntegrationProperties, LogsIntegrationAttributes> {
73
+ static readonly Type = "AWS::Logs::Integration";
74
+ constructor(logicalId: string, properties: LogsIntegrationProperties, options?: $ResourceOptions);
75
+ }
76
+ //# sourceMappingURL=AWS-Logs-Integration.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::Logs::Integration`.
4
+ * Resource Schema for Logs Integration Resource
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-integration.html}
6
+ */
7
+ export class LogsIntegration extends $Resource {
8
+ static Type = "AWS::Logs::Integration";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, LogsIntegration.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-Logs-Integration.js.map
@@ -5,6 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html}
6
6
  */
7
7
  export type MediaLiveChannelProperties = {
8
+ AnywhereSettings?: AnywhereSettings;
8
9
  CdiInputSpecification?: CdiInputSpecification;
9
10
  ChannelClass?: string;
10
11
  Destinations?: OutputDestination[];
@@ -63,6 +64,14 @@ export type Ac3Settings = {
63
64
  export type AncillarySourceSettings = {
64
65
  SourceAncillaryChannelNumber?: number;
65
66
  };
67
+ /**
68
+ * Type definition for `AWS::MediaLive::Channel.AnywhereSettings`.
69
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-anywheresettings.html}
70
+ */
71
+ export type AnywhereSettings = {
72
+ ChannelPlacementGroupId?: string;
73
+ ClusterId?: string;
74
+ };
66
75
  /**
67
76
  * Type definition for `AWS::MediaLive::Channel.ArchiveCdnSettings`.
68
77
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-archivecdnsettings.html}
@@ -260,6 +269,39 @@ export type AutomaticInputFailoverSettings = {
260
269
  InputPreference?: string;
261
270
  SecondaryInputId?: string;
262
271
  };
272
+ /**
273
+ * Type definition for `AWS::MediaLive::Channel.Av1ColorSpaceSettings`.
274
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-av1colorspacesettings.html}
275
+ */
276
+ export type Av1ColorSpaceSettings = {
277
+ ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings;
278
+ Hdr10Settings?: Hdr10Settings;
279
+ Rec601Settings?: Rec601Settings;
280
+ Rec709Settings?: Rec709Settings;
281
+ };
282
+ /**
283
+ * Type definition for `AWS::MediaLive::Channel.Av1Settings`.
284
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-av1settings.html}
285
+ */
286
+ export type Av1Settings = {
287
+ AfdSignaling?: string;
288
+ BufSize?: number;
289
+ ColorSpaceSettings?: Av1ColorSpaceSettings;
290
+ FixedAfd?: string;
291
+ FramerateDenominator?: number;
292
+ FramerateNumerator?: number;
293
+ GopSize?: number;
294
+ GopSizeUnits?: string;
295
+ Level?: string;
296
+ LookAheadRateControl?: string;
297
+ MaxBitrate?: number;
298
+ MinIInterval?: number;
299
+ ParDenominator?: number;
300
+ ParNumerator?: number;
301
+ QvbrQualityLevel?: number;
302
+ SceneChangeDetect?: string;
303
+ TimecodeBurninSettings?: TimecodeBurninSettings;
304
+ };
263
305
  /**
264
306
  * Type definition for `AWS::MediaLive::Channel.AvailBlanking`.
265
307
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-availblanking.html}
@@ -285,6 +327,14 @@ export type AvailSettings = {
285
327
  Scte35SpliceInsert?: Scte35SpliceInsert;
286
328
  Scte35TimeSignalApos?: Scte35TimeSignalApos;
287
329
  };
330
+ /**
331
+ * Type definition for `AWS::MediaLive::Channel.BandwidthReductionFilterSettings`.
332
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-bandwidthreductionfiltersettings.html}
333
+ */
334
+ export type BandwidthReductionFilterSettings = {
335
+ PostFilterSharpening?: string;
336
+ Strength?: string;
337
+ };
288
338
  /**
289
339
  * Type definition for `AWS::MediaLive::Channel.BlackoutSlate`.
290
340
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-blackoutslate.html}
@@ -723,6 +773,7 @@ export type H264ColorSpaceSettings = {
723
773
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-h264filtersettings.html}
724
774
  */
725
775
  export type H264FilterSettings = {
776
+ BandwidthReductionFilterSettings?: BandwidthReductionFilterSettings;
726
777
  TemporalFilterSettings?: TemporalFilterSettings;
727
778
  };
728
779
  /**
@@ -790,6 +841,7 @@ export type H265ColorSpaceSettings = {
790
841
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-h265filtersettings.html}
791
842
  */
792
843
  export type H265FilterSettings = {
844
+ BandwidthReductionFilterSettings?: BandwidthReductionFilterSettings;
793
845
  TemporalFilterSettings?: TemporalFilterSettings;
794
846
  };
795
847
  /**
@@ -1000,6 +1052,7 @@ export type InputAttachment = {
1000
1052
  InputAttachmentName?: string;
1001
1053
  InputId?: string;
1002
1054
  InputSettings?: InputSettings;
1055
+ LogicalInterfaceNames?: string[];
1003
1056
  };
1004
1057
  /**
1005
1058
  * Type definition for `AWS::MediaLive::Channel.InputChannelLevel`.
@@ -1262,16 +1315,51 @@ export type MsSmoothOutputSettings = {
1262
1315
  H265PackagingType?: string;
1263
1316
  NameModifier?: string;
1264
1317
  };
1318
+ /**
1319
+ * Type definition for `AWS::MediaLive::Channel.MulticastInputSettings`.
1320
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-multicastinputsettings.html}
1321
+ */
1322
+ export type MulticastInputSettings = {
1323
+ SourceIpAddress?: string;
1324
+ };
1325
+ /**
1326
+ * Type definition for `AWS::MediaLive::Channel.MultiplexContainerSettings`.
1327
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-multiplexcontainersettings.html}
1328
+ */
1329
+ export type MultiplexContainerSettings = {
1330
+ MultiplexM2tsSettings?: MultiplexM2tsSettings;
1331
+ };
1265
1332
  /**
1266
1333
  * Type definition for `AWS::MediaLive::Channel.MultiplexGroupSettings`.
1267
1334
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-multiplexgroupsettings.html}
1268
1335
  */
1269
1336
  export type MultiplexGroupSettings = Record<string, any>;
1337
+ /**
1338
+ * Type definition for `AWS::MediaLive::Channel.MultiplexM2tsSettings`.
1339
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-multiplexm2tssettings.html}
1340
+ */
1341
+ export type MultiplexM2tsSettings = {
1342
+ AbsentInputAudioBehavior?: string;
1343
+ Arib?: string;
1344
+ AudioBufferModel?: string;
1345
+ AudioFramesPerPes?: number;
1346
+ AudioStreamType?: string;
1347
+ CcDescriptor?: string;
1348
+ Ebif?: string;
1349
+ EsRateInPes?: string;
1350
+ Klv?: string;
1351
+ NielsenId3Behavior?: string;
1352
+ PcrControl?: string;
1353
+ PcrPeriod?: number;
1354
+ Scte35Control?: string;
1355
+ Scte35PrerollPullupMilliseconds?: number;
1356
+ };
1270
1357
  /**
1271
1358
  * Type definition for `AWS::MediaLive::Channel.MultiplexOutputSettings`.
1272
1359
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-multiplexoutputsettings.html}
1273
1360
  */
1274
1361
  export type MultiplexOutputSettings = {
1362
+ ContainerSettings?: MultiplexContainerSettings;
1275
1363
  Destination?: OutputLocationRef;
1276
1364
  };
1277
1365
  /**
@@ -1288,6 +1376,7 @@ export type MultiplexProgramChannelDestinationSettings = {
1288
1376
  */
1289
1377
  export type NetworkInputSettings = {
1290
1378
  HlsInputSettings?: HlsInputSettings;
1379
+ MulticastInputSettings?: MulticastInputSettings;
1291
1380
  ServerValidation?: string;
1292
1381
  };
1293
1382
  /**
@@ -1345,6 +1434,7 @@ export type OutputDestination = {
1345
1434
  MediaPackageSettings?: MediaPackageOutputDestinationSettings[];
1346
1435
  MultiplexSettings?: MultiplexProgramChannelDestinationSettings;
1347
1436
  Settings?: OutputDestinationSettings[];
1437
+ SrtSettings?: SrtOutputDestinationSettings[];
1348
1438
  };
1349
1439
  /**
1350
1440
  * Type definition for `AWS::MediaLive::Channel.OutputDestinationSettings`.
@@ -1378,6 +1468,7 @@ export type OutputGroupSettings = {
1378
1468
  MsSmoothGroupSettings?: MsSmoothGroupSettings;
1379
1469
  MultiplexGroupSettings?: MultiplexGroupSettings;
1380
1470
  RtmpGroupSettings?: RtmpGroupSettings;
1471
+ SrtGroupSettings?: SrtGroupSettings;
1381
1472
  UdpGroupSettings?: UdpGroupSettings;
1382
1473
  };
1383
1474
  /**
@@ -1408,6 +1499,7 @@ export type OutputSettings = {
1408
1499
  MsSmoothOutputSettings?: MsSmoothOutputSettings;
1409
1500
  MultiplexOutputSettings?: MultiplexOutputSettings;
1410
1501
  RtmpOutputSettings?: RtmpOutputSettings;
1502
+ SrtOutputSettings?: SrtOutputSettings;
1411
1503
  UdpOutputSettings?: UdpOutputSettings;
1412
1504
  };
1413
1505
  /**
@@ -1522,6 +1614,33 @@ export type Scte35TimeSignalApos = {
1522
1614
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-smptettdestinationsettings.html}
1523
1615
  */
1524
1616
  export type SmpteTtDestinationSettings = Record<string, any>;
1617
+ /**
1618
+ * Type definition for `AWS::MediaLive::Channel.SrtGroupSettings`.
1619
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-srtgroupsettings.html}
1620
+ */
1621
+ export type SrtGroupSettings = {
1622
+ InputLossAction?: string;
1623
+ };
1624
+ /**
1625
+ * Type definition for `AWS::MediaLive::Channel.SrtOutputDestinationSettings`.
1626
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-srtoutputdestinationsettings.html}
1627
+ */
1628
+ export type SrtOutputDestinationSettings = {
1629
+ EncryptionPassphraseSecretArn?: string;
1630
+ StreamId?: string;
1631
+ Url?: string;
1632
+ };
1633
+ /**
1634
+ * Type definition for `AWS::MediaLive::Channel.SrtOutputSettings`.
1635
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-srtoutputsettings.html}
1636
+ */
1637
+ export type SrtOutputSettings = {
1638
+ BufferMsec?: number;
1639
+ ContainerSettings?: UdpContainerSettings;
1640
+ Destination?: OutputLocationRef;
1641
+ EncryptionType?: string;
1642
+ Latency?: number;
1643
+ };
1525
1644
  /**
1526
1645
  * Type definition for `AWS::MediaLive::Channel.StandardHlsSettings`.
1527
1646
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-standardhlssettings.html}
@@ -1629,6 +1748,7 @@ export type VideoBlackFailoverSettings = {
1629
1748
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-videocodecsettings.html}
1630
1749
  */
1631
1750
  export type VideoCodecSettings = {
1751
+ Av1Settings?: Av1Settings;
1632
1752
  FrameCaptureSettings?: FrameCaptureSettings;
1633
1753
  H264Settings?: H264Settings;
1634
1754
  H265Settings?: H265Settings;
@@ -7,8 +7,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
7
7
  export type MediaLiveInputProperties = {
8
8
  Destinations?: InputDestinationRequest[];
9
9
  InputDevices?: InputDeviceSettings[];
10
+ InputNetworkLocation?: string;
10
11
  InputSecurityGroups?: string[];
11
12
  MediaConnectFlows?: MediaConnectFlowRequest[];
13
+ MulticastSettings?: MulticastSettingsCreateRequest;
12
14
  Name?: string;
13
15
  RoleArn?: string;
14
16
  Sources?: InputSourceRequest[];
@@ -30,6 +32,9 @@ export type MediaLiveInputAttributes = {
30
32
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-inputdestinationrequest.html}
31
33
  */
32
34
  export type InputDestinationRequest = {
35
+ Network?: string;
36
+ NetworkRoutes?: InputRequestDestinationRoute[];
37
+ StaticIpAddress?: string;
33
38
  StreamName?: string;
34
39
  };
35
40
  /**
@@ -39,6 +44,14 @@ export type InputDestinationRequest = {
39
44
  export type InputDeviceSettings = {
40
45
  Id?: string;
41
46
  };
47
+ /**
48
+ * Type definition for `AWS::MediaLive::Input.InputRequestDestinationRoute`.
49
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-inputrequestdestinationroute.html}
50
+ */
51
+ export type InputRequestDestinationRoute = {
52
+ Cidr?: string;
53
+ Gateway?: string;
54
+ };
42
55
  /**
43
56
  * Type definition for `AWS::MediaLive::Input.InputSourceRequest`.
44
57
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-inputsourcerequest.html}
@@ -63,6 +76,21 @@ export type InputVpcRequest = {
63
76
  export type MediaConnectFlowRequest = {
64
77
  FlowArn?: string;
65
78
  };
79
+ /**
80
+ * Type definition for `AWS::MediaLive::Input.MulticastSettingsCreateRequest`.
81
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-multicastsettingscreaterequest.html}
82
+ */
83
+ export type MulticastSettingsCreateRequest = {
84
+ Sources?: MulticastSourceCreateRequest[];
85
+ };
86
+ /**
87
+ * Type definition for `AWS::MediaLive::Input.MulticastSourceCreateRequest`.
88
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-multicastsourcecreaterequest.html}
89
+ */
90
+ export type MulticastSourceCreateRequest = {
91
+ SourceIp?: string;
92
+ Url?: string;
93
+ };
66
94
  /**
67
95
  * Type definition for `AWS::MediaLive::Input.SrtCallerDecryptionRequest`.
68
96
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-srtcallerdecryptionrequest.html}
@@ -0,0 +1,102 @@
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::MemoryDB::MultiRegionCluster`.
5
+ * The AWS::MemoryDB::Multi Region Cluster resource creates an Amazon MemoryDB Multi Region Cluster.
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-multiregioncluster.html}
7
+ */
8
+ export type MemoryDBMultiRegionClusterProperties = {
9
+ /**
10
+ * Description of the multi region cluster.
11
+ */
12
+ Description?: string;
13
+ /**
14
+ * The engine type used by the multi region cluster.
15
+ */
16
+ Engine?: string;
17
+ /**
18
+ * The Redis engine version used by the multi region cluster.
19
+ */
20
+ EngineVersion?: string;
21
+ /**
22
+ * The name of the Multi Region cluster. This value must be unique as it also serves as the multi region cluster identifier.
23
+ * @pattern `[a-z][a-z0-9\-]*`
24
+ */
25
+ MultiRegionClusterNameSuffix?: string;
26
+ /**
27
+ * The name of the parameter group associated with the multi region cluster.
28
+ */
29
+ MultiRegionParameterGroupName?: string;
30
+ /**
31
+ * The compute and memory capacity of the nodes in the multi region cluster.
32
+ */
33
+ NodeType: string;
34
+ /**
35
+ * The number of shards the multi region cluster will contain.
36
+ */
37
+ NumShards?: number;
38
+ /**
39
+ * A flag that enables in-transit encryption when set to true.
40
+
41
+ You cannot modify the value of TransitEncryptionEnabled after the cluster is created. To enable in-transit encryption on a cluster you must set TransitEncryptionEnabled to true when you create a cluster.
42
+ */
43
+ TLSEnabled?: boolean;
44
+ /**
45
+ * An array of key-value pairs to apply to this multi region cluster.
46
+ * @maxLength `50`
47
+ */
48
+ Tags?: Tag[];
49
+ /**
50
+ * An enum string value that determines the update strategy for scaling. Possible values are 'COORDINATED' and 'UNCOORDINATED'. Default is 'COORDINATED'.
51
+ */
52
+ UpdateStrategy?: "COORDINATED" | "UNCOORDINATED";
53
+ };
54
+ /**
55
+ * Attribute type definition for `AWS::MemoryDB::MultiRegionCluster`.
56
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-multiregioncluster.html#aws-resource-memorydb-multiregioncluster-return-values}
57
+ */
58
+ export type MemoryDBMultiRegionClusterAttributes = {
59
+ /**
60
+ * The Amazon Resource Name (ARN) of the multi region cluster.
61
+ */
62
+ ARN: string;
63
+ /**
64
+ * The name of the Global Datastore, it is generated by MemoryDB adding a prefix to MultiRegionClusterNameSuffix.
65
+ */
66
+ MultiRegionClusterName: string;
67
+ /**
68
+ * The status of the multi region cluster. For example, Available, Updating, Creating.
69
+ */
70
+ Status: string;
71
+ };
72
+ /**
73
+ * Type definition for `AWS::MemoryDB::MultiRegionCluster.Tag`.
74
+ * A key-value pair to associate with a resource.
75
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-memorydb-multiregioncluster-tag.html}
76
+ */
77
+ export type Tag = {
78
+ /**
79
+ * The key for the tag. May not be null.
80
+ * @minLength `1`
81
+ * @maxLength `128`
82
+ * @pattern `^(?!aws:)(?!memorydb:)[a-zA-Z0-9 _\.\/=+:\-@]{1,128}$`
83
+ */
84
+ Key: string;
85
+ /**
86
+ * The tag's value. May be null.
87
+ * @minLength `1`
88
+ * @maxLength `256`
89
+ * @pattern `^(?!aws:)(?!memorydb:)[a-zA-Z0-9 _\.\/=+:\-@]{1,256}$`
90
+ */
91
+ Value: string;
92
+ };
93
+ /**
94
+ * Resource type definition for `AWS::MemoryDB::MultiRegionCluster`.
95
+ * The AWS::MemoryDB::Multi Region Cluster resource creates an Amazon MemoryDB Multi Region Cluster.
96
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-multiregioncluster.html}
97
+ */
98
+ export declare class MemoryDBMultiRegionCluster extends $Resource<"AWS::MemoryDB::MultiRegionCluster", MemoryDBMultiRegionClusterProperties, MemoryDBMultiRegionClusterAttributes> {
99
+ static readonly Type = "AWS::MemoryDB::MultiRegionCluster";
100
+ constructor(logicalId: string, properties: MemoryDBMultiRegionClusterProperties, options?: $ResourceOptions);
101
+ }
102
+ //# sourceMappingURL=AWS-MemoryDB-MultiRegionCluster.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::MemoryDB::MultiRegionCluster`.
4
+ * The AWS::MemoryDB::Multi Region Cluster resource creates an Amazon MemoryDB Multi Region Cluster.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-multiregioncluster.html}
6
+ */
7
+ export class MemoryDBMultiRegionCluster extends $Resource {
8
+ static Type = "AWS::MemoryDB::MultiRegionCluster";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, MemoryDBMultiRegionCluster.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-MemoryDB-MultiRegionCluster.js.map
@@ -23,6 +23,7 @@ export type SESReceiptRuleAttributes = {
23
23
  export type Action = {
24
24
  AddHeaderAction?: AddHeaderAction;
25
25
  BounceAction?: BounceAction;
26
+ ConnectAction?: ConnectAction;
26
27
  LambdaAction?: LambdaAction;
27
28
  S3Action?: S3Action;
28
29
  SNSAction?: SNSAction;
@@ -48,6 +49,14 @@ export type BounceAction = {
48
49
  StatusCode?: string;
49
50
  TopicArn?: string;
50
51
  };
52
+ /**
53
+ * Type definition for `AWS::SES::ReceiptRule.ConnectAction`.
54
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-connectaction.html}
55
+ */
56
+ export type ConnectAction = {
57
+ IAMRoleARN: string;
58
+ InstanceARN: string;
59
+ };
51
60
  /**
52
61
  * Type definition for `AWS::SES::ReceiptRule.LambdaAction`.
53
62
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-lambdaaction.html}
@@ -11,6 +11,7 @@ export type ServiceDiscoveryServiceProperties = {
11
11
  HealthCheckCustomConfig?: HealthCheckCustomConfig;
12
12
  Name?: string;
13
13
  NamespaceId?: string;
14
+ ServiceAttributes?: Record<string, any>;
14
15
  Tags?: Tag[];
15
16
  Type?: string;
16
17
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.205",
3
+ "version": "0.1.206",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },