aws-cdk-lib 2.128.0__py3-none-any.whl → 2.129.0__py3-none-any.whl
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.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +2 -10
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.128.0.jsii.tgz → aws-cdk-lib@2.129.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +6 -24
- aws_cdk/aws_amplify/__init__.py +1 -2
- aws_cdk/aws_appconfig/__init__.py +0 -16
- aws_cdk/aws_applicationautoscaling/__init__.py +55 -22
- aws_cdk/aws_appstream/__init__.py +14 -14
- aws_cdk/aws_appsync/__init__.py +334 -3
- aws_cdk/aws_autoscaling/__init__.py +11 -7
- aws_cdk/aws_batch/__init__.py +137 -16
- aws_cdk/aws_cleanrooms/__init__.py +1 -2
- aws_cdk/aws_cloudformation/__init__.py +2 -10
- aws_cdk/aws_cloudfront/__init__.py +15 -8
- aws_cdk/aws_cloudfront/experimental/__init__.py +22 -0
- aws_cdk/aws_cloudfront_origins/__init__.py +332 -0
- aws_cdk/aws_cloudtrail/__init__.py +12 -2
- aws_cdk/aws_cloudwatch/__init__.py +4 -0
- aws_cdk/aws_codepipeline/__init__.py +463 -11
- aws_cdk/aws_cognito/__init__.py +0 -9
- aws_cdk/aws_config/__init__.py +2 -2
- aws_cdk/aws_connect/__init__.py +6 -1
- aws_cdk/aws_controltower/__init__.py +527 -7
- aws_cdk/aws_datasync/__init__.py +2 -2
- aws_cdk/aws_directoryservice/__init__.py +2 -3
- aws_cdk/aws_dynamodb/__init__.py +7 -0
- aws_cdk/aws_ec2/__init__.py +117 -210
- aws_cdk/aws_ecs/__init__.py +537 -3
- aws_cdk/aws_eks/__init__.py +1 -1
- aws_cdk/aws_elasticache/__init__.py +27 -20
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +3 -4
- aws_cdk/aws_emr/__init__.py +23 -3
- aws_cdk/aws_events_targets/__init__.py +64 -20
- aws_cdk/aws_fis/__init__.py +4 -4
- aws_cdk/aws_frauddetector/__init__.py +3 -3
- aws_cdk/aws_globalaccelerator/__init__.py +2 -6
- aws_cdk/aws_glue/__init__.py +84 -55
- aws_cdk/aws_groundstation/__init__.py +8 -12
- aws_cdk/aws_guardduty/__init__.py +74 -70
- aws_cdk/aws_iam/__init__.py +16 -23
- aws_cdk/aws_imagebuilder/__init__.py +178 -156
- aws_cdk/aws_internetmonitor/__init__.py +12 -10
- aws_cdk/aws_iot/__init__.py +17 -10
- aws_cdk/aws_iotevents/__init__.py +4 -4
- aws_cdk/aws_iotfleetwise/__init__.py +10 -5
- aws_cdk/aws_iottwinmaker/__init__.py +3 -5
- aws_cdk/aws_iotwireless/__init__.py +35 -23
- aws_cdk/aws_kendra/__init__.py +36 -15
- aws_cdk/aws_kinesisfirehose/__init__.py +155 -114
- aws_cdk/aws_lambda/__init__.py +157 -12
- aws_cdk/aws_lambda_nodejs/__init__.py +22 -0
- aws_cdk/aws_lightsail/__init__.py +14 -18
- aws_cdk/aws_logs/__init__.py +15 -15
- aws_cdk/aws_mediaconnect/__init__.py +5 -3
- aws_cdk/aws_medialive/__init__.py +3 -12
- aws_cdk/aws_mediapackagev2/__init__.py +287 -286
- aws_cdk/aws_mediatailor/__init__.py +2 -2
- aws_cdk/aws_memorydb/__init__.py +2 -2
- aws_cdk/aws_msk/__init__.py +6 -3
- aws_cdk/aws_mwaa/__init__.py +10 -5
- aws_cdk/aws_neptunegraph/__init__.py +84 -66
- aws_cdk/aws_networkfirewall/__init__.py +5 -8
- aws_cdk/aws_networkmanager/__init__.py +3 -3
- aws_cdk/aws_nimblestudio/__init__.py +2 -4
- aws_cdk/aws_opensearchservice/__init__.py +6 -7
- aws_cdk/aws_osis/__init__.py +1 -3
- aws_cdk/aws_pinpoint/__init__.py +5 -5
- aws_cdk/aws_pipes/__init__.py +5 -5
- aws_cdk/aws_quicksight/__init__.py +5 -10
- aws_cdk/aws_rds/__init__.py +38 -21
- aws_cdk/aws_redshift/__init__.py +9 -5
- aws_cdk/aws_redshiftserverless/__init__.py +62 -38
- aws_cdk/aws_rolesanywhere/__init__.py +41 -53
- aws_cdk/aws_route53/__init__.py +532 -6
- aws_cdk/aws_route53recoverycontrol/__init__.py +1 -3
- aws_cdk/aws_route53recoveryreadiness/__init__.py +2 -2
- aws_cdk/aws_route53resolver/__init__.py +1 -4
- aws_cdk/aws_s3/__init__.py +3 -1
- aws_cdk/aws_s3objectlambda/__init__.py +7 -4
- aws_cdk/aws_s3outposts/__init__.py +1 -1
- aws_cdk/aws_sagemaker/__init__.py +111 -11
- aws_cdk/aws_servicecatalogappregistry/__init__.py +3 -3
- aws_cdk/aws_sns/__init__.py +185 -38
- aws_cdk/aws_ssm/__init__.py +16 -16
- aws_cdk/aws_ssmincidents/__init__.py +1 -1
- aws_cdk/aws_synthetics/__init__.py +94 -21
- aws_cdk/aws_verifiedpermissions/__init__.py +1 -2
- aws_cdk/aws_vpclattice/__init__.py +8 -4
- aws_cdk/aws_wafv2/__init__.py +14 -59
- aws_cdk/aws_workspaces/__init__.py +5 -4
- aws_cdk/aws_workspacesweb/__init__.py +6 -12
- aws_cdk/triggers/__init__.py +22 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/RECORD +98 -98
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/top_level.txt +0 -0
|
@@ -21,7 +21,7 @@ canary = synthetics.Canary(self, "MyCanary",
|
|
|
21
21
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
22
22
|
handler="index.handler"
|
|
23
23
|
),
|
|
24
|
-
runtime=synthetics.Runtime.
|
|
24
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
25
25
|
environment_variables={
|
|
26
26
|
"stage": "prod"
|
|
27
27
|
}
|
|
@@ -111,7 +111,7 @@ canary = synthetics.Canary(self, "Canary",
|
|
|
111
111
|
code=synthetics.Code.from_inline("/* Synthetics handler code")
|
|
112
112
|
),
|
|
113
113
|
cleanup=synthetics.Cleanup.LAMBDA,
|
|
114
|
-
runtime=synthetics.Runtime.
|
|
114
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2
|
|
115
115
|
)
|
|
116
116
|
```
|
|
117
117
|
|
|
@@ -139,7 +139,7 @@ synthetics.Canary(self, "Inline Canary",
|
|
|
139
139
|
code=synthetics.Code.from_inline("/* Synthetics handler code */"),
|
|
140
140
|
handler="index.handler"
|
|
141
141
|
),
|
|
142
|
-
runtime=synthetics.Runtime.
|
|
142
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2
|
|
143
143
|
)
|
|
144
144
|
|
|
145
145
|
# To supply the code from your local filesystem:
|
|
@@ -148,7 +148,7 @@ synthetics.Canary(self, "Asset Canary",
|
|
|
148
148
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
149
149
|
handler="index.handler"
|
|
150
150
|
),
|
|
151
|
-
runtime=synthetics.Runtime.
|
|
151
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2
|
|
152
152
|
)
|
|
153
153
|
bucket = s3.Bucket(self, "Code Bucket")
|
|
154
154
|
synthetics.Canary(self, "Bucket Canary",
|
|
@@ -156,7 +156,7 @@ synthetics.Canary(self, "Bucket Canary",
|
|
|
156
156
|
code=synthetics.Code.from_bucket(bucket, "canary.zip"),
|
|
157
157
|
handler="index.handler"
|
|
158
158
|
),
|
|
159
|
-
runtime=synthetics.Runtime.
|
|
159
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2
|
|
160
160
|
)
|
|
161
161
|
```
|
|
162
162
|
|
|
@@ -195,7 +195,7 @@ synthetics.Canary(self, "Vpc Canary",
|
|
|
195
195
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
196
196
|
handler="index.handler"
|
|
197
197
|
),
|
|
198
|
-
runtime=synthetics.Runtime.
|
|
198
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
199
199
|
vpc=vpc
|
|
200
200
|
)
|
|
201
201
|
```
|
|
@@ -243,7 +243,7 @@ canary = synthetics.Canary(self, "MyCanary",
|
|
|
243
243
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
244
244
|
handler="index.handler"
|
|
245
245
|
),
|
|
246
|
-
runtime=synthetics.Runtime.
|
|
246
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
247
247
|
artifacts_bucket_lifecycle_rules=[LifecycleRule(
|
|
248
248
|
expiration=Duration.days(30)
|
|
249
249
|
)]
|
|
@@ -397,7 +397,7 @@ class Canary(
|
|
|
397
397
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
398
398
|
handler="index.handler"
|
|
399
399
|
),
|
|
400
|
-
runtime=synthetics.Runtime.
|
|
400
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
401
401
|
environment_variables={
|
|
402
402
|
"stage": "prod"
|
|
403
403
|
}
|
|
@@ -711,7 +711,7 @@ class CanaryProps:
|
|
|
711
711
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
712
712
|
handler="index.handler"
|
|
713
713
|
),
|
|
714
|
-
runtime=synthetics.Runtime.
|
|
714
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
715
715
|
environment_variables={
|
|
716
716
|
"stage": "prod"
|
|
717
717
|
}
|
|
@@ -1167,7 +1167,8 @@ class CfnCanary(
|
|
|
1167
1167
|
@builtins.property
|
|
1168
1168
|
@jsii.member(jsii_name="attrCodeSourceLocationArn")
|
|
1169
1169
|
def attr_code_source_location_arn(self) -> builtins.str:
|
|
1170
|
-
'''
|
|
1170
|
+
'''``Ref`` returns the ARN of the Lambda layer where Synthetics stores the canary script code.
|
|
1171
|
+
|
|
1171
1172
|
:cloudformationAttribute: Code.SourceLocationArn
|
|
1172
1173
|
'''
|
|
1173
1174
|
return typing.cast(builtins.str, jsii.get(self, "attrCodeSourceLocationArn"))
|
|
@@ -2848,7 +2849,7 @@ class Cleanup(enum.Enum):
|
|
|
2848
2849
|
code=synthetics.Code.from_inline("/* Synthetics handler code")
|
|
2849
2850
|
),
|
|
2850
2851
|
cleanup=synthetics.Cleanup.LAMBDA,
|
|
2851
|
-
runtime=synthetics.Runtime.
|
|
2852
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2
|
|
2852
2853
|
)
|
|
2853
2854
|
'''
|
|
2854
2855
|
|
|
@@ -2883,7 +2884,7 @@ class Code(
|
|
|
2883
2884
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
2884
2885
|
handler="index.handler"
|
|
2885
2886
|
),
|
|
2886
|
-
runtime=synthetics.Runtime.
|
|
2887
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
2887
2888
|
environment_variables={
|
|
2888
2889
|
"stage": "prod"
|
|
2889
2890
|
}
|
|
@@ -3247,7 +3248,7 @@ class CustomTestOptions:
|
|
|
3247
3248
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
3248
3249
|
handler="index.handler"
|
|
3249
3250
|
),
|
|
3250
|
-
runtime=synthetics.Runtime.
|
|
3251
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
3251
3252
|
environment_variables={
|
|
3252
3253
|
"stage": "prod"
|
|
3253
3254
|
}
|
|
@@ -3352,7 +3353,7 @@ class Runtime(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_synthetics.Run
|
|
|
3352
3353
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
3353
3354
|
handler="index.handler"
|
|
3354
3355
|
),
|
|
3355
|
-
runtime=synthetics.Runtime.
|
|
3356
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
3356
3357
|
environment_variables={
|
|
3357
3358
|
"stage": "prod"
|
|
3358
3359
|
}
|
|
@@ -3373,52 +3374,64 @@ class Runtime(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_synthetics.Run
|
|
|
3373
3374
|
@jsii.python.classproperty
|
|
3374
3375
|
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_3_5")
|
|
3375
3376
|
def SYNTHETICS_NODEJS_PUPPETEER_3_5(cls) -> "Runtime":
|
|
3376
|
-
'''``syn-nodejs-puppeteer-3.5`` includes the following: - Lambda runtime Node.js 14.x - Puppeteer-core version 10.1.0 - Chromium version 92.0.4512.
|
|
3377
|
+
'''(deprecated) ``syn-nodejs-puppeteer-3.5`` includes the following: - Lambda runtime Node.js 14.x - Puppeteer-core version 10.1.0 - Chromium version 92.0.4512.
|
|
3378
|
+
|
|
3379
|
+
:deprecated: Legacy runtime no longer supported by AWS Lambda. Migrate to the latest NodeJS Puppeteer runtime.
|
|
3377
3380
|
|
|
3378
3381
|
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_nodejs_puppeteer.html#CloudWatch_Synthetics_runtimeversion-nodejs-puppeteer-3.5
|
|
3382
|
+
:stability: deprecated
|
|
3379
3383
|
'''
|
|
3380
3384
|
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_3_5"))
|
|
3381
3385
|
|
|
3382
3386
|
@jsii.python.classproperty
|
|
3383
3387
|
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_3_6")
|
|
3384
3388
|
def SYNTHETICS_NODEJS_PUPPETEER_3_6(cls) -> "Runtime":
|
|
3385
|
-
'''``syn-nodejs-puppeteer-3.6`` includes the following: - Lambda runtime Node.js 14.x - Puppeteer-core version 10.1.0 - Chromium version 92.0.4512.
|
|
3389
|
+
'''(deprecated) ``syn-nodejs-puppeteer-3.6`` includes the following: - Lambda runtime Node.js 14.x - Puppeteer-core version 10.1.0 - Chromium version 92.0.4512.
|
|
3390
|
+
|
|
3391
|
+
:deprecated: Legacy runtime no longer supported by AWS Lambda. Migrate to the latest NodeJS Puppeteer runtime.
|
|
3386
3392
|
|
|
3387
3393
|
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_nodejs_puppeteer.html#CloudWatch_Synthetics_runtimeversion-nodejs-puppeteer-3.6
|
|
3394
|
+
:stability: deprecated
|
|
3388
3395
|
'''
|
|
3389
3396
|
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_3_6"))
|
|
3390
3397
|
|
|
3391
3398
|
@jsii.python.classproperty
|
|
3392
3399
|
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_3_7")
|
|
3393
3400
|
def SYNTHETICS_NODEJS_PUPPETEER_3_7(cls) -> "Runtime":
|
|
3394
|
-
'''``syn-nodejs-puppeteer-3.7`` includes the following: - Lambda runtime Node.js 14.x - Puppeteer-core version 10.1.0 - Chromium version 92.0.4512.
|
|
3401
|
+
'''(deprecated) ``syn-nodejs-puppeteer-3.7`` includes the following: - Lambda runtime Node.js 14.x - Puppeteer-core version 10.1.0 - Chromium version 92.0.4512.
|
|
3395
3402
|
|
|
3396
3403
|
New Features:
|
|
3397
3404
|
|
|
3398
3405
|
- **Logging enhancement**: The canary will upload logs to Amazon S3 even if it times out or crashes.
|
|
3399
3406
|
- **Lambda layer size reduced**: The size of the Lambda layer used for canaries is reduced by 34%.
|
|
3400
3407
|
|
|
3408
|
+
:deprecated: Legacy runtime no longer supported by AWS Lambda. Migrate to the latest NodeJS Puppeteer runtime.
|
|
3409
|
+
|
|
3401
3410
|
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_nodejs_puppeteer.html#CloudWatch_Synthetics_runtimeversion-nodejs-puppeteer-3.7
|
|
3411
|
+
:stability: deprecated
|
|
3402
3412
|
'''
|
|
3403
3413
|
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_3_7"))
|
|
3404
3414
|
|
|
3405
3415
|
@jsii.python.classproperty
|
|
3406
3416
|
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_3_8")
|
|
3407
3417
|
def SYNTHETICS_NODEJS_PUPPETEER_3_8(cls) -> "Runtime":
|
|
3408
|
-
'''``syn-nodejs-puppeteer-3.8`` includes the following: - Lambda runtime Node.js 14.x - Puppeteer-core version 10.1.0 - Chromium version 92.0.4512.
|
|
3418
|
+
'''(deprecated) ``syn-nodejs-puppeteer-3.8`` includes the following: - Lambda runtime Node.js 14.x - Puppeteer-core version 10.1.0 - Chromium version 92.0.4512.
|
|
3409
3419
|
|
|
3410
3420
|
New Features:
|
|
3411
3421
|
|
|
3412
3422
|
- **Profile cleanup**: Chromium profiles are now cleaned up after each canary run.
|
|
3413
3423
|
|
|
3424
|
+
:deprecated: Legacy runtime no longer supported by AWS Lambda. Migrate to the latest NodeJS Puppeteer runtime.
|
|
3425
|
+
|
|
3414
3426
|
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_nodejs_puppeteer.html#CloudWatch_Synthetics_runtimeversion-nodejs-puppeteer-3.8
|
|
3427
|
+
:stability: deprecated
|
|
3415
3428
|
'''
|
|
3416
3429
|
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_3_8"))
|
|
3417
3430
|
|
|
3418
3431
|
@jsii.python.classproperty
|
|
3419
3432
|
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_3_9")
|
|
3420
3433
|
def SYNTHETICS_NODEJS_PUPPETEER_3_9(cls) -> "Runtime":
|
|
3421
|
-
'''``syn-nodejs-puppeteer-3.9`` includes the following:.
|
|
3434
|
+
'''(deprecated) ``syn-nodejs-puppeteer-3.9`` includes the following:.
|
|
3422
3435
|
|
|
3423
3436
|
- Lambda runtime Node.js 14.x
|
|
3424
3437
|
- Puppeteer-core version 5.5.0
|
|
@@ -3428,7 +3441,10 @@ class Runtime(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_synthetics.Run
|
|
|
3428
3441
|
|
|
3429
3442
|
- **Dependency upgrades**: Upgrades some third-party dependency packages.
|
|
3430
3443
|
|
|
3444
|
+
:deprecated: Legacy runtime no longer supported by AWS Lambda. Migrate to the latest NodeJS Puppeteer runtime.
|
|
3445
|
+
|
|
3431
3446
|
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_nodejs_puppeteer.html#CloudWatch_Synthetics_runtimeversion-nodejs-puppeteer-3.9
|
|
3447
|
+
:stability: deprecated
|
|
3432
3448
|
'''
|
|
3433
3449
|
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_3_9"))
|
|
3434
3450
|
|
|
@@ -3471,6 +3487,20 @@ class Runtime(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_synthetics.Run
|
|
|
3471
3487
|
'''
|
|
3472
3488
|
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_5_1"))
|
|
3473
3489
|
|
|
3490
|
+
@jsii.python.classproperty
|
|
3491
|
+
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_5_2")
|
|
3492
|
+
def SYNTHETICS_NODEJS_PUPPETEER_5_2(cls) -> "Runtime":
|
|
3493
|
+
'''``syn-nodejs-puppeteer-5.2`` includes the following: - Lambda runtime Node.js 16.x - Puppeteer-core version 19.7.0 - Chromium version 111.0.5563.146.
|
|
3494
|
+
|
|
3495
|
+
New Features:
|
|
3496
|
+
|
|
3497
|
+
- **Updated versions of the bundled libraries in Chromium**
|
|
3498
|
+
- **Bug fixes**
|
|
3499
|
+
|
|
3500
|
+
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_nodejs_puppeteer.html#CloudWatch_Synthetics_runtimeversion-nodejs-puppeteer-5.2
|
|
3501
|
+
'''
|
|
3502
|
+
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_5_2"))
|
|
3503
|
+
|
|
3474
3504
|
@jsii.python.classproperty
|
|
3475
3505
|
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_6_0")
|
|
3476
3506
|
def SYNTHETICS_NODEJS_PUPPETEER_6_0(cls) -> "Runtime":
|
|
@@ -3486,6 +3516,36 @@ class Runtime(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_synthetics.Run
|
|
|
3486
3516
|
'''
|
|
3487
3517
|
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_6_0"))
|
|
3488
3518
|
|
|
3519
|
+
@jsii.python.classproperty
|
|
3520
|
+
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_6_1")
|
|
3521
|
+
def SYNTHETICS_NODEJS_PUPPETEER_6_1(cls) -> "Runtime":
|
|
3522
|
+
'''``syn-nodejs-puppeteer-6.1`` includes the following: - Lambda runtime Node.js 18.x - Puppeteer-core version 19.7.0 - Chromium version 111.0.5563.146.
|
|
3523
|
+
|
|
3524
|
+
New Features:
|
|
3525
|
+
|
|
3526
|
+
- **Stability improvements**: Added auto-retry logic for handling intermittent Puppeteer launch errors.
|
|
3527
|
+
- **Dependency upgrades**: Upgrades for some third-party dependency packages.
|
|
3528
|
+
- **Canaries without Amazon S3 permissions**: Bug fixes, such that canaries that don't have any Amazon S3 permissions can still run. These canaries with no Amazon S3 permissions won't be able to upload screenshots or other artifacts to Amazon S3. For more information about permissions for canaries, see Required roles and permissions for canaries.
|
|
3529
|
+
|
|
3530
|
+
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_nodejs_puppeteer.html#CloudWatch_Synthetics_runtimeversion-nodejs-puppeteer-6.1
|
|
3531
|
+
'''
|
|
3532
|
+
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_6_1"))
|
|
3533
|
+
|
|
3534
|
+
@jsii.python.classproperty
|
|
3535
|
+
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_6_2")
|
|
3536
|
+
def SYNTHETICS_NODEJS_PUPPETEER_6_2(cls) -> "Runtime":
|
|
3537
|
+
'''``syn-nodejs-puppeteer-6.2`` includes the following: - Lambda runtime Node.js 18.x - Puppeteer-core version 19.7.0 - Chromium version 111.0.5563.146.
|
|
3538
|
+
|
|
3539
|
+
New Features:
|
|
3540
|
+
|
|
3541
|
+
- **Updated versions of the bundled libraries in Chromium**
|
|
3542
|
+
- **Ephemeral storage monitoring**: This runtime adds ephemeral storage monitoring in customer accounts.
|
|
3543
|
+
- **Bug fixes**
|
|
3544
|
+
|
|
3545
|
+
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_nodejs_puppeteer.html#CloudWatch_Synthetics_runtimeversion-nodejs-puppeteer-6.1
|
|
3546
|
+
'''
|
|
3547
|
+
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_6_2"))
|
|
3548
|
+
|
|
3489
3549
|
@jsii.python.classproperty
|
|
3490
3550
|
@jsii.member(jsii_name="SYNTHETICS_PYTHON_SELENIUM_1_0")
|
|
3491
3551
|
def SYNTHETICS_PYTHON_SELENIUM_1_0(cls) -> "Runtime":
|
|
@@ -3556,6 +3616,19 @@ class Runtime(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_synthetics.Run
|
|
|
3556
3616
|
'''
|
|
3557
3617
|
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_PYTHON_SELENIUM_2_0"))
|
|
3558
3618
|
|
|
3619
|
+
@jsii.python.classproperty
|
|
3620
|
+
@jsii.member(jsii_name="SYNTHETICS_PYTHON_SELENIUM_2_1")
|
|
3621
|
+
def SYNTHETICS_PYTHON_SELENIUM_2_1(cls) -> "Runtime":
|
|
3622
|
+
'''``syn-python-selenium-2.1`` includes the following: - Lambda runtime Python 3.8 - Selenium version 4.15.1 - Chromium version 111.0.5563.146.
|
|
3623
|
+
|
|
3624
|
+
New Features:
|
|
3625
|
+
|
|
3626
|
+
- **Updated versions of the bundled libraries in Chromium**: The Chromium and Selenium dependencies are updated to new versions.
|
|
3627
|
+
|
|
3628
|
+
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_python_selenium.html#CloudWatch_Synthetics_runtimeversion-syn-python-selenium-2.0
|
|
3629
|
+
'''
|
|
3630
|
+
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_PYTHON_SELENIUM_2_1"))
|
|
3631
|
+
|
|
3559
3632
|
@builtins.property
|
|
3560
3633
|
@jsii.member(jsii_name="family")
|
|
3561
3634
|
def family(self) -> "RuntimeFamily":
|
|
@@ -3657,7 +3730,7 @@ class Schedule(
|
|
|
3657
3730
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
3658
3731
|
handler="index.handler"
|
|
3659
3732
|
),
|
|
3660
|
-
runtime=synthetics.Runtime.
|
|
3733
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
3661
3734
|
environment_variables={
|
|
3662
3735
|
"stage": "prod"
|
|
3663
3736
|
}
|
|
@@ -3745,7 +3818,7 @@ class Test(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_synthetics.Test")
|
|
|
3745
3818
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
3746
3819
|
handler="index.handler"
|
|
3747
3820
|
),
|
|
3748
|
-
runtime=synthetics.Runtime.
|
|
3821
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
3749
3822
|
environment_variables={
|
|
3750
3823
|
"stage": "prod"
|
|
3751
3824
|
}
|
|
@@ -166,8 +166,7 @@ class CfnIdentitySource(
|
|
|
166
166
|
@builtins.property
|
|
167
167
|
@jsii.member(jsii_name="attrDetails")
|
|
168
168
|
def attr_details(self) -> _IResolvable_da3f097b:
|
|
169
|
-
'''
|
|
170
|
-
|
|
169
|
+
'''
|
|
171
170
|
:cloudformationAttribute: Details
|
|
172
171
|
'''
|
|
173
172
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrDetails"))
|
|
@@ -2824,7 +2824,8 @@ class CfnService(
|
|
|
2824
2824
|
@builtins.property
|
|
2825
2825
|
@jsii.member(jsii_name="attrDnsEntryDomainName")
|
|
2826
2826
|
def attr_dns_entry_domain_name(self) -> builtins.str:
|
|
2827
|
-
'''
|
|
2827
|
+
'''The domain name of the service.
|
|
2828
|
+
|
|
2828
2829
|
:cloudformationAttribute: DnsEntry.DomainName
|
|
2829
2830
|
'''
|
|
2830
2831
|
return typing.cast(builtins.str, jsii.get(self, "attrDnsEntryDomainName"))
|
|
@@ -2832,7 +2833,8 @@ class CfnService(
|
|
|
2832
2833
|
@builtins.property
|
|
2833
2834
|
@jsii.member(jsii_name="attrDnsEntryHostedZoneId")
|
|
2834
2835
|
def attr_dns_entry_hosted_zone_id(self) -> builtins.str:
|
|
2835
|
-
'''
|
|
2836
|
+
'''The ID of the hosted zone.
|
|
2837
|
+
|
|
2836
2838
|
:cloudformationAttribute: DnsEntry.HostedZoneId
|
|
2837
2839
|
'''
|
|
2838
2840
|
return typing.cast(builtins.str, jsii.get(self, "attrDnsEntryHostedZoneId"))
|
|
@@ -3422,7 +3424,8 @@ class CfnServiceNetworkServiceAssociation(
|
|
|
3422
3424
|
@builtins.property
|
|
3423
3425
|
@jsii.member(jsii_name="attrDnsEntryDomainName")
|
|
3424
3426
|
def attr_dns_entry_domain_name(self) -> builtins.str:
|
|
3425
|
-
'''
|
|
3427
|
+
'''The domain name of the service.
|
|
3428
|
+
|
|
3426
3429
|
:cloudformationAttribute: DnsEntry.DomainName
|
|
3427
3430
|
'''
|
|
3428
3431
|
return typing.cast(builtins.str, jsii.get(self, "attrDnsEntryDomainName"))
|
|
@@ -3430,7 +3433,8 @@ class CfnServiceNetworkServiceAssociation(
|
|
|
3430
3433
|
@builtins.property
|
|
3431
3434
|
@jsii.member(jsii_name="attrDnsEntryHostedZoneId")
|
|
3432
3435
|
def attr_dns_entry_hosted_zone_id(self) -> builtins.str:
|
|
3433
|
-
'''
|
|
3436
|
+
'''The ID of the hosted zone.
|
|
3437
|
+
|
|
3434
3438
|
:cloudformationAttribute: DnsEntry.HostedZoneId
|
|
3435
3439
|
'''
|
|
3436
3440
|
return typing.cast(builtins.str, jsii.get(self, "attrDnsEntryHostedZoneId"))
|
aws_cdk/aws_wafv2/__init__.py
CHANGED
|
@@ -809,7 +809,7 @@ class CfnLoggingConfiguration(
|
|
|
809
809
|
|
|
810
810
|
``"FieldToMatch": { "Method": { "Name": "DELETE" } }``
|
|
811
811
|
|
|
812
|
-
:param json_body:
|
|
812
|
+
:param json_body:
|
|
813
813
|
:param method: Redact the indicated HTTP method. The method indicates the type of operation that the request is asking the origin to perform.
|
|
814
814
|
:param query_string: Redact the query string. This is the part of a URL that appears after a ``?`` character, if any.
|
|
815
815
|
:param single_header: Redact a single header. Provide the name of the header to inspect, for example, ``User-Agent`` or ``Referer`` . This setting isn't case sensitive. Example JSON: ``"SingleHeader": { "Name": "haystack" }``
|
|
@@ -859,8 +859,7 @@ class CfnLoggingConfiguration(
|
|
|
859
859
|
|
|
860
860
|
@builtins.property
|
|
861
861
|
def json_body(self) -> typing.Any:
|
|
862
|
-
'''
|
|
863
|
-
|
|
862
|
+
'''
|
|
864
863
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-loggingconfiguration-fieldtomatch.html#cfn-wafv2-loggingconfiguration-fieldtomatch-jsonbody
|
|
865
864
|
'''
|
|
866
865
|
result = self._values.get("json_body")
|
|
@@ -1041,17 +1040,10 @@ class CfnLoggingConfiguration(
|
|
|
1041
1040
|
match_scope: builtins.str,
|
|
1042
1041
|
invalid_fallback_behavior: typing.Optional[builtins.str] = None,
|
|
1043
1042
|
) -> None:
|
|
1044
|
-
'''
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
Use the specifications in this object to indicate which parts of the JSON body to inspect using the rule's inspection criteria. AWS WAF inspects only the parts of the JSON that result from the matches that you indicate.
|
|
1049
|
-
|
|
1050
|
-
Example JSON: ``"JsonBody": { "MatchPattern": { "All": {} }, "MatchScope": "ALL" }``
|
|
1051
|
-
|
|
1052
|
-
:param match_pattern: The patterns to look for in the JSON body. AWS WAF inspects the results of these pattern matches against the rule inspection criteria.
|
|
1053
|
-
:param match_scope: The parts of the JSON to match against using the ``MatchPattern`` . If you specify ``ALL`` , AWS WAF matches against keys and values. ``All`` does not require a match to be found in the keys and a match to be found in the values. It requires a match to be found in the keys or the values or both. To require a match in the keys and in the values, use a logical ``AND`` statement to combine two match rules, one that inspects the keys and another that inspects the values.
|
|
1054
|
-
:param invalid_fallback_behavior: What AWS WAF should do if it fails to completely parse the JSON body. The options are the following:. - ``EVALUATE_AS_STRING`` - Inspect the body as plain text. AWS WAF applies the text transformations and inspection criteria that you defined for the JSON inspection to the body text string. - ``MATCH`` - Treat the web request as matching the rule statement. AWS WAF applies the rule action to the request. - ``NO_MATCH`` - Treat the web request as not matching the rule statement. If you don't provide this setting, AWS WAF parses and evaluates the content only up to the first parsing failure that it encounters. AWS WAF does its best to parse the entire JSON body, but might be forced to stop for reasons such as invalid characters, duplicate keys, truncation, and any content whose root node isn't an object or an array. AWS WAF parses the JSON in the following examples as two valid key, value pairs: - Missing comma: ``{"key1":"value1""key2":"value2"}`` - Missing colon: ``{"key1":"value1","key2""value2"}`` - Extra colons: ``{"key1"::"value1","key2""value2"}``
|
|
1043
|
+
'''
|
|
1044
|
+
:param match_pattern:
|
|
1045
|
+
:param match_scope:
|
|
1046
|
+
:param invalid_fallback_behavior:
|
|
1055
1047
|
|
|
1056
1048
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-loggingconfiguration-jsonbody.html
|
|
1057
1049
|
:exampleMetadata: fixture=_generated
|
|
@@ -1091,10 +1083,7 @@ class CfnLoggingConfiguration(
|
|
|
1091
1083
|
def match_pattern(
|
|
1092
1084
|
self,
|
|
1093
1085
|
) -> typing.Union[_IResolvable_da3f097b, "CfnLoggingConfiguration.MatchPatternProperty"]:
|
|
1094
|
-
'''
|
|
1095
|
-
|
|
1096
|
-
AWS WAF inspects the results of these pattern matches against the rule inspection criteria.
|
|
1097
|
-
|
|
1086
|
+
'''
|
|
1098
1087
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-loggingconfiguration-jsonbody.html#cfn-wafv2-loggingconfiguration-jsonbody-matchpattern
|
|
1099
1088
|
'''
|
|
1100
1089
|
result = self._values.get("match_pattern")
|
|
@@ -1103,12 +1092,7 @@ class CfnLoggingConfiguration(
|
|
|
1103
1092
|
|
|
1104
1093
|
@builtins.property
|
|
1105
1094
|
def match_scope(self) -> builtins.str:
|
|
1106
|
-
'''
|
|
1107
|
-
|
|
1108
|
-
If you specify ``ALL`` , AWS WAF matches against keys and values.
|
|
1109
|
-
|
|
1110
|
-
``All`` does not require a match to be found in the keys and a match to be found in the values. It requires a match to be found in the keys or the values or both. To require a match in the keys and in the values, use a logical ``AND`` statement to combine two match rules, one that inspects the keys and another that inspects the values.
|
|
1111
|
-
|
|
1095
|
+
'''
|
|
1112
1096
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-loggingconfiguration-jsonbody.html#cfn-wafv2-loggingconfiguration-jsonbody-matchscope
|
|
1113
1097
|
'''
|
|
1114
1098
|
result = self._values.get("match_scope")
|
|
@@ -1117,22 +1101,7 @@ class CfnLoggingConfiguration(
|
|
|
1117
1101
|
|
|
1118
1102
|
@builtins.property
|
|
1119
1103
|
def invalid_fallback_behavior(self) -> typing.Optional[builtins.str]:
|
|
1120
|
-
'''
|
|
1121
|
-
|
|
1122
|
-
- ``EVALUATE_AS_STRING`` - Inspect the body as plain text. AWS WAF applies the text transformations and inspection criteria that you defined for the JSON inspection to the body text string.
|
|
1123
|
-
- ``MATCH`` - Treat the web request as matching the rule statement. AWS WAF applies the rule action to the request.
|
|
1124
|
-
- ``NO_MATCH`` - Treat the web request as not matching the rule statement.
|
|
1125
|
-
|
|
1126
|
-
If you don't provide this setting, AWS WAF parses and evaluates the content only up to the first parsing failure that it encounters.
|
|
1127
|
-
|
|
1128
|
-
AWS WAF does its best to parse the entire JSON body, but might be forced to stop for reasons such as invalid characters, duplicate keys, truncation, and any content whose root node isn't an object or an array.
|
|
1129
|
-
|
|
1130
|
-
AWS WAF parses the JSON in the following examples as two valid key, value pairs:
|
|
1131
|
-
|
|
1132
|
-
- Missing comma: ``{"key1":"value1""key2":"value2"}``
|
|
1133
|
-
- Missing colon: ``{"key1":"value1","key2""value2"}``
|
|
1134
|
-
- Extra colons: ``{"key1"::"value1","key2""value2"}``
|
|
1135
|
-
|
|
1104
|
+
'''
|
|
1136
1105
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-loggingconfiguration-jsonbody.html#cfn-wafv2-loggingconfiguration-jsonbody-invalidfallbackbehavior
|
|
1137
1106
|
'''
|
|
1138
1107
|
result = self._values.get("invalid_fallback_behavior")
|
|
@@ -1301,12 +1270,9 @@ class CfnLoggingConfiguration(
|
|
|
1301
1270
|
all: typing.Any = None,
|
|
1302
1271
|
included_paths: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
1303
1272
|
) -> None:
|
|
1304
|
-
'''
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
:param all: Match all of the elements. You must specify either this setting or the ``IncludedPaths`` setting, but not both.
|
|
1309
|
-
:param included_paths: Match only the specified include paths. Provide the include paths using JSON Pointer syntax. For example, ``"IncludedPaths": ["/dogs/0/name", "/dogs/1/name"]`` . For information about this syntax, see the Internet Engineering Task Force (IETF) documentation `JavaScript Object Notation (JSON) Pointer <https://docs.aws.amazon.com/https://tools.ietf.org/html/rfc6901>`_ . You must specify either this setting or the ``All`` setting, but not both. .. epigraph:: Don't use this option to include all paths. Instead, use the ``All`` setting.
|
|
1273
|
+
'''
|
|
1274
|
+
:param all:
|
|
1275
|
+
:param included_paths:
|
|
1310
1276
|
|
|
1311
1277
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-loggingconfiguration-matchpattern.html
|
|
1312
1278
|
:exampleMetadata: fixture=_generated
|
|
@@ -1336,10 +1302,7 @@ class CfnLoggingConfiguration(
|
|
|
1336
1302
|
|
|
1337
1303
|
@builtins.property
|
|
1338
1304
|
def all(self) -> typing.Any:
|
|
1339
|
-
'''
|
|
1340
|
-
|
|
1341
|
-
You must specify either this setting or the ``IncludedPaths`` setting, but not both.
|
|
1342
|
-
|
|
1305
|
+
'''
|
|
1343
1306
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-loggingconfiguration-matchpattern.html#cfn-wafv2-loggingconfiguration-matchpattern-all
|
|
1344
1307
|
'''
|
|
1345
1308
|
result = self._values.get("all")
|
|
@@ -1347,15 +1310,7 @@ class CfnLoggingConfiguration(
|
|
|
1347
1310
|
|
|
1348
1311
|
@builtins.property
|
|
1349
1312
|
def included_paths(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
1350
|
-
'''
|
|
1351
|
-
|
|
1352
|
-
Provide the include paths using JSON Pointer syntax. For example, ``"IncludedPaths": ["/dogs/0/name", "/dogs/1/name"]`` . For information about this syntax, see the Internet Engineering Task Force (IETF) documentation `JavaScript Object Notation (JSON) Pointer <https://docs.aws.amazon.com/https://tools.ietf.org/html/rfc6901>`_ .
|
|
1353
|
-
|
|
1354
|
-
You must specify either this setting or the ``All`` setting, but not both.
|
|
1355
|
-
.. epigraph::
|
|
1356
|
-
|
|
1357
|
-
Don't use this option to include all paths. Instead, use the ``All`` setting.
|
|
1358
|
-
|
|
1313
|
+
'''
|
|
1359
1314
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-loggingconfiguration-matchpattern.html#cfn-wafv2-loggingconfiguration-matchpattern-includedpaths
|
|
1360
1315
|
'''
|
|
1361
1316
|
result = self._values.get("included_paths")
|
|
@@ -146,8 +146,7 @@ class CfnConnectionAlias(
|
|
|
146
146
|
@builtins.property
|
|
147
147
|
@jsii.member(jsii_name="attrAssociations")
|
|
148
148
|
def attr_associations(self) -> _IResolvable_da3f097b:
|
|
149
|
-
'''
|
|
150
|
-
|
|
149
|
+
'''
|
|
151
150
|
:cloudformationAttribute: Associations
|
|
152
151
|
'''
|
|
153
152
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrAssociations"))
|
|
@@ -449,7 +448,7 @@ class CfnWorkspace(
|
|
|
449
448
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
450
449
|
:param bundle_id: The identifier of the bundle for the WorkSpace.
|
|
451
450
|
:param directory_id: The identifier of the AWS Directory Service directory for the WorkSpace.
|
|
452
|
-
:param user_name: The user name of the user for the WorkSpace. This user name must exist in the AWS Directory Service directory for the WorkSpace.
|
|
451
|
+
:param user_name: The user name of the user for the WorkSpace. This user name must exist in the AWS Directory Service directory for the WorkSpace. The reserved keyword, ``[UNDEFINED]`` , is used when creating user-decoupled WorkSpaces.
|
|
453
452
|
:param root_volume_encryption_enabled: Indicates whether the data stored on the root volume is encrypted.
|
|
454
453
|
:param tags: The tags for the WorkSpace.
|
|
455
454
|
:param user_volume_encryption_enabled: Indicates whether the data stored on the user volume is encrypted.
|
|
@@ -809,7 +808,7 @@ class CfnWorkspaceProps:
|
|
|
809
808
|
|
|
810
809
|
:param bundle_id: The identifier of the bundle for the WorkSpace.
|
|
811
810
|
:param directory_id: The identifier of the AWS Directory Service directory for the WorkSpace.
|
|
812
|
-
:param user_name: The user name of the user for the WorkSpace. This user name must exist in the AWS Directory Service directory for the WorkSpace.
|
|
811
|
+
:param user_name: The user name of the user for the WorkSpace. This user name must exist in the AWS Directory Service directory for the WorkSpace. The reserved keyword, ``[UNDEFINED]`` , is used when creating user-decoupled WorkSpaces.
|
|
813
812
|
:param root_volume_encryption_enabled: Indicates whether the data stored on the root volume is encrypted.
|
|
814
813
|
:param tags: The tags for the WorkSpace.
|
|
815
814
|
:param user_volume_encryption_enabled: Indicates whether the data stored on the user volume is encrypted.
|
|
@@ -899,6 +898,8 @@ class CfnWorkspaceProps:
|
|
|
899
898
|
|
|
900
899
|
This user name must exist in the AWS Directory Service directory for the WorkSpace.
|
|
901
900
|
|
|
901
|
+
The reserved keyword, ``[UNDEFINED]`` , is used when creating user-decoupled WorkSpaces.
|
|
902
|
+
|
|
902
903
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username
|
|
903
904
|
'''
|
|
904
905
|
result = self._values.get("user_name")
|
|
@@ -156,8 +156,7 @@ class CfnBrowserSettings(
|
|
|
156
156
|
@builtins.property
|
|
157
157
|
@jsii.member(jsii_name="attrAssociatedPortalArns")
|
|
158
158
|
def attr_associated_portal_arns(self) -> typing.List[builtins.str]:
|
|
159
|
-
'''
|
|
160
|
-
|
|
159
|
+
'''
|
|
161
160
|
:cloudformationAttribute: AssociatedPortalArns
|
|
162
161
|
'''
|
|
163
162
|
return typing.cast(typing.List[builtins.str], jsii.get(self, "attrAssociatedPortalArns"))
|
|
@@ -776,8 +775,7 @@ class CfnIpAccessSettings(
|
|
|
776
775
|
@builtins.property
|
|
777
776
|
@jsii.member(jsii_name="attrAssociatedPortalArns")
|
|
778
777
|
def attr_associated_portal_arns(self) -> typing.List[builtins.str]:
|
|
779
|
-
'''
|
|
780
|
-
|
|
778
|
+
'''
|
|
781
779
|
:cloudformationAttribute: AssociatedPortalArns
|
|
782
780
|
'''
|
|
783
781
|
return typing.cast(typing.List[builtins.str], jsii.get(self, "attrAssociatedPortalArns"))
|
|
@@ -1229,8 +1227,7 @@ class CfnNetworkSettings(
|
|
|
1229
1227
|
@builtins.property
|
|
1230
1228
|
@jsii.member(jsii_name="attrAssociatedPortalArns")
|
|
1231
1229
|
def attr_associated_portal_arns(self) -> typing.List[builtins.str]:
|
|
1232
|
-
'''
|
|
1233
|
-
|
|
1230
|
+
'''
|
|
1234
1231
|
:cloudformationAttribute: AssociatedPortalArns
|
|
1235
1232
|
'''
|
|
1236
1233
|
return typing.cast(typing.List[builtins.str], jsii.get(self, "attrAssociatedPortalArns"))
|
|
@@ -2104,8 +2101,7 @@ class CfnTrustStore(
|
|
|
2104
2101
|
@builtins.property
|
|
2105
2102
|
@jsii.member(jsii_name="attrAssociatedPortalArns")
|
|
2106
2103
|
def attr_associated_portal_arns(self) -> typing.List[builtins.str]:
|
|
2107
|
-
'''
|
|
2108
|
-
|
|
2104
|
+
'''
|
|
2109
2105
|
:cloudformationAttribute: AssociatedPortalArns
|
|
2110
2106
|
'''
|
|
2111
2107
|
return typing.cast(typing.List[builtins.str], jsii.get(self, "attrAssociatedPortalArns"))
|
|
@@ -2322,8 +2318,7 @@ class CfnUserAccessLoggingSettings(
|
|
|
2322
2318
|
@builtins.property
|
|
2323
2319
|
@jsii.member(jsii_name="attrAssociatedPortalArns")
|
|
2324
2320
|
def attr_associated_portal_arns(self) -> typing.List[builtins.str]:
|
|
2325
|
-
'''
|
|
2326
|
-
|
|
2321
|
+
'''
|
|
2327
2322
|
:cloudformationAttribute: AssociatedPortalArns
|
|
2328
2323
|
'''
|
|
2329
2324
|
return typing.cast(typing.List[builtins.str], jsii.get(self, "attrAssociatedPortalArns"))
|
|
@@ -2592,8 +2587,7 @@ class CfnUserSettings(
|
|
|
2592
2587
|
@builtins.property
|
|
2593
2588
|
@jsii.member(jsii_name="attrAssociatedPortalArns")
|
|
2594
2589
|
def attr_associated_portal_arns(self) -> typing.List[builtins.str]:
|
|
2595
|
-
'''
|
|
2596
|
-
|
|
2590
|
+
'''
|
|
2597
2591
|
:cloudformationAttribute: AssociatedPortalArns
|
|
2598
2592
|
'''
|
|
2599
2593
|
return typing.cast(typing.List[builtins.str], jsii.get(self, "attrAssociatedPortalArns"))
|