@awboost/cfn-resource-types 0.1.508 → 0.1.510

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.
@@ -33,6 +33,7 @@ export type ARCRegionSwitchPlanProperties = {
33
33
  * @maxLength `2`
34
34
  */
35
35
  Regions: string[];
36
+ ReportConfiguration?: ReportConfiguration;
36
37
  Tags?: Tags;
37
38
  Triggers?: Trigger[];
38
39
  Workflows: Workflow[];
@@ -148,6 +149,40 @@ export type CustomActionLambdaConfiguration = {
148
149
  TimeoutMinutes?: number;
149
150
  Ungraceful?: LambdaUngraceful;
150
151
  };
152
+ /**
153
+ * Type definition for `AWS::ARCRegionSwitch::Plan.DocumentDbConfiguration`.
154
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbconfiguration.html}
155
+ */
156
+ export type DocumentDbConfiguration = {
157
+ Behavior: any;
158
+ /**
159
+ * @pattern `^arn:aws[a-zA-Z0-9-]*:iam::[0-9]{12}:role/.+$`
160
+ */
161
+ CrossAccountRole?: string;
162
+ DatabaseClusterArns: string[];
163
+ ExternalId?: string;
164
+ /**
165
+ * @pattern `^[A-Za-z][0-9A-Za-z-:._]*$`
166
+ */
167
+ GlobalClusterIdentifier: string;
168
+ /**
169
+ * @min `1`
170
+ */
171
+ TimeoutMinutes?: number;
172
+ Ungraceful?: DocumentDbUngraceful;
173
+ };
174
+ /**
175
+ * Type definition for `AWS::ARCRegionSwitch::Plan.DocumentDbUngraceful`.
176
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbungraceful.html}
177
+ */
178
+ export type DocumentDbUngraceful = {
179
+ Ungraceful?: DocumentDbUngracefulBehavior;
180
+ };
181
+ /**
182
+ * Type definition for `AWS::ARCRegionSwitch::Plan.DocumentDbUngracefulBehavior`.
183
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbungracefulbehavior.html}
184
+ */
185
+ export type DocumentDbUngracefulBehavior = "failover";
151
186
  /**
152
187
  * Type definition for `AWS::ARCRegionSwitch::Plan.Ec2AsgCapacityIncreaseConfiguration`.
153
188
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-ec2asgcapacityincreaseconfiguration.html}
@@ -292,12 +327,14 @@ export type ExecutionBlockConfiguration = {
292
327
  EksResourceScalingConfig: EksResourceScalingConfiguration;
293
328
  } | {
294
329
  Route53HealthCheckConfig: Route53HealthCheckConfiguration;
330
+ } | {
331
+ DocumentDbConfig: DocumentDbConfiguration;
295
332
  };
296
333
  /**
297
334
  * Type definition for `AWS::ARCRegionSwitch::Plan.ExecutionBlockType`.
298
335
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-executionblocktype.html}
299
336
  */
300
- export type ExecutionBlockType = "CustomActionLambda" | "ManualApproval" | "AuroraGlobalDatabase" | "EC2AutoScaling" | "ARCRoutingControl" | "ARCRegionSwitchPlan" | "Parallel" | "ECSServiceScaling" | "EKSResourceScaling" | "Route53HealthCheck";
337
+ export type ExecutionBlockType = "CustomActionLambda" | "ManualApproval" | "AuroraGlobalDatabase" | "EC2AutoScaling" | "ARCRoutingControl" | "ARCRegionSwitchPlan" | "Parallel" | "ECSServiceScaling" | "EKSResourceScaling" | "Route53HealthCheck" | "DocumentDb";
301
338
  /**
302
339
  * Type definition for `AWS::ARCRegionSwitch::Plan.GlobalAuroraConfiguration`.
303
340
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-globalauroraconfiguration.html}
@@ -423,6 +460,24 @@ export type RegionSwitchPlanConfiguration = {
423
460
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-regiontorunin.html}
424
461
  */
425
462
  export type RegionToRunIn = "activatingRegion" | "deactivatingRegion";
463
+ /**
464
+ * Type definition for `AWS::ARCRegionSwitch::Plan.ReportConfiguration`.
465
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-reportconfiguration.html}
466
+ */
467
+ export type ReportConfiguration = {
468
+ /**
469
+ * @minLength `1`
470
+ * @maxLength `1`
471
+ */
472
+ ReportOutput?: ReportOutputConfiguration[];
473
+ };
474
+ /**
475
+ * Type definition for `AWS::ARCRegionSwitch::Plan.ReportOutputConfiguration`.
476
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-reportoutputconfiguration.html}
477
+ */
478
+ export type ReportOutputConfiguration = {
479
+ S3Configuration: S3ReportOutputConfiguration;
480
+ };
426
481
  /**
427
482
  * Type definition for `AWS::ARCRegionSwitch::Plan.Route53HealthCheckConfiguration`.
428
483
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-route53healthcheckconfiguration.html}
@@ -469,6 +524,22 @@ export type Route53ResourceRecordSet = {
469
524
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-routingcontrolstatechange.html}
470
525
  */
471
526
  export type RoutingControlStateChange = "On" | "Off";
527
+ /**
528
+ * Type definition for `AWS::ARCRegionSwitch::Plan.S3ReportOutputConfiguration`.
529
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-s3reportoutputconfiguration.html}
530
+ */
531
+ export type S3ReportOutputConfiguration = {
532
+ /**
533
+ * @pattern `^\d{12}$`
534
+ */
535
+ BucketOwner?: string;
536
+ /**
537
+ * @minLength `3`
538
+ * @maxLength `512`
539
+ * @pattern `^(?:s3://)?[a-z0-9][a-z0-9-]{1,61}[a-z0-9](?:/[^/ ][^/]*)/‍*?$`
540
+ */
541
+ BucketPath?: string;
542
+ };
472
543
  /**
473
544
  * Type definition for `AWS::ARCRegionSwitch::Plan.Service`.
474
545
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-service.html}
@@ -71,6 +71,15 @@ export type AssetPropertyVariant = {
71
71
  IntegerValue?: string;
72
72
  StringValue?: string;
73
73
  };
74
+ /**
75
+ * Type definition for `AWS::IoT::TopicRule.BatchConfig`.
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-batchconfig.html}
77
+ */
78
+ export type BatchConfig = {
79
+ MaxBatchOpenMs?: number;
80
+ MaxBatchSize?: number;
81
+ MaxBatchSizeBytes?: number;
82
+ };
74
83
  /**
75
84
  * Type definition for `AWS::IoT::TopicRule.CannedAccessControlList`.
76
85
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cannedaccesscontrollist.html}
@@ -157,7 +166,9 @@ export type FirehoseAction = {
157
166
  */
158
167
  export type HttpAction = {
159
168
  Auth?: HttpAuthorization;
169
+ BatchConfig?: BatchConfig;
160
170
  ConfirmationUrl?: string;
171
+ EnableBatching?: boolean;
161
172
  Headers?: HttpActionHeader[];
162
173
  Url: string;
163
174
  };
@@ -9,6 +9,10 @@ export type MediaTailorPlaybackConfigurationProperties = {
9
9
  * <p>The setting that indicates what conditioning MediaTailor will perform on ads that the ad decision server (ADS) returns.</p>
10
10
  */
11
11
  AdConditioningConfiguration?: AdConditioningConfiguration;
12
+ /**
13
+ * The configuration for the request to the specified Ad Decision Server URL.
14
+ */
15
+ AdDecisionServerConfiguration?: AdDecisionServerConfiguration;
12
16
  /**
13
17
  * The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing you can provide a static VAST URL. The maximum length is 25,000 characters.
14
18
  */
@@ -121,6 +125,23 @@ export type MediaTailorPlaybackConfigurationAttributes = {
121
125
  export type AdConditioningConfiguration = {
122
126
  StreamingMediaFileConditioning: StreamingMediaFileConditioning;
123
127
  };
128
+ /**
129
+ * Type definition for `AWS::MediaTailor::PlaybackConfiguration.AdDecisionServerConfiguration`.
130
+ * The configuration for the request to the specified Ad Decision Server URL.
131
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-addecisionserverconfiguration.html}
132
+ */
133
+ export type AdDecisionServerConfiguration = {
134
+ /**
135
+ * The configuration for the request to the Ad Decision Server URL.
136
+ */
137
+ HttpRequest: HttpRequest;
138
+ };
139
+ /**
140
+ * Type definition for `AWS::MediaTailor::PlaybackConfiguration.AdDecisionServerConfigurationHttpHeaders`.
141
+ * The headers in the request sent to the Ad Decision Server URL. The max length is 10,000 characters.
142
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-addecisionserverconfigurationhttpheaders.html}
143
+ */
144
+ export type AdDecisionServerConfigurationHttpHeaders = Record<string, string>;
124
145
  /**
125
146
  * Type definition for `AWS::MediaTailor::PlaybackConfiguration.AdMarkerPassthrough`.
126
147
  * For HLS, when set to true, MediaTailor passes through EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 ad markers from the origin manifest to the MediaTailor personalized manifest. No logic is applied to these ad markers. For example, if EXT-X-CUE-OUT has a value of 60, but no ads are filled for that ad break, MediaTailor will not set the value to 0.
@@ -216,6 +237,29 @@ export type DashConfiguration = {
216
237
  */
217
238
  OriginManifestType?: "SINGLE_PERIOD" | "MULTI_PERIOD";
218
239
  };
240
+ /**
241
+ * Type definition for `AWS::MediaTailor::PlaybackConfiguration.HttpRequest`.
242
+ * The configuration for the request to the Ad Decision Server URL.
243
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-httprequest.html}
244
+ */
245
+ export type HttpRequest = {
246
+ /**
247
+ * The body of the request to the Ad Decision Server URL. The maximum length is 100,000 characters.
248
+ */
249
+ Body?: string;
250
+ /**
251
+ * The compression type of the request sent to the Ad Decision Server URL. Only the POST HTTP Method permits compression other than NONE.
252
+ */
253
+ CompressRequest?: "NONE" | "GZIP";
254
+ /**
255
+ * The headers in the request sent to the Ad Decision Server URL. The max length is 10,000 characters.
256
+ */
257
+ Headers?: AdDecisionServerConfigurationHttpHeaders;
258
+ /**
259
+ * Supported HTTP Methods for the request to the Ad Decision Server URL.
260
+ */
261
+ HttpMethod?: "GET" | "POST";
262
+ };
219
263
  /**
220
264
  * Type definition for `AWS::MediaTailor::PlaybackConfiguration.InsertionMode`.
221
265
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-insertionmode.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.508",
3
+ "version": "0.1.510",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },