@awboost/cfn-resource-types 0.1.357 → 0.1.358
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-DynamoDB-Table.d.ts +2 -2
- package/lib/AWS-EC2-Subnet.d.ts +7 -1
- package/lib/AWS-EC2-TrafficMirrorFilter.d.ts +21 -3
- package/lib/AWS-EC2-TrafficMirrorFilter.js +1 -1
- package/lib/AWS-MediaTailor-PlaybackConfiguration.d.ts +52 -0
- package/lib/AWS-RDS-DBCluster.d.ts +2 -2
- package/lib/AWS-RDS-DBInstance.d.ts +1 -1
- package/lib/AWS-RUM-AppMonitor.d.ts +1 -1
- package/lib/AWS-Synthetics-Canary.d.ts +4 -0
- package/package.json +1 -1
|
@@ -184,7 +184,7 @@ export type GlobalSecondaryIndex = {
|
|
|
184
184
|
*/
|
|
185
185
|
KeySchema: KeySchema[];
|
|
186
186
|
/**
|
|
187
|
-
* The maximum number of read and write units for the specified global secondary index. If you use this parameter, you must specify ``MaxReadRequestUnits``, ``MaxWriteRequestUnits``, or both.
|
|
187
|
+
* The maximum number of read and write units for the specified global secondary index. If you use this parameter, you must specify ``MaxReadRequestUnits``, ``MaxWriteRequestUnits``, or both. You must use either ``OnDemandThroughput`` or ``ProvisionedThroughput`` based on your table's capacity mode.
|
|
188
188
|
*/
|
|
189
189
|
OnDemandThroughput?: OnDemandThroughput;
|
|
190
190
|
/**
|
|
@@ -192,7 +192,7 @@ export type GlobalSecondaryIndex = {
|
|
|
192
192
|
*/
|
|
193
193
|
Projection: Projection;
|
|
194
194
|
/**
|
|
195
|
-
* Represents the provisioned throughput settings for the specified global secondary index.
|
|
195
|
+
* Represents the provisioned throughput settings for the specified global secondary index. You must use either ``OnDemandThroughput`` or ``ProvisionedThroughput`` based on your table's capacity mode.
|
|
196
196
|
For current minimum and maximum provisioned throughput values, see [Service, Account, and Table Quotas](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) in the *Amazon DynamoDB Developer Guide*.
|
|
197
197
|
*/
|
|
198
198
|
ProvisionedThroughput?: ProvisionedThroughput;
|
package/lib/AWS-EC2-Subnet.d.ts
CHANGED
|
@@ -63,7 +63,7 @@ export type EC2SubnetProperties = {
|
|
|
63
63
|
Ipv6NetmaskLength?: number;
|
|
64
64
|
/**
|
|
65
65
|
* Indicates whether instances launched in this subnet receive a public IPv4 address. The default value is ``false``.
|
|
66
|
-
|
|
66
|
+
AWS charges for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the *Public IPv4 Address* tab on the [VPC pricing page](https://docs.aws.amazon.com/vpc/pricing/).
|
|
67
67
|
*/
|
|
68
68
|
MapPublicIpOnLaunch?: boolean;
|
|
69
69
|
/**
|
|
@@ -97,6 +97,12 @@ export type EC2SubnetProperties = {
|
|
|
97
97
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#aws-resource-ec2-subnet-return-values}
|
|
98
98
|
*/
|
|
99
99
|
export type EC2SubnetAttributes = {
|
|
100
|
+
BlockPublicAccessStates: {
|
|
101
|
+
/**
|
|
102
|
+
* The mode of VPC BPA. Options here are off, block-bidirectional, block-ingress
|
|
103
|
+
*/
|
|
104
|
+
InternetGatewayBlockMode: string;
|
|
105
|
+
};
|
|
100
106
|
Ipv6CidrBlocks: string[];
|
|
101
107
|
NetworkAclAssociationId: string;
|
|
102
108
|
SubnetId: string;
|
|
@@ -1,12 +1,21 @@
|
|
|
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
|
-
* Resource
|
|
4
|
+
* Resource schema for AWS::EC2::TrafficMirrorFilter
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html}
|
|
6
6
|
*/
|
|
7
7
|
export type EC2TrafficMirrorFilterProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The description of a traffic mirror filter.
|
|
10
|
+
*/
|
|
8
11
|
Description?: string;
|
|
9
|
-
|
|
12
|
+
/**
|
|
13
|
+
* The network service that is associated with the traffic mirror filter.
|
|
14
|
+
*/
|
|
15
|
+
NetworkServices?: TrafficMirrorNetworkService[];
|
|
16
|
+
/**
|
|
17
|
+
* The tags for a traffic mirror filter.
|
|
18
|
+
*/
|
|
10
19
|
Tags?: Tag[];
|
|
11
20
|
};
|
|
12
21
|
/**
|
|
@@ -14,6 +23,9 @@ export type EC2TrafficMirrorFilterProperties = {
|
|
|
14
23
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#aws-resource-ec2-trafficmirrorfilter-return-values}
|
|
15
24
|
*/
|
|
16
25
|
export type EC2TrafficMirrorFilterAttributes = {
|
|
26
|
+
/**
|
|
27
|
+
* The ID of a traffic mirror filter.
|
|
28
|
+
*/
|
|
17
29
|
Id: string;
|
|
18
30
|
};
|
|
19
31
|
/**
|
|
@@ -25,7 +37,13 @@ export type Tag = {
|
|
|
25
37
|
Value: string;
|
|
26
38
|
};
|
|
27
39
|
/**
|
|
28
|
-
*
|
|
40
|
+
* Type definition for `AWS::EC2::TrafficMirrorFilter.TrafficMirrorNetworkService`.
|
|
41
|
+
* The network service traffic that is associated with the traffic mirror filter.
|
|
42
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilter-trafficmirrornetworkservice.html}
|
|
43
|
+
*/
|
|
44
|
+
export type TrafficMirrorNetworkService = "amazon-dns";
|
|
45
|
+
/**
|
|
46
|
+
* Resource schema for AWS::EC2::TrafficMirrorFilter
|
|
29
47
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html}
|
|
30
48
|
*/
|
|
31
49
|
export declare class EC2TrafficMirrorFilter extends $Resource<"AWS::EC2::TrafficMirrorFilter", EC2TrafficMirrorFilterProperties, EC2TrafficMirrorFilterAttributes> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource schema for AWS::EC2::TrafficMirrorFilter
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html}
|
|
5
5
|
*/
|
|
6
6
|
export class EC2TrafficMirrorFilter extends $Resource {
|
|
@@ -37,6 +37,10 @@ export type MediaTailorPlaybackConfigurationProperties = {
|
|
|
37
37
|
* The configuration for pre-roll ad insertion.
|
|
38
38
|
*/
|
|
39
39
|
LivePreRollConfiguration?: LivePreRollConfiguration;
|
|
40
|
+
/**
|
|
41
|
+
* The configuration that defines where AWS Elemental MediaTailor sends logs for the playback configuration.
|
|
42
|
+
*/
|
|
43
|
+
LogConfiguration?: LogConfiguration;
|
|
40
44
|
/**
|
|
41
45
|
* The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.
|
|
42
46
|
*/
|
|
@@ -124,6 +128,20 @@ export type AdMarkerPassthrough = {
|
|
|
124
128
|
*/
|
|
125
129
|
Enabled?: boolean;
|
|
126
130
|
};
|
|
131
|
+
/**
|
|
132
|
+
* Type definition for `AWS::MediaTailor::PlaybackConfiguration.AdsInteractionLog`.
|
|
133
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-adsinteractionlog.html}
|
|
134
|
+
*/
|
|
135
|
+
export type AdsInteractionLog = {
|
|
136
|
+
/**
|
|
137
|
+
* Indicates that MediaTailor won't emit the selected events in the logs for playback sessions that are initialized with this configuration.
|
|
138
|
+
*/
|
|
139
|
+
ExcludeEventTypes?: string[];
|
|
140
|
+
/**
|
|
141
|
+
* Indicates that MediaTailor emits RAW_ADS_RESPONSE logs for playback sessions that are initialized with this configuration.
|
|
142
|
+
*/
|
|
143
|
+
PublishOptInEventTypes?: string[];
|
|
144
|
+
};
|
|
127
145
|
/**
|
|
128
146
|
* Type definition for `AWS::MediaTailor::PlaybackConfiguration.AvailSuppression`.
|
|
129
147
|
* The configuration for avail suppression, also known as ad suppression. For more information about ad suppression, see Ad Suppression (https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html).
|
|
@@ -209,6 +227,30 @@ export type LivePreRollConfiguration = {
|
|
|
209
227
|
*/
|
|
210
228
|
MaxDurationSeconds?: number;
|
|
211
229
|
};
|
|
230
|
+
/**
|
|
231
|
+
* Type definition for `AWS::MediaTailor::PlaybackConfiguration.LogConfiguration`.
|
|
232
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-logconfiguration.html}
|
|
233
|
+
*/
|
|
234
|
+
export type LogConfiguration = {
|
|
235
|
+
/**
|
|
236
|
+
* The event types that MediaTailor emits in logs for interactions with the ADS.
|
|
237
|
+
*/
|
|
238
|
+
AdsInteractionLog?: AdsInteractionLog;
|
|
239
|
+
/**
|
|
240
|
+
* The method used for collecting logs from AWS Elemental MediaTailor. To configure MediaTailor to send logs directly to Amazon CloudWatch Logs, choose LEGACY_CLOUDWATCH. To configure MediaTailor to send logs to CloudWatch, which then vends the logs to your destination of choice, choose VENDED_LOGS. Supported destinations are CloudWatch Logs log group, Amazon S3 bucket, and Amazon Data Firehose stream. To use vended logs, you must configure the delivery destination in Amazon CloudWatch
|
|
241
|
+
*/
|
|
242
|
+
EnabledLoggingStrategies?: string[];
|
|
243
|
+
/**
|
|
244
|
+
* The event types that MediaTailor emits in logs for interactions with the origin server.
|
|
245
|
+
*/
|
|
246
|
+
ManifestServiceInteractionLog?: ManifestServiceInteractionLog;
|
|
247
|
+
/**
|
|
248
|
+
* The percentage of session logs that MediaTailor sends to your CloudWatch Logs account. For example, if your playback configuration has 1000 sessions and percentEnabled is set to 60, MediaTailor sends logs for 600 of the sessions to CloudWatch Logs. MediaTailor decides at random which of the playback configuration sessions to send logs for. If you want to view logs for a specific session, you can use the debug log mode.
|
|
249
|
+
* @min `0`
|
|
250
|
+
* @max `100`
|
|
251
|
+
*/
|
|
252
|
+
PercentEnabled: number;
|
|
253
|
+
};
|
|
212
254
|
/**
|
|
213
255
|
* Type definition for `AWS::MediaTailor::PlaybackConfiguration.ManifestProcessingRules`.
|
|
214
256
|
* The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.
|
|
@@ -220,6 +262,16 @@ export type ManifestProcessingRules = {
|
|
|
220
262
|
*/
|
|
221
263
|
AdMarkerPassthrough?: AdMarkerPassthrough;
|
|
222
264
|
};
|
|
265
|
+
/**
|
|
266
|
+
* Type definition for `AWS::MediaTailor::PlaybackConfiguration.ManifestServiceInteractionLog`.
|
|
267
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-manifestserviceinteractionlog.html}
|
|
268
|
+
*/
|
|
269
|
+
export type ManifestServiceInteractionLog = {
|
|
270
|
+
/**
|
|
271
|
+
* Indicates that MediaTailor won't emit the selected events in the logs for playback sessions that are initialized with this configuration.
|
|
272
|
+
*/
|
|
273
|
+
ExcludeEventTypes?: string[];
|
|
274
|
+
};
|
|
223
275
|
/**
|
|
224
276
|
* Type definition for `AWS::MediaTailor::PlaybackConfiguration.StreamingMediaFileConditioning`.
|
|
225
277
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-streamingmediafileconditioning.html}
|
|
@@ -197,8 +197,8 @@ export type RDSDBClusterProperties = {
|
|
|
197
197
|
* The life cycle type for this DB cluster.
|
|
198
198
|
By default, this value is set to ``open-source-rds-extended-support``, which enrolls your DB cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to ``open-source-rds-extended-support-disabled``. In this case, creating the DB cluster will fail if the DB major version is past its end of standard support date.
|
|
199
199
|
You can use this setting to enroll your DB cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB cluster past the end of standard support for that engine version. For more information, see the following sections:
|
|
200
|
-
+ Amazon Aurora - [
|
|
201
|
-
+ Amazon RDS - [
|
|
200
|
+
+ Amazon Aurora - [Amazon RDS Extended Support with Amazon Aurora](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html) in the *Amazon Aurora User Guide*
|
|
201
|
+
+ Amazon RDS - [Amazon RDS Extended Support with Amazon RDS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html) in the *Amazon RDS User Guide*
|
|
202
202
|
|
|
203
203
|
Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
204
204
|
Valid Values: ``open-source-rds-extended-support | open-source-rds-extended-support-disabled``
|
|
@@ -432,7 +432,7 @@ export type RDSDBInstanceProperties = {
|
|
|
432
432
|
* The life cycle type for this DB instance.
|
|
433
433
|
By default, this value is set to ``open-source-rds-extended-support``, which enrolls your DB instance into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to ``open-source-rds-extended-support-disabled``. In this case, creating the DB instance will fail if the DB major version is past its end of standard support date.
|
|
434
434
|
This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster.
|
|
435
|
-
You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see [
|
|
435
|
+
You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see [Amazon RDS Extended Support with Amazon RDS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html) in the *Amazon RDS User Guide*.
|
|
436
436
|
Valid Values: ``open-source-rds-extended-support | open-source-rds-extended-support-disabled``
|
|
437
437
|
Default: ``open-source-rds-extended-support``
|
|
438
438
|
*/
|
|
@@ -152,7 +152,7 @@ export type DeobfuscationConfiguration = {
|
|
|
152
152
|
JavaScriptSourceMaps?: {
|
|
153
153
|
/**
|
|
154
154
|
* The S3Uri of the bucket or folder that stores the source map files. It is required if status is ENABLED.
|
|
155
|
-
* @pattern `^s3://[a-z0-9][-.a-z0-9]{1,
|
|
155
|
+
* @pattern `^s3://[a-z0-9][-.a-z0-9]{1,62}(?:/[-!_*'().a-z0-9A-Z]+(?:/[-!_*'().a-z0-9A-Z]+)*)?/?$`
|
|
156
156
|
*/
|
|
157
157
|
S3Uri?: string;
|
|
158
158
|
/**
|
|
@@ -161,6 +161,10 @@ export type RunConfig = {
|
|
|
161
161
|
* Environment variable key-value pairs.
|
|
162
162
|
*/
|
|
163
163
|
EnvironmentVariables?: Record<string, string>;
|
|
164
|
+
/**
|
|
165
|
+
* Provide ephemeralStorage available for canary in MB
|
|
166
|
+
*/
|
|
167
|
+
EphemeralStorage?: number;
|
|
164
168
|
/**
|
|
165
169
|
* Provide maximum memory available for canary in MB
|
|
166
170
|
*/
|