aws-cdk-lib 2.193.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.193.0.jsii.tgz → aws-cdk-lib@2.195.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +63 -2
- aws_cdk/aws_aps/__init__.py +34 -22
- aws_cdk/aws_autoscaling/__init__.py +8 -0
- aws_cdk/aws_batch/__init__.py +2 -2
- aws_cdk/aws_bedrock/__init__.py +587 -8
- aws_cdk/aws_ce/__init__.py +34 -22
- aws_cdk/aws_cloudfront/__init__.py +6090 -3972
- aws_cdk/aws_codebuild/__init__.py +19 -10
- 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_dlm/__init__.py +2 -2
- aws_cdk/aws_dsql/__init__.py +9 -0
- aws_cdk/aws_dynamodb/__init__.py +5 -3
- aws_cdk/aws_ec2/__init__.py +138 -11
- aws_cdk/aws_ecr/__init__.py +419 -0
- aws_cdk/aws_ecs/__init__.py +22 -25
- aws_cdk/aws_entityresolution/__init__.py +7 -2
- aws_cdk/aws_events/__init__.py +41 -8
- 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_lambda/__init__.py +1 -1
- aws_cdk/aws_medialive/__init__.py +4 -6
- aws_cdk/aws_mediapackagev2/__init__.py +50 -6
- aws_cdk/aws_mediatailor/__init__.py +115 -0
- aws_cdk/aws_memorydb/__init__.py +21 -11
- aws_cdk/aws_oam/__init__.py +43 -10
- aws_cdk/aws_omics/__init__.py +5 -5
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_quicksight/__init__.py +1 -1
- aws_cdk/aws_rds/__init__.py +87 -8
- aws_cdk/aws_redshiftserverless/__init__.py +20 -0
- 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_route53resolver/__init__.py +41 -0
- aws_cdk/aws_s3/__init__.py +2 -4
- aws_cdk/aws_s3_notifications/__init__.py +5 -5
- aws_cdk/aws_sagemaker/__init__.py +255 -8
- aws_cdk/aws_ssmguiconnect/__init__.py +544 -0
- aws_cdk/aws_vpclattice/__init__.py +6 -2
- aws_cdk/aws_wisdom/__init__.py +25 -6
- aws_cdk/cloud_assembly_schema/__init__.py +7 -1
- {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/RECORD +54 -53
- {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.195.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.193.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.
|
|
@@ -12470,7 +12567,7 @@ class CfnEC2Fleet(
|
|
|
12470
12567
|
:param accelerator_manufacturers: Indicates whether instance types must have accelerators by specific manufacturers. - For instance types with AWS devices, specify ``amazon-web-services`` . - For instance types with AMD devices, specify ``amd`` . - For instance types with Habana devices, specify ``habana`` . - For instance types with NVIDIA devices, specify ``nvidia`` . - For instance types with Xilinx devices, specify ``xilinx`` . Default: Any manufacturer
|
|
12471
12568
|
:param accelerator_names: The accelerators that must be on the instance type. - For instance types with NVIDIA A10G GPUs, specify ``a10g`` . - For instance types with NVIDIA A100 GPUs, specify ``a100`` . - For instance types with NVIDIA H100 GPUs, specify ``h100`` . - For instance types with AWS Inferentia chips, specify ``inferentia`` . - For instance types with NVIDIA GRID K520 GPUs, specify ``k520`` . - For instance types with NVIDIA K80 GPUs, specify ``k80`` . - For instance types with NVIDIA M60 GPUs, specify ``m60`` . - For instance types with AMD Radeon Pro V520 GPUs, specify ``radeon-pro-v520`` . - For instance types with NVIDIA T4 GPUs, specify ``t4`` . - For instance types with NVIDIA T4G GPUs, specify ``t4g`` . - For instance types with Xilinx VU9P FPGAs, specify ``vu9p`` . - For instance types with NVIDIA V100 GPUs, specify ``v100`` . Default: Any accelerator
|
|
12472
12569
|
:param accelerator_total_memory_mib: The minimum and maximum amount of total accelerator memory, in MiB. Default: No minimum or maximum limits
|
|
12473
|
-
:param accelerator_types: The accelerator types that must be on the instance type. - For instance types with FPGA accelerators, specify ``fpga`` . - For instance types with GPU accelerators, specify ``gpu`` . Default: Any accelerator type
|
|
12570
|
+
:param accelerator_types: The accelerator types that must be on the instance type. - For instance types with FPGA accelerators, specify ``fpga`` . - For instance types with GPU accelerators, specify ``gpu`` . - For instance types with Inference accelerators, specify ``inference`` . Default: Any accelerator type
|
|
12474
12571
|
:param allowed_instance_types: The instance types to apply your specified attributes against. All other instance types are ignored, even if they match your specified attributes. You can use strings with one or more wild cards, represented by an asterisk ( ``*`` ), to allow an instance type, size, or generation. The following are examples: ``m5.8xlarge`` , ``c5*.*`` , ``m5a.*`` , ``r*`` , ``*3*`` . For example, if you specify ``c5*`` ,Amazon EC2 will allow the entire C5 instance family, which includes all C5a and C5n instance types. If you specify ``m5a.*`` , Amazon EC2 will allow all the M5a instance types, but not the M5n instance types. .. epigraph:: If you specify ``AllowedInstanceTypes`` , you can't specify ``ExcludedInstanceTypes`` . Default: All instance types
|
|
12475
12572
|
:param bare_metal: Indicates whether bare metal instance types must be included, excluded, or required. - To include bare metal instance types, specify ``included`` . - To require only bare metal instance types, specify ``required`` . - To exclude bare metal instance types, specify ``excluded`` . Default: ``excluded``
|
|
12476
12573
|
:param baseline_ebs_bandwidth_mbps: The minimum and maximum baseline bandwidth to Amazon EBS, in Mbps. For more information, see `Amazon EBS–optimized instances <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-optimized.html>`_ in the *Amazon EC2 User Guide* . Default: No minimum or maximum limits
|
|
@@ -12718,6 +12815,7 @@ class CfnEC2Fleet(
|
|
|
12718
12815
|
|
|
12719
12816
|
- For instance types with FPGA accelerators, specify ``fpga`` .
|
|
12720
12817
|
- For instance types with GPU accelerators, specify ``gpu`` .
|
|
12818
|
+
- For instance types with Inference accelerators, specify ``inference`` .
|
|
12721
12819
|
|
|
12722
12820
|
Default: Any accelerator type
|
|
12723
12821
|
|
|
@@ -27086,7 +27184,7 @@ class CfnLaunchTemplate(
|
|
|
27086
27184
|
:param accelerator_manufacturers: Indicates whether instance types must have accelerators by specific manufacturers. - For instance types with AWS devices, specify ``amazon-web-services`` . - For instance types with AMD devices, specify ``amd`` . - For instance types with Habana devices, specify ``habana`` . - For instance types with NVIDIA devices, specify ``nvidia`` . - For instance types with Xilinx devices, specify ``xilinx`` . Default: Any manufacturer
|
|
27087
27185
|
:param accelerator_names: The accelerators that must be on the instance type. - For instance types with NVIDIA A10G GPUs, specify ``a10g`` . - For instance types with NVIDIA A100 GPUs, specify ``a100`` . - For instance types with NVIDIA H100 GPUs, specify ``h100`` . - For instance types with AWS Inferentia chips, specify ``inferentia`` . - For instance types with NVIDIA GRID K520 GPUs, specify ``k520`` . - For instance types with NVIDIA K80 GPUs, specify ``k80`` . - For instance types with NVIDIA M60 GPUs, specify ``m60`` . - For instance types with AMD Radeon Pro V520 GPUs, specify ``radeon-pro-v520`` . - For instance types with NVIDIA T4 GPUs, specify ``t4`` . - For instance types with NVIDIA T4G GPUs, specify ``t4g`` . - For instance types with Xilinx VU9P FPGAs, specify ``vu9p`` . - For instance types with NVIDIA V100 GPUs, specify ``v100`` . Default: Any accelerator
|
|
27088
27186
|
:param accelerator_total_memory_mib: The minimum and maximum amount of total accelerator memory, in MiB. Default: No minimum or maximum limits
|
|
27089
|
-
:param accelerator_types: The accelerator types that must be on the instance type. - For instance types with FPGA accelerators, specify ``fpga`` . - For instance types with GPU accelerators, specify ``gpu`` . Default: Any accelerator type
|
|
27187
|
+
:param accelerator_types: The accelerator types that must be on the instance type. - For instance types with FPGA accelerators, specify ``fpga`` . - For instance types with GPU accelerators, specify ``gpu`` . - For instance types with Inference accelerators, specify ``inference`` . Default: Any accelerator type
|
|
27090
27188
|
:param allowed_instance_types: The instance types to apply your specified attributes against. All other instance types are ignored, even if they match your specified attributes. You can use strings with one or more wild cards, represented by an asterisk ( ``*`` ), to allow an instance type, size, or generation. The following are examples: ``m5.8xlarge`` , ``c5*.*`` , ``m5a.*`` , ``r*`` , ``*3*`` . For example, if you specify ``c5*`` ,Amazon EC2 will allow the entire C5 instance family, which includes all C5a and C5n instance types. If you specify ``m5a.*`` , Amazon EC2 will allow all the M5a instance types, but not the M5n instance types. .. epigraph:: If you specify ``AllowedInstanceTypes`` , you can't specify ``ExcludedInstanceTypes`` . Default: All instance types
|
|
27091
27189
|
:param bare_metal: Indicates whether bare metal instance types must be included, excluded, or required. - To include bare metal instance types, specify ``included`` . - To require only bare metal instance types, specify ``required`` . - To exclude bare metal instance types, specify ``excluded`` . Default: ``excluded``
|
|
27092
27190
|
:param baseline_ebs_bandwidth_mbps: The minimum and maximum baseline bandwidth to Amazon EBS, in Mbps. For more information, see `Amazon EBS–optimized instances <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-optimized.html>`_ in the *Amazon EC2 User Guide* . Default: No minimum or maximum limits
|
|
@@ -27334,6 +27432,7 @@ class CfnLaunchTemplate(
|
|
|
27334
27432
|
|
|
27335
27433
|
- For instance types with FPGA accelerators, specify ``fpga`` .
|
|
27336
27434
|
- For instance types with GPU accelerators, specify ``gpu`` .
|
|
27435
|
+
- For instance types with Inference accelerators, specify ``inference`` .
|
|
27337
27436
|
|
|
27338
27437
|
Default: Any accelerator type
|
|
27339
27438
|
|
|
@@ -47893,7 +47992,7 @@ class CfnSpotFleet(
|
|
|
47893
47992
|
:param accelerator_manufacturers: Indicates whether instance types must have accelerators by specific manufacturers. - For instance types with AWS devices, specify ``amazon-web-services`` . - For instance types with AMD devices, specify ``amd`` . - For instance types with Habana devices, specify ``habana`` . - For instance types with NVIDIA devices, specify ``nvidia`` . - For instance types with Xilinx devices, specify ``xilinx`` . Default: Any manufacturer
|
|
47894
47993
|
:param accelerator_names: The accelerators that must be on the instance type. - For instance types with NVIDIA A10G GPUs, specify ``a10g`` . - For instance types with NVIDIA A100 GPUs, specify ``a100`` . - For instance types with NVIDIA H100 GPUs, specify ``h100`` . - For instance types with AWS Inferentia chips, specify ``inferentia`` . - For instance types with NVIDIA GRID K520 GPUs, specify ``k520`` . - For instance types with NVIDIA K80 GPUs, specify ``k80`` . - For instance types with NVIDIA M60 GPUs, specify ``m60`` . - For instance types with AMD Radeon Pro V520 GPUs, specify ``radeon-pro-v520`` . - For instance types with NVIDIA T4 GPUs, specify ``t4`` . - For instance types with NVIDIA T4G GPUs, specify ``t4g`` . - For instance types with Xilinx VU9P FPGAs, specify ``vu9p`` . - For instance types with NVIDIA V100 GPUs, specify ``v100`` . Default: Any accelerator
|
|
47895
47994
|
:param accelerator_total_memory_mib: The minimum and maximum amount of total accelerator memory, in MiB. Default: No minimum or maximum limits
|
|
47896
|
-
:param accelerator_types: The accelerator types that must be on the instance type. - For instance types with FPGA accelerators, specify ``fpga`` . - For instance types with GPU accelerators, specify ``gpu`` . Default: Any accelerator type
|
|
47995
|
+
:param accelerator_types: The accelerator types that must be on the instance type. - For instance types with FPGA accelerators, specify ``fpga`` . - For instance types with GPU accelerators, specify ``gpu`` . - For instance types with Inference accelerators, specify ``inference`` . Default: Any accelerator type
|
|
47897
47996
|
:param allowed_instance_types: The instance types to apply your specified attributes against. All other instance types are ignored, even if they match your specified attributes. You can use strings with one or more wild cards, represented by an asterisk ( ``*`` ), to allow an instance type, size, or generation. The following are examples: ``m5.8xlarge`` , ``c5*.*`` , ``m5a.*`` , ``r*`` , ``*3*`` . For example, if you specify ``c5*`` ,Amazon EC2 will allow the entire C5 instance family, which includes all C5a and C5n instance types. If you specify ``m5a.*`` , Amazon EC2 will allow all the M5a instance types, but not the M5n instance types. .. epigraph:: If you specify ``AllowedInstanceTypes`` , you can't specify ``ExcludedInstanceTypes`` . Default: All instance types
|
|
47898
47997
|
:param bare_metal: Indicates whether bare metal instance types must be included, excluded, or required. - To include bare metal instance types, specify ``included`` . - To require only bare metal instance types, specify ``required`` . - To exclude bare metal instance types, specify ``excluded`` . Default: ``excluded``
|
|
47899
47998
|
:param baseline_ebs_bandwidth_mbps: The minimum and maximum baseline bandwidth to Amazon EBS, in Mbps. For more information, see `Amazon EBS–optimized instances <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-optimized.html>`_ in the *Amazon EC2 User Guide* . Default: No minimum or maximum limits
|
|
@@ -48141,6 +48240,7 @@ class CfnSpotFleet(
|
|
|
48141
48240
|
|
|
48142
48241
|
- For instance types with FPGA accelerators, specify ``fpga`` .
|
|
48143
48242
|
- For instance types with GPU accelerators, specify ``gpu`` .
|
|
48243
|
+
- For instance types with Inference accelerators, specify ``inference`` .
|
|
48144
48244
|
|
|
48145
48245
|
Default: Any accelerator type
|
|
48146
48246
|
|
|
@@ -57169,8 +57269,8 @@ class CfnTransitGatewayPeeringAttachment(
|
|
|
57169
57269
|
:param scope: Scope in which this resource is defined.
|
|
57170
57270
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
57171
57271
|
:param peer_account_id: The ID of the AWS account that owns the transit gateway.
|
|
57172
|
-
:param peer_region: The Region
|
|
57173
|
-
: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.
|
|
57174
57274
|
:param transit_gateway_id: The ID of the transit gateway peering attachment.
|
|
57175
57275
|
:param tags: The tags for the transit gateway peering attachment.
|
|
57176
57276
|
'''
|
|
@@ -57298,7 +57398,7 @@ class CfnTransitGatewayPeeringAttachment(
|
|
|
57298
57398
|
@builtins.property
|
|
57299
57399
|
@jsii.member(jsii_name="peerRegion")
|
|
57300
57400
|
def peer_region(self) -> builtins.str:
|
|
57301
|
-
'''The Region
|
|
57401
|
+
'''The Region where the transit gateway that you want to create the peer for is located.'''
|
|
57302
57402
|
return typing.cast(builtins.str, jsii.get(self, "peerRegion"))
|
|
57303
57403
|
|
|
57304
57404
|
@peer_region.setter
|
|
@@ -57311,7 +57411,7 @@ class CfnTransitGatewayPeeringAttachment(
|
|
|
57311
57411
|
@builtins.property
|
|
57312
57412
|
@jsii.member(jsii_name="peerTransitGatewayId")
|
|
57313
57413
|
def peer_transit_gateway_id(self) -> builtins.str:
|
|
57314
|
-
'''The ID of the transit gateway.'''
|
|
57414
|
+
'''The ID of the transit gateway in the PeerRegion.'''
|
|
57315
57415
|
return typing.cast(builtins.str, jsii.get(self, "peerTransitGatewayId"))
|
|
57316
57416
|
|
|
57317
57417
|
@peer_transit_gateway_id.setter
|
|
@@ -57442,8 +57542,8 @@ class CfnTransitGatewayPeeringAttachmentProps:
|
|
|
57442
57542
|
'''Properties for defining a ``CfnTransitGatewayPeeringAttachment``.
|
|
57443
57543
|
|
|
57444
57544
|
:param peer_account_id: The ID of the AWS account that owns the transit gateway.
|
|
57445
|
-
:param peer_region: The Region
|
|
57446
|
-
: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.
|
|
57447
57547
|
:param transit_gateway_id: The ID of the transit gateway peering attachment.
|
|
57448
57548
|
:param tags: The tags for the transit gateway peering attachment.
|
|
57449
57549
|
|
|
@@ -57497,7 +57597,7 @@ class CfnTransitGatewayPeeringAttachmentProps:
|
|
|
57497
57597
|
|
|
57498
57598
|
@builtins.property
|
|
57499
57599
|
def peer_region(self) -> builtins.str:
|
|
57500
|
-
'''The Region
|
|
57600
|
+
'''The Region where the transit gateway that you want to create the peer for is located.
|
|
57501
57601
|
|
|
57502
57602
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaypeeringattachment.html#cfn-ec2-transitgatewaypeeringattachment-peerregion
|
|
57503
57603
|
'''
|
|
@@ -57507,7 +57607,7 @@ class CfnTransitGatewayPeeringAttachmentProps:
|
|
|
57507
57607
|
|
|
57508
57608
|
@builtins.property
|
|
57509
57609
|
def peer_transit_gateway_id(self) -> builtins.str:
|
|
57510
|
-
'''The ID of the transit gateway.
|
|
57610
|
+
'''The ID of the transit gateway in the PeerRegion.
|
|
57511
57611
|
|
|
57512
57612
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaypeeringattachment.html#cfn-ec2-transitgatewaypeeringattachment-peertransitgatewayid
|
|
57513
57613
|
'''
|
|
@@ -79549,6 +79649,10 @@ class InstanceClass(enum.Enum):
|
|
|
79549
79649
|
'''Memory optimized instances with Graviton4 processors.'''
|
|
79550
79650
|
R8G = "R8G"
|
|
79551
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.'''
|
|
79552
79656
|
COMPUTE3 = "COMPUTE3"
|
|
79553
79657
|
'''Compute optimized instances, 3rd generation.'''
|
|
79554
79658
|
C3 = "C3"
|
|
@@ -79625,6 +79729,10 @@ class InstanceClass(enum.Enum):
|
|
|
79625
79729
|
|
|
79626
79730
|
This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Ireland).
|
|
79627
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.'''
|
|
79628
79736
|
COMPUTE6_GRAVITON2_HIGH_NETWORK_BANDWIDTH = "COMPUTE6_GRAVITON2_HIGH_NETWORK_BANDWIDTH"
|
|
79629
79737
|
'''Compute optimized instances for high performance computing, 6th generation with Graviton2 processors and high network bandwidth capabilities.'''
|
|
79630
79738
|
C6GN = "C6GN"
|
|
@@ -79907,6 +80015,10 @@ class InstanceClass(enum.Enum):
|
|
|
79907
80015
|
|
|
79908
80016
|
This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Ireland).
|
|
79909
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.'''
|
|
79910
80022
|
STANDARD7_INTEL = "STANDARD7_INTEL"
|
|
79911
80023
|
'''Standard instances with high memory and compute capacity based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation.'''
|
|
79912
80024
|
M7I = "M7I"
|
|
@@ -103547,6 +103659,7 @@ def _typecheckingstub__1880bffa9253aaedfa6af6175da6262a96ea34dadf82dc678a1eef91c
|
|
|
103547
103659
|
server_certificate_arn: builtins.str,
|
|
103548
103660
|
client_connect_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnClientVpnEndpoint.ClientConnectOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
103549
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,
|
|
103550
103663
|
description: typing.Optional[builtins.str] = None,
|
|
103551
103664
|
disconnect_on_session_timeout: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
103552
103665
|
dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -103610,6 +103723,12 @@ def _typecheckingstub__497c1bea9e9caa987aeafc2d4334f07cd2d9664a3f3cd38bebd561170
|
|
|
103610
103723
|
"""Type checking stubs"""
|
|
103611
103724
|
pass
|
|
103612
103725
|
|
|
103726
|
+
def _typecheckingstub__b7449176e28b63826ef826a7cc608350858f54ad63967741bedbe6e29e4548e0(
|
|
103727
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnClientVpnEndpoint.ClientRouteEnforcementOptionsProperty]],
|
|
103728
|
+
) -> None:
|
|
103729
|
+
"""Type checking stubs"""
|
|
103730
|
+
pass
|
|
103731
|
+
|
|
103613
103732
|
def _typecheckingstub__bb1d5fb0102c1b6de24ad13acfc13837ec5422291e23048395fe03350aea2188(
|
|
103614
103733
|
value: typing.Optional[builtins.str],
|
|
103615
103734
|
) -> None:
|
|
@@ -103709,6 +103828,13 @@ def _typecheckingstub__907ff3a3bd097ac37a720bbc18cf4e29748beb226ddf13641e4835016
|
|
|
103709
103828
|
"""Type checking stubs"""
|
|
103710
103829
|
pass
|
|
103711
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
|
+
|
|
103712
103838
|
def _typecheckingstub__2c142e5322bb8bda4ace9616736c0e12d7c7b9b219932b4168a975e68d0d9395(
|
|
103713
103839
|
*,
|
|
103714
103840
|
enabled: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
@@ -103749,6 +103875,7 @@ def _typecheckingstub__05994467e800c33b4a01e884b4b20bef2569d710f5dc323617cd814e5
|
|
|
103749
103875
|
server_certificate_arn: builtins.str,
|
|
103750
103876
|
client_connect_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnClientVpnEndpoint.ClientConnectOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
103751
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,
|
|
103752
103879
|
description: typing.Optional[builtins.str] = None,
|
|
103753
103880
|
disconnect_on_session_timeout: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
103754
103881
|
dns_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|