aws-cdk-lib 2.211.0__py3-none-any.whl → 2.213.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 +398 -43
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.211.0.jsii.tgz → aws-cdk-lib@2.213.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +2 -0
- aws_cdk/aws_apigatewayv2/__init__.py +1798 -74
- aws_cdk/aws_appintegrations/__init__.py +395 -0
- aws_cdk/aws_arcregionswitch/__init__.py +118 -0
- aws_cdk/aws_batch/__init__.py +4 -4
- aws_cdk/aws_bedrock/__init__.py +18 -0
- aws_cdk/aws_billingconductor/__init__.py +3 -3
- aws_cdk/aws_cloudfront/__init__.py +19 -0
- aws_cdk/aws_codebuild/__init__.py +122 -0
- aws_cdk/aws_codepipeline/__init__.py +51 -50
- aws_cdk/aws_connect/__init__.py +40 -15
- aws_cdk/aws_deadline/__init__.py +16 -5
- aws_cdk/aws_dynamodb/__init__.py +477 -56
- aws_cdk/aws_ec2/__init__.py +266 -55
- aws_cdk/aws_ecs/__init__.py +7 -9
- aws_cdk/aws_eks/__init__.py +6 -4
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +2 -2
- aws_cdk/aws_gameliftstreams/__init__.py +7 -6
- aws_cdk/aws_glue/__init__.py +18 -9
- aws_cdk/aws_guardduty/__init__.py +1233 -113
- aws_cdk/aws_iam/__init__.py +21 -6
- aws_cdk/aws_imagebuilder/__init__.py +34 -20
- aws_cdk/aws_inspectorv2/__init__.py +1516 -0
- aws_cdk/aws_ivs/__init__.py +1 -1
- aws_cdk/aws_lakeformation/__init__.py +1 -1
- aws_cdk/aws_lambda/__init__.py +6 -6
- aws_cdk/aws_omics/__init__.py +1 -1
- aws_cdk/aws_opensearchservice/__init__.py +128 -0
- aws_cdk/aws_pcs/__init__.py +16 -8
- aws_cdk/aws_quicksight/__init__.py +81 -83
- aws_cdk/aws_rds/__init__.py +31 -163
- aws_cdk/aws_s3express/__init__.py +7 -3
- aws_cdk/aws_s3tables/__init__.py +2 -2
- aws_cdk/aws_sagemaker/__init__.py +62 -20
- aws_cdk/aws_sqs/__init__.py +4 -3
- aws_cdk/aws_stepfunctions_tasks/__init__.py +16 -9
- aws_cdk/aws_synthetics/__init__.py +116 -0
- aws_cdk/cx_api/__init__.py +22 -0
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.213.0.dist-info}/METADATA +329 -9
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.213.0.dist-info}/RECORD +47 -47
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.213.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.213.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.213.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.213.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ivs/__init__.py
CHANGED
|
@@ -3636,7 +3636,7 @@ class CfnStage(
|
|
|
3636
3636
|
*,
|
|
3637
3637
|
participant_thumbnail_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnStage.ParticipantThumbnailConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3638
3638
|
) -> None:
|
|
3639
|
-
'''
|
|
3639
|
+
'''An object representing a configuration of thumbnails for recorded video.
|
|
3640
3640
|
|
|
3641
3641
|
:param participant_thumbnail_configuration: An object representing a configuration of thumbnails for recorded video from an individual participant.
|
|
3642
3642
|
|
|
@@ -25,7 +25,7 @@ For more information on the resources and properties available for this service,
|
|
|
25
25
|
|
|
26
26
|
<!--END CFNONLY DISCLAIMER-->
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
## Example
|
|
29
29
|
|
|
30
30
|
Here is an example of creating a glue table and putting lakeformation tags on it. Note: this example uses deprecated constructs and overly permissive IAM roles. This example is meant to give a general idea of using the L1s; it is not production level.
|
|
31
31
|
|
aws_cdk/aws_lambda/__init__.py
CHANGED
|
@@ -1216,7 +1216,7 @@ version = fn.current_version
|
|
|
1216
1216
|
You can use Application AutoScaling to automatically configure the provisioned concurrency for your functions. AutoScaling can be set to track utilization or be based on a schedule. To configure AutoScaling on a function alias:
|
|
1217
1217
|
|
|
1218
1218
|
```python
|
|
1219
|
-
import aws_cdk.
|
|
1219
|
+
import aws_cdk.aws_applicationautoscaling as appscaling
|
|
1220
1220
|
|
|
1221
1221
|
# fn: lambda.Function
|
|
1222
1222
|
|
|
@@ -1232,7 +1232,7 @@ as.scale_on_utilization(
|
|
|
1232
1232
|
|
|
1233
1233
|
# Configure Scheduled Scaling
|
|
1234
1234
|
as.scale_on_schedule("ScaleUpInTheMorning",
|
|
1235
|
-
schedule=
|
|
1235
|
+
schedule=appscaling.Schedule.cron(hour="8", minute="0"),
|
|
1236
1236
|
min_capacity=20
|
|
1237
1237
|
)
|
|
1238
1238
|
```
|
|
@@ -3122,7 +3122,7 @@ class AutoScalingOptions:
|
|
|
3122
3122
|
|
|
3123
3123
|
Example::
|
|
3124
3124
|
|
|
3125
|
-
import aws_cdk.
|
|
3125
|
+
import aws_cdk.aws_applicationautoscaling as appscaling
|
|
3126
3126
|
|
|
3127
3127
|
# fn: lambda.Function
|
|
3128
3128
|
|
|
@@ -3138,7 +3138,7 @@ class AutoScalingOptions:
|
|
|
3138
3138
|
|
|
3139
3139
|
# Configure Scheduled Scaling
|
|
3140
3140
|
as.scale_on_schedule("ScaleUpInTheMorning",
|
|
3141
|
-
schedule=
|
|
3141
|
+
schedule=appscaling.Schedule.cron(hour="8", minute="0"),
|
|
3142
3142
|
min_capacity=20
|
|
3143
3143
|
)
|
|
3144
3144
|
'''
|
|
@@ -24525,7 +24525,7 @@ class UtilizationScalingOptions(_BaseTargetTrackingProps_540ba713):
|
|
|
24525
24525
|
|
|
24526
24526
|
Example::
|
|
24527
24527
|
|
|
24528
|
-
import aws_cdk.
|
|
24528
|
+
import aws_cdk.aws_applicationautoscaling as appscaling
|
|
24529
24529
|
|
|
24530
24530
|
# fn: lambda.Function
|
|
24531
24531
|
|
|
@@ -24541,7 +24541,7 @@ class UtilizationScalingOptions(_BaseTargetTrackingProps_540ba713):
|
|
|
24541
24541
|
|
|
24542
24542
|
# Configure Scheduled Scaling
|
|
24543
24543
|
as.scale_on_schedule("ScaleUpInTheMorning",
|
|
24544
|
-
schedule=
|
|
24544
|
+
schedule=appscaling.Schedule.cron(hour="8", minute="0"),
|
|
24545
24545
|
min_capacity=20
|
|
24546
24546
|
)
|
|
24547
24547
|
'''
|
aws_cdk/aws_omics/__init__.py
CHANGED
|
@@ -3326,7 +3326,7 @@ class CfnWorkflowVersion(
|
|
|
3326
3326
|
Provide a version name that is unique for this workflow. You cannot change the name after HealthOmics creates the version.
|
|
3327
3327
|
.. epigraph::
|
|
3328
3328
|
|
|
3329
|
-
Don
|
|
3329
|
+
Don't include any personally identifiable information (PII) in the version name. Version names appear in the workflow version ARN.
|
|
3330
3330
|
|
|
3331
3331
|
For more information, see `Workflow versioning in AWS HealthOmics <https://docs.aws.amazon.com/omics/latest/dev/workflow-versions.html>`_ in the *AWS HealthOmics User Guide* .
|
|
3332
3332
|
|
|
@@ -1611,6 +1611,11 @@ class CfnDomain(
|
|
|
1611
1611
|
anonymous_auth_disable_date="anonymousAuthDisableDate",
|
|
1612
1612
|
anonymous_auth_enabled=False,
|
|
1613
1613
|
enabled=False,
|
|
1614
|
+
iam_federation_options={
|
|
1615
|
+
"enabled": False,
|
|
1616
|
+
"roles_key": "rolesKey",
|
|
1617
|
+
"subject_key": "subjectKey"
|
|
1618
|
+
},
|
|
1614
1619
|
internal_user_database_enabled=False,
|
|
1615
1620
|
jwt_options=opensearchservice.CfnDomain.JWTOptionsProperty(
|
|
1616
1621
|
enabled=False,
|
|
@@ -2365,6 +2370,7 @@ class CfnDomain(
|
|
|
2365
2370
|
"anonymous_auth_disable_date": "anonymousAuthDisableDate",
|
|
2366
2371
|
"anonymous_auth_enabled": "anonymousAuthEnabled",
|
|
2367
2372
|
"enabled": "enabled",
|
|
2373
|
+
"iam_federation_options": "iamFederationOptions",
|
|
2368
2374
|
"internal_user_database_enabled": "internalUserDatabaseEnabled",
|
|
2369
2375
|
"jwt_options": "jwtOptions",
|
|
2370
2376
|
"master_user_options": "masterUserOptions",
|
|
@@ -2378,6 +2384,7 @@ class CfnDomain(
|
|
|
2378
2384
|
anonymous_auth_disable_date: typing.Optional[builtins.str] = None,
|
|
2379
2385
|
anonymous_auth_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2380
2386
|
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2387
|
+
iam_federation_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.IAMFederationOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2381
2388
|
internal_user_database_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2382
2389
|
jwt_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.JWTOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2383
2390
|
master_user_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomain.MasterUserOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -2390,6 +2397,7 @@ class CfnDomain(
|
|
|
2390
2397
|
:param anonymous_auth_disable_date: Date and time when the migration period will be disabled. Only necessary when `enabling fine-grained access control on an existing domain <https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html#fgac-enabling-existing>`_ .
|
|
2391
2398
|
:param anonymous_auth_enabled: True to enable a 30-day migration period during which administrators can create role mappings. Only necessary when `enabling fine-grained access control on an existing domain <https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html#fgac-enabling-existing>`_ .
|
|
2392
2399
|
:param enabled: True to enable fine-grained access control. You must also enable encryption of data at rest and node-to-node encryption. See `Fine-grained access control in Amazon OpenSearch Service <https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html>`_ .
|
|
2400
|
+
:param iam_federation_options:
|
|
2393
2401
|
:param internal_user_database_enabled: True to enable the internal user database.
|
|
2394
2402
|
:param jwt_options: Container for information about the JWT configuration of the Amazon OpenSearch Service.
|
|
2395
2403
|
:param master_user_options: Specifies information about the master user.
|
|
@@ -2408,6 +2416,11 @@ class CfnDomain(
|
|
|
2408
2416
|
anonymous_auth_disable_date="anonymousAuthDisableDate",
|
|
2409
2417
|
anonymous_auth_enabled=False,
|
|
2410
2418
|
enabled=False,
|
|
2419
|
+
iam_federation_options={
|
|
2420
|
+
"enabled": False,
|
|
2421
|
+
"roles_key": "rolesKey",
|
|
2422
|
+
"subject_key": "subjectKey"
|
|
2423
|
+
},
|
|
2411
2424
|
internal_user_database_enabled=False,
|
|
2412
2425
|
jwt_options=opensearchservice.CfnDomain.JWTOptionsProperty(
|
|
2413
2426
|
enabled=False,
|
|
@@ -2439,6 +2452,7 @@ class CfnDomain(
|
|
|
2439
2452
|
check_type(argname="argument anonymous_auth_disable_date", value=anonymous_auth_disable_date, expected_type=type_hints["anonymous_auth_disable_date"])
|
|
2440
2453
|
check_type(argname="argument anonymous_auth_enabled", value=anonymous_auth_enabled, expected_type=type_hints["anonymous_auth_enabled"])
|
|
2441
2454
|
check_type(argname="argument enabled", value=enabled, expected_type=type_hints["enabled"])
|
|
2455
|
+
check_type(argname="argument iam_federation_options", value=iam_federation_options, expected_type=type_hints["iam_federation_options"])
|
|
2442
2456
|
check_type(argname="argument internal_user_database_enabled", value=internal_user_database_enabled, expected_type=type_hints["internal_user_database_enabled"])
|
|
2443
2457
|
check_type(argname="argument jwt_options", value=jwt_options, expected_type=type_hints["jwt_options"])
|
|
2444
2458
|
check_type(argname="argument master_user_options", value=master_user_options, expected_type=type_hints["master_user_options"])
|
|
@@ -2450,6 +2464,8 @@ class CfnDomain(
|
|
|
2450
2464
|
self._values["anonymous_auth_enabled"] = anonymous_auth_enabled
|
|
2451
2465
|
if enabled is not None:
|
|
2452
2466
|
self._values["enabled"] = enabled
|
|
2467
|
+
if iam_federation_options is not None:
|
|
2468
|
+
self._values["iam_federation_options"] = iam_federation_options
|
|
2453
2469
|
if internal_user_database_enabled is not None:
|
|
2454
2470
|
self._values["internal_user_database_enabled"] = internal_user_database_enabled
|
|
2455
2471
|
if jwt_options is not None:
|
|
@@ -2496,6 +2512,16 @@ class CfnDomain(
|
|
|
2496
2512
|
result = self._values.get("enabled")
|
|
2497
2513
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
2498
2514
|
|
|
2515
|
+
@builtins.property
|
|
2516
|
+
def iam_federation_options(
|
|
2517
|
+
self,
|
|
2518
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.IAMFederationOptionsProperty"]]:
|
|
2519
|
+
'''
|
|
2520
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-advancedsecurityoptionsinput.html#cfn-opensearchservice-domain-advancedsecurityoptionsinput-iamfederationoptions
|
|
2521
|
+
'''
|
|
2522
|
+
result = self._values.get("iam_federation_options")
|
|
2523
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomain.IAMFederationOptionsProperty"]], result)
|
|
2524
|
+
|
|
2499
2525
|
@builtins.property
|
|
2500
2526
|
def internal_user_database_enabled(
|
|
2501
2527
|
self,
|
|
@@ -3363,6 +3389,93 @@ class CfnDomain(
|
|
|
3363
3389
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
3364
3390
|
)
|
|
3365
3391
|
|
|
3392
|
+
@jsii.data_type(
|
|
3393
|
+
jsii_type="aws-cdk-lib.aws_opensearchservice.CfnDomain.IAMFederationOptionsProperty",
|
|
3394
|
+
jsii_struct_bases=[],
|
|
3395
|
+
name_mapping={
|
|
3396
|
+
"enabled": "enabled",
|
|
3397
|
+
"roles_key": "rolesKey",
|
|
3398
|
+
"subject_key": "subjectKey",
|
|
3399
|
+
},
|
|
3400
|
+
)
|
|
3401
|
+
class IAMFederationOptionsProperty:
|
|
3402
|
+
def __init__(
|
|
3403
|
+
self,
|
|
3404
|
+
*,
|
|
3405
|
+
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
3406
|
+
roles_key: typing.Optional[builtins.str] = None,
|
|
3407
|
+
subject_key: typing.Optional[builtins.str] = None,
|
|
3408
|
+
) -> None:
|
|
3409
|
+
'''
|
|
3410
|
+
:param enabled:
|
|
3411
|
+
:param roles_key:
|
|
3412
|
+
:param subject_key:
|
|
3413
|
+
|
|
3414
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-iamfederationoptions.html
|
|
3415
|
+
:exampleMetadata: fixture=_generated
|
|
3416
|
+
|
|
3417
|
+
Example::
|
|
3418
|
+
|
|
3419
|
+
# The code below shows an example of how to instantiate this type.
|
|
3420
|
+
# The values are placeholders you should change.
|
|
3421
|
+
from aws_cdk import aws_opensearchservice as opensearchservice
|
|
3422
|
+
|
|
3423
|
+
i_aMFederation_options_property = {
|
|
3424
|
+
"enabled": False,
|
|
3425
|
+
"roles_key": "rolesKey",
|
|
3426
|
+
"subject_key": "subjectKey"
|
|
3427
|
+
}
|
|
3428
|
+
'''
|
|
3429
|
+
if __debug__:
|
|
3430
|
+
type_hints = typing.get_type_hints(_typecheckingstub__971641e70ccfc775e66557140fbf7dd5e756f8742fc74a12671b24f77bea23c6)
|
|
3431
|
+
check_type(argname="argument enabled", value=enabled, expected_type=type_hints["enabled"])
|
|
3432
|
+
check_type(argname="argument roles_key", value=roles_key, expected_type=type_hints["roles_key"])
|
|
3433
|
+
check_type(argname="argument subject_key", value=subject_key, expected_type=type_hints["subject_key"])
|
|
3434
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
3435
|
+
if enabled is not None:
|
|
3436
|
+
self._values["enabled"] = enabled
|
|
3437
|
+
if roles_key is not None:
|
|
3438
|
+
self._values["roles_key"] = roles_key
|
|
3439
|
+
if subject_key is not None:
|
|
3440
|
+
self._values["subject_key"] = subject_key
|
|
3441
|
+
|
|
3442
|
+
@builtins.property
|
|
3443
|
+
def enabled(
|
|
3444
|
+
self,
|
|
3445
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
3446
|
+
'''
|
|
3447
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-iamfederationoptions.html#cfn-opensearchservice-domain-iamfederationoptions-enabled
|
|
3448
|
+
'''
|
|
3449
|
+
result = self._values.get("enabled")
|
|
3450
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
3451
|
+
|
|
3452
|
+
@builtins.property
|
|
3453
|
+
def roles_key(self) -> typing.Optional[builtins.str]:
|
|
3454
|
+
'''
|
|
3455
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-iamfederationoptions.html#cfn-opensearchservice-domain-iamfederationoptions-roleskey
|
|
3456
|
+
'''
|
|
3457
|
+
result = self._values.get("roles_key")
|
|
3458
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3459
|
+
|
|
3460
|
+
@builtins.property
|
|
3461
|
+
def subject_key(self) -> typing.Optional[builtins.str]:
|
|
3462
|
+
'''
|
|
3463
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-iamfederationoptions.html#cfn-opensearchservice-domain-iamfederationoptions-subjectkey
|
|
3464
|
+
'''
|
|
3465
|
+
result = self._values.get("subject_key")
|
|
3466
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3467
|
+
|
|
3468
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3469
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3470
|
+
|
|
3471
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3472
|
+
return not (rhs == self)
|
|
3473
|
+
|
|
3474
|
+
def __repr__(self) -> str:
|
|
3475
|
+
return "IAMFederationOptionsProperty(%s)" % ", ".join(
|
|
3476
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3477
|
+
)
|
|
3478
|
+
|
|
3366
3479
|
@jsii.data_type(
|
|
3367
3480
|
jsii_type="aws-cdk-lib.aws_opensearchservice.CfnDomain.IdentityCenterOptionsProperty",
|
|
3368
3481
|
jsii_struct_bases=[],
|
|
@@ -4999,6 +5112,11 @@ class CfnDomainProps:
|
|
|
4999
5112
|
anonymous_auth_disable_date="anonymousAuthDisableDate",
|
|
5000
5113
|
anonymous_auth_enabled=False,
|
|
5001
5114
|
enabled=False,
|
|
5115
|
+
iam_federation_options={
|
|
5116
|
+
"enabled": False,
|
|
5117
|
+
"roles_key": "rolesKey",
|
|
5118
|
+
"subject_key": "subjectKey"
|
|
5119
|
+
},
|
|
5002
5120
|
internal_user_database_enabled=False,
|
|
5003
5121
|
jwt_options=opensearchservice.CfnDomain.JWTOptionsProperty(
|
|
5004
5122
|
enabled=False,
|
|
@@ -10731,6 +10849,7 @@ def _typecheckingstub__fd5c3c68239a044600ab387ec52e22ed8852c6e213d5626aa4396b28a
|
|
|
10731
10849
|
anonymous_auth_disable_date: typing.Optional[builtins.str] = None,
|
|
10732
10850
|
anonymous_auth_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
10733
10851
|
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
10852
|
+
iam_federation_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.IAMFederationOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10734
10853
|
internal_user_database_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
10735
10854
|
jwt_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.JWTOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10736
10855
|
master_user_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomain.MasterUserOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -10805,6 +10924,15 @@ def _typecheckingstub__8045e71bf2b9389f7b778b391167aea3cf2ff9b7ccd6b9462c26cc1dc
|
|
|
10805
10924
|
"""Type checking stubs"""
|
|
10806
10925
|
pass
|
|
10807
10926
|
|
|
10927
|
+
def _typecheckingstub__971641e70ccfc775e66557140fbf7dd5e756f8742fc74a12671b24f77bea23c6(
|
|
10928
|
+
*,
|
|
10929
|
+
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
10930
|
+
roles_key: typing.Optional[builtins.str] = None,
|
|
10931
|
+
subject_key: typing.Optional[builtins.str] = None,
|
|
10932
|
+
) -> None:
|
|
10933
|
+
"""Type checking stubs"""
|
|
10934
|
+
pass
|
|
10935
|
+
|
|
10808
10936
|
def _typecheckingstub__9205eb32a18ebed75ca975205de43322a1836abdff793eaed7f00cdef41743bd(
|
|
10809
10937
|
*,
|
|
10810
10938
|
enabled_api_access: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
aws_cdk/aws_pcs/__init__.py
CHANGED
|
@@ -538,9 +538,9 @@ class CfnCluster(
|
|
|
538
538
|
'''An endpoint available for interaction with the scheduler.
|
|
539
539
|
|
|
540
540
|
:param port: The endpoint's connection port number.
|
|
541
|
-
:param private_ip_address:
|
|
541
|
+
:param private_ip_address: For clusters that use IPv4, this is the endpoint's private IP address. Example: ``10.1.2.3`` For clusters configured to use IPv6, this is an empty string.
|
|
542
542
|
:param type: Indicates the type of endpoint running at the specific IP address.
|
|
543
|
-
:param ipv6_address: The endpoint's IPv6 address.
|
|
543
|
+
:param ipv6_address: The endpoint's IPv6 address. Example: ``2001:db8::1``
|
|
544
544
|
:param public_ip_address: The endpoint's public IP address.
|
|
545
545
|
|
|
546
546
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-endpoint.html
|
|
@@ -591,7 +591,11 @@ class CfnCluster(
|
|
|
591
591
|
|
|
592
592
|
@builtins.property
|
|
593
593
|
def private_ip_address(self) -> builtins.str:
|
|
594
|
-
'''
|
|
594
|
+
'''For clusters that use IPv4, this is the endpoint's private IP address.
|
|
595
|
+
|
|
596
|
+
Example: ``10.1.2.3``
|
|
597
|
+
|
|
598
|
+
For clusters configured to use IPv6, this is an empty string.
|
|
595
599
|
|
|
596
600
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-endpoint.html#cfn-pcs-cluster-endpoint-privateipaddress
|
|
597
601
|
'''
|
|
@@ -613,6 +617,8 @@ class CfnCluster(
|
|
|
613
617
|
def ipv6_address(self) -> typing.Optional[builtins.str]:
|
|
614
618
|
'''The endpoint's IPv6 address.
|
|
615
619
|
|
|
620
|
+
Example: ``2001:db8::1``
|
|
621
|
+
|
|
616
622
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-endpoint.html#cfn-pcs-cluster-endpoint-ipv6address
|
|
617
623
|
'''
|
|
618
624
|
result = self._values.get("ipv6_address")
|
|
@@ -725,9 +731,9 @@ class CfnCluster(
|
|
|
725
731
|
security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
726
732
|
subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
727
733
|
) -> None:
|
|
728
|
-
'''
|
|
734
|
+
'''The networking configuration for the cluster's control plane.
|
|
729
735
|
|
|
730
|
-
:param network_type: The IP
|
|
736
|
+
:param network_type: The IP address version the cluster uses. The default is ``IPV4`` .
|
|
731
737
|
:param security_group_ids: The list of security group IDs associated with the Elastic Network Interface (ENI) created in subnets.
|
|
732
738
|
:param subnet_ids: The list of subnet IDs where AWS PCS creates an Elastic Network Interface (ENI) to enable communication between managed controllers and AWS PCS resources. The subnet must have an available IP address, cannot reside in AWS Outposts, AWS Wavelength, or an AWS Local Zone. AWS PCS currently supports only 1 subnet in this list.
|
|
733
739
|
|
|
@@ -761,7 +767,9 @@ class CfnCluster(
|
|
|
761
767
|
|
|
762
768
|
@builtins.property
|
|
763
769
|
def network_type(self) -> typing.Optional[builtins.str]:
|
|
764
|
-
'''The IP
|
|
770
|
+
'''The IP address version the cluster uses.
|
|
771
|
+
|
|
772
|
+
The default is ``IPV4`` .
|
|
765
773
|
|
|
766
774
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-networking.html#cfn-pcs-cluster-networking-networktype
|
|
767
775
|
'''
|
|
@@ -2639,7 +2647,7 @@ class CfnQueue(
|
|
|
2639
2647
|
'''An error that occurred during resource provisioning.
|
|
2640
2648
|
|
|
2641
2649
|
:param code: The short-form error code.
|
|
2642
|
-
:param message:
|
|
2650
|
+
:param message: The detailed error information.
|
|
2643
2651
|
|
|
2644
2652
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-queue-errorinfo.html
|
|
2645
2653
|
:exampleMetadata: fixture=_generated
|
|
@@ -2676,7 +2684,7 @@ class CfnQueue(
|
|
|
2676
2684
|
|
|
2677
2685
|
@builtins.property
|
|
2678
2686
|
def message(self) -> typing.Optional[builtins.str]:
|
|
2679
|
-
'''
|
|
2687
|
+
'''The detailed error information.
|
|
2680
2688
|
|
|
2681
2689
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-queue-errorinfo.html#cfn-pcs-queue-errorinfo-message
|
|
2682
2690
|
'''
|