aws-cdk-lib 2.201.0__py3-none-any.whl → 2.202.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 +24 -24
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.201.0.jsii.tgz → aws-cdk-lib@2.202.0.jsii.tgz} +0 -0
- aws_cdk/aws_athena/__init__.py +12 -11
- aws_cdk/aws_cloudfront/__init__.py +31 -39
- aws_cdk/aws_cloudfront/experimental/__init__.py +5 -0
- aws_cdk/aws_customerprofiles/__init__.py +10 -10
- aws_cdk/aws_ec2/__init__.py +165 -15
- aws_cdk/aws_efs/__init__.py +17 -6
- aws_cdk/aws_eks/__init__.py +180 -158
- aws_cdk/aws_glue/__init__.py +58 -24
- aws_cdk/aws_iam/__init__.py +3 -3
- aws_cdk/aws_kms/__init__.py +10 -4
- aws_cdk/aws_lambda/__init__.py +747 -12
- aws_cdk/aws_lambda_event_sources/__init__.py +638 -1
- aws_cdk/aws_msk/__init__.py +21 -2
- aws_cdk/aws_mwaa/__init__.py +45 -2
- aws_cdk/aws_rds/__init__.py +4 -1
- aws_cdk/aws_s3/__init__.py +16 -0
- aws_cdk/aws_sagemaker/__init__.py +8 -8
- aws_cdk/aws_wafv2/__init__.py +734 -8
- aws_cdk/cx_api/__init__.py +14 -0
- aws_cdk/pipelines/__init__.py +147 -38
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.202.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.202.0.dist-info}/RECORD +29 -29
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.202.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.202.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.202.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.202.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ec2/__init__.py
CHANGED
|
@@ -16213,7 +16213,7 @@ class CfnEIPProps:
|
|
|
16213
16213
|
)
|
|
16214
16214
|
|
|
16215
16215
|
|
|
16216
|
-
@jsii.implements(_IInspectable_c2943556)
|
|
16216
|
+
@jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
|
|
16217
16217
|
class CfnEgressOnlyInternetGateway(
|
|
16218
16218
|
_CfnResource_9df397a6,
|
|
16219
16219
|
metaclass=jsii.JSIIMeta,
|
|
@@ -16236,7 +16236,13 @@ class CfnEgressOnlyInternetGateway(
|
|
|
16236
16236
|
from aws_cdk import aws_ec2 as ec2
|
|
16237
16237
|
|
|
16238
16238
|
cfn_egress_only_internet_gateway = ec2.CfnEgressOnlyInternetGateway(self, "MyCfnEgressOnlyInternetGateway",
|
|
16239
|
-
vpc_id="vpcId"
|
|
16239
|
+
vpc_id="vpcId",
|
|
16240
|
+
|
|
16241
|
+
# the properties below are optional
|
|
16242
|
+
tags=[CfnTag(
|
|
16243
|
+
key="key",
|
|
16244
|
+
value="value"
|
|
16245
|
+
)]
|
|
16240
16246
|
)
|
|
16241
16247
|
'''
|
|
16242
16248
|
|
|
@@ -16246,17 +16252,19 @@ class CfnEgressOnlyInternetGateway(
|
|
|
16246
16252
|
id: builtins.str,
|
|
16247
16253
|
*,
|
|
16248
16254
|
vpc_id: builtins.str,
|
|
16255
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
16249
16256
|
) -> None:
|
|
16250
16257
|
'''
|
|
16251
16258
|
:param scope: Scope in which this resource is defined.
|
|
16252
16259
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
16253
16260
|
:param vpc_id: The ID of the VPC for which to create the egress-only internet gateway.
|
|
16261
|
+
:param tags: The tags assigned to the egress-only internet gateway.
|
|
16254
16262
|
'''
|
|
16255
16263
|
if __debug__:
|
|
16256
16264
|
type_hints = typing.get_type_hints(_typecheckingstub__84a7ddca98bd1c24713f12588ec54b51cdc19c99c2209e07c964172011c4d7ab)
|
|
16257
16265
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
16258
16266
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
16259
|
-
props = CfnEgressOnlyInternetGatewayProps(vpc_id=vpc_id)
|
|
16267
|
+
props = CfnEgressOnlyInternetGatewayProps(vpc_id=vpc_id, tags=tags)
|
|
16260
16268
|
|
|
16261
16269
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
16262
16270
|
|
|
@@ -16299,6 +16307,12 @@ class CfnEgressOnlyInternetGateway(
|
|
|
16299
16307
|
'''
|
|
16300
16308
|
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
16301
16309
|
|
|
16310
|
+
@builtins.property
|
|
16311
|
+
@jsii.member(jsii_name="cdkTagManager")
|
|
16312
|
+
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
16313
|
+
'''Tag Manager which manages the tags for this resource.'''
|
|
16314
|
+
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
|
|
16315
|
+
|
|
16302
16316
|
@builtins.property
|
|
16303
16317
|
@jsii.member(jsii_name="cfnProperties")
|
|
16304
16318
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -16317,17 +16331,36 @@ class CfnEgressOnlyInternetGateway(
|
|
|
16317
16331
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
16318
16332
|
jsii.set(self, "vpcId", value) # pyright: ignore[reportArgumentType]
|
|
16319
16333
|
|
|
16334
|
+
@builtins.property
|
|
16335
|
+
@jsii.member(jsii_name="tags")
|
|
16336
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
16337
|
+
'''The tags assigned to the egress-only internet gateway.'''
|
|
16338
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
16339
|
+
|
|
16340
|
+
@tags.setter
|
|
16341
|
+
def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
|
|
16342
|
+
if __debug__:
|
|
16343
|
+
type_hints = typing.get_type_hints(_typecheckingstub__923846a8ba3d02f36c9267e2c903018ed279860265ad8a488da0a81153c5ff44)
|
|
16344
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
16345
|
+
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
16346
|
+
|
|
16320
16347
|
|
|
16321
16348
|
@jsii.data_type(
|
|
16322
16349
|
jsii_type="aws-cdk-lib.aws_ec2.CfnEgressOnlyInternetGatewayProps",
|
|
16323
16350
|
jsii_struct_bases=[],
|
|
16324
|
-
name_mapping={"vpc_id": "vpcId"},
|
|
16351
|
+
name_mapping={"vpc_id": "vpcId", "tags": "tags"},
|
|
16325
16352
|
)
|
|
16326
16353
|
class CfnEgressOnlyInternetGatewayProps:
|
|
16327
|
-
def __init__(
|
|
16354
|
+
def __init__(
|
|
16355
|
+
self,
|
|
16356
|
+
*,
|
|
16357
|
+
vpc_id: builtins.str,
|
|
16358
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
16359
|
+
) -> None:
|
|
16328
16360
|
'''Properties for defining a ``CfnEgressOnlyInternetGateway``.
|
|
16329
16361
|
|
|
16330
16362
|
:param vpc_id: The ID of the VPC for which to create the egress-only internet gateway.
|
|
16363
|
+
:param tags: The tags assigned to the egress-only internet gateway.
|
|
16331
16364
|
|
|
16332
16365
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html
|
|
16333
16366
|
:exampleMetadata: fixture=_generated
|
|
@@ -16339,15 +16372,24 @@ class CfnEgressOnlyInternetGatewayProps:
|
|
|
16339
16372
|
from aws_cdk import aws_ec2 as ec2
|
|
16340
16373
|
|
|
16341
16374
|
cfn_egress_only_internet_gateway_props = ec2.CfnEgressOnlyInternetGatewayProps(
|
|
16342
|
-
vpc_id="vpcId"
|
|
16375
|
+
vpc_id="vpcId",
|
|
16376
|
+
|
|
16377
|
+
# the properties below are optional
|
|
16378
|
+
tags=[CfnTag(
|
|
16379
|
+
key="key",
|
|
16380
|
+
value="value"
|
|
16381
|
+
)]
|
|
16343
16382
|
)
|
|
16344
16383
|
'''
|
|
16345
16384
|
if __debug__:
|
|
16346
16385
|
type_hints = typing.get_type_hints(_typecheckingstub__b693b2d49003d73758f4c0003564a93353b18fc97434556a2e988e47f367fb84)
|
|
16347
16386
|
check_type(argname="argument vpc_id", value=vpc_id, expected_type=type_hints["vpc_id"])
|
|
16387
|
+
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
16348
16388
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
16349
16389
|
"vpc_id": vpc_id,
|
|
16350
16390
|
}
|
|
16391
|
+
if tags is not None:
|
|
16392
|
+
self._values["tags"] = tags
|
|
16351
16393
|
|
|
16352
16394
|
@builtins.property
|
|
16353
16395
|
def vpc_id(self) -> builtins.str:
|
|
@@ -16359,6 +16401,15 @@ class CfnEgressOnlyInternetGatewayProps:
|
|
|
16359
16401
|
assert result is not None, "Required property 'vpc_id' is missing"
|
|
16360
16402
|
return typing.cast(builtins.str, result)
|
|
16361
16403
|
|
|
16404
|
+
@builtins.property
|
|
16405
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
16406
|
+
'''The tags assigned to the egress-only internet gateway.
|
|
16407
|
+
|
|
16408
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html#cfn-ec2-egressonlyinternetgateway-tags
|
|
16409
|
+
'''
|
|
16410
|
+
result = self._values.get("tags")
|
|
16411
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
|
|
16412
|
+
|
|
16362
16413
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
16363
16414
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
16364
16415
|
|
|
@@ -52550,7 +52601,7 @@ class CfnSubnet(
|
|
|
52550
52601
|
|
|
52551
52602
|
Example::
|
|
52552
52603
|
|
|
52553
|
-
from aws_cdk.
|
|
52604
|
+
from aws_cdk.lambda_layer_kubectl_v33 import KubectlV33Layer
|
|
52554
52605
|
# vpc: ec2.Vpc
|
|
52555
52606
|
|
|
52556
52607
|
|
|
@@ -52575,11 +52626,11 @@ class CfnSubnet(
|
|
|
52575
52626
|
subnetcount = subnetcount + 1
|
|
52576
52627
|
|
|
52577
52628
|
cluster = eks.Cluster(self, "hello-eks",
|
|
52578
|
-
version=eks.KubernetesVersion.
|
|
52629
|
+
version=eks.KubernetesVersion.V1_33,
|
|
52579
52630
|
vpc=vpc,
|
|
52580
52631
|
ip_family=eks.IpFamily.IP_V6,
|
|
52581
52632
|
vpc_subnets=[ec2.SubnetSelection(subnets=vpc.public_subnets)],
|
|
52582
|
-
kubectl_layer=
|
|
52633
|
+
kubectl_layer=KubectlV33Layer(self, "kubectl")
|
|
52583
52634
|
)
|
|
52584
52635
|
'''
|
|
52585
52636
|
|
|
@@ -52705,6 +52756,14 @@ class CfnSubnet(
|
|
|
52705
52756
|
'''
|
|
52706
52757
|
return typing.cast(builtins.str, jsii.get(self, "attrAvailabilityZoneId"))
|
|
52707
52758
|
|
|
52759
|
+
@builtins.property
|
|
52760
|
+
@jsii.member(jsii_name="attrBlockPublicAccessStates")
|
|
52761
|
+
def attr_block_public_access_states(self) -> _IResolvable_da3f097b:
|
|
52762
|
+
'''
|
|
52763
|
+
:cloudformationAttribute: BlockPublicAccessStates
|
|
52764
|
+
'''
|
|
52765
|
+
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrBlockPublicAccessStates"))
|
|
52766
|
+
|
|
52708
52767
|
@builtins.property
|
|
52709
52768
|
@jsii.member(jsii_name="attrCidrBlock")
|
|
52710
52769
|
def attr_cidr_block(self) -> builtins.str:
|
|
@@ -53017,6 +53076,62 @@ class CfnSubnet(
|
|
|
53017
53076
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
53018
53077
|
jsii.set(self, "tagsRaw", value) # pyright: ignore[reportArgumentType]
|
|
53019
53078
|
|
|
53079
|
+
@jsii.data_type(
|
|
53080
|
+
jsii_type="aws-cdk-lib.aws_ec2.CfnSubnet.BlockPublicAccessStatesProperty",
|
|
53081
|
+
jsii_struct_bases=[],
|
|
53082
|
+
name_mapping={"internet_gateway_block_mode": "internetGatewayBlockMode"},
|
|
53083
|
+
)
|
|
53084
|
+
class BlockPublicAccessStatesProperty:
|
|
53085
|
+
def __init__(
|
|
53086
|
+
self,
|
|
53087
|
+
*,
|
|
53088
|
+
internet_gateway_block_mode: typing.Optional[builtins.str] = None,
|
|
53089
|
+
) -> None:
|
|
53090
|
+
'''
|
|
53091
|
+
:param internet_gateway_block_mode: The mode of VPC BPA. Options here are off, block-bidirectional, block-ingress
|
|
53092
|
+
|
|
53093
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-subnet-blockpublicaccessstates.html
|
|
53094
|
+
:exampleMetadata: fixture=_generated
|
|
53095
|
+
|
|
53096
|
+
Example::
|
|
53097
|
+
|
|
53098
|
+
# The code below shows an example of how to instantiate this type.
|
|
53099
|
+
# The values are placeholders you should change.
|
|
53100
|
+
from aws_cdk import aws_ec2 as ec2
|
|
53101
|
+
|
|
53102
|
+
block_public_access_states_property = ec2.CfnSubnet.BlockPublicAccessStatesProperty(
|
|
53103
|
+
internet_gateway_block_mode="internetGatewayBlockMode"
|
|
53104
|
+
)
|
|
53105
|
+
'''
|
|
53106
|
+
if __debug__:
|
|
53107
|
+
type_hints = typing.get_type_hints(_typecheckingstub__39b852e2beaad9da72706596053a58f7c1190828d458e590af07c5701812220d)
|
|
53108
|
+
check_type(argname="argument internet_gateway_block_mode", value=internet_gateway_block_mode, expected_type=type_hints["internet_gateway_block_mode"])
|
|
53109
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
53110
|
+
if internet_gateway_block_mode is not None:
|
|
53111
|
+
self._values["internet_gateway_block_mode"] = internet_gateway_block_mode
|
|
53112
|
+
|
|
53113
|
+
@builtins.property
|
|
53114
|
+
def internet_gateway_block_mode(self) -> typing.Optional[builtins.str]:
|
|
53115
|
+
'''The mode of VPC BPA.
|
|
53116
|
+
|
|
53117
|
+
Options here are off, block-bidirectional, block-ingress
|
|
53118
|
+
|
|
53119
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-subnet-blockpublicaccessstates.html#cfn-ec2-subnet-blockpublicaccessstates-internetgatewayblockmode
|
|
53120
|
+
'''
|
|
53121
|
+
result = self._values.get("internet_gateway_block_mode")
|
|
53122
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
53123
|
+
|
|
53124
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
53125
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
53126
|
+
|
|
53127
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
53128
|
+
return not (rhs == self)
|
|
53129
|
+
|
|
53130
|
+
def __repr__(self) -> str:
|
|
53131
|
+
return "BlockPublicAccessStatesProperty(%s)" % ", ".join(
|
|
53132
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
53133
|
+
)
|
|
53134
|
+
|
|
53020
53135
|
@jsii.data_type(
|
|
53021
53136
|
jsii_type="aws-cdk-lib.aws_ec2.CfnSubnet.PrivateDnsNameOptionsOnLaunchProperty",
|
|
53022
53137
|
jsii_struct_bases=[],
|
|
@@ -60874,7 +60989,7 @@ class CfnVPCCidrBlock(
|
|
|
60874
60989
|
|
|
60875
60990
|
Example::
|
|
60876
60991
|
|
|
60877
|
-
from aws_cdk.
|
|
60992
|
+
from aws_cdk.lambda_layer_kubectl_v33 import KubectlV33Layer
|
|
60878
60993
|
# vpc: ec2.Vpc
|
|
60879
60994
|
|
|
60880
60995
|
|
|
@@ -60899,11 +61014,11 @@ class CfnVPCCidrBlock(
|
|
|
60899
61014
|
subnetcount = subnetcount + 1
|
|
60900
61015
|
|
|
60901
61016
|
cluster = eks.Cluster(self, "hello-eks",
|
|
60902
|
-
version=eks.KubernetesVersion.
|
|
61017
|
+
version=eks.KubernetesVersion.V1_33,
|
|
60903
61018
|
vpc=vpc,
|
|
60904
61019
|
ip_family=eks.IpFamily.IP_V6,
|
|
60905
61020
|
vpc_subnets=[ec2.SubnetSelection(subnets=vpc.public_subnets)],
|
|
60906
|
-
kubectl_layer=
|
|
61021
|
+
kubectl_layer=KubectlV33Layer(self, "kubectl")
|
|
60907
61022
|
)
|
|
60908
61023
|
'''
|
|
60909
61024
|
|
|
@@ -61213,7 +61328,7 @@ class CfnVPCCidrBlockProps:
|
|
|
61213
61328
|
|
|
61214
61329
|
Example::
|
|
61215
61330
|
|
|
61216
|
-
from aws_cdk.
|
|
61331
|
+
from aws_cdk.lambda_layer_kubectl_v33 import KubectlV33Layer
|
|
61217
61332
|
# vpc: ec2.Vpc
|
|
61218
61333
|
|
|
61219
61334
|
|
|
@@ -61238,11 +61353,11 @@ class CfnVPCCidrBlockProps:
|
|
|
61238
61353
|
subnetcount = subnetcount + 1
|
|
61239
61354
|
|
|
61240
61355
|
cluster = eks.Cluster(self, "hello-eks",
|
|
61241
|
-
version=eks.KubernetesVersion.
|
|
61356
|
+
version=eks.KubernetesVersion.V1_33,
|
|
61242
61357
|
vpc=vpc,
|
|
61243
61358
|
ip_family=eks.IpFamily.IP_V6,
|
|
61244
61359
|
vpc_subnets=[ec2.SubnetSelection(subnets=vpc.public_subnets)],
|
|
61245
|
-
kubectl_layer=
|
|
61360
|
+
kubectl_layer=KubectlV33Layer(self, "kubectl")
|
|
61246
61361
|
)
|
|
61247
61362
|
'''
|
|
61248
61363
|
if __debug__:
|
|
@@ -83880,6 +83995,16 @@ class InterfaceVpcEndpointAwsService(
|
|
|
83880
83995
|
'''
|
|
83881
83996
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "SES"))
|
|
83882
83997
|
|
|
83998
|
+
@jsii.python.classproperty
|
|
83999
|
+
@jsii.member(jsii_name="SHIELD")
|
|
84000
|
+
def SHIELD(cls) -> "InterfaceVpcEndpointAwsService":
|
|
84001
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "SHIELD"))
|
|
84002
|
+
|
|
84003
|
+
@jsii.python.classproperty
|
|
84004
|
+
@jsii.member(jsii_name="SHIELD_FIPS")
|
|
84005
|
+
def SHIELD_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
84006
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "SHIELD_FIPS"))
|
|
84007
|
+
|
|
83883
84008
|
@jsii.python.classproperty
|
|
83884
84009
|
@jsii.member(jsii_name="SIMSPACE_WEAVER")
|
|
83885
84010
|
def SIMSPACE_WEAVER(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -83900,6 +84025,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
83900
84025
|
def SQS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
83901
84026
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "SQS"))
|
|
83902
84027
|
|
|
84028
|
+
@jsii.python.classproperty
|
|
84029
|
+
@jsii.member(jsii_name="SQS_FIPS")
|
|
84030
|
+
def SQS_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
84031
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "SQS_FIPS"))
|
|
84032
|
+
|
|
83903
84033
|
@jsii.python.classproperty
|
|
83904
84034
|
@jsii.member(jsii_name="SSM")
|
|
83905
84035
|
def SSM(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -83950,6 +84080,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
83950
84080
|
def STS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
83951
84081
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "STS"))
|
|
83952
84082
|
|
|
84083
|
+
@jsii.python.classproperty
|
|
84084
|
+
@jsii.member(jsii_name="STS_FIPS")
|
|
84085
|
+
def STS_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
84086
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "STS_FIPS"))
|
|
84087
|
+
|
|
83953
84088
|
@jsii.python.classproperty
|
|
83954
84089
|
@jsii.member(jsii_name="SUPPLY_CHAIN")
|
|
83955
84090
|
def SUPPLY_CHAIN(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -105971,6 +106106,7 @@ def _typecheckingstub__84a7ddca98bd1c24713f12588ec54b51cdc19c99c2209e07c96417201
|
|
|
105971
106106
|
id: builtins.str,
|
|
105972
106107
|
*,
|
|
105973
106108
|
vpc_id: builtins.str,
|
|
106109
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
105974
106110
|
) -> None:
|
|
105975
106111
|
"""Type checking stubs"""
|
|
105976
106112
|
pass
|
|
@@ -105993,9 +106129,16 @@ def _typecheckingstub__dd41a3676da418b0ac30e8c6707af491b5f32416672bf517e640f6132
|
|
|
105993
106129
|
"""Type checking stubs"""
|
|
105994
106130
|
pass
|
|
105995
106131
|
|
|
106132
|
+
def _typecheckingstub__923846a8ba3d02f36c9267e2c903018ed279860265ad8a488da0a81153c5ff44(
|
|
106133
|
+
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
106134
|
+
) -> None:
|
|
106135
|
+
"""Type checking stubs"""
|
|
106136
|
+
pass
|
|
106137
|
+
|
|
105996
106138
|
def _typecheckingstub__b693b2d49003d73758f4c0003564a93353b18fc97434556a2e988e47f367fb84(
|
|
105997
106139
|
*,
|
|
105998
106140
|
vpc_id: builtins.str,
|
|
106141
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
105999
106142
|
) -> None:
|
|
106000
106143
|
"""Type checking stubs"""
|
|
106001
106144
|
pass
|
|
@@ -110934,6 +111077,13 @@ def _typecheckingstub__b297663d31b5bbe92a3f56911eb6c57abab4c122a855b348cb1da68bc
|
|
|
110934
111077
|
"""Type checking stubs"""
|
|
110935
111078
|
pass
|
|
110936
111079
|
|
|
111080
|
+
def _typecheckingstub__39b852e2beaad9da72706596053a58f7c1190828d458e590af07c5701812220d(
|
|
111081
|
+
*,
|
|
111082
|
+
internet_gateway_block_mode: typing.Optional[builtins.str] = None,
|
|
111083
|
+
) -> None:
|
|
111084
|
+
"""Type checking stubs"""
|
|
111085
|
+
pass
|
|
111086
|
+
|
|
110937
111087
|
def _typecheckingstub__9ead2dbf33a2462f22ec4fe1b542f6a0fc766e914575dd0c8da36b35e6a471a0(
|
|
110938
111088
|
*,
|
|
110939
111089
|
enable_resource_name_dns_aaaa_record: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
aws_cdk/aws_efs/__init__.py
CHANGED
|
@@ -2836,8 +2836,8 @@ class CfnMountTarget(
|
|
|
2836
2836
|
:param security_groups: VPC security group IDs, of the form ``sg-xxxxxxxx`` . These must be for the same VPC as the subnet specified. The maximum number of security groups depends on account quota. For more information, see `Amazon VPC Quotas <https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html>`_ in the *Amazon VPC User Guide* (see the *Security Groups* table). If you don't specify a security group, then Amazon EFS uses the default security group for the subnet's VPC.
|
|
2837
2837
|
:param subnet_id: The ID of the subnet to add the mount target in. For One Zone file systems, use the subnet that is associated with the file system's Availability Zone. The subnet type must be the same type as the ``IpAddressType`` .
|
|
2838
2838
|
:param ip_address: If the ``IpAddressType`` for the mount target is IPv4 ( ``IPV4_ONLY`` or ``DUAL_STACK`` ), then specify the IPv4 address to use. If you do not specify an ``IpAddress`` , then Amazon EFS selects an unused IP address from the subnet specified for ``SubnetId`` .
|
|
2839
|
-
:param ip_address_type:
|
|
2840
|
-
:param ipv6_address:
|
|
2839
|
+
:param ip_address_type: The IP address type for the mount target. The possible values are ``IPV4_ONLY`` (only IPv4 addresses), ``IPV6_ONLY`` (only IPv6 addresses), and ``DUAL_STACK`` (dual-stack, both IPv4 and IPv6 addresses). If you don’t specify an ``IpAddressType`` , then ``IPV4_ONLY`` is used. .. epigraph:: The ``IPAddressType`` must match the IP type of the subnet. Additionally, the ``IPAddressType`` parameter overrides the value set as the default IP address for the subnet in the VPC. For example, if the ``IPAddressType`` is ``IPV4_ONLY`` and ``AssignIpv6AddressOnCreation`` is ``true`` , then IPv4 is used for the mount target. For more information, see `Modify the IP addressing attributes of your subnet <https://docs.aws.amazon.com/vpc/latest/userguide/subnet-public-ip.html>`_ .
|
|
2840
|
+
:param ipv6_address: If the ``IPAddressType`` for the mount target is IPv6 ( ``IPV6_ONLY`` or ``DUAL_STACK`` ), then specify the IPv6 address to use. If you do not specify an ``Ipv6Address`` , then Amazon EFS selects an unused IP address from the subnet specified for ``SubnetId`` .
|
|
2841
2841
|
'''
|
|
2842
2842
|
if __debug__:
|
|
2843
2843
|
type_hints = typing.get_type_hints(_typecheckingstub__53e47daec02e70bf8a73cac8e0366ac0f8a6af5ccf7598cf37952afe954d30bd)
|
|
@@ -2966,6 +2966,7 @@ class CfnMountTarget(
|
|
|
2966
2966
|
@builtins.property
|
|
2967
2967
|
@jsii.member(jsii_name="ipAddressType")
|
|
2968
2968
|
def ip_address_type(self) -> typing.Optional[builtins.str]:
|
|
2969
|
+
'''The IP address type for the mount target.'''
|
|
2969
2970
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "ipAddressType"))
|
|
2970
2971
|
|
|
2971
2972
|
@ip_address_type.setter
|
|
@@ -2978,6 +2979,7 @@ class CfnMountTarget(
|
|
|
2978
2979
|
@builtins.property
|
|
2979
2980
|
@jsii.member(jsii_name="ipv6Address")
|
|
2980
2981
|
def ipv6_address(self) -> typing.Optional[builtins.str]:
|
|
2982
|
+
'''If the ``IPAddressType`` for the mount target is IPv6 ( ``IPV6_ONLY`` or ``DUAL_STACK`` ), then specify the IPv6 address to use.'''
|
|
2981
2983
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "ipv6Address"))
|
|
2982
2984
|
|
|
2983
2985
|
@ipv6_address.setter
|
|
@@ -3017,8 +3019,8 @@ class CfnMountTargetProps:
|
|
|
3017
3019
|
:param security_groups: VPC security group IDs, of the form ``sg-xxxxxxxx`` . These must be for the same VPC as the subnet specified. The maximum number of security groups depends on account quota. For more information, see `Amazon VPC Quotas <https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html>`_ in the *Amazon VPC User Guide* (see the *Security Groups* table). If you don't specify a security group, then Amazon EFS uses the default security group for the subnet's VPC.
|
|
3018
3020
|
:param subnet_id: The ID of the subnet to add the mount target in. For One Zone file systems, use the subnet that is associated with the file system's Availability Zone. The subnet type must be the same type as the ``IpAddressType`` .
|
|
3019
3021
|
:param ip_address: If the ``IpAddressType`` for the mount target is IPv4 ( ``IPV4_ONLY`` or ``DUAL_STACK`` ), then specify the IPv4 address to use. If you do not specify an ``IpAddress`` , then Amazon EFS selects an unused IP address from the subnet specified for ``SubnetId`` .
|
|
3020
|
-
:param ip_address_type:
|
|
3021
|
-
:param ipv6_address:
|
|
3022
|
+
:param ip_address_type: The IP address type for the mount target. The possible values are ``IPV4_ONLY`` (only IPv4 addresses), ``IPV6_ONLY`` (only IPv6 addresses), and ``DUAL_STACK`` (dual-stack, both IPv4 and IPv6 addresses). If you don’t specify an ``IpAddressType`` , then ``IPV4_ONLY`` is used. .. epigraph:: The ``IPAddressType`` must match the IP type of the subnet. Additionally, the ``IPAddressType`` parameter overrides the value set as the default IP address for the subnet in the VPC. For example, if the ``IPAddressType`` is ``IPV4_ONLY`` and ``AssignIpv6AddressOnCreation`` is ``true`` , then IPv4 is used for the mount target. For more information, see `Modify the IP addressing attributes of your subnet <https://docs.aws.amazon.com/vpc/latest/userguide/subnet-public-ip.html>`_ .
|
|
3023
|
+
:param ipv6_address: If the ``IPAddressType`` for the mount target is IPv6 ( ``IPV6_ONLY`` or ``DUAL_STACK`` ), then specify the IPv6 address to use. If you do not specify an ``Ipv6Address`` , then Amazon EFS selects an unused IP address from the subnet specified for ``SubnetId`` .
|
|
3022
3024
|
|
|
3023
3025
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html
|
|
3024
3026
|
:exampleMetadata: fixture=_generated
|
|
@@ -3107,7 +3109,13 @@ class CfnMountTargetProps:
|
|
|
3107
3109
|
|
|
3108
3110
|
@builtins.property
|
|
3109
3111
|
def ip_address_type(self) -> typing.Optional[builtins.str]:
|
|
3110
|
-
'''
|
|
3112
|
+
'''The IP address type for the mount target.
|
|
3113
|
+
|
|
3114
|
+
The possible values are ``IPV4_ONLY`` (only IPv4 addresses), ``IPV6_ONLY`` (only IPv6 addresses), and ``DUAL_STACK`` (dual-stack, both IPv4 and IPv6 addresses). If you don’t specify an ``IpAddressType`` , then ``IPV4_ONLY`` is used.
|
|
3115
|
+
.. epigraph::
|
|
3116
|
+
|
|
3117
|
+
The ``IPAddressType`` must match the IP type of the subnet. Additionally, the ``IPAddressType`` parameter overrides the value set as the default IP address for the subnet in the VPC. For example, if the ``IPAddressType`` is ``IPV4_ONLY`` and ``AssignIpv6AddressOnCreation`` is ``true`` , then IPv4 is used for the mount target. For more information, see `Modify the IP addressing attributes of your subnet <https://docs.aws.amazon.com/vpc/latest/userguide/subnet-public-ip.html>`_ .
|
|
3118
|
+
|
|
3111
3119
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddresstype
|
|
3112
3120
|
'''
|
|
3113
3121
|
result = self._values.get("ip_address_type")
|
|
@@ -3115,7 +3123,10 @@ class CfnMountTargetProps:
|
|
|
3115
3123
|
|
|
3116
3124
|
@builtins.property
|
|
3117
3125
|
def ipv6_address(self) -> typing.Optional[builtins.str]:
|
|
3118
|
-
'''
|
|
3126
|
+
'''If the ``IPAddressType`` for the mount target is IPv6 ( ``IPV6_ONLY`` or ``DUAL_STACK`` ), then specify the IPv6 address to use.
|
|
3127
|
+
|
|
3128
|
+
If you do not specify an ``Ipv6Address`` , then Amazon EFS selects an unused IP address from the subnet specified for ``SubnetId`` .
|
|
3129
|
+
|
|
3119
3130
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipv6address
|
|
3120
3131
|
'''
|
|
3121
3132
|
result = self._values.get("ipv6_address")
|