aws-cdk-lib 2.194.0__py3-none-any.whl → 2.195.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 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.194.0.jsii.tgz → aws-cdk-lib@2.195.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +60 -1
- aws_cdk/aws_bedrock/__init__.py +581 -4
- aws_cdk/aws_cloudfront/__init__.py +190 -120
- aws_cdk/aws_codepipeline/__init__.py +108 -0
- aws_cdk/aws_cognito/__init__.py +132 -6
- aws_cdk/aws_datazone/__init__.py +370 -0
- aws_cdk/aws_dsql/__init__.py +9 -0
- aws_cdk/aws_dynamodb/__init__.py +5 -3
- aws_cdk/aws_ec2/__init__.py +132 -8
- aws_cdk/aws_ecr/__init__.py +16 -14
- aws_cdk/aws_ecs/__init__.py +4 -15
- aws_cdk/aws_fsx/__init__.py +2 -3
- aws_cdk/aws_imagebuilder/__init__.py +160 -10
- aws_cdk/aws_kinesisanalytics/__init__.py +4 -2
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +4 -2
- aws_cdk/aws_medialive/__init__.py +4 -6
- aws_cdk/aws_mediatailor/__init__.py +115 -0
- aws_cdk/aws_oam/__init__.py +43 -10
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_qbusiness/__init__.py +2 -2
- aws_cdk/aws_rds/__init__.py +41 -6
- aws_cdk/aws_route53/__init__.py +18 -14
- aws_cdk/aws_route53_targets/__init__.py +62 -1
- aws_cdk/aws_route53profiles/__init__.py +1 -1
- aws_cdk/aws_s3_notifications/__init__.py +5 -5
- aws_cdk/aws_sagemaker/__init__.py +253 -4
- aws_cdk/aws_ssmguiconnect/__init__.py +544 -0
- aws_cdk/cloud_assembly_schema/__init__.py +7 -1
- {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/RECORD +37 -36
- {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ec2/__init__.py
CHANGED
|
@@ -8173,6 +8173,9 @@ class CfnClientVpnEndpoint(
|
|
|
8173
8173
|
# the properties below are optional
|
|
8174
8174
|
banner_text="bannerText"
|
|
8175
8175
|
),
|
|
8176
|
+
client_route_enforcement_options=ec2.CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty(
|
|
8177
|
+
enforced=False
|
|
8178
|
+
),
|
|
8176
8179
|
description="description",
|
|
8177
8180
|
disconnect_on_session_timeout=False,
|
|
8178
8181
|
dns_servers=["dnsServers"],
|
|
@@ -8204,6 +8207,7 @@ class CfnClientVpnEndpoint(
|
|
|
8204
8207
|
server_certificate_arn: builtins.str,
|
|
8205
8208
|
client_connect_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnClientVpnEndpoint.ClientConnectOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8206
8209
|
client_login_banner_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnClientVpnEndpoint.ClientLoginBannerOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8210
|
+
client_route_enforcement_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8207
8211
|
description: typing.Optional[builtins.str] = None,
|
|
8208
8212
|
disconnect_on_session_timeout: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
8209
8213
|
dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -8225,6 +8229,7 @@ class CfnClientVpnEndpoint(
|
|
|
8225
8229
|
:param server_certificate_arn: The ARN of the server certificate. For more information, see the `AWS Certificate Manager User Guide <https://docs.aws.amazon.com/acm/latest/userguide/>`_ .
|
|
8226
8230
|
:param client_connect_options: The options for managing connection authorization for new client connections.
|
|
8227
8231
|
:param client_login_banner_options: Options for enabling a customizable text banner that will be displayed on AWS provided clients when a VPN session is established.
|
|
8232
|
+
:param client_route_enforcement_options:
|
|
8228
8233
|
:param description: A brief description of the Client VPN endpoint.
|
|
8229
8234
|
:param disconnect_on_session_timeout: Indicates whether the client VPN session is disconnected after the maximum ``sessionTimeoutHours`` is reached. If ``true`` , users are prompted to reconnect client VPN. If ``false`` , client VPN attempts to reconnect automatically. The default value is ``false`` .
|
|
8230
8235
|
:param dns_servers: Information about the DNS servers to be used for DNS resolution. A Client VPN endpoint can have up to two DNS servers. If no DNS server is specified, the DNS address configured on the device is used for the DNS server.
|
|
@@ -8248,6 +8253,7 @@ class CfnClientVpnEndpoint(
|
|
|
8248
8253
|
server_certificate_arn=server_certificate_arn,
|
|
8249
8254
|
client_connect_options=client_connect_options,
|
|
8250
8255
|
client_login_banner_options=client_login_banner_options,
|
|
8256
|
+
client_route_enforcement_options=client_route_enforcement_options,
|
|
8251
8257
|
description=description,
|
|
8252
8258
|
disconnect_on_session_timeout=disconnect_on_session_timeout,
|
|
8253
8259
|
dns_servers=dns_servers,
|
|
@@ -8404,6 +8410,23 @@ class CfnClientVpnEndpoint(
|
|
|
8404
8410
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8405
8411
|
jsii.set(self, "clientLoginBannerOptions", value) # pyright: ignore[reportArgumentType]
|
|
8406
8412
|
|
|
8413
|
+
@builtins.property
|
|
8414
|
+
@jsii.member(jsii_name="clientRouteEnforcementOptions")
|
|
8415
|
+
def client_route_enforcement_options(
|
|
8416
|
+
self,
|
|
8417
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty"]]:
|
|
8418
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty"]], jsii.get(self, "clientRouteEnforcementOptions"))
|
|
8419
|
+
|
|
8420
|
+
@client_route_enforcement_options.setter
|
|
8421
|
+
def client_route_enforcement_options(
|
|
8422
|
+
self,
|
|
8423
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty"]],
|
|
8424
|
+
) -> None:
|
|
8425
|
+
if __debug__:
|
|
8426
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b7449176e28b63826ef826a7cc608350858f54ad63967741bedbe6e29e4548e0)
|
|
8427
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8428
|
+
jsii.set(self, "clientRouteEnforcementOptions", value) # pyright: ignore[reportArgumentType]
|
|
8429
|
+
|
|
8407
8430
|
@builtins.property
|
|
8408
8431
|
@jsii.member(jsii_name="description")
|
|
8409
8432
|
def description(self) -> typing.Optional[builtins.str]:
|
|
@@ -8909,6 +8932,61 @@ class CfnClientVpnEndpoint(
|
|
|
8909
8932
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
8910
8933
|
)
|
|
8911
8934
|
|
|
8935
|
+
@jsii.data_type(
|
|
8936
|
+
jsii_type="aws-cdk-lib.aws_ec2.CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty",
|
|
8937
|
+
jsii_struct_bases=[],
|
|
8938
|
+
name_mapping={"enforced": "enforced"},
|
|
8939
|
+
)
|
|
8940
|
+
class ClientRouteEnforcementOptionsProperty:
|
|
8941
|
+
def __init__(
|
|
8942
|
+
self,
|
|
8943
|
+
*,
|
|
8944
|
+
enforced: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
8945
|
+
) -> None:
|
|
8946
|
+
'''
|
|
8947
|
+
:param enforced:
|
|
8948
|
+
|
|
8949
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-clientrouteenforcementoptions.html
|
|
8950
|
+
:exampleMetadata: fixture=_generated
|
|
8951
|
+
|
|
8952
|
+
Example::
|
|
8953
|
+
|
|
8954
|
+
# The code below shows an example of how to instantiate this type.
|
|
8955
|
+
# The values are placeholders you should change.
|
|
8956
|
+
from aws_cdk import aws_ec2 as ec2
|
|
8957
|
+
|
|
8958
|
+
client_route_enforcement_options_property = ec2.CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty(
|
|
8959
|
+
enforced=False
|
|
8960
|
+
)
|
|
8961
|
+
'''
|
|
8962
|
+
if __debug__:
|
|
8963
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b6a34038d1c5e331979b92a9cd810c8c4993fdf3bdc4b6a567ffbfa48ba19f4e)
|
|
8964
|
+
check_type(argname="argument enforced", value=enforced, expected_type=type_hints["enforced"])
|
|
8965
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
8966
|
+
if enforced is not None:
|
|
8967
|
+
self._values["enforced"] = enforced
|
|
8968
|
+
|
|
8969
|
+
@builtins.property
|
|
8970
|
+
def enforced(
|
|
8971
|
+
self,
|
|
8972
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
8973
|
+
'''
|
|
8974
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-clientrouteenforcementoptions.html#cfn-ec2-clientvpnendpoint-clientrouteenforcementoptions-enforced
|
|
8975
|
+
'''
|
|
8976
|
+
result = self._values.get("enforced")
|
|
8977
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
8978
|
+
|
|
8979
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
8980
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
8981
|
+
|
|
8982
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
8983
|
+
return not (rhs == self)
|
|
8984
|
+
|
|
8985
|
+
def __repr__(self) -> str:
|
|
8986
|
+
return "ClientRouteEnforcementOptionsProperty(%s)" % ", ".join(
|
|
8987
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
8988
|
+
)
|
|
8989
|
+
|
|
8912
8990
|
@jsii.data_type(
|
|
8913
8991
|
jsii_type="aws-cdk-lib.aws_ec2.CfnClientVpnEndpoint.ConnectionLogOptionsProperty",
|
|
8914
8992
|
jsii_struct_bases=[],
|
|
@@ -9218,6 +9296,7 @@ class CfnClientVpnEndpoint(
|
|
|
9218
9296
|
"server_certificate_arn": "serverCertificateArn",
|
|
9219
9297
|
"client_connect_options": "clientConnectOptions",
|
|
9220
9298
|
"client_login_banner_options": "clientLoginBannerOptions",
|
|
9299
|
+
"client_route_enforcement_options": "clientRouteEnforcementOptions",
|
|
9221
9300
|
"description": "description",
|
|
9222
9301
|
"disconnect_on_session_timeout": "disconnectOnSessionTimeout",
|
|
9223
9302
|
"dns_servers": "dnsServers",
|
|
@@ -9241,6 +9320,7 @@ class CfnClientVpnEndpointProps:
|
|
|
9241
9320
|
server_certificate_arn: builtins.str,
|
|
9242
9321
|
client_connect_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnClientVpnEndpoint.ClientConnectOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
9243
9322
|
client_login_banner_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnClientVpnEndpoint.ClientLoginBannerOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
9323
|
+
client_route_enforcement_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
9244
9324
|
description: typing.Optional[builtins.str] = None,
|
|
9245
9325
|
disconnect_on_session_timeout: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
9246
9326
|
dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -9261,6 +9341,7 @@ class CfnClientVpnEndpointProps:
|
|
|
9261
9341
|
:param server_certificate_arn: The ARN of the server certificate. For more information, see the `AWS Certificate Manager User Guide <https://docs.aws.amazon.com/acm/latest/userguide/>`_ .
|
|
9262
9342
|
:param client_connect_options: The options for managing connection authorization for new client connections.
|
|
9263
9343
|
:param client_login_banner_options: Options for enabling a customizable text banner that will be displayed on AWS provided clients when a VPN session is established.
|
|
9344
|
+
:param client_route_enforcement_options:
|
|
9264
9345
|
:param description: A brief description of the Client VPN endpoint.
|
|
9265
9346
|
:param disconnect_on_session_timeout: Indicates whether the client VPN session is disconnected after the maximum ``sessionTimeoutHours`` is reached. If ``true`` , users are prompted to reconnect client VPN. If ``false`` , client VPN attempts to reconnect automatically. The default value is ``false`` .
|
|
9266
9347
|
:param dns_servers: Information about the DNS servers to be used for DNS resolution. A Client VPN endpoint can have up to two DNS servers. If no DNS server is specified, the DNS address configured on the device is used for the DNS server.
|
|
@@ -9323,6 +9404,9 @@ class CfnClientVpnEndpointProps:
|
|
|
9323
9404
|
# the properties below are optional
|
|
9324
9405
|
banner_text="bannerText"
|
|
9325
9406
|
),
|
|
9407
|
+
client_route_enforcement_options=ec2.CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty(
|
|
9408
|
+
enforced=False
|
|
9409
|
+
),
|
|
9326
9410
|
description="description",
|
|
9327
9411
|
disconnect_on_session_timeout=False,
|
|
9328
9412
|
dns_servers=["dnsServers"],
|
|
@@ -9350,6 +9434,7 @@ class CfnClientVpnEndpointProps:
|
|
|
9350
9434
|
check_type(argname="argument server_certificate_arn", value=server_certificate_arn, expected_type=type_hints["server_certificate_arn"])
|
|
9351
9435
|
check_type(argname="argument client_connect_options", value=client_connect_options, expected_type=type_hints["client_connect_options"])
|
|
9352
9436
|
check_type(argname="argument client_login_banner_options", value=client_login_banner_options, expected_type=type_hints["client_login_banner_options"])
|
|
9437
|
+
check_type(argname="argument client_route_enforcement_options", value=client_route_enforcement_options, expected_type=type_hints["client_route_enforcement_options"])
|
|
9353
9438
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
9354
9439
|
check_type(argname="argument disconnect_on_session_timeout", value=disconnect_on_session_timeout, expected_type=type_hints["disconnect_on_session_timeout"])
|
|
9355
9440
|
check_type(argname="argument dns_servers", value=dns_servers, expected_type=type_hints["dns_servers"])
|
|
@@ -9371,6 +9456,8 @@ class CfnClientVpnEndpointProps:
|
|
|
9371
9456
|
self._values["client_connect_options"] = client_connect_options
|
|
9372
9457
|
if client_login_banner_options is not None:
|
|
9373
9458
|
self._values["client_login_banner_options"] = client_login_banner_options
|
|
9459
|
+
if client_route_enforcement_options is not None:
|
|
9460
|
+
self._values["client_route_enforcement_options"] = client_route_enforcement_options
|
|
9374
9461
|
if description is not None:
|
|
9375
9462
|
self._values["description"] = description
|
|
9376
9463
|
if disconnect_on_session_timeout is not None:
|
|
@@ -9471,6 +9558,16 @@ class CfnClientVpnEndpointProps:
|
|
|
9471
9558
|
result = self._values.get("client_login_banner_options")
|
|
9472
9559
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnClientVpnEndpoint.ClientLoginBannerOptionsProperty]], result)
|
|
9473
9560
|
|
|
9561
|
+
@builtins.property
|
|
9562
|
+
def client_route_enforcement_options(
|
|
9563
|
+
self,
|
|
9564
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty]]:
|
|
9565
|
+
'''
|
|
9566
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-clientrouteenforcementoptions
|
|
9567
|
+
'''
|
|
9568
|
+
result = self._values.get("client_route_enforcement_options")
|
|
9569
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty]], result)
|
|
9570
|
+
|
|
9474
9571
|
@builtins.property
|
|
9475
9572
|
def description(self) -> typing.Optional[builtins.str]:
|
|
9476
9573
|
'''A brief description of the Client VPN endpoint.
|
|
@@ -57172,8 +57269,8 @@ class CfnTransitGatewayPeeringAttachment(
|
|
|
57172
57269
|
:param scope: Scope in which this resource is defined.
|
|
57173
57270
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
57174
57271
|
:param peer_account_id: The ID of the AWS account that owns the transit gateway.
|
|
57175
|
-
:param peer_region: The Region
|
|
57176
|
-
:param peer_transit_gateway_id: The ID of the transit gateway.
|
|
57272
|
+
:param peer_region: The Region where the transit gateway that you want to create the peer for is located.
|
|
57273
|
+
:param peer_transit_gateway_id: The ID of the transit gateway in the PeerRegion.
|
|
57177
57274
|
:param transit_gateway_id: The ID of the transit gateway peering attachment.
|
|
57178
57275
|
:param tags: The tags for the transit gateway peering attachment.
|
|
57179
57276
|
'''
|
|
@@ -57301,7 +57398,7 @@ class CfnTransitGatewayPeeringAttachment(
|
|
|
57301
57398
|
@builtins.property
|
|
57302
57399
|
@jsii.member(jsii_name="peerRegion")
|
|
57303
57400
|
def peer_region(self) -> builtins.str:
|
|
57304
|
-
'''The Region
|
|
57401
|
+
'''The Region where the transit gateway that you want to create the peer for is located.'''
|
|
57305
57402
|
return typing.cast(builtins.str, jsii.get(self, "peerRegion"))
|
|
57306
57403
|
|
|
57307
57404
|
@peer_region.setter
|
|
@@ -57314,7 +57411,7 @@ class CfnTransitGatewayPeeringAttachment(
|
|
|
57314
57411
|
@builtins.property
|
|
57315
57412
|
@jsii.member(jsii_name="peerTransitGatewayId")
|
|
57316
57413
|
def peer_transit_gateway_id(self) -> builtins.str:
|
|
57317
|
-
'''The ID of the transit gateway.'''
|
|
57414
|
+
'''The ID of the transit gateway in the PeerRegion.'''
|
|
57318
57415
|
return typing.cast(builtins.str, jsii.get(self, "peerTransitGatewayId"))
|
|
57319
57416
|
|
|
57320
57417
|
@peer_transit_gateway_id.setter
|
|
@@ -57445,8 +57542,8 @@ class CfnTransitGatewayPeeringAttachmentProps:
|
|
|
57445
57542
|
'''Properties for defining a ``CfnTransitGatewayPeeringAttachment``.
|
|
57446
57543
|
|
|
57447
57544
|
:param peer_account_id: The ID of the AWS account that owns the transit gateway.
|
|
57448
|
-
:param peer_region: The Region
|
|
57449
|
-
:param peer_transit_gateway_id: The ID of the transit gateway.
|
|
57545
|
+
:param peer_region: The Region where the transit gateway that you want to create the peer for is located.
|
|
57546
|
+
:param peer_transit_gateway_id: The ID of the transit gateway in the PeerRegion.
|
|
57450
57547
|
:param transit_gateway_id: The ID of the transit gateway peering attachment.
|
|
57451
57548
|
:param tags: The tags for the transit gateway peering attachment.
|
|
57452
57549
|
|
|
@@ -57500,7 +57597,7 @@ class CfnTransitGatewayPeeringAttachmentProps:
|
|
|
57500
57597
|
|
|
57501
57598
|
@builtins.property
|
|
57502
57599
|
def peer_region(self) -> builtins.str:
|
|
57503
|
-
'''The Region
|
|
57600
|
+
'''The Region where the transit gateway that you want to create the peer for is located.
|
|
57504
57601
|
|
|
57505
57602
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaypeeringattachment.html#cfn-ec2-transitgatewaypeeringattachment-peerregion
|
|
57506
57603
|
'''
|
|
@@ -57510,7 +57607,7 @@ class CfnTransitGatewayPeeringAttachmentProps:
|
|
|
57510
57607
|
|
|
57511
57608
|
@builtins.property
|
|
57512
57609
|
def peer_transit_gateway_id(self) -> builtins.str:
|
|
57513
|
-
'''The ID of the transit gateway.
|
|
57610
|
+
'''The ID of the transit gateway in the PeerRegion.
|
|
57514
57611
|
|
|
57515
57612
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaypeeringattachment.html#cfn-ec2-transitgatewaypeeringattachment-peertransitgatewayid
|
|
57516
57613
|
'''
|
|
@@ -79552,6 +79649,10 @@ class InstanceClass(enum.Enum):
|
|
|
79552
79649
|
'''Memory optimized instances with Graviton4 processors.'''
|
|
79553
79650
|
R8G = "R8G"
|
|
79554
79651
|
'''Memory optimized instances with Graviton4 processors.'''
|
|
79652
|
+
MEMORY8_GRAVITON4_NVME_DRIVE = "MEMORY8_GRAVITON4_NVME_DRIVE"
|
|
79653
|
+
'''Memory optimized instances, 8th generation with Graviton4 processors and local NVME drive.'''
|
|
79654
|
+
R8GD = "R8GD"
|
|
79655
|
+
'''Memory optimized instances, 8th generation with Graviton4 processors and local NVME drive.'''
|
|
79555
79656
|
COMPUTE3 = "COMPUTE3"
|
|
79556
79657
|
'''Compute optimized instances, 3rd generation.'''
|
|
79557
79658
|
C3 = "C3"
|
|
@@ -79628,6 +79729,10 @@ class InstanceClass(enum.Enum):
|
|
|
79628
79729
|
|
|
79629
79730
|
This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Ireland).
|
|
79630
79731
|
'''
|
|
79732
|
+
COMPUTE8_GRAVITON4_NVME_DRIVE = "COMPUTE8_GRAVITON4_NVME_DRIVE"
|
|
79733
|
+
'''Compute optimized instances for high performance computing, 8th generation with Graviton4 processors and local NVME drive.'''
|
|
79734
|
+
C8GD = "C8GD"
|
|
79735
|
+
'''Compute optimized instances for high performance computing, 8th generation with Graviton4 processors and local NVME drive.'''
|
|
79631
79736
|
COMPUTE6_GRAVITON2_HIGH_NETWORK_BANDWIDTH = "COMPUTE6_GRAVITON2_HIGH_NETWORK_BANDWIDTH"
|
|
79632
79737
|
'''Compute optimized instances for high performance computing, 6th generation with Graviton2 processors and high network bandwidth capabilities.'''
|
|
79633
79738
|
C6GN = "C6GN"
|
|
@@ -79910,6 +80015,10 @@ class InstanceClass(enum.Enum):
|
|
|
79910
80015
|
|
|
79911
80016
|
This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Ireland).
|
|
79912
80017
|
'''
|
|
80018
|
+
STANDARD8_GRAVITON4_NVME_DRIVE = "STANDARD8_GRAVITON4_NVME_DRIVE"
|
|
80019
|
+
'''Standard instances, 8th generation with Graviton4 processors and local NVME drive.'''
|
|
80020
|
+
M8GD = "M8GD"
|
|
80021
|
+
'''Standard instances, 8th generation with Graviton4 processors and local NVME drive.'''
|
|
79913
80022
|
STANDARD7_INTEL = "STANDARD7_INTEL"
|
|
79914
80023
|
'''Standard instances with high memory and compute capacity based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation.'''
|
|
79915
80024
|
M7I = "M7I"
|
|
@@ -103550,6 +103659,7 @@ def _typecheckingstub__1880bffa9253aaedfa6af6175da6262a96ea34dadf82dc678a1eef91c
|
|
|
103550
103659
|
server_certificate_arn: builtins.str,
|
|
103551
103660
|
client_connect_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnClientVpnEndpoint.ClientConnectOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
103552
103661
|
client_login_banner_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnClientVpnEndpoint.ClientLoginBannerOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
103662
|
+
client_route_enforcement_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
103553
103663
|
description: typing.Optional[builtins.str] = None,
|
|
103554
103664
|
disconnect_on_session_timeout: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
103555
103665
|
dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -103613,6 +103723,12 @@ def _typecheckingstub__497c1bea9e9caa987aeafc2d4334f07cd2d9664a3f3cd38bebd561170
|
|
|
103613
103723
|
"""Type checking stubs"""
|
|
103614
103724
|
pass
|
|
103615
103725
|
|
|
103726
|
+
def _typecheckingstub__b7449176e28b63826ef826a7cc608350858f54ad63967741bedbe6e29e4548e0(
|
|
103727
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty]],
|
|
103728
|
+
) -> None:
|
|
103729
|
+
"""Type checking stubs"""
|
|
103730
|
+
pass
|
|
103731
|
+
|
|
103616
103732
|
def _typecheckingstub__bb1d5fb0102c1b6de24ad13acfc13837ec5422291e23048395fe03350aea2188(
|
|
103617
103733
|
value: typing.Optional[builtins.str],
|
|
103618
103734
|
) -> None:
|
|
@@ -103712,6 +103828,13 @@ def _typecheckingstub__907ff3a3bd097ac37a720bbc18cf4e29748beb226ddf13641e4835016
|
|
|
103712
103828
|
"""Type checking stubs"""
|
|
103713
103829
|
pass
|
|
103714
103830
|
|
|
103831
|
+
def _typecheckingstub__b6a34038d1c5e331979b92a9cd810c8c4993fdf3bdc4b6a567ffbfa48ba19f4e(
|
|
103832
|
+
*,
|
|
103833
|
+
enforced: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
103834
|
+
) -> None:
|
|
103835
|
+
"""Type checking stubs"""
|
|
103836
|
+
pass
|
|
103837
|
+
|
|
103715
103838
|
def _typecheckingstub__2c142e5322bb8bda4ace9616736c0e12d7c7b9b219932b4168a975e68d0d9395(
|
|
103716
103839
|
*,
|
|
103717
103840
|
enabled: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
@@ -103752,6 +103875,7 @@ def _typecheckingstub__05994467e800c33b4a01e884b4b20bef2569d710f5dc323617cd814e5
|
|
|
103752
103875
|
server_certificate_arn: builtins.str,
|
|
103753
103876
|
client_connect_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnClientVpnEndpoint.ClientConnectOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
103754
103877
|
client_login_banner_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnClientVpnEndpoint.ClientLoginBannerOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
103878
|
+
client_route_enforcement_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
103755
103879
|
description: typing.Optional[builtins.str] = None,
|
|
103756
103880
|
disconnect_on_session_timeout: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
103757
103881
|
dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
aws_cdk/aws_ecr/__init__.py
CHANGED
|
@@ -1254,9 +1254,7 @@ class CfnRegistryScanningConfiguration(
|
|
|
1254
1254
|
metaclass=jsii.JSIIMeta,
|
|
1255
1255
|
jsii_type="aws-cdk-lib.aws_ecr.CfnRegistryScanningConfiguration",
|
|
1256
1256
|
):
|
|
1257
|
-
'''The
|
|
1258
|
-
|
|
1259
|
-
For more information, see https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-scanning.html
|
|
1257
|
+
'''The scanning configuration for a private registry.
|
|
1260
1258
|
|
|
1261
1259
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-registryscanningconfiguration.html
|
|
1262
1260
|
:cloudformationResource: AWS::ECR::RegistryScanningConfiguration
|
|
@@ -1291,7 +1289,7 @@ class CfnRegistryScanningConfiguration(
|
|
|
1291
1289
|
'''
|
|
1292
1290
|
:param scope: Scope in which this resource is defined.
|
|
1293
1291
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
1294
|
-
:param rules: The scanning rules associated with the registry.
|
|
1292
|
+
:param rules: The scanning rules associated with the registry.
|
|
1295
1293
|
:param scan_type: The type of scanning configured for the registry.
|
|
1296
1294
|
'''
|
|
1297
1295
|
if __debug__:
|
|
@@ -1335,7 +1333,7 @@ class CfnRegistryScanningConfiguration(
|
|
|
1335
1333
|
@builtins.property
|
|
1336
1334
|
@jsii.member(jsii_name="attrRegistryId")
|
|
1337
1335
|
def attr_registry_id(self) -> builtins.str:
|
|
1338
|
-
'''The registry
|
|
1336
|
+
'''The account ID of the destination registry.
|
|
1339
1337
|
|
|
1340
1338
|
:cloudformationAttribute: RegistryId
|
|
1341
1339
|
'''
|
|
@@ -1384,7 +1382,9 @@ class CfnRegistryScanningConfiguration(
|
|
|
1384
1382
|
)
|
|
1385
1383
|
class RepositoryFilterProperty:
|
|
1386
1384
|
def __init__(self, *, filter: builtins.str, filter_type: builtins.str) -> None:
|
|
1387
|
-
'''The
|
|
1385
|
+
'''The filter settings used with image replication.
|
|
1386
|
+
|
|
1387
|
+
Specifying a repository filter to a replication rule provides a method for controlling which repositories in a private registry are replicated. If no filters are added, the contents of all repositories are replicated.
|
|
1388
1388
|
|
|
1389
1389
|
:param filter: The filter to use when scanning.
|
|
1390
1390
|
:param filter_type: The type associated with the filter.
|
|
@@ -1458,10 +1458,10 @@ class CfnRegistryScanningConfiguration(
|
|
|
1458
1458
|
repository_filters: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnRegistryScanningConfiguration.RepositoryFilterProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
1459
1459
|
scan_frequency: builtins.str,
|
|
1460
1460
|
) -> None:
|
|
1461
|
-
'''
|
|
1461
|
+
'''The scanning rules associated with the registry.
|
|
1462
1462
|
|
|
1463
|
-
:param repository_filters: The repository filters
|
|
1464
|
-
:param scan_frequency: The frequency that scans are performed.
|
|
1463
|
+
:param repository_filters: The details of a scanning repository filter. For more information on how to use filters, see `Using filters <https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-scanning.html#image-scanning-filters>`_ in the *Amazon Elastic Container Registry User Guide* .
|
|
1464
|
+
:param scan_frequency: The frequency that scans are performed at for a private registry. When the ``ENHANCED`` scan type is specified, the supported scan frequencies are ``CONTINUOUS_SCAN`` and ``SCAN_ON_PUSH`` . When the ``BASIC`` scan type is specified, the ``SCAN_ON_PUSH`` scan frequency is supported. If scan on push is not specified, then the ``MANUAL`` scan frequency is set by default.
|
|
1465
1465
|
|
|
1466
1466
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-registryscanningconfiguration-scanningrule.html
|
|
1467
1467
|
:exampleMetadata: fixture=_generated
|
|
@@ -1493,7 +1493,9 @@ class CfnRegistryScanningConfiguration(
|
|
|
1493
1493
|
def repository_filters(
|
|
1494
1494
|
self,
|
|
1495
1495
|
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnRegistryScanningConfiguration.RepositoryFilterProperty"]]]:
|
|
1496
|
-
'''The
|
|
1496
|
+
'''The details of a scanning repository filter.
|
|
1497
|
+
|
|
1498
|
+
For more information on how to use filters, see `Using filters <https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-scanning.html#image-scanning-filters>`_ in the *Amazon Elastic Container Registry User Guide* .
|
|
1497
1499
|
|
|
1498
1500
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-registryscanningconfiguration-scanningrule.html#cfn-ecr-registryscanningconfiguration-scanningrule-repositoryfilters
|
|
1499
1501
|
'''
|
|
@@ -1503,7 +1505,9 @@ class CfnRegistryScanningConfiguration(
|
|
|
1503
1505
|
|
|
1504
1506
|
@builtins.property
|
|
1505
1507
|
def scan_frequency(self) -> builtins.str:
|
|
1506
|
-
'''The frequency that scans are performed.
|
|
1508
|
+
'''The frequency that scans are performed at for a private registry.
|
|
1509
|
+
|
|
1510
|
+
When the ``ENHANCED`` scan type is specified, the supported scan frequencies are ``CONTINUOUS_SCAN`` and ``SCAN_ON_PUSH`` . When the ``BASIC`` scan type is specified, the ``SCAN_ON_PUSH`` scan frequency is supported. If scan on push is not specified, then the ``MANUAL`` scan frequency is set by default.
|
|
1507
1511
|
|
|
1508
1512
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-registryscanningconfiguration-scanningrule.html#cfn-ecr-registryscanningconfiguration-scanningrule-scanfrequency
|
|
1509
1513
|
'''
|
|
@@ -1537,7 +1541,7 @@ class CfnRegistryScanningConfigurationProps:
|
|
|
1537
1541
|
) -> None:
|
|
1538
1542
|
'''Properties for defining a ``CfnRegistryScanningConfiguration``.
|
|
1539
1543
|
|
|
1540
|
-
:param rules: The scanning rules associated with the registry.
|
|
1544
|
+
:param rules: The scanning rules associated with the registry.
|
|
1541
1545
|
:param scan_type: The type of scanning configured for the registry.
|
|
1542
1546
|
|
|
1543
1547
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-registryscanningconfiguration.html
|
|
@@ -1575,8 +1579,6 @@ class CfnRegistryScanningConfigurationProps:
|
|
|
1575
1579
|
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnRegistryScanningConfiguration.ScanningRuleProperty]]]:
|
|
1576
1580
|
'''The scanning rules associated with the registry.
|
|
1577
1581
|
|
|
1578
|
-
A registry scanning configuration may contain a maximum of 2 rules.
|
|
1579
|
-
|
|
1580
1582
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-registryscanningconfiguration.html#cfn-ecr-registryscanningconfiguration-rules
|
|
1581
1583
|
'''
|
|
1582
1584
|
result = self._values.get("rules")
|
aws_cdk/aws_ecs/__init__.py
CHANGED
|
@@ -12781,7 +12781,7 @@ class CfnTaskDefinition(
|
|
|
12781
12781
|
:param scope: Scope in which this resource is defined.
|
|
12782
12782
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
12783
12783
|
:param container_definitions: A list of container definitions in JSON format that describe the different containers that make up your task. For more information about container definition parameters and defaults, see `Amazon ECS Task Definitions <https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html>`_ in the *Amazon Elastic Container Service Developer Guide* .
|
|
12784
|
-
:param cpu: The number of ``cpu`` units used by the task. If you use the EC2 launch type, this field is optional. Any value can be used. If you use the Fargate launch type, this field is required. You must use one of the following values. The value that you choose determines your range of valid values for the ``memory`` parameter. If you're using the EC2 launch type or the external launch type, this field is optional. Supported values are between ``128`` CPU units ( ``0.125`` vCPUs) and ``196608`` CPU units ( ``192`` vCPUs).
|
|
12784
|
+
:param cpu: The number of ``cpu`` units used by the task. If you use the EC2 launch type, this field is optional. Any value can be used. If you use the Fargate launch type, this field is required. You must use one of the following values. The value that you choose determines your range of valid values for the ``memory`` parameter. If you're using the EC2 launch type or the external launch type, this field is optional. Supported values are between ``128`` CPU units ( ``0.125`` vCPUs) and ``196608`` CPU units ( ``192`` vCPUs). This field is required for Fargate. For information about the valid values, see `Task size <https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#task_size>`_ in the *Amazon Elastic Container Service Developer Guide* .
|
|
12785
12785
|
:param enable_fault_injection: Enables fault injection and allows for fault injection requests to be accepted from the task's containers. The default value is ``false`` .
|
|
12786
12786
|
:param ephemeral_storage: The ephemeral storage settings to use for tasks run with the task definition.
|
|
12787
12787
|
:param execution_role_arn: The Amazon Resource Name (ARN) of the task execution role that grants the Amazon ECS container agent permission to make AWS API calls on your behalf. For informationabout the required IAM roles for Amazon ECS, see `IAM roles for Amazon ECS <https://docs.aws.amazon.com/AmazonECS/latest/developerguide/security-ecs-iam-role-overview.html>`_ in the *Amazon Elastic Container Service Developer Guide* .
|
|
@@ -17624,7 +17624,7 @@ class CfnTaskDefinitionProps:
|
|
|
17624
17624
|
'''Properties for defining a ``CfnTaskDefinition``.
|
|
17625
17625
|
|
|
17626
17626
|
:param container_definitions: A list of container definitions in JSON format that describe the different containers that make up your task. For more information about container definition parameters and defaults, see `Amazon ECS Task Definitions <https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html>`_ in the *Amazon Elastic Container Service Developer Guide* .
|
|
17627
|
-
:param cpu: The number of ``cpu`` units used by the task. If you use the EC2 launch type, this field is optional. Any value can be used. If you use the Fargate launch type, this field is required. You must use one of the following values. The value that you choose determines your range of valid values for the ``memory`` parameter. If you're using the EC2 launch type or the external launch type, this field is optional. Supported values are between ``128`` CPU units ( ``0.125`` vCPUs) and ``196608`` CPU units ( ``192`` vCPUs).
|
|
17627
|
+
:param cpu: The number of ``cpu`` units used by the task. If you use the EC2 launch type, this field is optional. Any value can be used. If you use the Fargate launch type, this field is required. You must use one of the following values. The value that you choose determines your range of valid values for the ``memory`` parameter. If you're using the EC2 launch type or the external launch type, this field is optional. Supported values are between ``128`` CPU units ( ``0.125`` vCPUs) and ``196608`` CPU units ( ``192`` vCPUs). This field is required for Fargate. For information about the valid values, see `Task size <https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#task_size>`_ in the *Amazon Elastic Container Service Developer Guide* .
|
|
17628
17628
|
:param enable_fault_injection: Enables fault injection and allows for fault injection requests to be accepted from the task's containers. The default value is ``false`` .
|
|
17629
17629
|
:param ephemeral_storage: The ephemeral storage settings to use for tasks run with the task definition.
|
|
17630
17630
|
:param execution_role_arn: The Amazon Resource Name (ARN) of the task execution role that grants the Amazon ECS container agent permission to make AWS API calls on your behalf. For informationabout the required IAM roles for Amazon ECS, see `IAM roles for Amazon ECS <https://docs.aws.amazon.com/AmazonECS/latest/developerguide/security-ecs-iam-role-overview.html>`_ in the *Amazon Elastic Container Service Developer Guide* .
|
|
@@ -17948,20 +17948,9 @@ class CfnTaskDefinitionProps:
|
|
|
17948
17948
|
|
|
17949
17949
|
If you use the EC2 launch type, this field is optional. Any value can be used. If you use the Fargate launch type, this field is required. You must use one of the following values. The value that you choose determines your range of valid values for the ``memory`` parameter.
|
|
17950
17950
|
|
|
17951
|
-
If you're using the EC2 launch type or the external launch type, this field is optional. Supported values are between ``128`` CPU units ( ``0.125`` vCPUs) and ``196608`` CPU units ( ``192`` vCPUs).
|
|
17951
|
+
If you're using the EC2 launch type or the external launch type, this field is optional. Supported values are between ``128`` CPU units ( ``0.125`` vCPUs) and ``196608`` CPU units ( ``192`` vCPUs).
|
|
17952
17952
|
|
|
17953
|
-
|
|
17954
|
-
- 512 (.5 vCPU) - Available ``memory`` values: 1024 (1 GB), 2048 (2 GB), 3072 (3 GB), 4096 (4 GB)
|
|
17955
|
-
- 1024 (1 vCPU) - Available ``memory`` values: 2048 (2 GB), 3072 (3 GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8 GB)
|
|
17956
|
-
- 2048 (2 vCPU) - Available ``memory`` values: 4096 (4 GB) and 16384 (16 GB) in increments of 1024 (1 GB)
|
|
17957
|
-
- 4096 (4 vCPU) - Available ``memory`` values: 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB)
|
|
17958
|
-
- 8192 (8 vCPU) - Available ``memory`` values: 16 GB and 60 GB in 4 GB increments
|
|
17959
|
-
|
|
17960
|
-
This option requires Linux platform ``1.4.0`` or later.
|
|
17961
|
-
|
|
17962
|
-
- 16384 (16vCPU) - Available ``memory`` values: 32GB and 120 GB in 8 GB increments
|
|
17963
|
-
|
|
17964
|
-
This option requires Linux platform ``1.4.0`` or later.
|
|
17953
|
+
This field is required for Fargate. For information about the valid values, see `Task size <https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#task_size>`_ in the *Amazon Elastic Container Service Developer Guide* .
|
|
17965
17954
|
|
|
17966
17955
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-cpu
|
|
17967
17956
|
'''
|
aws_cdk/aws_fsx/__init__.py
CHANGED
|
@@ -2560,7 +2560,7 @@ class CfnFileSystem(
|
|
|
2560
2560
|
:param read_cache_configuration: Specifies the optional provisioned SSD read cache on file systems that use the Intelligent-Tiering storage class.
|
|
2561
2561
|
:param root_volume_configuration: The configuration Amazon FSx uses when creating the root value of the Amazon FSx for OpenZFS file system. All volumes are children of the root volume.
|
|
2562
2562
|
:param route_table_ids: (Multi-AZ only) Specifies the route tables in which Amazon FSx creates the rules for routing traffic to the correct file server. You should specify all virtual private cloud (VPC) route tables associated with the subnets in which your clients are located. By default, Amazon FSx selects your VPC's default route table.
|
|
2563
|
-
:param throughput_capacity: Specifies the throughput of an Amazon FSx for OpenZFS file system, measured in megabytes per second (MBps). Valid values depend on the ``DeploymentType``
|
|
2563
|
+
:param throughput_capacity: Specifies the throughput of an Amazon FSx for OpenZFS file system, measured in megabytes per second (MBps). Valid values depend on the ``DeploymentType`` that you choose, as follows: - For ``MULTI_AZ_1`` and ``SINGLE_AZ_2`` , valid values are 160, 320, 640, 1280, 2560, 3840, 5120, 7680, or 10240 MBps. - For ``SINGLE_AZ_1`` , valid values are 64, 128, 256, 512, 1024, 2048, 3072, or 4096 MBps. You pay for additional throughput capacity that you provision.
|
|
2564
2564
|
:param weekly_maintenance_start_time: The preferred start time to perform weekly maintenance, formatted d:HH:MM in the UTC time zone, where d is the weekday number, from 1 through 7, beginning with Monday and ending with Sunday. For example, ``1:05:00`` specifies maintenance at 5 AM Monday.
|
|
2565
2565
|
|
|
2566
2566
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-openzfsconfiguration.html
|
|
@@ -2810,9 +2810,8 @@ class CfnFileSystem(
|
|
|
2810
2810
|
def throughput_capacity(self) -> typing.Optional[jsii.Number]:
|
|
2811
2811
|
'''Specifies the throughput of an Amazon FSx for OpenZFS file system, measured in megabytes per second (MBps).
|
|
2812
2812
|
|
|
2813
|
-
Valid values depend on the ``DeploymentType``
|
|
2813
|
+
Valid values depend on the ``DeploymentType`` that you choose, as follows:
|
|
2814
2814
|
|
|
2815
|
-
- For ``INTELIGENT_TIERING`` , valid values are 1280, 2560, 3840, 5120, 7680, or 10240 MBps.
|
|
2816
2815
|
- For ``MULTI_AZ_1`` and ``SINGLE_AZ_2`` , valid values are 160, 320, 640, 1280, 2560, 3840, 5120, 7680, or 10240 MBps.
|
|
2817
2816
|
- For ``SINGLE_AZ_1`` , valid values are 64, 128, 256, 512, 1024, 2048, 3072, or 4096 MBps.
|
|
2818
2817
|
|