@awboost/cfn-resource-types 0.1.251 → 0.1.252
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-IVS-Channel.d.ts +26 -1
- package/lib/AWS-IVS-IngestConfiguration.d.ts +3 -1
- package/lib/AWS-IVS-PlaybackKeyPair.d.ts +1 -1
- package/lib/AWS-IVS-PublicKey.d.ts +1 -1
- package/lib/AWS-IVS-RecordingConfiguration.d.ts +3 -1
- package/lib/AWS-IVS-Stage.d.ts +4 -1
- package/lib/AWS-IVS-StorageConfiguration.d.ts +3 -1
- package/lib/AWS-IVS-StreamKey.d.ts +3 -1
- package/lib/AWS-S3-Bucket.d.ts +47 -5
- package/package.json +1 -1
package/lib/AWS-IVS-Channel.d.ts
CHANGED
|
@@ -9,6 +9,10 @@ export type IVSChannelProperties = {
|
|
|
9
9
|
* Whether the channel is authorized.
|
|
10
10
|
*/
|
|
11
11
|
Authorized?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* Indicates which content-packaging format is used (MPEG-TS or fMP4). If multitrackInputConfiguration is specified and enabled is true, then containerFormat is required and must be set to FRAGMENTED_MP4. Otherwise, containerFormat may be set to TS or FRAGMENTED_MP4. Default: TS.
|
|
14
|
+
*/
|
|
15
|
+
ContainerFormat?: "TS" | "FRAGMENTED_MP4";
|
|
12
16
|
/**
|
|
13
17
|
* Whether the channel allows insecure ingest.
|
|
14
18
|
*/
|
|
@@ -17,6 +21,7 @@ export type IVSChannelProperties = {
|
|
|
17
21
|
* Channel latency mode.
|
|
18
22
|
*/
|
|
19
23
|
LatencyMode?: "NORMAL" | "LOW";
|
|
24
|
+
MultitrackInputConfiguration?: MultitrackInputConfiguration;
|
|
20
25
|
/**
|
|
21
26
|
* Channel
|
|
22
27
|
* @minLength `0`
|
|
@@ -66,18 +71,38 @@ export type IVSChannelAttributes = {
|
|
|
66
71
|
*/
|
|
67
72
|
PlaybackUrl: string;
|
|
68
73
|
};
|
|
74
|
+
/**
|
|
75
|
+
* Type definition for `AWS::IVS::Channel.MultitrackInputConfiguration`.
|
|
76
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-channel-multitrackinputconfiguration.html}
|
|
77
|
+
*/
|
|
78
|
+
export type MultitrackInputConfiguration = {
|
|
79
|
+
/**
|
|
80
|
+
* Indicates whether multitrack input is enabled. Can be set to true only if channel type is STANDARD. Setting enabled to true with any other channel type will cause an exception. If true, then policy, maximumResolution, and containerFormat are required, and containerFormat must be set to FRAGMENTED_MP4. Default: false.
|
|
81
|
+
*/
|
|
82
|
+
Enabled?: boolean;
|
|
83
|
+
/**
|
|
84
|
+
* Maximum resolution for multitrack input. Required if enabled is true.
|
|
85
|
+
*/
|
|
86
|
+
MaximumResolution?: "SD" | "HD" | "FULL_HD";
|
|
87
|
+
/**
|
|
88
|
+
* Indicates whether multitrack input is allowed or required. Required if enabled is true.
|
|
89
|
+
*/
|
|
90
|
+
Policy?: "ALLOW" | "REQUIRE";
|
|
91
|
+
};
|
|
69
92
|
/**
|
|
70
93
|
* Type definition for `AWS::IVS::Channel.Tag`.
|
|
71
94
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-channel-tag.html}
|
|
72
95
|
*/
|
|
73
96
|
export type Tag = {
|
|
74
97
|
/**
|
|
98
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
75
99
|
* @minLength `1`
|
|
76
100
|
* @maxLength `128`
|
|
77
101
|
*/
|
|
78
102
|
Key: string;
|
|
79
103
|
/**
|
|
80
|
-
*
|
|
104
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
105
|
+
* @minLength `0`
|
|
81
106
|
* @maxLength `256`
|
|
82
107
|
*/
|
|
83
108
|
Value: string;
|
|
@@ -71,12 +71,14 @@ export type IVSIngestConfigurationAttributes = {
|
|
|
71
71
|
*/
|
|
72
72
|
export type Tag = {
|
|
73
73
|
/**
|
|
74
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
74
75
|
* @minLength `1`
|
|
75
76
|
* @maxLength `128`
|
|
76
77
|
*/
|
|
77
78
|
Key: string;
|
|
78
79
|
/**
|
|
79
|
-
*
|
|
80
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
81
|
+
* @minLength `0`
|
|
80
82
|
* @maxLength `256`
|
|
81
83
|
*/
|
|
82
84
|
Value: string;
|
|
@@ -13,7 +13,7 @@ export type IVSPlaybackKeyPairProperties = {
|
|
|
13
13
|
*/
|
|
14
14
|
Name?: string;
|
|
15
15
|
/**
|
|
16
|
-
* The public portion of a customer-generated key pair.
|
|
16
|
+
* The public portion of a customer-generated key pair. This field is required to create the AWS::IVS::PlaybackKeyPair resource.
|
|
17
17
|
*/
|
|
18
18
|
PublicKeyMaterial?: string;
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@ export type IVSPublicKeyProperties = {
|
|
|
13
13
|
*/
|
|
14
14
|
Name?: string;
|
|
15
15
|
/**
|
|
16
|
-
* The public portion of a customer-generated key pair.
|
|
16
|
+
* The public portion of a customer-generated key pair. This field is required to create the AWS::IVS::PublicKey resource.
|
|
17
17
|
* @pattern `-----BEGIN PUBLIC KEY-----\r?\n([a-zA-Z0-9+/=\r\n]+)\r?\n-----END PUBLIC KEY-----(\r?\n)?`
|
|
18
18
|
*/
|
|
19
19
|
PublicKeyMaterial?: string;
|
|
@@ -100,12 +100,14 @@ export type S3DestinationConfiguration = {
|
|
|
100
100
|
*/
|
|
101
101
|
export type Tag = {
|
|
102
102
|
/**
|
|
103
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
103
104
|
* @minLength `1`
|
|
104
105
|
* @maxLength `128`
|
|
105
106
|
*/
|
|
106
107
|
Key: string;
|
|
107
108
|
/**
|
|
108
|
-
*
|
|
109
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
110
|
+
* @minLength `0`
|
|
109
111
|
* @maxLength `256`
|
|
110
112
|
*/
|
|
111
113
|
Value: string;
|
package/lib/AWS-IVS-Stage.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export type IVSStageProperties = {
|
|
|
18
18
|
Name?: string;
|
|
19
19
|
/**
|
|
20
20
|
* An array of key-value pairs to apply to this resource.
|
|
21
|
+
* @maxLength `50`
|
|
21
22
|
*/
|
|
22
23
|
Tags?: Tag[];
|
|
23
24
|
};
|
|
@@ -66,12 +67,14 @@ export type AutoParticipantRecordingConfiguration = {
|
|
|
66
67
|
*/
|
|
67
68
|
export type Tag = {
|
|
68
69
|
/**
|
|
70
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
69
71
|
* @minLength `1`
|
|
70
72
|
* @maxLength `128`
|
|
71
73
|
*/
|
|
72
74
|
Key: string;
|
|
73
75
|
/**
|
|
74
|
-
*
|
|
76
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
77
|
+
* @minLength `0`
|
|
75
78
|
* @maxLength `256`
|
|
76
79
|
*/
|
|
77
80
|
Value: string;
|
|
@@ -55,12 +55,14 @@ export type S3StorageConfiguration = {
|
|
|
55
55
|
*/
|
|
56
56
|
export type Tag = {
|
|
57
57
|
/**
|
|
58
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
58
59
|
* @minLength `1`
|
|
59
60
|
* @maxLength `128`
|
|
60
61
|
*/
|
|
61
62
|
Key: string;
|
|
62
63
|
/**
|
|
63
|
-
*
|
|
64
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
65
|
+
* @minLength `0`
|
|
64
66
|
* @maxLength `256`
|
|
65
67
|
*/
|
|
66
68
|
Value: string;
|
|
@@ -39,12 +39,14 @@ export type IVSStreamKeyAttributes = {
|
|
|
39
39
|
*/
|
|
40
40
|
export type Tag = {
|
|
41
41
|
/**
|
|
42
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
42
43
|
* @minLength `1`
|
|
43
44
|
* @maxLength `128`
|
|
44
45
|
*/
|
|
45
46
|
Key: string;
|
|
46
47
|
/**
|
|
47
|
-
*
|
|
48
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
49
|
+
* @minLength `0`
|
|
48
50
|
* @maxLength `256`
|
|
49
51
|
*/
|
|
50
52
|
Value: string;
|
package/lib/AWS-S3-Bucket.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export type S3BucketProperties = {
|
|
|
27
27
|
*/
|
|
28
28
|
BucketEncryption?: BucketEncryption;
|
|
29
29
|
/**
|
|
30
|
-
* A name for the bucket. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the bucket name. The bucket name must contain only lowercase letters, numbers, periods (.), and dashes (-) and must follow [Amazon S3 bucket restrictions and limitations](https://docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html). For more information, see [Rules for naming Amazon S3 buckets](https://docs.aws.amazon.com/AmazonS3/latest/
|
|
30
|
+
* A name for the bucket. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the bucket name. The bucket name must contain only lowercase letters, numbers, periods (.), and dashes (-) and must follow [Amazon S3 bucket restrictions and limitations](https://docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html). For more information, see [Rules for naming Amazon S3 buckets](https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html) in the *Amazon S3 User Guide*.
|
|
31
31
|
If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you need to replace the resource, specify a new name.
|
|
32
32
|
*/
|
|
33
33
|
BucketName?: string;
|
|
@@ -51,6 +51,7 @@ export type S3BucketProperties = {
|
|
|
51
51
|
* Settings that define where logs are stored.
|
|
52
52
|
*/
|
|
53
53
|
LoggingConfiguration?: LoggingConfiguration;
|
|
54
|
+
MetadataTableConfiguration?: MetadataTableConfiguration;
|
|
54
55
|
/**
|
|
55
56
|
* Specifies a metrics configuration for the CloudWatch request metrics (specified by the metrics configuration ID) from an Amazon S3 bucket. If you're updating an existing metrics configuration, note that this is a full replacement of the existing metrics configuration. If you don't include the elements you want to keep, they are erased. For more information, see [PutBucketMetricsConfiguration](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTMetricConfiguration.html).
|
|
56
57
|
*/
|
|
@@ -60,7 +61,7 @@ export type S3BucketProperties = {
|
|
|
60
61
|
*/
|
|
61
62
|
NotificationConfiguration?: NotificationConfiguration;
|
|
62
63
|
/**
|
|
63
|
-
* This operation is not supported
|
|
64
|
+
* This operation is not supported for directory buckets.
|
|
64
65
|
Places an Object Lock configuration on the specified bucket. The rule specified in the Object Lock configuration will be applied by default to every new object placed in the specified bucket. For more information, see [Locking Objects](https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html).
|
|
65
66
|
+ The ``DefaultRetention`` settings require both a mode and a period.
|
|
66
67
|
+ The ``DefaultRetention`` period can be either ``Days`` or ``Years`` but you must select one. You cannot specify ``Days`` and ``Years`` at the same time.
|
|
@@ -109,6 +110,18 @@ export type S3BucketAttributes = {
|
|
|
109
110
|
Arn: string;
|
|
110
111
|
DomainName: string;
|
|
111
112
|
DualStackDomainName: string;
|
|
113
|
+
MetadataTableConfiguration: {
|
|
114
|
+
S3TablesDestination: {
|
|
115
|
+
/**
|
|
116
|
+
* The Amazon Resource Name (ARN) for the metadata table in the metadata table configuration. The specified metadata table name must be unique within the <code>aws_s3_metadata</code> namespace in the destination table bucket.
|
|
117
|
+
*/
|
|
118
|
+
TableArn: string;
|
|
119
|
+
/**
|
|
120
|
+
* The table bucket namespace for the metadata table in your metadata table configuration. This value is always <code>aws_s3_metadata</code>.
|
|
121
|
+
*/
|
|
122
|
+
TableNamespace: string;
|
|
123
|
+
};
|
|
124
|
+
};
|
|
112
125
|
RegionalDomainName: string;
|
|
113
126
|
WebsiteURL: string;
|
|
114
127
|
};
|
|
@@ -433,6 +446,14 @@ export type LifecycleConfiguration = {
|
|
|
433
446
|
* A lifecycle rule for individual objects in an Amazon S3 bucket.
|
|
434
447
|
*/
|
|
435
448
|
Rules: Rule[];
|
|
449
|
+
/**
|
|
450
|
+
* Indicates which default minimum object size behavior is applied to the lifecycle configuration.
|
|
451
|
+
This parameter applies to general purpose buckets only. It isn't supported for directory bucket lifecycle configurations.
|
|
452
|
+
+ ``all_storage_classes_128K`` - Objects smaller than 128 KB will not transition to any storage class by default.
|
|
453
|
+
+ ``varies_by_storage_class`` - Objects smaller than 128 KB will transition to Glacier Flexible Retrieval or Glacier Deep Archive storage classes. By default, all other storage classes will prevent transitions smaller than 128 KB.
|
|
454
|
+
|
|
455
|
+
To customize the minimum object size for any transition you can add a filter that specifies a custom ``ObjectSizeGreaterThan`` or ``ObjectSizeLessThan`` in the body of your transition rule. Custom filters always take precedence over the default transition behavior.
|
|
456
|
+
*/
|
|
436
457
|
TransitionDefaultMinimumObjectSize?: "varies_by_storage_class" | "all_storage_classes_128K";
|
|
437
458
|
};
|
|
438
459
|
/**
|
|
@@ -455,6 +476,13 @@ export type LoggingConfiguration = {
|
|
|
455
476
|
*/
|
|
456
477
|
TargetObjectKeyFormat?: TargetObjectKeyFormat;
|
|
457
478
|
};
|
|
479
|
+
/**
|
|
480
|
+
* Type definition for `AWS::S3::Bucket.MetadataTableConfiguration`.
|
|
481
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatatableconfiguration.html}
|
|
482
|
+
*/
|
|
483
|
+
export type MetadataTableConfiguration = {
|
|
484
|
+
S3TablesDestination: S3TablesDestination;
|
|
485
|
+
};
|
|
458
486
|
/**
|
|
459
487
|
* Type definition for `AWS::S3::Bucket.Metrics`.
|
|
460
488
|
* A container specifying replication metrics-related settings enabling replication metrics and events.
|
|
@@ -1025,11 +1053,25 @@ export type S3KeyFilter = {
|
|
|
1025
1053
|
*/
|
|
1026
1054
|
Rules: FilterRule[];
|
|
1027
1055
|
};
|
|
1056
|
+
/**
|
|
1057
|
+
* Type definition for `AWS::S3::Bucket.S3TablesDestination`.
|
|
1058
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-s3tablesdestination.html}
|
|
1059
|
+
*/
|
|
1060
|
+
export type S3TablesDestination = {
|
|
1061
|
+
/**
|
|
1062
|
+
* The Amazon Resource Name (ARN) for the table bucket that's specified as the destination in the metadata table configuration. The destination table bucket must be in the same Region and AWS account as the general purpose bucket.
|
|
1063
|
+
*/
|
|
1064
|
+
TableBucketArn: string;
|
|
1065
|
+
/**
|
|
1066
|
+
* The name for the metadata table in your metadata table configuration. The specified metadata table name must be unique within the <code>aws_s3_metadata</code> namespace in the destination table bucket.
|
|
1067
|
+
*/
|
|
1068
|
+
TableName: string;
|
|
1069
|
+
};
|
|
1028
1070
|
/**
|
|
1029
1071
|
* Type definition for `AWS::S3::Bucket.ServerSideEncryptionByDefault`.
|
|
1030
1072
|
* Describes the default server-side encryption to apply to new objects in the bucket. If a PUT Object request doesn't specify any server-side encryption, this default encryption will be applied. For more information, see [PutBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTencryption.html).
|
|
1031
1073
|
+ *General purpose buckets* - If you don't specify a customer managed key at configuration, Amazon S3 automatically creates an AWS KMS key (``aws/s3``) in your AWS account the first time that you add an object encrypted with SSE-KMS to a bucket. By default, Amazon S3 uses this KMS key for SSE-KMS.
|
|
1032
|
-
+ *Directory buckets* - Your SSE-KMS configuration can only support 1 [customer managed key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk) per directory bucket
|
|
1074
|
+
+ *Directory buckets* - Your SSE-KMS configuration can only support 1 [customer managed key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk) per directory bucket's lifetime. The [managed key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk) (``aws/s3``) isn't supported.
|
|
1033
1075
|
+ *Directory buckets* - For directory buckets, there are only two supported options for server-side encryption: SSE-S3 and SSE-KMS.
|
|
1034
1076
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-serversideencryptionbydefault.html}
|
|
1035
1077
|
*/
|
|
@@ -1132,7 +1174,7 @@ export type Tag = {
|
|
|
1132
1174
|
};
|
|
1133
1175
|
/**
|
|
1134
1176
|
* Type definition for `AWS::S3::Bucket.TagFilter`.
|
|
1135
|
-
* Specifies tags to use to identify a subset of objects for an Amazon S3 bucket.
|
|
1177
|
+
* Specifies tags to use to identify a subset of objects for an Amazon S3 bucket. For more information, see [Categorizing your storage using tags](https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-tagging.html) in the *Amazon Simple Storage Service User Guide*.
|
|
1136
1178
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-tagfilter.html}
|
|
1137
1179
|
*/
|
|
1138
1180
|
export type TagFilter = {
|
|
@@ -1213,7 +1255,7 @@ export type Transition = {
|
|
|
1213
1255
|
*/
|
|
1214
1256
|
TransitionDate?: string;
|
|
1215
1257
|
/**
|
|
1216
|
-
* Indicates the number of days after creation when objects are transitioned to the specified storage class.
|
|
1258
|
+
* Indicates the number of days after creation when objects are transitioned to the specified storage class. If the specified storage class is ``INTELLIGENT_TIERING``, ``GLACIER_IR``, ``GLACIER``, or ``DEEP_ARCHIVE``, valid values are ``0`` or positive integers. If the specified storage class is ``STANDARD_IA`` or ``ONEZONE_IA``, valid values are positive integers greater than ``30``. Be aware that some storage classes have a minimum storage duration and that you're charged for transitioning objects before their minimum storage duration. For more information, see [Constraints and considerations for transitions](https://docs.aws.amazon.com/AmazonS3/latest/userguide/lifecycle-transition-general-considerations.html#lifecycle-configuration-constraints) in the *Amazon S3 User Guide*.
|
|
1217
1259
|
*/
|
|
1218
1260
|
TransitionInDays?: number;
|
|
1219
1261
|
};
|