@awboost/cfn-resource-types 0.1.391 → 0.1.393
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-AppConfig-ConfigurationProfile.d.ts +3 -3
- package/lib/AWS-AppConfig-Deployment.d.ts +4 -0
- package/lib/AWS-EC2-Instance.d.ts +3 -3
- package/lib/AWS-ECS-Service.d.ts +113 -10
- package/lib/AWS-IoTSiteWise-AssetModel.d.ts +39 -1
- package/lib/AWS-MediaPackageV2-OriginEndpoint.d.ts +4 -0
- package/lib/AWS-NetworkFirewall-Firewall.d.ts +18 -4
- package/lib/AWS-NetworkFirewall-FirewallPolicy.d.ts +1 -0
- package/lib/AWS-NetworkFirewall-RuleGroup.d.ts +8 -0
- package/lib/AWS-RDS-DBInstance.d.ts +5 -1
- package/lib/AWS-WorkSpacesWeb-Portal.d.ts +6 -0
- package/lib/AWS-WorkSpacesWeb-SessionLogger.d.ts +138 -0
- package/lib/AWS-WorkSpacesWeb-SessionLogger.js +12 -0
- package/package.json +1 -1
|
@@ -23,7 +23,7 @@ export type AppConfigConfigurationProfileProperties = {
|
|
|
23
23
|
Description?: string;
|
|
24
24
|
/**
|
|
25
25
|
* The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
|
|
26
|
-
* @pattern `^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}|alias/[a-zA-Z0-9/_-]{1,250}|arn:aws[a-zA-Z-]*:kms:[a-z]{2}(-gov
|
|
26
|
+
* @pattern `^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}|alias/[a-zA-Z0-9/_-]{1,250}|arn:aws[a-zA-Z-]*:kms:((eusc-)?[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(key/[0-9a-f-]{36}|alias/[a-zA-Z0-9/_-]{1,250})$`
|
|
27
27
|
*/
|
|
28
28
|
KmsKeyIdentifier?: string;
|
|
29
29
|
/**
|
|
@@ -42,7 +42,7 @@ export type AppConfigConfigurationProfileProperties = {
|
|
|
42
42
|
* The ARN of an IAM role with permission to access the configuration at the specified LocationUri.
|
|
43
43
|
* @minLength `20`
|
|
44
44
|
* @maxLength `2048`
|
|
45
|
-
* @pattern `^((arn):(aws|aws-cn|aws-iso|aws-iso-[a-z]{1}|aws-us-gov):(iam)::\d{12}:role[/].*)$`
|
|
45
|
+
* @pattern `^((arn):(aws|aws-cn|aws-iso|aws-iso-[a-z]{1}|aws-us-gov|aws-eusc):(iam)::\d{12}:role[/].*)$`
|
|
46
46
|
*/
|
|
47
47
|
RetrievalRoleArn?: string;
|
|
48
48
|
/**
|
|
@@ -73,7 +73,7 @@ export type AppConfigConfigurationProfileAttributes = {
|
|
|
73
73
|
* The Amazon Resource Name of the AWS Key Management Service key to encrypt new configuration data versions in the AWS AppConfig hosted configuration store. This attribute is only used for hosted configuration types. To encrypt data managed in other configuration stores, see the documentation for how to specify an AWS KMS key for that particular service.
|
|
74
74
|
* @minLength `20`
|
|
75
75
|
* @maxLength `2048`
|
|
76
|
-
* @pattern `arn:(aws[a-zA-Z-]*)?:[a-z]+:([a-z]{2}((-gov)|(-iso(
|
|
76
|
+
* @pattern `arn:(aws[a-zA-Z-]*)?:[a-z]+:((eusc-)?[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(\d{12})?:[a-zA-Z0-9-_/:.]+`
|
|
77
77
|
*/
|
|
78
78
|
KmsKeyArn: string;
|
|
79
79
|
};
|
|
@@ -49,6 +49,10 @@ export type AppConfigDeploymentAttributes = {
|
|
|
49
49
|
* The sequence number of the deployment.
|
|
50
50
|
*/
|
|
51
51
|
DeploymentNumber: string;
|
|
52
|
+
/**
|
|
53
|
+
* The state of the deployment.
|
|
54
|
+
*/
|
|
55
|
+
State: "BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK" | "REVERTED";
|
|
52
56
|
};
|
|
53
57
|
/**
|
|
54
58
|
* Type definition for `AWS::AppConfig::Deployment.DynamicExtensionParameters`.
|
|
@@ -300,7 +300,7 @@ export type Ebs = {
|
|
|
300
300
|
*/
|
|
301
301
|
export type ElasticGpuSpecification = {
|
|
302
302
|
/**
|
|
303
|
-
* The type of Elastic Graphics accelerator.
|
|
303
|
+
* The type of Elastic Graphics accelerator. Amazon Elastic Graphics is no longer available.
|
|
304
304
|
*/
|
|
305
305
|
Type: string;
|
|
306
306
|
};
|
|
@@ -310,12 +310,12 @@ export type ElasticGpuSpecification = {
|
|
|
310
310
|
*/
|
|
311
311
|
export type ElasticInferenceAccelerator = {
|
|
312
312
|
/**
|
|
313
|
-
* The number of elastic inference accelerators to attach to the instance.
|
|
313
|
+
* The number of elastic inference accelerators to attach to the instance. Amazon Elastic Inference is no longer available.
|
|
314
314
|
* @min `0`
|
|
315
315
|
*/
|
|
316
316
|
Count?: number;
|
|
317
317
|
/**
|
|
318
|
-
* The type of elastic inference accelerator.
|
|
318
|
+
* The type of elastic inference accelerator. Amazon Elastic Inference is no longer available.
|
|
319
319
|
*/
|
|
320
320
|
Type: string;
|
|
321
321
|
};
|
package/lib/AWS-ECS-Service.d.ts
CHANGED
|
@@ -51,7 +51,7 @@ export type ECSServiceProperties = {
|
|
|
51
51
|
*/
|
|
52
52
|
DeploymentConfiguration?: DeploymentConfiguration;
|
|
53
53
|
/**
|
|
54
|
-
* The deployment controller to use for the service.
|
|
54
|
+
* The deployment controller to use for the service.
|
|
55
55
|
*/
|
|
56
56
|
DeploymentController?: DeploymentController;
|
|
57
57
|
/**
|
|
@@ -62,7 +62,7 @@ export type ECSServiceProperties = {
|
|
|
62
62
|
DesiredCount?: number;
|
|
63
63
|
/**
|
|
64
64
|
* Specifies whether to turn on Amazon ECS managed tags for the tasks within the service. For more information, see [Tagging your Amazon ECS resources](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
65
|
-
When you use Amazon ECS managed tags, you
|
|
65
|
+
When you use Amazon ECS managed tags, you must set the ``propagateTags`` request parameter.
|
|
66
66
|
*/
|
|
67
67
|
EnableECSManagedTags?: boolean;
|
|
68
68
|
/**
|
|
@@ -175,12 +175,25 @@ export type ECSServiceAttributes = {
|
|
|
175
175
|
};
|
|
176
176
|
/**
|
|
177
177
|
* Type definition for `AWS::ECS::Service.AdvancedConfiguration`.
|
|
178
|
+
* The advanced settings for a load balancer used in blue/green deployments. Specify the alternate target group, listener rules, and IAM role required for traffic shifting during blue/green deployments. For more information, see [Required resources for Amazon ECS blue/green deployments](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/blue-green-deployment-implementation.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
178
179
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-advancedconfiguration.html}
|
|
179
180
|
*/
|
|
180
181
|
export type AdvancedConfiguration = {
|
|
182
|
+
/**
|
|
183
|
+
* The Amazon Resource Name (ARN) of the alternate target group for Amazon ECS blue/green deployments.
|
|
184
|
+
*/
|
|
181
185
|
AlternateTargetGroupArn: string;
|
|
186
|
+
/**
|
|
187
|
+
* The Amazon Resource Name (ARN) that that identifies the production listener rule (in the case of an Application Load Balancer) or listener (in the case for an Network Load Balancer) for routing production traffic.
|
|
188
|
+
*/
|
|
182
189
|
ProductionListenerRule?: string;
|
|
190
|
+
/**
|
|
191
|
+
* The Amazon Resource Name (ARN) of the IAM role that grants Amazon ECS permission to call the Elastic Load Balancing APIs for you.
|
|
192
|
+
*/
|
|
183
193
|
RoleArn?: string;
|
|
194
|
+
/**
|
|
195
|
+
* The Amazon Resource Name (ARN) that identifies ) that identifies the test listener rule (in the case of an Application Load Balancer) or listener (in the case for an Network Load Balancer) for routing test traffic.
|
|
196
|
+
*/
|
|
184
197
|
TestListenerRule?: string;
|
|
185
198
|
};
|
|
186
199
|
/**
|
|
@@ -235,7 +248,7 @@ export type CapacityProviderStrategyItem = {
|
|
|
235
248
|
* Type definition for `AWS::ECS::Service.DeploymentAlarms`.
|
|
236
249
|
* One of the methods which provide a way for you to quickly identify when a deployment has failed, and then to optionally roll back the failure to the last working deployment.
|
|
237
250
|
When the alarms are generated, Amazon ECS sets the service deployment to failed. Set the rollback parameter to have Amazon ECS to roll back your service to the last completed deployment after a failure.
|
|
238
|
-
You can only use the ``DeploymentAlarms`` method to detect failures when the ``DeploymentController`` is set to ``ECS
|
|
251
|
+
You can only use the ``DeploymentAlarms`` method to detect failures when the ``DeploymentController`` is set to ``ECS``.
|
|
239
252
|
For more information, see [Rolling update](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-ecs.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
240
253
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentalarms.html}
|
|
241
254
|
*/
|
|
@@ -281,15 +294,23 @@ export type DeploymentConfiguration = {
|
|
|
281
294
|
*/
|
|
282
295
|
Alarms?: DeploymentAlarms;
|
|
283
296
|
/**
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
297
|
+
* The duration when both blue and green service revisions are running simultaneously after the production traffic has shifted.
|
|
298
|
+
The following rules apply when you don't specify a value:
|
|
299
|
+
+ For rolling deployments, the value is set to 3 hours (180 minutes).
|
|
300
|
+
+ When you use an external deployment controller (``EXTERNAL``), or the ACD blue/green deployment controller (``CODE_DEPLOY``), the value is set to 3 hours (180 minutes).
|
|
301
|
+
+ For all other cases, the value is set to 36 hours (2160 minutes).
|
|
302
|
+
* @min `0`
|
|
303
|
+
* @max `1440`
|
|
304
|
+
*/
|
|
287
305
|
BakeTimeInMinutes?: number;
|
|
288
306
|
/**
|
|
289
307
|
* The deployment circuit breaker can only be used for services using the rolling update (``ECS``) deployment type.
|
|
290
308
|
The *deployment circuit breaker* determines whether a service deployment will fail if the service can't reach a steady state. If you use the deployment circuit breaker, a service deployment will transition to a failed state and stop launching new tasks. If you use the rollback option, when a service deployment fails, the service is rolled back to the last deployment that completed successfully. For more information, see [Rolling update](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-ecs.html) in the *Amazon Elastic Container Service Developer Guide*
|
|
291
309
|
*/
|
|
292
310
|
DeploymentCircuitBreaker?: DeploymentCircuitBreaker;
|
|
311
|
+
/**
|
|
312
|
+
* An array of deployment lifecycle hook objects to run custom logic at specific stages of the deployment lifecycle.
|
|
313
|
+
*/
|
|
293
314
|
LifecycleHooks?: DeploymentLifecycleHook[];
|
|
294
315
|
/**
|
|
295
316
|
* If a service is using the rolling update (``ECS``) deployment type, the ``maximumPercent`` parameter represents an upper limit on the number of your service's tasks that are allowed in the ``RUNNING`` or ``PENDING`` state during a deployment, as a percentage of the ``desiredCount`` (rounded down to the nearest integer). This parameter enables you to define the deployment batch size. For example, if your service is using the ``REPLICA`` service scheduler and has a ``desiredCount`` of four tasks and a ``maximumPercent`` value of 200%, the scheduler may start four new tasks before stopping the four older tasks (provided that the cluster resources required to do this are available). The default ``maximumPercent`` value for a service using the ``REPLICA`` service scheduler is 200%.
|
|
@@ -318,6 +339,11 @@ export type DeploymentConfiguration = {
|
|
|
318
339
|
If a service is using either the blue/green (``CODE_DEPLOY``) or ``EXTERNAL`` deployment types and is running tasks that use the Fargate launch type, the minimum healthy percent value is not used, although it is returned when describing your service.
|
|
319
340
|
*/
|
|
320
341
|
MinimumHealthyPercent?: number;
|
|
342
|
+
/**
|
|
343
|
+
* The deployment strategy for the service. Choose from these valid values:
|
|
344
|
+
+ ``ROLLING`` - When you create a service which uses the rolling update (``ROLLING``) deployment strategy, the Amazon ECS service scheduler replaces the currently running tasks with new tasks. The number of tasks that Amazon ECS adds or removes from the service during a rolling update is controlled by the service deployment configuration.
|
|
345
|
+
+ ``BLUE_GREEN`` - A blue/green deployment strategy (``BLUE_GREEN``) is a release methodology that reduces downtime and risk by running two identical production environments called blue and green. With Amazon ECS blue/green deployments, you can validate new service revisions before directing production traffic to them. This approach provides a safer way to deploy changes with the ability to quickly roll back if needed.
|
|
346
|
+
*/
|
|
321
347
|
Strategy?: "ROLLING" | "BLUE_GREEN";
|
|
322
348
|
};
|
|
323
349
|
/**
|
|
@@ -327,21 +353,87 @@ export type DeploymentConfiguration = {
|
|
|
327
353
|
*/
|
|
328
354
|
export type DeploymentController = {
|
|
329
355
|
/**
|
|
330
|
-
* The deployment controller type to use.
|
|
331
|
-
|
|
356
|
+
* The deployment controller type to use.
|
|
357
|
+
The deployment controller is the mechanism that determines how tasks are deployed for your service. The valid options are:
|
|
358
|
+
+ ECS
|
|
359
|
+
When you create a service which uses the ``ECS`` deployment controller, you can choose between the following deployment strategies:
|
|
360
|
+
+ ``ROLLING``: When you create a service which uses the *rolling update* (``ROLLING``) deployment strategy, the ECS service scheduler replaces the currently running tasks with new tasks. The number of tasks that ECS adds or removes from the service during a rolling update is controlled by the service deployment configuration.
|
|
361
|
+
Rolling update deployments are best suited for the following scenarios:
|
|
362
|
+
+ Gradual service updates: You need to update your service incrementally without taking the entire service offline at once.
|
|
363
|
+
+ Limited resource requirements: You want to avoid the additional resource costs of running two complete environments simultaneously (as required by blue/green deployments).
|
|
364
|
+
+ Acceptable deployment time: Your application can tolerate a longer deployment process, as rolling updates replace tasks one by one.
|
|
365
|
+
+ No need for instant roll back: Your service can tolerate a rollback process that takes minutes rather than seconds.
|
|
366
|
+
+ Simple deployment process: You prefer a straightforward deployment approach without the complexity of managing multiple environments, target groups, and listeners.
|
|
367
|
+
+ No load balancer requirement: Your service doesn't use or require a load balancer, ALB, NLB, or Service Connect (which are required for blue/green deployments).
|
|
368
|
+
+ Stateful applications: Your application maintains state that makes it difficult to run two parallel environments.
|
|
369
|
+
+ Cost sensitivity: You want to minimize deployment costs by not running duplicate environments during deployment.
|
|
370
|
+
|
|
371
|
+
Rolling updates are the default deployment strategy for services and provide a balance between deployment safety and resource efficiency for many common application scenarios.
|
|
372
|
+
+ ``BLUE_GREEN``: A *blue/green* deployment strategy (``BLUE_GREEN``) is a release methodology that reduces downtime and risk by running two identical production environments called blue and green. With ECS blue/green deployments, you can validate new service revisions before directing production traffic to them. This approach provides a safer way to deploy changes with the ability to quickly roll back if needed.
|
|
373
|
+
ECS blue/green deployments are best suited for the following scenarios:
|
|
374
|
+
+ Service validation: When you need to validate new service revisions before directing production traffic to them
|
|
375
|
+
+ Zero downtime: When your service requires zero-downtime deployments
|
|
376
|
+
+ Instant roll back: When you need the ability to quickly roll back if issues are detected
|
|
377
|
+
+ Load balancer requirement: When your service uses ALB, NLB, or Service Connect
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
+ External
|
|
381
|
+
Use a third-party deployment controller.
|
|
382
|
+
+ Blue/green deployment (powered by ACD)
|
|
383
|
+
ACD installs an updated version of the application as a new replacement task set and reroutes production traffic from the original application task set to the replacement task set. The original task set is terminated after a successful deployment. Use this deployment controller to verify a new deployment of a service before sending production traffic to it.
|
|
384
|
+
|
|
385
|
+
When updating the deployment controller for a service, consider the following depending on the type of migration you're performing.
|
|
386
|
+
+ If you have a template that contains the ``EXTERNAL`` deployment controller information as well as ``TaskSet`` and ``PrimaryTaskSet`` resources, and you remove the task set resources from the template when updating from ``EXTERNAL`` to ``ECS``, the ``DescribeTaskSet`` and ``DeleteTaskSet`` API calls will return a 400 error after the deployment controller is updated to ``ECS``. This results in a delete failure on the task set resources, even though the stack transitions to ``UPDATE_COMPLETE`` status. For more information, see [Resource removed from stack but not deleted](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/troubleshooting.html#troubleshooting-errors-resource-removed-not-deleted) in the CFNlong User Guide. To fix this issue, delete the task sets directly using the ECS``DeleteTaskSet`` API. For more information about how to delete a task set, see [DeleteTaskSet](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_DeleteTaskSet.html) in the ECSlong API Reference.
|
|
387
|
+
+ If you're migrating from ``CODE_DEPLOY`` to ``ECS`` with a new task definition and CFN performs a rollback operation, the ECS``UpdateService`` request fails with the following error:
|
|
388
|
+
Resource handler returned message: "Invalid request provided: Unable to update task definition on services with a CODE_DEPLOY deployment controller.
|
|
389
|
+
+ After a successful migration from ``ECS`` to ``EXTERNAL`` deployment controller, you need to manually remove the ``ACTIVE`` task set, because ECS no longer manages the deployment. For information about how to delete a task set, see [DeleteTaskSet](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_DeleteTaskSet.html) in the ECSlong API Reference.
|
|
332
390
|
*/
|
|
333
391
|
Type?: "CODE_DEPLOY" | "ECS" | "EXTERNAL";
|
|
334
392
|
};
|
|
335
393
|
/**
|
|
336
394
|
* Type definition for `AWS::ECS::Service.DeploymentLifecycleHook`.
|
|
395
|
+
* A deployment lifecycle hook runs custom logic at specific stages of the deployment process. Currently, you can use Lambda functions as hook targets.
|
|
396
|
+
For more information, see [Lifecycle hooks for Amazon ECS service deployments](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-lifecycle-hooks.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
337
397
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentlifecyclehook.html}
|
|
338
398
|
*/
|
|
339
399
|
export type DeploymentLifecycleHook = {
|
|
400
|
+
/**
|
|
401
|
+
* The Amazon Resource Name (ARN) of the hook target. Currently, only Lambda function ARNs are supported.
|
|
402
|
+
You must provide this parameter when configuring a deployment lifecycle hook.
|
|
403
|
+
*/
|
|
340
404
|
HookTargetArn: string;
|
|
341
405
|
/**
|
|
342
|
-
|
|
343
|
-
|
|
406
|
+
* The lifecycle stages at which to run the hook. Choose from these valid values:
|
|
407
|
+
+ RECONCILE_SERVICE
|
|
408
|
+
The reconciliation stage that only happens when you start a new service deployment with more than 1 service revision in an ACTIVE state.
|
|
409
|
+
You can use a lifecycle hook for this stage.
|
|
410
|
+
+ PRE_SCALE_UP
|
|
411
|
+
The green service revision has not started. The blue service revision is handling 100% of the production traffic. There is no test traffic.
|
|
412
|
+
You can use a lifecycle hook for this stage.
|
|
413
|
+
+ POST_SCALE_UP
|
|
414
|
+
The green service revision has started. The blue service revision is handling 100% of the production traffic. There is no test traffic.
|
|
415
|
+
You can use a lifecycle hook for this stage.
|
|
416
|
+
+ TEST_TRAFFIC_SHIFT
|
|
417
|
+
The blue and green service revisions are running. The blue service revision handles 100% of the production traffic. The green service revision is migrating from 0% to 100% of test traffic.
|
|
418
|
+
You can use a lifecycle hook for this stage.
|
|
419
|
+
+ POST_TEST_TRAFFIC_SHIFT
|
|
420
|
+
The test traffic shift is complete. The green service revision handles 100% of the test traffic.
|
|
421
|
+
You can use a lifecycle hook for this stage.
|
|
422
|
+
+ PRODUCTION_TRAFFIC_SHIFT
|
|
423
|
+
Production traffic is shifting to the green service revision. The green service revision is migrating from 0% to 100% of production traffic.
|
|
424
|
+
You can use a lifecycle hook for this stage.
|
|
425
|
+
+ POST_PRODUCTION_TRAFFIC_SHIFT
|
|
426
|
+
The production traffic shift is complete.
|
|
427
|
+
You can use a lifecycle hook for this stage.
|
|
428
|
+
|
|
429
|
+
You must provide this parameter when configuring a deployment lifecycle hook.
|
|
430
|
+
* @minLength `1`
|
|
431
|
+
*/
|
|
344
432
|
LifecycleStages: ("RECONCILE_SERVICE" | "PRE_SCALE_UP" | "POST_SCALE_UP" | "TEST_TRAFFIC_SHIFT" | "POST_TEST_TRAFFIC_SHIFT" | "PRODUCTION_TRAFFIC_SHIFT" | "POST_PRODUCTION_TRAFFIC_SHIFT")[];
|
|
433
|
+
/**
|
|
434
|
+
* The Amazon Resource Name (ARN) of the IAM role that grants Amazon ECS permission to call Lambda functions on your behalf.
|
|
435
|
+
For more information, see [Permissions required for Lambda functions in Amazon ECS blue/green deployments](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/blue-green-permissions.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
436
|
+
*/
|
|
345
437
|
RoleArn: string;
|
|
346
438
|
};
|
|
347
439
|
/**
|
|
@@ -374,6 +466,9 @@ export type EBSTagSpecification = {
|
|
|
374
466
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-loadbalancer.html}
|
|
375
467
|
*/
|
|
376
468
|
export type LoadBalancer = {
|
|
469
|
+
/**
|
|
470
|
+
* The advanced settings for the load balancer used in blue/green deployments. Specify the alternate target group, listener rules, and IAM role required for traffic shifting during blue/green deployments.
|
|
471
|
+
*/
|
|
377
472
|
AdvancedConfiguration?: AdvancedConfiguration;
|
|
378
473
|
/**
|
|
379
474
|
* The name of the container (as it appears in a container definition) to associate with the load balancer.
|
|
@@ -524,6 +619,9 @@ export type ServiceConnectClientAlias = {
|
|
|
524
619
|
To avoid changing your applications in client Amazon ECS services, set this to the same port that the client application uses by default. For more information, see [Service Connect](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-connect.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
525
620
|
*/
|
|
526
621
|
Port: number;
|
|
622
|
+
/**
|
|
623
|
+
* The configuration for test traffic routing rules used during blue/green deployments with Amazon ECS Service Connect. This allows you to route a portion of traffic to the new service revision of your service for testing before shifting all production traffic.
|
|
624
|
+
*/
|
|
527
625
|
TestTrafficRules?: ServiceConnectTestTrafficRules;
|
|
528
626
|
};
|
|
529
627
|
/**
|
|
@@ -599,9 +697,14 @@ export type ServiceConnectService = {
|
|
|
599
697
|
};
|
|
600
698
|
/**
|
|
601
699
|
* Type definition for `AWS::ECS::Service.ServiceConnectTestTrafficRules`.
|
|
700
|
+
* The test traffic routing configuration for Amazon ECS blue/green deployments. This configuration allows you to define rules for routing specific traffic to the new service revision during the deployment process, allowing for safe testing before full production traffic shift.
|
|
701
|
+
For more information, see [Service Connect for Amazon ECS blue/green deployments](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-connect-blue-green.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
602
702
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-serviceconnecttesttrafficrules.html}
|
|
603
703
|
*/
|
|
604
704
|
export type ServiceConnectTestTrafficRules = {
|
|
705
|
+
/**
|
|
706
|
+
* The HTTP header-based routing rules that determine which requests should be routed to the new service version during blue/green deployment testing. These rules provide fine-grained control over test traffic routing based on request headers.
|
|
707
|
+
*/
|
|
605
708
|
Header: ServiceConnectTestTrafficRulesHeader;
|
|
606
709
|
};
|
|
607
710
|
/**
|
|
@@ -33,9 +33,13 @@ export type IoTSiteWiseAssetModelProperties = {
|
|
|
33
33
|
*/
|
|
34
34
|
AssetModelProperties?: AssetModelProperty[];
|
|
35
35
|
/**
|
|
36
|
-
* The type of the asset model (ASSET_MODEL OR COMPONENT_MODEL)
|
|
36
|
+
* The type of the asset model (ASSET_MODEL OR COMPONENT_MODEL or INTERFACE)
|
|
37
37
|
*/
|
|
38
38
|
AssetModelType?: string;
|
|
39
|
+
/**
|
|
40
|
+
* a list of asset model and interface relationships
|
|
41
|
+
*/
|
|
42
|
+
EnforcedAssetModelInterfaceRelationships?: EnforcedAssetModelInterfaceRelationship[];
|
|
39
43
|
/**
|
|
40
44
|
* A list of key-value pairs that contain metadata for the asset model.
|
|
41
45
|
*/
|
|
@@ -324,6 +328,40 @@ export type DataType = "STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT";
|
|
|
324
328
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-datatypespec.html}
|
|
325
329
|
*/
|
|
326
330
|
export type DataTypeSpec = "AWS/ALARM_STATE";
|
|
331
|
+
/**
|
|
332
|
+
* Type definition for `AWS::IoTSiteWise::AssetModel.EnforcedAssetModelInterfacePropertyMapping`.
|
|
333
|
+
* Contains information about enforced interface property and asset model property
|
|
334
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping.html}
|
|
335
|
+
*/
|
|
336
|
+
export type EnforcedAssetModelInterfacePropertyMapping = {
|
|
337
|
+
/**
|
|
338
|
+
* The external ID of the enforced asset model property
|
|
339
|
+
*/
|
|
340
|
+
AssetModelPropertyExternalId?: string;
|
|
341
|
+
/**
|
|
342
|
+
* The logical ID of the enforced asset model property
|
|
343
|
+
*/
|
|
344
|
+
AssetModelPropertyLogicalId?: string;
|
|
345
|
+
/**
|
|
346
|
+
* The external ID of the enforced interface property
|
|
347
|
+
*/
|
|
348
|
+
InterfaceAssetModelPropertyExternalId: string;
|
|
349
|
+
};
|
|
350
|
+
/**
|
|
351
|
+
* Type definition for `AWS::IoTSiteWise::AssetModel.EnforcedAssetModelInterfaceRelationship`.
|
|
352
|
+
* Contains information about enforced interface hierarchy and asset model hierarchy
|
|
353
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacerelationship.html}
|
|
354
|
+
*/
|
|
355
|
+
export type EnforcedAssetModelInterfaceRelationship = {
|
|
356
|
+
/**
|
|
357
|
+
* The ID of the interface that is enforced to the asset model
|
|
358
|
+
*/
|
|
359
|
+
InterfaceAssetModelId?: string;
|
|
360
|
+
/**
|
|
361
|
+
* Contains information about enforced interface property and asset model property
|
|
362
|
+
*/
|
|
363
|
+
PropertyMappings?: EnforcedAssetModelInterfacePropertyMapping[];
|
|
364
|
+
};
|
|
327
365
|
/**
|
|
328
366
|
* Type definition for `AWS::IoTSiteWise::AssetModel.ExpressionVariable`.
|
|
329
367
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-expressionvariable.html}
|
|
@@ -403,6 +403,10 @@ export type DrmSystem = "CLEAR_KEY_AES_128" | "FAIRPLAY" | "PLAYREADY" | "WIDEVI
|
|
|
403
403
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-encryption.html}
|
|
404
404
|
*/
|
|
405
405
|
export type Encryption = {
|
|
406
|
+
/**
|
|
407
|
+
* <p>Excludes SEIG and SGPD boxes from segment metadata in CMAF containers.</p> <p>When set to <code>true</code>, MediaPackage omits these DRM metadata boxes from CMAF segments, which can improve compatibility with certain devices and players that don't support these boxes.</p> <p>Important considerations:</p> <ul> <li> <p>This setting only affects CMAF container formats</p> </li> <li> <p>Key rotation can still be handled through media playlist signaling</p> </li> <li> <p>PSSH and TENC boxes remain unaffected</p> </li> <li> <p>Default behavior is preserved when this setting is disabled</p> </li> </ul> <p>Valid values: <code>true</code> | <code>false</code> </p> <p>Default: <code>false</code> </p>
|
|
408
|
+
*/
|
|
409
|
+
CmafExcludeSegmentDrmMetadata?: boolean;
|
|
406
410
|
/**
|
|
407
411
|
* <p>A 128-bit, 16-byte hex value represented by a 32-character string, used in conjunction with the key for encrypting content. If you don't specify a value, then MediaPackage creates the constant initialization vector (IV).</p>
|
|
408
412
|
* @minLength `32`
|
|
@@ -5,6 +5,8 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-firewall.html}
|
|
6
6
|
*/
|
|
7
7
|
export type NetworkFirewallFirewallProperties = {
|
|
8
|
+
AvailabilityZoneChangeProtection?: boolean;
|
|
9
|
+
AvailabilityZoneMappings?: AvailabilityZoneMapping[];
|
|
8
10
|
DeleteProtection?: boolean;
|
|
9
11
|
/**
|
|
10
12
|
* @maxLength `512`
|
|
@@ -30,17 +32,19 @@ export type NetworkFirewallFirewallProperties = {
|
|
|
30
32
|
FirewallPolicyArn: string;
|
|
31
33
|
FirewallPolicyChangeProtection?: boolean;
|
|
32
34
|
SubnetChangeProtection?: boolean;
|
|
35
|
+
SubnetMappings?: SubnetMapping[];
|
|
36
|
+
Tags?: Tag[];
|
|
33
37
|
/**
|
|
34
|
-
* @
|
|
38
|
+
* @maxLength `128`
|
|
39
|
+
* @pattern `^tgw-[0-9a-z]+$`
|
|
35
40
|
*/
|
|
36
|
-
|
|
37
|
-
Tags?: Tag[];
|
|
41
|
+
TransitGatewayId?: string;
|
|
38
42
|
/**
|
|
39
43
|
* @minLength `1`
|
|
40
44
|
* @maxLength `128`
|
|
41
45
|
* @pattern `^vpc-[0-9a-f]+$`
|
|
42
46
|
*/
|
|
43
|
-
VpcId
|
|
47
|
+
VpcId?: string;
|
|
44
48
|
};
|
|
45
49
|
/**
|
|
46
50
|
* Attribute type definition for `AWS::NetworkFirewall::Firewall`.
|
|
@@ -62,6 +66,16 @@ export type NetworkFirewallFirewallAttributes = {
|
|
|
62
66
|
*/
|
|
63
67
|
FirewallId: string;
|
|
64
68
|
};
|
|
69
|
+
/**
|
|
70
|
+
* Type definition for `AWS::NetworkFirewall::Firewall.AvailabilityZoneMapping`.
|
|
71
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-firewall-availabilityzonemapping.html}
|
|
72
|
+
*/
|
|
73
|
+
export type AvailabilityZoneMapping = {
|
|
74
|
+
/**
|
|
75
|
+
* A AvailabilityZone
|
|
76
|
+
*/
|
|
77
|
+
AvailabilityZone: string;
|
|
78
|
+
};
|
|
65
79
|
/**
|
|
66
80
|
* Type definition for `AWS::NetworkFirewall::Firewall.EnabledAnalysisType`.
|
|
67
81
|
* An analysis type.
|
|
@@ -150,6 +150,7 @@ export type StatefulRuleGroupOverride = {
|
|
|
150
150
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-firewallpolicy-statefulrulegroupreference.html}
|
|
151
151
|
*/
|
|
152
152
|
export type StatefulRuleGroupReference = {
|
|
153
|
+
DeepThreatInspection?: boolean;
|
|
153
154
|
Override?: StatefulRuleGroupOverride;
|
|
154
155
|
/**
|
|
155
156
|
* @min `1`
|
|
@@ -19,6 +19,9 @@ export type NetworkFirewallRuleGroupProperties = {
|
|
|
19
19
|
* @pattern `^[a-zA-Z0-9-]+$`
|
|
20
20
|
*/
|
|
21
21
|
RuleGroupName: string;
|
|
22
|
+
SummaryConfiguration?: {
|
|
23
|
+
RuleOptions?: SummaryRuleOption[];
|
|
24
|
+
};
|
|
22
25
|
Tags?: Tag[];
|
|
23
26
|
Type: "STATELESS" | "STATEFUL";
|
|
24
27
|
};
|
|
@@ -294,6 +297,11 @@ export type StatelessRulesAndCustomActions = {
|
|
|
294
297
|
CustomActions?: CustomAction[];
|
|
295
298
|
StatelessRules: StatelessRule[];
|
|
296
299
|
};
|
|
300
|
+
/**
|
|
301
|
+
* Type definition for `AWS::NetworkFirewall::RuleGroup.SummaryRuleOption`.
|
|
302
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-rulegroup-summaryruleoption.html}
|
|
303
|
+
*/
|
|
304
|
+
export type SummaryRuleOption = "SID" | "MSG" | "METADATA";
|
|
297
305
|
/**
|
|
298
306
|
* Type definition for `AWS::NetworkFirewall::RuleGroup.Tag`.
|
|
299
307
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-rulegroup-tag.html}
|
|
@@ -751,6 +751,9 @@ export type RDSDBInstanceProperties = {
|
|
|
751
751
|
* The ID of the region that contains the source DB instance for the read replica.
|
|
752
752
|
*/
|
|
753
753
|
SourceRegion?: string;
|
|
754
|
+
/**
|
|
755
|
+
* The status of a read replica. If the DB instance isn't a read replica, the value is blank.
|
|
756
|
+
*/
|
|
754
757
|
StatusInfos?: DBInstanceStatusInfo[];
|
|
755
758
|
/**
|
|
756
759
|
* A value that indicates whether the DB instance is encrypted. By default, it isn't encrypted.
|
|
@@ -914,6 +917,7 @@ export type DBInstanceRole = {
|
|
|
914
917
|
};
|
|
915
918
|
/**
|
|
916
919
|
* Type definition for `AWS::RDS::DBInstance.DBInstanceStatusInfo`.
|
|
920
|
+
* Provides a list of status information for a DB instance.
|
|
917
921
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-dbinstancestatusinfo.html}
|
|
918
922
|
*/
|
|
919
923
|
export type DBInstanceStatusInfo = {
|
|
@@ -930,7 +934,7 @@ export type DBInstanceStatusInfo = {
|
|
|
930
934
|
*/
|
|
931
935
|
Status?: string;
|
|
932
936
|
/**
|
|
933
|
-
*
|
|
937
|
+
* This value is currently "read replication."
|
|
934
938
|
*/
|
|
935
939
|
StatusType?: string;
|
|
936
940
|
};
|
|
@@ -49,6 +49,12 @@ export type WorkSpacesWebPortalProperties = {
|
|
|
49
49
|
* @pattern `^arn:[\w+=\/,.@-]+:[a-zA-Z0-9\-]+:[a-zA-Z0-9\-]*:[a-zA-Z0-9]{1,12}:[a-zA-Z]+(\/[a-fA-F0-9\-]{36})+$`
|
|
50
50
|
*/
|
|
51
51
|
NetworkSettingsArn?: string;
|
|
52
|
+
/**
|
|
53
|
+
* @minLength `20`
|
|
54
|
+
* @maxLength `2048`
|
|
55
|
+
* @pattern `^arn:[\w+=\/,.@-]+:[a-zA-Z0-9\-]+:[a-zA-Z0-9\-]*:[a-zA-Z0-9]{1,12}:[a-zA-Z]+(\/[a-fA-F0-9\-]{36})+$`
|
|
56
|
+
*/
|
|
57
|
+
SessionLoggerArn?: string;
|
|
52
58
|
/**
|
|
53
59
|
* @minLength `0`
|
|
54
60
|
* @maxLength `200`
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Definition of AWS::WorkSpacesWeb::SessionLogger Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-sessionlogger.html}
|
|
6
|
+
*/
|
|
7
|
+
export type WorkSpacesWebSessionLoggerProperties = {
|
|
8
|
+
AdditionalEncryptionContext?: EncryptionContextMap;
|
|
9
|
+
/**
|
|
10
|
+
* @minLength `20`
|
|
11
|
+
* @maxLength `2048`
|
|
12
|
+
* @pattern `^arn:[\w+=\/,.@-]+:kms:[a-zA-Z0-9\-]*:[a-zA-Z0-9]{1,12}:key\/[a-zA-Z0-9-]+$`
|
|
13
|
+
*/
|
|
14
|
+
CustomerManagedKey?: string;
|
|
15
|
+
/**
|
|
16
|
+
* @minLength `1`
|
|
17
|
+
* @maxLength `64`
|
|
18
|
+
* @pattern `^[ _\-\d\w]+$`
|
|
19
|
+
*/
|
|
20
|
+
DisplayName?: string;
|
|
21
|
+
EventFilter: EventFilter;
|
|
22
|
+
LogConfiguration: LogConfiguration;
|
|
23
|
+
/**
|
|
24
|
+
* @minLength `0`
|
|
25
|
+
* @maxLength `200`
|
|
26
|
+
*/
|
|
27
|
+
Tags?: Tag[];
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Attribute type definition for `AWS::WorkSpacesWeb::SessionLogger`.
|
|
31
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-sessionlogger.html#aws-resource-workspacesweb-sessionlogger-return-values}
|
|
32
|
+
*/
|
|
33
|
+
export type WorkSpacesWebSessionLoggerAttributes = {
|
|
34
|
+
AssociatedPortalArns: string[];
|
|
35
|
+
CreationDate: string;
|
|
36
|
+
/**
|
|
37
|
+
* @minLength `20`
|
|
38
|
+
* @maxLength `2048`
|
|
39
|
+
* @pattern `^arn:[\w+=\/,.@-]+:[a-zA-Z0-9\-]+:[a-zA-Z0-9\-]*:[a-zA-Z0-9]{1,12}:[a-zA-Z]+(\/[a-fA-F0-9\-]{36})+$`
|
|
40
|
+
*/
|
|
41
|
+
SessionLoggerArn: string;
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* Type definition for `AWS::WorkSpacesWeb::SessionLogger.EncryptionContextMap`.
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-encryptioncontextmap.html}
|
|
46
|
+
*/
|
|
47
|
+
export type EncryptionContextMap = Record<string, string>;
|
|
48
|
+
/**
|
|
49
|
+
* Type definition for `AWS::WorkSpacesWeb::SessionLogger.Event`.
|
|
50
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-event.html}
|
|
51
|
+
*/
|
|
52
|
+
export type Event = "WebsiteInteract" | "FileDownloadFromSecureBrowserToRemoteDisk" | "FileTransferFromRemoteToLocalDisk" | "FileTransferFromLocalToRemoteDisk" | "FileUploadFromRemoteDiskToSecureBrowser" | "ContentPasteToWebsite" | "ContentTransferFromLocalToRemoteClipboard" | "ContentCopyFromWebsite" | "UrlLoad" | "TabOpen" | "TabClose" | "PrintJobSubmit" | "SessionConnect" | "SessionStart" | "SessionDisconnect" | "SessionEnd" | "UrlBlockByContentFilter";
|
|
53
|
+
/**
|
|
54
|
+
* Type definition for `AWS::WorkSpacesWeb::SessionLogger.EventFilter`.
|
|
55
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-eventfilter.html}
|
|
56
|
+
*/
|
|
57
|
+
export type EventFilter = {
|
|
58
|
+
All: Unit;
|
|
59
|
+
} | {
|
|
60
|
+
/**
|
|
61
|
+
* @minLength `1`
|
|
62
|
+
* @maxLength `100`
|
|
63
|
+
*/
|
|
64
|
+
Include: Event[];
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* Type definition for `AWS::WorkSpacesWeb::SessionLogger.FolderStructure`.
|
|
68
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-folderstructure.html}
|
|
69
|
+
*/
|
|
70
|
+
export type FolderStructure = "Flat" | "NestedByDate";
|
|
71
|
+
/**
|
|
72
|
+
* Type definition for `AWS::WorkSpacesWeb::SessionLogger.LogConfiguration`.
|
|
73
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-logconfiguration.html}
|
|
74
|
+
*/
|
|
75
|
+
export type LogConfiguration = {
|
|
76
|
+
S3?: S3LogConfiguration;
|
|
77
|
+
};
|
|
78
|
+
/**
|
|
79
|
+
* Type definition for `AWS::WorkSpacesWeb::SessionLogger.LogFileFormat`.
|
|
80
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-logfileformat.html}
|
|
81
|
+
*/
|
|
82
|
+
export type LogFileFormat = "JSONLines" | "Json";
|
|
83
|
+
/**
|
|
84
|
+
* Type definition for `AWS::WorkSpacesWeb::SessionLogger.S3LogConfiguration`.
|
|
85
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-s3logconfiguration.html}
|
|
86
|
+
*/
|
|
87
|
+
export type S3LogConfiguration = {
|
|
88
|
+
/**
|
|
89
|
+
* @minLength `1`
|
|
90
|
+
* @maxLength `256`
|
|
91
|
+
* @pattern `^[a-z0-9][\.\-a-z0-9]{1,61}[a-z0-9]$`
|
|
92
|
+
*/
|
|
93
|
+
Bucket: string;
|
|
94
|
+
/**
|
|
95
|
+
* @pattern `^[0-9]{12}$`
|
|
96
|
+
*/
|
|
97
|
+
BucketOwner?: string;
|
|
98
|
+
FolderStructure: FolderStructure;
|
|
99
|
+
/**
|
|
100
|
+
* @minLength `1`
|
|
101
|
+
* @maxLength `256`
|
|
102
|
+
* @pattern `^[\d\w\-_/!().*']+$`
|
|
103
|
+
*/
|
|
104
|
+
KeyPrefix?: string;
|
|
105
|
+
LogFileFormat: LogFileFormat;
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* Type definition for `AWS::WorkSpacesWeb::SessionLogger.Tag`.
|
|
109
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-tag.html}
|
|
110
|
+
*/
|
|
111
|
+
export type Tag = {
|
|
112
|
+
/**
|
|
113
|
+
* @minLength `1`
|
|
114
|
+
* @maxLength `128`
|
|
115
|
+
* @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
|
|
116
|
+
*/
|
|
117
|
+
Key: string;
|
|
118
|
+
/**
|
|
119
|
+
* @minLength `0`
|
|
120
|
+
* @maxLength `256`
|
|
121
|
+
* @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
|
|
122
|
+
*/
|
|
123
|
+
Value: string;
|
|
124
|
+
};
|
|
125
|
+
/**
|
|
126
|
+
* Type definition for `AWS::WorkSpacesWeb::SessionLogger.Unit`.
|
|
127
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-unit.html}
|
|
128
|
+
*/
|
|
129
|
+
export type Unit = Record<string, any>;
|
|
130
|
+
/**
|
|
131
|
+
* Definition of AWS::WorkSpacesWeb::SessionLogger Resource Type
|
|
132
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-sessionlogger.html}
|
|
133
|
+
*/
|
|
134
|
+
export declare class WorkSpacesWebSessionLogger extends $Resource<"AWS::WorkSpacesWeb::SessionLogger", WorkSpacesWebSessionLoggerProperties, WorkSpacesWebSessionLoggerAttributes> {
|
|
135
|
+
static readonly Type = "AWS::WorkSpacesWeb::SessionLogger";
|
|
136
|
+
constructor(logicalId: string, properties: WorkSpacesWebSessionLoggerProperties, options?: $ResourceOptions);
|
|
137
|
+
}
|
|
138
|
+
//# sourceMappingURL=AWS-WorkSpacesWeb-SessionLogger.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::WorkSpacesWeb::SessionLogger Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-sessionlogger.html}
|
|
5
|
+
*/
|
|
6
|
+
export class WorkSpacesWebSessionLogger extends $Resource {
|
|
7
|
+
static Type = "AWS::WorkSpacesWeb::SessionLogger";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, WorkSpacesWebSessionLogger.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-WorkSpacesWeb-SessionLogger.js.map
|