@awboost/cfn-resource-types 0.1.428 → 0.1.429
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.
|
@@ -59,6 +59,13 @@ export type Ac3Settings = {
|
|
|
59
59
|
LfeFilter?: string;
|
|
60
60
|
MetadataControl?: string;
|
|
61
61
|
};
|
|
62
|
+
/**
|
|
63
|
+
* Type definition for `AWS::MediaLive::Channel.AdditionalDestinations`.
|
|
64
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-additionaldestinations.html}
|
|
65
|
+
*/
|
|
66
|
+
export type AdditionalDestinations = {
|
|
67
|
+
Destination?: OutputLocationRef;
|
|
68
|
+
};
|
|
62
69
|
/**
|
|
63
70
|
* Type definition for `AWS::MediaLive::Channel.AncillarySourceSettings`.
|
|
64
71
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-ancillarysourcesettings.html}
|
|
@@ -369,6 +376,7 @@ export type BurnInDestinationSettings = {
|
|
|
369
376
|
ShadowOpacity?: number;
|
|
370
377
|
ShadowXOffset?: number;
|
|
371
378
|
ShadowYOffset?: number;
|
|
379
|
+
SubtitleRows?: string;
|
|
372
380
|
TeletextGridControl?: string;
|
|
373
381
|
XPosition?: number;
|
|
374
382
|
YPosition?: number;
|
|
@@ -474,6 +482,7 @@ export type CmafIngestCaptionLanguageMapping = {
|
|
|
474
482
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestgroupsettings.html}
|
|
475
483
|
*/
|
|
476
484
|
export type CmafIngestGroupSettings = {
|
|
485
|
+
AdditionalDestinations?: AdditionalDestinations[];
|
|
477
486
|
CaptionLanguageMappings?: CmafIngestCaptionLanguageMapping[];
|
|
478
487
|
Destination?: OutputLocationRef;
|
|
479
488
|
Id3Behavior?: string;
|
|
@@ -562,6 +571,7 @@ export type DvbSubDestinationSettings = {
|
|
|
562
571
|
ShadowOpacity?: number;
|
|
563
572
|
ShadowXOffset?: number;
|
|
564
573
|
ShadowYOffset?: number;
|
|
574
|
+
SubtitleRows?: string;
|
|
565
575
|
TeletextGridControl?: string;
|
|
566
576
|
XPosition?: number;
|
|
567
577
|
YPosition?: number;
|
|
@@ -5,29 +5,23 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ServiceCatalogPortfolioPrincipalAssociationProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* The language code.
|
|
10
|
-
*/
|
|
11
8
|
AcceptLanguage?: string;
|
|
12
|
-
/**
|
|
13
|
-
* The portfolio identifier.
|
|
14
|
-
*/
|
|
15
9
|
PortfolioId?: string;
|
|
16
|
-
/**
|
|
17
|
-
* The ARN of the principal (user, role, or group).
|
|
18
|
-
* @pattern `arn:(aws|aws-cn|aws-us-gov):iam::[0-9]*:(role|user|group)\/.*`
|
|
19
|
-
*/
|
|
20
10
|
PrincipalARN?: string;
|
|
21
|
-
/**
|
|
22
|
-
* The principal type. The supported value is IAM if you use a fully defined Amazon Resource Name (ARN), or IAM_PATTERN if you use an ARN with no accountID, with or without wildcard characters.
|
|
23
|
-
*/
|
|
24
11
|
PrincipalType: string;
|
|
25
12
|
};
|
|
13
|
+
/**
|
|
14
|
+
* Attribute type definition for `AWS::ServiceCatalog::PortfolioPrincipalAssociation`.
|
|
15
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#aws-resource-servicecatalog-portfolioprincipalassociation-return-values}
|
|
16
|
+
*/
|
|
17
|
+
export type ServiceCatalogPortfolioPrincipalAssociationAttributes = {
|
|
18
|
+
Id: string;
|
|
19
|
+
};
|
|
26
20
|
/**
|
|
27
21
|
* Resource Type definition for AWS::ServiceCatalog::PortfolioPrincipalAssociation
|
|
28
22
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html}
|
|
29
23
|
*/
|
|
30
|
-
export declare class ServiceCatalogPortfolioPrincipalAssociation extends $Resource<"AWS::ServiceCatalog::PortfolioPrincipalAssociation", ServiceCatalogPortfolioPrincipalAssociationProperties,
|
|
24
|
+
export declare class ServiceCatalogPortfolioPrincipalAssociation extends $Resource<"AWS::ServiceCatalog::PortfolioPrincipalAssociation", ServiceCatalogPortfolioPrincipalAssociationProperties, ServiceCatalogPortfolioPrincipalAssociationAttributes> {
|
|
31
25
|
static readonly Type = "AWS::ServiceCatalog::PortfolioPrincipalAssociation";
|
|
32
26
|
constructor(logicalId: string, properties: ServiceCatalogPortfolioPrincipalAssociationProperties, options?: $ResourceOptions);
|
|
33
27
|
}
|