@awboost/cfn-resource-types 0.1.66 → 0.1.68
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-ACMPCA-CertificateAuthority.d.ts +4 -4
- package/lib/AWS-Bedrock-DataSource.d.ts +23 -1
- package/lib/AWS-Bedrock-KnowledgeBase.d.ts +1 -1
- package/lib/AWS-EC2-KeyPair.d.ts +31 -19
- package/lib/AWS-EC2-KeyPair.js +8 -1
- package/lib/AWS-EC2-TransitGatewayRouteTablePropagation.d.ts +9 -10
- package/lib/AWS-EC2-TransitGatewayRouteTablePropagation.js +1 -1
- package/lib/AWS-ECS-TaskDefinition.d.ts +14 -0
- package/lib/AWS-Lambda-Alias.d.ts +0 -1
- package/lib/AWS-MediaLive-Channel.d.ts +31 -0
- package/lib/AWS-QuickSight-Analysis.d.ts +29 -3
- package/lib/AWS-QuickSight-Dashboard.d.ts +29 -3
- package/lib/AWS-QuickSight-Template.d.ts +29 -3
- package/package.json +1 -1
|
@@ -95,7 +95,7 @@ export type CrlConfiguration = {
|
|
|
95
95
|
*/
|
|
96
96
|
CrlDistributionPointExtensionConfiguration?: CrlDistributionPointExtensionConfiguration;
|
|
97
97
|
CustomCname?: string;
|
|
98
|
-
Enabled
|
|
98
|
+
Enabled: boolean;
|
|
99
99
|
ExpirationInDays?: number;
|
|
100
100
|
S3BucketName?: string;
|
|
101
101
|
S3ObjectAcl?: string;
|
|
@@ -141,7 +141,7 @@ export type CustomAttribute = {
|
|
|
141
141
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-edipartyname.html}
|
|
142
142
|
*/
|
|
143
143
|
export type EdiPartyName = {
|
|
144
|
-
NameAssigner
|
|
144
|
+
NameAssigner?: string;
|
|
145
145
|
PartyName: string;
|
|
146
146
|
};
|
|
147
147
|
/**
|
|
@@ -205,7 +205,7 @@ export type KeyUsage = {
|
|
|
205
205
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-ocspconfiguration.html}
|
|
206
206
|
*/
|
|
207
207
|
export type OcspConfiguration = {
|
|
208
|
-
Enabled
|
|
208
|
+
Enabled: boolean;
|
|
209
209
|
OcspCustomCname?: string;
|
|
210
210
|
};
|
|
211
211
|
/**
|
|
@@ -265,7 +265,7 @@ export type Subject = {
|
|
|
265
265
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-tag.html}
|
|
266
266
|
*/
|
|
267
267
|
export type Tag = {
|
|
268
|
-
Key
|
|
268
|
+
Key: string;
|
|
269
269
|
Value?: string;
|
|
270
270
|
};
|
|
271
271
|
/**
|
|
@@ -5,6 +5,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-datasource.html}
|
|
6
6
|
*/
|
|
7
7
|
export type BedrockDataSourceProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The deletion policy for the data source.
|
|
10
|
+
*/
|
|
11
|
+
DataDeletionPolicy?: DataDeletionPolicy;
|
|
8
12
|
/**
|
|
9
13
|
* Specifies a raw data source location to ingest.
|
|
10
14
|
*/
|
|
@@ -52,6 +56,11 @@ export type BedrockDataSourceAttributes = {
|
|
|
52
56
|
* The status of a data source.
|
|
53
57
|
*/
|
|
54
58
|
DataSourceStatus: DataSourceStatus;
|
|
59
|
+
/**
|
|
60
|
+
* The details of the failure reasons related to the data source.
|
|
61
|
+
* @maxLength `2048`
|
|
62
|
+
*/
|
|
63
|
+
FailureReasons: string[];
|
|
55
64
|
/**
|
|
56
65
|
* The time at which the knowledge base was last updated.
|
|
57
66
|
*/
|
|
@@ -78,6 +87,12 @@ export type ChunkingConfiguration = {
|
|
|
78
87
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-chunkingstrategy.html}
|
|
79
88
|
*/
|
|
80
89
|
export type ChunkingStrategy = "FIXED_SIZE" | "NONE";
|
|
90
|
+
/**
|
|
91
|
+
* Type definition for `AWS::Bedrock::DataSource.DataDeletionPolicy`.
|
|
92
|
+
* The deletion policy for the data source.
|
|
93
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-datadeletionpolicy.html}
|
|
94
|
+
*/
|
|
95
|
+
export type DataDeletionPolicy = "RETAIN" | "DELETE";
|
|
81
96
|
/**
|
|
82
97
|
* Type definition for `AWS::Bedrock::DataSource.DataSourceConfiguration`.
|
|
83
98
|
* Specifies a raw data source location to ingest.
|
|
@@ -98,7 +113,7 @@ export type DataSourceConfiguration = {
|
|
|
98
113
|
* The status of a data source.
|
|
99
114
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-datasourcestatus.html}
|
|
100
115
|
*/
|
|
101
|
-
export type DataSourceStatus = "AVAILABLE" | "DELETING";
|
|
116
|
+
export type DataSourceStatus = "AVAILABLE" | "DELETING" | "DELETE_UNSUCCESSFUL";
|
|
102
117
|
/**
|
|
103
118
|
* Type definition for `AWS::Bedrock::DataSource.DataSourceType`.
|
|
104
119
|
* The type of the data source location.
|
|
@@ -136,6 +151,13 @@ export type S3DataSourceConfiguration = {
|
|
|
136
151
|
* @pattern `^arn:aws(|-cn|-us-gov):s3:::[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]$`
|
|
137
152
|
*/
|
|
138
153
|
BucketArn: string;
|
|
154
|
+
/**
|
|
155
|
+
* The account ID for the owner of the S3 bucket.
|
|
156
|
+
* @minLength `12`
|
|
157
|
+
* @maxLength `12`
|
|
158
|
+
* @pattern `^[0-9]{12}$`
|
|
159
|
+
*/
|
|
160
|
+
BucketOwnerAccountId?: string;
|
|
139
161
|
/**
|
|
140
162
|
* A list of S3 prefixes that define the object containing the data sources.
|
|
141
163
|
* @minLength `1`
|
|
@@ -90,7 +90,7 @@ export type KnowledgeBaseConfiguration = {
|
|
|
90
90
|
* The status of a knowledge base.
|
|
91
91
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebasestatus.html}
|
|
92
92
|
*/
|
|
93
|
-
export type KnowledgeBaseStatus = "CREATING" | "ACTIVE" | "DELETING" | "UPDATING" | "FAILED";
|
|
93
|
+
export type KnowledgeBaseStatus = "CREATING" | "ACTIVE" | "DELETING" | "UPDATING" | "FAILED" | "DELETE_UNSUCCESSFUL";
|
|
94
94
|
/**
|
|
95
95
|
* Type definition for `AWS::Bedrock::KnowledgeBase.KnowledgeBaseStorageType`.
|
|
96
96
|
* The storage type of a knowledge base.
|
package/lib/AWS-EC2-KeyPair.d.ts
CHANGED
|
@@ -1,28 +1,39 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
*
|
|
4
|
+
* Resource type definition for `AWS::EC2::KeyPair`.
|
|
5
|
+
* Specifies a key pair for use with an EC2long instance as follows:
|
|
6
|
+
+ To import an existing key pair, include the ``PublicKeyMaterial`` property.
|
|
7
|
+
+ To create a new key pair, omit the ``PublicKeyMaterial`` property.
|
|
8
|
+
|
|
9
|
+
When you import an existing key pair, you specify the public key material for the key. We assume that you have the private key material for the key. CFNlong does not create or return the private key material when you import a key pair.
|
|
10
|
+
When you create a new key pair, the private key is saved to SYSlong Parameter Store, using a parameter with the following name: ``/ec2/keypair/{key_pair_id}``. For more information about retrieving private key, and the required permissions, see [Create a key pair using](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/create-key-pairs.html#create-key-pair-cloudformation) in the *User Guide*.
|
|
11
|
+
When CFN deletes a key pair that was created or imported by a stack, it also deletes the parameter that was used to store the private key material in Parameter Store.
|
|
5
12
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-keypair.html}
|
|
6
13
|
*/
|
|
7
14
|
export type EC2KeyPairProperties = {
|
|
8
15
|
/**
|
|
9
|
-
|
|
10
|
-
|
|
16
|
+
* The format of the key pair.
|
|
17
|
+
Default: ``pem``
|
|
18
|
+
*/
|
|
11
19
|
KeyFormat?: "pem" | "ppk";
|
|
12
20
|
/**
|
|
13
|
-
|
|
14
|
-
|
|
21
|
+
* A unique name for the key pair.
|
|
22
|
+
Constraints: Up to 255 ASCII characters
|
|
23
|
+
*/
|
|
15
24
|
KeyName: string;
|
|
16
25
|
/**
|
|
17
|
-
|
|
18
|
-
|
|
26
|
+
* The type of key pair. Note that ED25519 keys are not supported for Windows instances.
|
|
27
|
+
If the ``PublicKeyMaterial`` property is specified, the ``KeyType`` property is ignored, and the key type is inferred from the ``PublicKeyMaterial`` value.
|
|
28
|
+
Default: ``rsa``
|
|
29
|
+
*/
|
|
19
30
|
KeyType?: "rsa" | "ed25519";
|
|
20
31
|
/**
|
|
21
|
-
*
|
|
32
|
+
* The public key material. The ``PublicKeyMaterial`` property is used to import a key pair. If this property is not specified, then a new key pair will be created.
|
|
22
33
|
*/
|
|
23
34
|
PublicKeyMaterial?: string;
|
|
24
35
|
/**
|
|
25
|
-
*
|
|
36
|
+
* The tags to apply to the key pair.
|
|
26
37
|
*/
|
|
27
38
|
Tags?: Tag[];
|
|
28
39
|
};
|
|
@@ -31,36 +42,37 @@ export type EC2KeyPairProperties = {
|
|
|
31
42
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-keypair.html#aws-resource-ec2-keypair-return-values}
|
|
32
43
|
*/
|
|
33
44
|
export type EC2KeyPairAttributes = {
|
|
34
|
-
/**
|
|
35
|
-
* A short sequence of bytes used for public key verification
|
|
36
|
-
*/
|
|
37
45
|
KeyFingerprint: string;
|
|
38
|
-
/**
|
|
39
|
-
* An AWS generated ID for the key pair
|
|
40
|
-
*/
|
|
41
46
|
KeyPairId: string;
|
|
42
47
|
};
|
|
43
48
|
/**
|
|
44
49
|
* Type definition for `AWS::EC2::KeyPair.Tag`.
|
|
45
|
-
*
|
|
50
|
+
* Specifies a tag. For more information, see [Add tags to a resource](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#cloudformation-add-tag-specifications).
|
|
46
51
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-keypair-tag.html}
|
|
47
52
|
*/
|
|
48
53
|
export type Tag = {
|
|
49
54
|
/**
|
|
50
|
-
* The key
|
|
55
|
+
* The tag key.
|
|
51
56
|
* @minLength `1`
|
|
52
57
|
* @maxLength `128`
|
|
53
58
|
*/
|
|
54
59
|
Key: string;
|
|
55
60
|
/**
|
|
56
|
-
* The
|
|
61
|
+
* The tag value.
|
|
57
62
|
* @minLength `0`
|
|
58
63
|
* @maxLength `256`
|
|
59
64
|
*/
|
|
60
65
|
Value: string;
|
|
61
66
|
};
|
|
62
67
|
/**
|
|
63
|
-
*
|
|
68
|
+
* Resource type definition for `AWS::EC2::KeyPair`.
|
|
69
|
+
* Specifies a key pair for use with an EC2long instance as follows:
|
|
70
|
+
+ To import an existing key pair, include the ``PublicKeyMaterial`` property.
|
|
71
|
+
+ To create a new key pair, omit the ``PublicKeyMaterial`` property.
|
|
72
|
+
|
|
73
|
+
When you import an existing key pair, you specify the public key material for the key. We assume that you have the private key material for the key. CFNlong does not create or return the private key material when you import a key pair.
|
|
74
|
+
When you create a new key pair, the private key is saved to SYSlong Parameter Store, using a parameter with the following name: ``/ec2/keypair/{key_pair_id}``. For more information about retrieving private key, and the required permissions, see [Create a key pair using](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/create-key-pairs.html#create-key-pair-cloudformation) in the *User Guide*.
|
|
75
|
+
When CFN deletes a key pair that was created or imported by a stack, it also deletes the parameter that was used to store the private key material in Parameter Store.
|
|
64
76
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-keypair.html}
|
|
65
77
|
*/
|
|
66
78
|
export declare class EC2KeyPair extends $Resource<"AWS::EC2::KeyPair", EC2KeyPairProperties, EC2KeyPairAttributes> {
|
package/lib/AWS-EC2-KeyPair.js
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Resource type definition for `AWS::EC2::KeyPair`.
|
|
4
|
+
* Specifies a key pair for use with an EC2long instance as follows:
|
|
5
|
+
+ To import an existing key pair, include the ``PublicKeyMaterial`` property.
|
|
6
|
+
+ To create a new key pair, omit the ``PublicKeyMaterial`` property.
|
|
7
|
+
|
|
8
|
+
When you import an existing key pair, you specify the public key material for the key. We assume that you have the private key material for the key. CFNlong does not create or return the private key material when you import a key pair.
|
|
9
|
+
When you create a new key pair, the private key is saved to SYSlong Parameter Store, using a parameter with the following name: ``/ec2/keypair/{key_pair_id}``. For more information about retrieving private key, and the required permissions, see [Create a key pair using](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/create-key-pairs.html#create-key-pair-cloudformation) in the *User Guide*.
|
|
10
|
+
When CFN deletes a key pair that was created or imported by a stack, it also deletes the parameter that was used to store the private key material in Parameter Store.
|
|
4
11
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-keypair.html}
|
|
5
12
|
*/
|
|
6
13
|
export class EC2KeyPair extends $Resource {
|
|
@@ -1,25 +1,24 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
*
|
|
4
|
+
* AWS::EC2::TransitGatewayRouteTablePropagation Type
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html}
|
|
6
6
|
*/
|
|
7
7
|
export type EC2TransitGatewayRouteTablePropagationProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The ID of transit gateway attachment.
|
|
10
|
+
*/
|
|
8
11
|
TransitGatewayAttachmentId: string;
|
|
12
|
+
/**
|
|
13
|
+
* The ID of transit gateway route table.
|
|
14
|
+
*/
|
|
9
15
|
TransitGatewayRouteTableId: string;
|
|
10
16
|
};
|
|
11
17
|
/**
|
|
12
|
-
*
|
|
13
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html#aws-resource-ec2-transitgatewayroutetablepropagation-return-values}
|
|
14
|
-
*/
|
|
15
|
-
export type EC2TransitGatewayRouteTablePropagationAttributes = {
|
|
16
|
-
Id: string;
|
|
17
|
-
};
|
|
18
|
-
/**
|
|
19
|
-
* Resource Type definition for AWS::EC2::TransitGatewayRouteTablePropagation
|
|
18
|
+
* AWS::EC2::TransitGatewayRouteTablePropagation Type
|
|
20
19
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html}
|
|
21
20
|
*/
|
|
22
|
-
export declare class EC2TransitGatewayRouteTablePropagation extends $Resource<"AWS::EC2::TransitGatewayRouteTablePropagation", EC2TransitGatewayRouteTablePropagationProperties,
|
|
21
|
+
export declare class EC2TransitGatewayRouteTablePropagation extends $Resource<"AWS::EC2::TransitGatewayRouteTablePropagation", EC2TransitGatewayRouteTablePropagationProperties, Record<string, never>> {
|
|
23
22
|
static readonly Type = "AWS::EC2::TransitGatewayRouteTablePropagation";
|
|
24
23
|
constructor(logicalId: string, properties: EC2TransitGatewayRouteTablePropagationProperties, options?: $ResourceOptions);
|
|
25
24
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* AWS::EC2::TransitGatewayRouteTablePropagation Type
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetablepropagation.html}
|
|
5
5
|
*/
|
|
6
6
|
export class EC2TransitGatewayRouteTablePropagation extends $Resource {
|
|
@@ -573,11 +573,22 @@ export type FSxAuthorizationConfig = {
|
|
|
573
573
|
};
|
|
574
574
|
/**
|
|
575
575
|
* Type definition for `AWS::ECS::TaskDefinition.FSxWindowsFileServerVolumeConfiguration`.
|
|
576
|
+
* This parameter is specified when you're using [Amazon FSx for Windows File Server](https://docs.aws.amazon.com/fsx/latest/WindowsGuide/what-is.html) file system for task storage.
|
|
577
|
+
For more information and the input format, see [Amazon FSx for Windows File Server volumes](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/wfsx-volumes.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
576
578
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-fsxwindowsfileservervolumeconfiguration.html}
|
|
577
579
|
*/
|
|
578
580
|
export type FSxWindowsFileServerVolumeConfiguration = {
|
|
581
|
+
/**
|
|
582
|
+
* The authorization configuration details for the Amazon FSx for Windows File Server file system.
|
|
583
|
+
*/
|
|
579
584
|
AuthorizationConfig?: FSxAuthorizationConfig;
|
|
585
|
+
/**
|
|
586
|
+
* The Amazon FSx for Windows File Server file system ID to use.
|
|
587
|
+
*/
|
|
580
588
|
FileSystemId: string;
|
|
589
|
+
/**
|
|
590
|
+
* The directory within the Amazon FSx for Windows File Server file system to mount as the root directory inside the host.
|
|
591
|
+
*/
|
|
581
592
|
RootDirectory: string;
|
|
582
593
|
};
|
|
583
594
|
/**
|
|
@@ -1070,6 +1081,9 @@ export type Volume = {
|
|
|
1070
1081
|
* This parameter is specified when you use an Amazon Elastic File System file system for task storage.
|
|
1071
1082
|
*/
|
|
1072
1083
|
EFSVolumeConfiguration?: EFSVolumeConfiguration;
|
|
1084
|
+
/**
|
|
1085
|
+
* This parameter is specified when you use Amazon FSx for Windows File Server file system for task storage.
|
|
1086
|
+
*/
|
|
1073
1087
|
FSxWindowsFileServerVolumeConfiguration?: FSxWindowsFileServerVolumeConfiguration;
|
|
1074
1088
|
/**
|
|
1075
1089
|
* This parameter is specified when you use bind mount host volumes. The contents of the ``host`` parameter determine whether your bind mount host volume persists on the host container instance and where it's stored. If the ``host`` parameter is empty, then the Docker daemon assigns a host path for your data volume. However, the data isn't guaranteed to persist after the containers that are associated with it stop running.
|
|
@@ -17,7 +17,6 @@ export type LambdaAliasProperties = {
|
|
|
17
17
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#aws-resource-lambda-alias-return-values}
|
|
18
18
|
*/
|
|
19
19
|
export type LambdaAliasAttributes = {
|
|
20
|
-
AliasArn: string;
|
|
21
20
|
Id: string;
|
|
22
21
|
};
|
|
23
22
|
/**
|
|
@@ -139,12 +139,14 @@ export type AudioCodecSettings = {
|
|
|
139
139
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-audiodescription.html}
|
|
140
140
|
*/
|
|
141
141
|
export type AudioDescription = {
|
|
142
|
+
AudioDashRoles?: string[];
|
|
142
143
|
AudioNormalizationSettings?: AudioNormalizationSettings;
|
|
143
144
|
AudioSelectorName?: string;
|
|
144
145
|
AudioType?: string;
|
|
145
146
|
AudioTypeControl?: string;
|
|
146
147
|
AudioWatermarkingSettings?: AudioWatermarkSettings;
|
|
147
148
|
CodecSettings?: AudioCodecSettings;
|
|
149
|
+
DvbDashAccessibility?: string;
|
|
148
150
|
LanguageCode?: string;
|
|
149
151
|
LanguageCodeControl?: string;
|
|
150
152
|
Name?: string;
|
|
@@ -322,8 +324,10 @@ export type BurnInDestinationSettings = {
|
|
|
322
324
|
*/
|
|
323
325
|
export type CaptionDescription = {
|
|
324
326
|
Accessibility?: string;
|
|
327
|
+
CaptionDashRoles?: string[];
|
|
325
328
|
CaptionSelectorName?: string;
|
|
326
329
|
DestinationSettings?: CaptionDestinationSettings;
|
|
330
|
+
DvbDashAccessibility?: string;
|
|
327
331
|
LanguageCode?: string;
|
|
328
332
|
LanguageDescription?: string;
|
|
329
333
|
Name?: string;
|
|
@@ -395,6 +399,25 @@ export type CaptionSelectorSettings = {
|
|
|
395
399
|
export type CdiInputSpecification = {
|
|
396
400
|
Resolution?: string;
|
|
397
401
|
};
|
|
402
|
+
/**
|
|
403
|
+
* Type definition for `AWS::MediaLive::Channel.CmafIngestGroupSettings`.
|
|
404
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestgroupsettings.html}
|
|
405
|
+
*/
|
|
406
|
+
export type CmafIngestGroupSettings = {
|
|
407
|
+
Destination?: OutputLocationRef;
|
|
408
|
+
NielsenId3Behavior?: string;
|
|
409
|
+
Scte35Type?: string;
|
|
410
|
+
SegmentLength?: number;
|
|
411
|
+
SegmentLengthUnits?: string;
|
|
412
|
+
SendDelayMs?: number;
|
|
413
|
+
};
|
|
414
|
+
/**
|
|
415
|
+
* Type definition for `AWS::MediaLive::Channel.CmafIngestOutputSettings`.
|
|
416
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestoutputsettings.html}
|
|
417
|
+
*/
|
|
418
|
+
export type CmafIngestOutputSettings = {
|
|
419
|
+
NameModifier?: string;
|
|
420
|
+
};
|
|
398
421
|
/**
|
|
399
422
|
* Type definition for `AWS::MediaLive::Channel.ColorCorrection`.
|
|
400
423
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-colorcorrection.html}
|
|
@@ -791,6 +814,8 @@ export type H265Settings = {
|
|
|
791
814
|
LookAheadRateControl?: string;
|
|
792
815
|
MaxBitrate?: number;
|
|
793
816
|
MinIInterval?: number;
|
|
817
|
+
MvOverPictureBoundaries?: string;
|
|
818
|
+
MvTemporalPredictor?: string;
|
|
794
819
|
ParDenominator?: number;
|
|
795
820
|
ParNumerator?: number;
|
|
796
821
|
Profile?: string;
|
|
@@ -800,8 +825,12 @@ export type H265Settings = {
|
|
|
800
825
|
SceneChangeDetect?: string;
|
|
801
826
|
Slices?: number;
|
|
802
827
|
Tier?: string;
|
|
828
|
+
TileHeight?: number;
|
|
829
|
+
TilePadding?: string;
|
|
830
|
+
TileWidth?: number;
|
|
803
831
|
TimecodeBurninSettings?: TimecodeBurninSettings;
|
|
804
832
|
TimecodeInsertion?: string;
|
|
833
|
+
TreeblockSize?: string;
|
|
805
834
|
};
|
|
806
835
|
/**
|
|
807
836
|
* Type definition for `AWS::MediaLive::Channel.Hdr10Settings`.
|
|
@@ -1339,6 +1368,7 @@ export type OutputGroup = {
|
|
|
1339
1368
|
*/
|
|
1340
1369
|
export type OutputGroupSettings = {
|
|
1341
1370
|
ArchiveGroupSettings?: ArchiveGroupSettings;
|
|
1371
|
+
CmafIngestGroupSettings?: CmafIngestGroupSettings;
|
|
1342
1372
|
FrameCaptureGroupSettings?: FrameCaptureGroupSettings;
|
|
1343
1373
|
HlsGroupSettings?: HlsGroupSettings;
|
|
1344
1374
|
MediaPackageGroupSettings?: MediaPackageGroupSettings;
|
|
@@ -1368,6 +1398,7 @@ export type OutputLockingSettings = {
|
|
|
1368
1398
|
*/
|
|
1369
1399
|
export type OutputSettings = {
|
|
1370
1400
|
ArchiveOutputSettings?: ArchiveOutputSettings;
|
|
1401
|
+
CmafIngestOutputSettings?: CmafIngestOutputSettings;
|
|
1371
1402
|
FrameCaptureOutputSettings?: FrameCaptureOutputSettings;
|
|
1372
1403
|
HlsOutputSettings?: HlsOutputSettings;
|
|
1373
1404
|
MediaPackageOutputSettings?: MediaPackageOutputSettings;
|
|
@@ -3751,7 +3751,7 @@ export type LineChartConfiguration = {
|
|
|
3751
3751
|
SecondaryYAxisLabelOptions?: ChartAxisLabelOptions;
|
|
3752
3752
|
/**
|
|
3753
3753
|
* @minLength `0`
|
|
3754
|
-
* @maxLength `
|
|
3754
|
+
* @maxLength `2000`
|
|
3755
3755
|
*/
|
|
3756
3756
|
Series?: SeriesItem[];
|
|
3757
3757
|
SmallMultiplesOptions?: SmallMultiplesOptions;
|
|
@@ -4771,7 +4771,7 @@ export type PivotTableCellConditionalFormatting = {
|
|
|
4771
4771
|
export type PivotTableConditionalFormatting = {
|
|
4772
4772
|
/**
|
|
4773
4773
|
* @minLength `0`
|
|
4774
|
-
* @maxLength `
|
|
4774
|
+
* @maxLength `500`
|
|
4775
4775
|
*/
|
|
4776
4776
|
ConditionalFormattingOptions?: PivotTableConditionalFormattingOption[];
|
|
4777
4777
|
};
|
|
@@ -6239,7 +6239,7 @@ export type TableCellStyle = {
|
|
|
6239
6239
|
export type TableConditionalFormatting = {
|
|
6240
6240
|
/**
|
|
6241
6241
|
* @minLength `0`
|
|
6242
|
-
* @maxLength `
|
|
6242
|
+
* @maxLength `500`
|
|
6243
6243
|
*/
|
|
6244
6244
|
ConditionalFormattingOptions?: TableConditionalFormattingOption[];
|
|
6245
6245
|
};
|
|
@@ -7087,6 +7087,13 @@ export type WaterfallChartAggregatedFieldWells = {
|
|
|
7087
7087
|
*/
|
|
7088
7088
|
Values?: MeasureField[];
|
|
7089
7089
|
};
|
|
7090
|
+
/**
|
|
7091
|
+
* Type definition for `AWS::QuickSight::Analysis.WaterfallChartColorConfiguration`.
|
|
7092
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-waterfallchartcolorconfiguration.html}
|
|
7093
|
+
*/
|
|
7094
|
+
export type WaterfallChartColorConfiguration = {
|
|
7095
|
+
GroupColorConfiguration?: WaterfallChartGroupColorConfiguration;
|
|
7096
|
+
};
|
|
7090
7097
|
/**
|
|
7091
7098
|
* Type definition for `AWS::QuickSight::Analysis.WaterfallChartConfiguration`.
|
|
7092
7099
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-waterfallchartconfiguration.html}
|
|
@@ -7094,6 +7101,7 @@ export type WaterfallChartAggregatedFieldWells = {
|
|
|
7094
7101
|
export type WaterfallChartConfiguration = {
|
|
7095
7102
|
CategoryAxisDisplayOptions?: AxisDisplayOptions;
|
|
7096
7103
|
CategoryAxisLabelOptions?: ChartAxisLabelOptions;
|
|
7104
|
+
ColorConfiguration?: WaterfallChartColorConfiguration;
|
|
7097
7105
|
DataLabels?: DataLabelOptions;
|
|
7098
7106
|
FieldWells?: WaterfallChartFieldWells;
|
|
7099
7107
|
Legend?: LegendOptions;
|
|
@@ -7110,6 +7118,24 @@ export type WaterfallChartConfiguration = {
|
|
|
7110
7118
|
export type WaterfallChartFieldWells = {
|
|
7111
7119
|
WaterfallChartAggregatedFieldWells?: WaterfallChartAggregatedFieldWells;
|
|
7112
7120
|
};
|
|
7121
|
+
/**
|
|
7122
|
+
* Type definition for `AWS::QuickSight::Analysis.WaterfallChartGroupColorConfiguration`.
|
|
7123
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-waterfallchartgroupcolorconfiguration.html}
|
|
7124
|
+
*/
|
|
7125
|
+
export type WaterfallChartGroupColorConfiguration = {
|
|
7126
|
+
/**
|
|
7127
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
7128
|
+
*/
|
|
7129
|
+
NegativeBarColor?: string;
|
|
7130
|
+
/**
|
|
7131
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
7132
|
+
*/
|
|
7133
|
+
PositiveBarColor?: string;
|
|
7134
|
+
/**
|
|
7135
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
7136
|
+
*/
|
|
7137
|
+
TotalBarColor?: string;
|
|
7138
|
+
};
|
|
7113
7139
|
/**
|
|
7114
7140
|
* Type definition for `AWS::QuickSight::Analysis.WaterfallChartOptions`.
|
|
7115
7141
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-waterfallchartoptions.html}
|
|
@@ -4007,7 +4007,7 @@ export type LineChartConfiguration = {
|
|
|
4007
4007
|
SecondaryYAxisLabelOptions?: ChartAxisLabelOptions;
|
|
4008
4008
|
/**
|
|
4009
4009
|
* @minLength `0`
|
|
4010
|
-
* @maxLength `
|
|
4010
|
+
* @maxLength `2000`
|
|
4011
4011
|
*/
|
|
4012
4012
|
Series?: SeriesItem[];
|
|
4013
4013
|
SmallMultiplesOptions?: SmallMultiplesOptions;
|
|
@@ -5038,7 +5038,7 @@ export type PivotTableCellConditionalFormatting = {
|
|
|
5038
5038
|
export type PivotTableConditionalFormatting = {
|
|
5039
5039
|
/**
|
|
5040
5040
|
* @minLength `0`
|
|
5041
|
-
* @maxLength `
|
|
5041
|
+
* @maxLength `500`
|
|
5042
5042
|
*/
|
|
5043
5043
|
ConditionalFormattingOptions?: PivotTableConditionalFormattingOption[];
|
|
5044
5044
|
};
|
|
@@ -6522,7 +6522,7 @@ export type TableCellStyle = {
|
|
|
6522
6522
|
export type TableConditionalFormatting = {
|
|
6523
6523
|
/**
|
|
6524
6524
|
* @minLength `0`
|
|
6525
|
-
* @maxLength `
|
|
6525
|
+
* @maxLength `500`
|
|
6526
6526
|
*/
|
|
6527
6527
|
ConditionalFormattingOptions?: TableConditionalFormattingOption[];
|
|
6528
6528
|
};
|
|
@@ -7384,6 +7384,13 @@ export type WaterfallChartAggregatedFieldWells = {
|
|
|
7384
7384
|
*/
|
|
7385
7385
|
Values?: MeasureField[];
|
|
7386
7386
|
};
|
|
7387
|
+
/**
|
|
7388
|
+
* Type definition for `AWS::QuickSight::Dashboard.WaterfallChartColorConfiguration`.
|
|
7389
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-waterfallchartcolorconfiguration.html}
|
|
7390
|
+
*/
|
|
7391
|
+
export type WaterfallChartColorConfiguration = {
|
|
7392
|
+
GroupColorConfiguration?: WaterfallChartGroupColorConfiguration;
|
|
7393
|
+
};
|
|
7387
7394
|
/**
|
|
7388
7395
|
* Type definition for `AWS::QuickSight::Dashboard.WaterfallChartConfiguration`.
|
|
7389
7396
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-waterfallchartconfiguration.html}
|
|
@@ -7391,6 +7398,7 @@ export type WaterfallChartAggregatedFieldWells = {
|
|
|
7391
7398
|
export type WaterfallChartConfiguration = {
|
|
7392
7399
|
CategoryAxisDisplayOptions?: AxisDisplayOptions;
|
|
7393
7400
|
CategoryAxisLabelOptions?: ChartAxisLabelOptions;
|
|
7401
|
+
ColorConfiguration?: WaterfallChartColorConfiguration;
|
|
7394
7402
|
DataLabels?: DataLabelOptions;
|
|
7395
7403
|
FieldWells?: WaterfallChartFieldWells;
|
|
7396
7404
|
Legend?: LegendOptions;
|
|
@@ -7407,6 +7415,24 @@ export type WaterfallChartConfiguration = {
|
|
|
7407
7415
|
export type WaterfallChartFieldWells = {
|
|
7408
7416
|
WaterfallChartAggregatedFieldWells?: WaterfallChartAggregatedFieldWells;
|
|
7409
7417
|
};
|
|
7418
|
+
/**
|
|
7419
|
+
* Type definition for `AWS::QuickSight::Dashboard.WaterfallChartGroupColorConfiguration`.
|
|
7420
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-waterfallchartgroupcolorconfiguration.html}
|
|
7421
|
+
*/
|
|
7422
|
+
export type WaterfallChartGroupColorConfiguration = {
|
|
7423
|
+
/**
|
|
7424
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
7425
|
+
*/
|
|
7426
|
+
NegativeBarColor?: string;
|
|
7427
|
+
/**
|
|
7428
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
7429
|
+
*/
|
|
7430
|
+
PositiveBarColor?: string;
|
|
7431
|
+
/**
|
|
7432
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
7433
|
+
*/
|
|
7434
|
+
TotalBarColor?: string;
|
|
7435
|
+
};
|
|
7410
7436
|
/**
|
|
7411
7437
|
* Type definition for `AWS::QuickSight::Dashboard.WaterfallChartOptions`.
|
|
7412
7438
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-waterfallchartoptions.html}
|
|
@@ -3794,7 +3794,7 @@ export type LineChartConfiguration = {
|
|
|
3794
3794
|
SecondaryYAxisLabelOptions?: ChartAxisLabelOptions;
|
|
3795
3795
|
/**
|
|
3796
3796
|
* @minLength `0`
|
|
3797
|
-
* @maxLength `
|
|
3797
|
+
* @maxLength `2000`
|
|
3798
3798
|
*/
|
|
3799
3799
|
Series?: SeriesItem[];
|
|
3800
3800
|
SmallMultiplesOptions?: SmallMultiplesOptions;
|
|
@@ -4783,7 +4783,7 @@ export type PivotTableCellConditionalFormatting = {
|
|
|
4783
4783
|
export type PivotTableConditionalFormatting = {
|
|
4784
4784
|
/**
|
|
4785
4785
|
* @minLength `0`
|
|
4786
|
-
* @maxLength `
|
|
4786
|
+
* @maxLength `500`
|
|
4787
4787
|
*/
|
|
4788
4788
|
ConditionalFormattingOptions?: PivotTableConditionalFormattingOption[];
|
|
4789
4789
|
};
|
|
@@ -6235,7 +6235,7 @@ export type TableCellStyle = {
|
|
|
6235
6235
|
export type TableConditionalFormatting = {
|
|
6236
6236
|
/**
|
|
6237
6237
|
* @minLength `0`
|
|
6238
|
-
* @maxLength `
|
|
6238
|
+
* @maxLength `500`
|
|
6239
6239
|
*/
|
|
6240
6240
|
ConditionalFormattingOptions?: TableConditionalFormattingOption[];
|
|
6241
6241
|
};
|
|
@@ -7239,6 +7239,13 @@ export type WaterfallChartAggregatedFieldWells = {
|
|
|
7239
7239
|
*/
|
|
7240
7240
|
Values?: MeasureField[];
|
|
7241
7241
|
};
|
|
7242
|
+
/**
|
|
7243
|
+
* Type definition for `AWS::QuickSight::Template.WaterfallChartColorConfiguration`.
|
|
7244
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-waterfallchartcolorconfiguration.html}
|
|
7245
|
+
*/
|
|
7246
|
+
export type WaterfallChartColorConfiguration = {
|
|
7247
|
+
GroupColorConfiguration?: WaterfallChartGroupColorConfiguration;
|
|
7248
|
+
};
|
|
7242
7249
|
/**
|
|
7243
7250
|
* Type definition for `AWS::QuickSight::Template.WaterfallChartConfiguration`.
|
|
7244
7251
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-waterfallchartconfiguration.html}
|
|
@@ -7246,6 +7253,7 @@ export type WaterfallChartAggregatedFieldWells = {
|
|
|
7246
7253
|
export type WaterfallChartConfiguration = {
|
|
7247
7254
|
CategoryAxisDisplayOptions?: AxisDisplayOptions;
|
|
7248
7255
|
CategoryAxisLabelOptions?: ChartAxisLabelOptions;
|
|
7256
|
+
ColorConfiguration?: WaterfallChartColorConfiguration;
|
|
7249
7257
|
DataLabels?: DataLabelOptions;
|
|
7250
7258
|
FieldWells?: WaterfallChartFieldWells;
|
|
7251
7259
|
Legend?: LegendOptions;
|
|
@@ -7262,6 +7270,24 @@ export type WaterfallChartConfiguration = {
|
|
|
7262
7270
|
export type WaterfallChartFieldWells = {
|
|
7263
7271
|
WaterfallChartAggregatedFieldWells?: WaterfallChartAggregatedFieldWells;
|
|
7264
7272
|
};
|
|
7273
|
+
/**
|
|
7274
|
+
* Type definition for `AWS::QuickSight::Template.WaterfallChartGroupColorConfiguration`.
|
|
7275
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-waterfallchartgroupcolorconfiguration.html}
|
|
7276
|
+
*/
|
|
7277
|
+
export type WaterfallChartGroupColorConfiguration = {
|
|
7278
|
+
/**
|
|
7279
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
7280
|
+
*/
|
|
7281
|
+
NegativeBarColor?: string;
|
|
7282
|
+
/**
|
|
7283
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
7284
|
+
*/
|
|
7285
|
+
PositiveBarColor?: string;
|
|
7286
|
+
/**
|
|
7287
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
7288
|
+
*/
|
|
7289
|
+
TotalBarColor?: string;
|
|
7290
|
+
};
|
|
7265
7291
|
/**
|
|
7266
7292
|
* Type definition for `AWS::QuickSight::Template.WaterfallChartOptions`.
|
|
7267
7293
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-waterfallchartoptions.html}
|