aws-cdk-lib 2.184.1__py3-none-any.whl → 2.185.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/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.184.1.jsii.tgz → aws-cdk-lib@2.185.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +1 -1
- aws_cdk/aws_applicationsignals/__init__.py +134 -0
- aws_cdk/aws_appsync/__init__.py +0 -8
- aws_cdk/aws_athena/__init__.py +143 -0
- aws_cdk/aws_backup/__init__.py +4 -2
- aws_cdk/aws_batch/__init__.py +9 -0
- aws_cdk/aws_bedrock/__init__.py +260 -185
- aws_cdk/aws_cassandra/__init__.py +3 -5
- aws_cdk/aws_chatbot/__init__.py +41 -0
- aws_cdk/aws_codebuild/__init__.py +10 -3
- aws_cdk/aws_config/__init__.py +1 -1
- aws_cdk/aws_datasync/__init__.py +12 -14
- aws_cdk/aws_ec2/__init__.py +148 -19
- aws_cdk/aws_ecr/__init__.py +84 -2
- aws_cdk/aws_ecs/__init__.py +5 -5
- aws_cdk/aws_eks/__init__.py +2 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +42 -5
- aws_cdk/aws_elasticsearch/__init__.py +1 -1
- aws_cdk/aws_events_targets/__init__.py +5 -5
- aws_cdk/aws_gamelift/__init__.py +162 -162
- aws_cdk/aws_gameliftstreams/__init__.py +199 -59
- aws_cdk/aws_iam/__init__.py +56 -25
- aws_cdk/aws_imagebuilder/__init__.py +42 -5
- aws_cdk/aws_iotfleetwise/__init__.py +15 -6
- aws_cdk/aws_kinesisfirehose/__init__.py +113 -110
- aws_cdk/aws_logs/__init__.py +21 -27
- aws_cdk/aws_msk/__init__.py +9 -48
- aws_cdk/aws_opensearchservice/__init__.py +1 -1
- aws_cdk/aws_pcs/__init__.py +33 -22
- aws_cdk/aws_rds/__init__.py +8 -4
- aws_cdk/aws_rum/__init__.py +148 -0
- aws_cdk/aws_s3/__init__.py +4 -6
- aws_cdk/aws_s3_deployment/__init__.py +2 -0
- aws_cdk/aws_sagemaker/__init__.py +524 -0
- aws_cdk/aws_ses/__init__.py +9 -9
- aws_cdk/aws_sns/__init__.py +12 -12
- aws_cdk/cx_api/__init__.py +30 -0
- aws_cdk/region_info/__init__.py +2 -2
- {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/RECORD +46 -46
- {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ec2/__init__.py
CHANGED
|
@@ -2315,7 +2315,7 @@ ec2.FlowLog(self, "FlowLogWithKeyPrefix",
|
|
|
2315
2315
|
)
|
|
2316
2316
|
```
|
|
2317
2317
|
|
|
2318
|
-
*
|
|
2318
|
+
*Amazon Data Firehose*
|
|
2319
2319
|
|
|
2320
2320
|
```python
|
|
2321
2321
|
import aws_cdk.aws_kinesisfirehose as firehose
|
|
@@ -21688,8 +21688,6 @@ class CfnInstance(
|
|
|
21688
21688
|
|
|
21689
21689
|
Amazon Elastic Graphics reached end of life on January 8, 2024.
|
|
21690
21690
|
|
|
21691
|
-
For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.
|
|
21692
|
-
|
|
21693
21691
|
Specifies the type of Elastic GPU. An Elastic GPU is a GPU resource that you can attach to your Amazon EC2 instance to accelerate the graphics performance of your applications.
|
|
21694
21692
|
|
|
21695
21693
|
``ElasticGpuSpecification`` is a property of the `AWS::EC2::Instance <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html>`_ resource.
|
|
@@ -21749,7 +21747,11 @@ class CfnInstance(
|
|
|
21749
21747
|
type: builtins.str,
|
|
21750
21748
|
count: typing.Optional[jsii.Number] = None,
|
|
21751
21749
|
) -> None:
|
|
21752
|
-
'''
|
|
21750
|
+
'''.. epigraph::
|
|
21751
|
+
|
|
21752
|
+
Amazon Elastic Inference is no longer available.
|
|
21753
|
+
|
|
21754
|
+
Specifies the Elastic Inference Accelerator for the instance.
|
|
21753
21755
|
|
|
21754
21756
|
``ElasticInferenceAccelerator`` is a property of the `AWS::EC2::Instance <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html>`_ resource.
|
|
21755
21757
|
|
|
@@ -25975,8 +25977,6 @@ class CfnLaunchTemplate(
|
|
|
25975
25977
|
|
|
25976
25978
|
Amazon Elastic Graphics reached end of life on January 8, 2024.
|
|
25977
25979
|
|
|
25978
|
-
For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.
|
|
25979
|
-
|
|
25980
25980
|
Specifies a specification for an Elastic GPU for an Amazon EC2 launch template.
|
|
25981
25981
|
|
|
25982
25982
|
``ElasticGpuSpecification`` is a property of `AWS::EC2::LaunchTemplate LaunchTemplateData <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html>`_ .
|
|
@@ -27325,6 +27325,7 @@ class CfnLaunchTemplate(
|
|
|
27325
27325
|
"metadata_options": "metadataOptions",
|
|
27326
27326
|
"monitoring": "monitoring",
|
|
27327
27327
|
"network_interfaces": "networkInterfaces",
|
|
27328
|
+
"network_performance_options": "networkPerformanceOptions",
|
|
27328
27329
|
"placement": "placement",
|
|
27329
27330
|
"private_dns_name_options": "privateDnsNameOptions",
|
|
27330
27331
|
"ram_disk_id": "ramDiskId",
|
|
@@ -27362,6 +27363,7 @@ class CfnLaunchTemplate(
|
|
|
27362
27363
|
metadata_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnLaunchTemplate.MetadataOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
27363
27364
|
monitoring: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnLaunchTemplate.MonitoringProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
27364
27365
|
network_interfaces: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnLaunchTemplate.NetworkInterfaceProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
27366
|
+
network_performance_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnLaunchTemplate.NetworkPerformanceOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
27365
27367
|
placement: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnLaunchTemplate.PlacementProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
27366
27368
|
private_dns_name_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnLaunchTemplate.PrivateDnsNameOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
27367
27369
|
ram_disk_id: typing.Optional[builtins.str] = None,
|
|
@@ -27383,8 +27385,8 @@ class CfnLaunchTemplate(
|
|
|
27383
27385
|
:param disable_api_stop: Indicates whether to enable the instance for stop protection. For more information, see `Enable stop protection for your EC2 instances <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-stop-protection.html>`_ in the *Amazon EC2 User Guide* .
|
|
27384
27386
|
:param disable_api_termination: Indicates whether termination protection is enabled for the instance. The default is ``false`` , which means that you can terminate the instance using the Amazon EC2 console, command line tools, or API. You can enable termination protection when you launch an instance, while the instance is running, or while the instance is stopped.
|
|
27385
27387
|
:param ebs_optimized: Indicates whether the instance is optimized for Amazon EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal Amazon EBS I/O performance. This optimization isn't available with all instance types. Additional usage charges apply when using an EBS-optimized instance.
|
|
27386
|
-
:param elastic_gpu_specifications: Deprecated. .. epigraph:: Amazon Elastic Graphics reached end of life on January 8, 2024.
|
|
27387
|
-
:param elastic_inference_accelerators: .. epigraph:: Amazon Elastic Inference is no longer available. An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads. You cannot specify accelerators from different generations in the same request.
|
|
27388
|
+
:param elastic_gpu_specifications: Deprecated. .. epigraph:: Amazon Elastic Graphics reached end of life on January 8, 2024.
|
|
27389
|
+
:param elastic_inference_accelerators: .. epigraph:: Amazon Elastic Inference is no longer available. An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads. You cannot specify accelerators from different generations in the same request.
|
|
27388
27390
|
:param enclave_options: Indicates whether the instance is enabled for AWS Nitro Enclaves. For more information, see `What is Nitro Enclaves? <https://docs.aws.amazon.com/enclaves/latest/user/nitro-enclave.html>`_ in the *AWS Nitro Enclaves User Guide* . You can't enable AWS Nitro Enclaves and hibernation on the same instance.
|
|
27389
27391
|
:param hibernation_options: Indicates whether an instance is enabled for hibernation. This parameter is valid only if the instance meets the `hibernation prerequisites <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/hibernating-prerequisites.html>`_ . For more information, see `Hibernate your Amazon EC2 instance <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Hibernate.html>`_ in the *Amazon EC2 User Guide* .
|
|
27390
27392
|
:param iam_instance_profile: The name or Amazon Resource Name (ARN) of an IAM instance profile.
|
|
@@ -27400,6 +27402,7 @@ class CfnLaunchTemplate(
|
|
|
27400
27402
|
:param metadata_options: The metadata options for the instance. For more information, see `Configure the Instance Metadata Service options <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configuring-instance-metadata-options.html>`_ in the *Amazon EC2 User Guide* .
|
|
27401
27403
|
:param monitoring: The monitoring for the instance.
|
|
27402
27404
|
:param network_interfaces: The network interfaces for the instance.
|
|
27405
|
+
:param network_performance_options: The settings for the network performance options for the instance. For more information, see `EC2 instance bandwidth weighting configuration <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configure-bandwidth-weighting.html>`_ .
|
|
27403
27406
|
:param placement: The placement for the instance.
|
|
27404
27407
|
:param private_dns_name_options: The hostname type for EC2 instances launched into this subnet and how DNS A and AAAA record queries should be handled. For more information, see `Amazon EC2 instance hostname types <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-naming.html>`_ in the *Amazon Elastic Compute Cloud User Guide* .
|
|
27405
27408
|
:param ram_disk_id: The ID of the RAM disk. .. epigraph:: We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see `User provided kernels <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedkernels.html>`_ in the *Amazon EC2 User Guide* .
|
|
@@ -27601,6 +27604,9 @@ class CfnLaunchTemplate(
|
|
|
27601
27604
|
secondary_private_ip_address_count=123,
|
|
27602
27605
|
subnet_id="subnetId"
|
|
27603
27606
|
)],
|
|
27607
|
+
network_performance_options=ec2.CfnLaunchTemplate.NetworkPerformanceOptionsProperty(
|
|
27608
|
+
bandwidth_weighting="bandwidthWeighting"
|
|
27609
|
+
),
|
|
27604
27610
|
placement=ec2.CfnLaunchTemplate.PlacementProperty(
|
|
27605
27611
|
affinity="affinity",
|
|
27606
27612
|
availability_zone="availabilityZone",
|
|
@@ -27656,6 +27662,7 @@ class CfnLaunchTemplate(
|
|
|
27656
27662
|
check_type(argname="argument metadata_options", value=metadata_options, expected_type=type_hints["metadata_options"])
|
|
27657
27663
|
check_type(argname="argument monitoring", value=monitoring, expected_type=type_hints["monitoring"])
|
|
27658
27664
|
check_type(argname="argument network_interfaces", value=network_interfaces, expected_type=type_hints["network_interfaces"])
|
|
27665
|
+
check_type(argname="argument network_performance_options", value=network_performance_options, expected_type=type_hints["network_performance_options"])
|
|
27659
27666
|
check_type(argname="argument placement", value=placement, expected_type=type_hints["placement"])
|
|
27660
27667
|
check_type(argname="argument private_dns_name_options", value=private_dns_name_options, expected_type=type_hints["private_dns_name_options"])
|
|
27661
27668
|
check_type(argname="argument ram_disk_id", value=ram_disk_id, expected_type=type_hints["ram_disk_id"])
|
|
@@ -27712,6 +27719,8 @@ class CfnLaunchTemplate(
|
|
|
27712
27719
|
self._values["monitoring"] = monitoring
|
|
27713
27720
|
if network_interfaces is not None:
|
|
27714
27721
|
self._values["network_interfaces"] = network_interfaces
|
|
27722
|
+
if network_performance_options is not None:
|
|
27723
|
+
self._values["network_performance_options"] = network_performance_options
|
|
27715
27724
|
if placement is not None:
|
|
27716
27725
|
self._values["placement"] = placement
|
|
27717
27726
|
if private_dns_name_options is not None:
|
|
@@ -27824,7 +27833,7 @@ class CfnLaunchTemplate(
|
|
|
27824
27833
|
|
|
27825
27834
|
.. epigraph::
|
|
27826
27835
|
|
|
27827
|
-
Amazon Elastic Graphics reached end of life on January 8, 2024.
|
|
27836
|
+
Amazon Elastic Graphics reached end of life on January 8, 2024.
|
|
27828
27837
|
|
|
27829
27838
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-elasticgpuspecifications
|
|
27830
27839
|
'''
|
|
@@ -27842,9 +27851,6 @@ class CfnLaunchTemplate(
|
|
|
27842
27851
|
An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.
|
|
27843
27852
|
|
|
27844
27853
|
You cannot specify accelerators from different generations in the same request.
|
|
27845
|
-
.. epigraph::
|
|
27846
|
-
|
|
27847
|
-
Starting April 15, 2023, AWS will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.
|
|
27848
27854
|
|
|
27849
27855
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-elasticinferenceaccelerators
|
|
27850
27856
|
'''
|
|
@@ -28054,6 +28060,19 @@ class CfnLaunchTemplate(
|
|
|
28054
28060
|
result = self._values.get("network_interfaces")
|
|
28055
28061
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnLaunchTemplate.NetworkInterfaceProperty"]]]], result)
|
|
28056
28062
|
|
|
28063
|
+
@builtins.property
|
|
28064
|
+
def network_performance_options(
|
|
28065
|
+
self,
|
|
28066
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnLaunchTemplate.NetworkPerformanceOptionsProperty"]]:
|
|
28067
|
+
'''The settings for the network performance options for the instance.
|
|
28068
|
+
|
|
28069
|
+
For more information, see `EC2 instance bandwidth weighting configuration <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configure-bandwidth-weighting.html>`_ .
|
|
28070
|
+
|
|
28071
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-networkperformanceoptions
|
|
28072
|
+
'''
|
|
28073
|
+
result = self._values.get("network_performance_options")
|
|
28074
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnLaunchTemplate.NetworkPerformanceOptionsProperty"]], result)
|
|
28075
|
+
|
|
28057
28076
|
@builtins.property
|
|
28058
28077
|
def placement(
|
|
28059
28078
|
self,
|
|
@@ -28164,7 +28183,11 @@ class CfnLaunchTemplate(
|
|
|
28164
28183
|
count: typing.Optional[jsii.Number] = None,
|
|
28165
28184
|
type: typing.Optional[builtins.str] = None,
|
|
28166
28185
|
) -> None:
|
|
28167
|
-
'''
|
|
28186
|
+
'''.. epigraph::
|
|
28187
|
+
|
|
28188
|
+
Amazon Elastic Inference is no longer available.
|
|
28189
|
+
|
|
28190
|
+
Specifies an elastic inference accelerator.
|
|
28168
28191
|
|
|
28169
28192
|
``LaunchTemplateElasticInferenceAccelerator`` is a property of `AWS::EC2::LaunchTemplate LaunchTemplateData <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html>`_ .
|
|
28170
28193
|
|
|
@@ -29394,6 +29417,60 @@ class CfnLaunchTemplate(
|
|
|
29394
29417
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
29395
29418
|
)
|
|
29396
29419
|
|
|
29420
|
+
@jsii.data_type(
|
|
29421
|
+
jsii_type="aws-cdk-lib.aws_ec2.CfnLaunchTemplate.NetworkPerformanceOptionsProperty",
|
|
29422
|
+
jsii_struct_bases=[],
|
|
29423
|
+
name_mapping={"bandwidth_weighting": "bandwidthWeighting"},
|
|
29424
|
+
)
|
|
29425
|
+
class NetworkPerformanceOptionsProperty:
|
|
29426
|
+
def __init__(
|
|
29427
|
+
self,
|
|
29428
|
+
*,
|
|
29429
|
+
bandwidth_weighting: typing.Optional[builtins.str] = None,
|
|
29430
|
+
) -> None:
|
|
29431
|
+
'''
|
|
29432
|
+
:param bandwidth_weighting: Specifies the performance options of your instance or sets it to default.
|
|
29433
|
+
|
|
29434
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-networkperformanceoptions.html
|
|
29435
|
+
:exampleMetadata: fixture=_generated
|
|
29436
|
+
|
|
29437
|
+
Example::
|
|
29438
|
+
|
|
29439
|
+
# The code below shows an example of how to instantiate this type.
|
|
29440
|
+
# The values are placeholders you should change.
|
|
29441
|
+
from aws_cdk import aws_ec2 as ec2
|
|
29442
|
+
|
|
29443
|
+
network_performance_options_property = ec2.CfnLaunchTemplate.NetworkPerformanceOptionsProperty(
|
|
29444
|
+
bandwidth_weighting="bandwidthWeighting"
|
|
29445
|
+
)
|
|
29446
|
+
'''
|
|
29447
|
+
if __debug__:
|
|
29448
|
+
type_hints = typing.get_type_hints(_typecheckingstub__6debda9e4d3c6d44941e145e13f4b9fc9cbef841de7fbb20157320c8391b1342)
|
|
29449
|
+
check_type(argname="argument bandwidth_weighting", value=bandwidth_weighting, expected_type=type_hints["bandwidth_weighting"])
|
|
29450
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
29451
|
+
if bandwidth_weighting is not None:
|
|
29452
|
+
self._values["bandwidth_weighting"] = bandwidth_weighting
|
|
29453
|
+
|
|
29454
|
+
@builtins.property
|
|
29455
|
+
def bandwidth_weighting(self) -> typing.Optional[builtins.str]:
|
|
29456
|
+
'''Specifies the performance options of your instance or sets it to default.
|
|
29457
|
+
|
|
29458
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-networkperformanceoptions.html#cfn-ec2-launchtemplate-networkperformanceoptions-bandwidthweighting
|
|
29459
|
+
'''
|
|
29460
|
+
result = self._values.get("bandwidth_weighting")
|
|
29461
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
29462
|
+
|
|
29463
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
29464
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
29465
|
+
|
|
29466
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
29467
|
+
return not (rhs == self)
|
|
29468
|
+
|
|
29469
|
+
def __repr__(self) -> str:
|
|
29470
|
+
return "NetworkPerformanceOptionsProperty(%s)" % ", ".join(
|
|
29471
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
29472
|
+
)
|
|
29473
|
+
|
|
29397
29474
|
@jsii.data_type(
|
|
29398
29475
|
jsii_type="aws-cdk-lib.aws_ec2.CfnLaunchTemplate.PlacementProperty",
|
|
29399
29476
|
jsii_struct_bases=[],
|
|
@@ -59632,6 +59709,7 @@ class CfnVPCEndpointService(
|
|
|
59632
59709
|
gateway_load_balancer_arns=["gatewayLoadBalancerArns"],
|
|
59633
59710
|
network_load_balancer_arns=["networkLoadBalancerArns"],
|
|
59634
59711
|
payer_responsibility="payerResponsibility",
|
|
59712
|
+
supported_ip_address_types=["supportedIpAddressTypes"],
|
|
59635
59713
|
tags=[CfnTag(
|
|
59636
59714
|
key="key",
|
|
59637
59715
|
value="value"
|
|
@@ -59649,6 +59727,7 @@ class CfnVPCEndpointService(
|
|
|
59649
59727
|
gateway_load_balancer_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
59650
59728
|
network_load_balancer_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
59651
59729
|
payer_responsibility: typing.Optional[builtins.str] = None,
|
|
59730
|
+
supported_ip_address_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
59652
59731
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
59653
59732
|
) -> None:
|
|
59654
59733
|
'''
|
|
@@ -59659,6 +59738,7 @@ class CfnVPCEndpointService(
|
|
|
59659
59738
|
:param gateway_load_balancer_arns: The Amazon Resource Names (ARNs) of the Gateway Load Balancers.
|
|
59660
59739
|
:param network_load_balancer_arns: The Amazon Resource Names (ARNs) of the Network Load Balancers.
|
|
59661
59740
|
:param payer_responsibility: The entity that is responsible for the endpoint costs. The default is the endpoint owner. If you set the payer responsibility to the service owner, you cannot set it back to the endpoint owner.
|
|
59741
|
+
:param supported_ip_address_types: Specify which Ip Address types are supported for VPC endpoint service.
|
|
59662
59742
|
:param tags: The tags to associate with the service.
|
|
59663
59743
|
'''
|
|
59664
59744
|
if __debug__:
|
|
@@ -59671,6 +59751,7 @@ class CfnVPCEndpointService(
|
|
|
59671
59751
|
gateway_load_balancer_arns=gateway_load_balancer_arns,
|
|
59672
59752
|
network_load_balancer_arns=network_load_balancer_arns,
|
|
59673
59753
|
payer_responsibility=payer_responsibility,
|
|
59754
|
+
supported_ip_address_types=supported_ip_address_types,
|
|
59674
59755
|
tags=tags,
|
|
59675
59756
|
)
|
|
59676
59757
|
|
|
@@ -59807,6 +59888,22 @@ class CfnVPCEndpointService(
|
|
|
59807
59888
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
59808
59889
|
jsii.set(self, "payerResponsibility", value) # pyright: ignore[reportArgumentType]
|
|
59809
59890
|
|
|
59891
|
+
@builtins.property
|
|
59892
|
+
@jsii.member(jsii_name="supportedIpAddressTypes")
|
|
59893
|
+
def supported_ip_address_types(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
59894
|
+
'''Specify which Ip Address types are supported for VPC endpoint service.'''
|
|
59895
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "supportedIpAddressTypes"))
|
|
59896
|
+
|
|
59897
|
+
@supported_ip_address_types.setter
|
|
59898
|
+
def supported_ip_address_types(
|
|
59899
|
+
self,
|
|
59900
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
59901
|
+
) -> None:
|
|
59902
|
+
if __debug__:
|
|
59903
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4f3f2000badada7fa5b32f7a5144ba0ad0a0da831f8211c47464b99d092bec82)
|
|
59904
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
59905
|
+
jsii.set(self, "supportedIpAddressTypes", value) # pyright: ignore[reportArgumentType]
|
|
59906
|
+
|
|
59810
59907
|
@builtins.property
|
|
59811
59908
|
@jsii.member(jsii_name="tags")
|
|
59812
59909
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
@@ -60026,6 +60123,7 @@ class CfnVPCEndpointServicePermissionsProps:
|
|
|
60026
60123
|
"gateway_load_balancer_arns": "gatewayLoadBalancerArns",
|
|
60027
60124
|
"network_load_balancer_arns": "networkLoadBalancerArns",
|
|
60028
60125
|
"payer_responsibility": "payerResponsibility",
|
|
60126
|
+
"supported_ip_address_types": "supportedIpAddressTypes",
|
|
60029
60127
|
"tags": "tags",
|
|
60030
60128
|
},
|
|
60031
60129
|
)
|
|
@@ -60038,6 +60136,7 @@ class CfnVPCEndpointServiceProps:
|
|
|
60038
60136
|
gateway_load_balancer_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
60039
60137
|
network_load_balancer_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
60040
60138
|
payer_responsibility: typing.Optional[builtins.str] = None,
|
|
60139
|
+
supported_ip_address_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
60041
60140
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
60042
60141
|
) -> None:
|
|
60043
60142
|
'''Properties for defining a ``CfnVPCEndpointService``.
|
|
@@ -60047,6 +60146,7 @@ class CfnVPCEndpointServiceProps:
|
|
|
60047
60146
|
:param gateway_load_balancer_arns: The Amazon Resource Names (ARNs) of the Gateway Load Balancers.
|
|
60048
60147
|
:param network_load_balancer_arns: The Amazon Resource Names (ARNs) of the Network Load Balancers.
|
|
60049
60148
|
:param payer_responsibility: The entity that is responsible for the endpoint costs. The default is the endpoint owner. If you set the payer responsibility to the service owner, you cannot set it back to the endpoint owner.
|
|
60149
|
+
:param supported_ip_address_types: Specify which Ip Address types are supported for VPC endpoint service.
|
|
60050
60150
|
:param tags: The tags to associate with the service.
|
|
60051
60151
|
|
|
60052
60152
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html
|
|
@@ -60064,6 +60164,7 @@ class CfnVPCEndpointServiceProps:
|
|
|
60064
60164
|
gateway_load_balancer_arns=["gatewayLoadBalancerArns"],
|
|
60065
60165
|
network_load_balancer_arns=["networkLoadBalancerArns"],
|
|
60066
60166
|
payer_responsibility="payerResponsibility",
|
|
60167
|
+
supported_ip_address_types=["supportedIpAddressTypes"],
|
|
60067
60168
|
tags=[CfnTag(
|
|
60068
60169
|
key="key",
|
|
60069
60170
|
value="value"
|
|
@@ -60077,6 +60178,7 @@ class CfnVPCEndpointServiceProps:
|
|
|
60077
60178
|
check_type(argname="argument gateway_load_balancer_arns", value=gateway_load_balancer_arns, expected_type=type_hints["gateway_load_balancer_arns"])
|
|
60078
60179
|
check_type(argname="argument network_load_balancer_arns", value=network_load_balancer_arns, expected_type=type_hints["network_load_balancer_arns"])
|
|
60079
60180
|
check_type(argname="argument payer_responsibility", value=payer_responsibility, expected_type=type_hints["payer_responsibility"])
|
|
60181
|
+
check_type(argname="argument supported_ip_address_types", value=supported_ip_address_types, expected_type=type_hints["supported_ip_address_types"])
|
|
60080
60182
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
60081
60183
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
60082
60184
|
if acceptance_required is not None:
|
|
@@ -60089,6 +60191,8 @@ class CfnVPCEndpointServiceProps:
|
|
|
60089
60191
|
self._values["network_load_balancer_arns"] = network_load_balancer_arns
|
|
60090
60192
|
if payer_responsibility is not None:
|
|
60091
60193
|
self._values["payer_responsibility"] = payer_responsibility
|
|
60194
|
+
if supported_ip_address_types is not None:
|
|
60195
|
+
self._values["supported_ip_address_types"] = supported_ip_address_types
|
|
60092
60196
|
if tags is not None:
|
|
60093
60197
|
self._values["tags"] = tags
|
|
60094
60198
|
|
|
@@ -60143,6 +60247,15 @@ class CfnVPCEndpointServiceProps:
|
|
|
60143
60247
|
result = self._values.get("payer_responsibility")
|
|
60144
60248
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
60145
60249
|
|
|
60250
|
+
@builtins.property
|
|
60251
|
+
def supported_ip_address_types(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
60252
|
+
'''Specify which Ip Address types are supported for VPC endpoint service.
|
|
60253
|
+
|
|
60254
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointservice.html#cfn-ec2-vpcendpointservice-supportedipaddresstypes
|
|
60255
|
+
'''
|
|
60256
|
+
result = self._values.get("supported_ip_address_types")
|
|
60257
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
60258
|
+
|
|
60146
60259
|
@builtins.property
|
|
60147
60260
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
60148
60261
|
'''The tags to associate with the service.
|
|
@@ -71020,9 +71133,9 @@ class FlowLogDestination(
|
|
|
71020
71133
|
cls,
|
|
71021
71134
|
delivery_stream_arn: builtins.str,
|
|
71022
71135
|
) -> "FlowLogDestination":
|
|
71023
|
-
'''Use
|
|
71136
|
+
'''Use Amazon Data Firehose as the destination.
|
|
71024
71137
|
|
|
71025
|
-
:param delivery_stream_arn: the ARN of
|
|
71138
|
+
:param delivery_stream_arn: the ARN of Amazon Data Firehose delivery stream to publish logs to.
|
|
71026
71139
|
'''
|
|
71027
71140
|
if __debug__:
|
|
71028
71141
|
type_hints = typing.get_type_hints(_typecheckingstub__b3ea932697fa6e2a914a77fa81659cb98c5eed106039fb226a25f275e5820211)
|
|
@@ -71125,7 +71238,7 @@ class FlowLogDestinationConfig:
|
|
|
71125
71238
|
'''Flow Log Destination configuration.
|
|
71126
71239
|
|
|
71127
71240
|
:param log_destination_type: The type of destination to publish the flow logs to. Default: - CLOUD_WATCH_LOGS
|
|
71128
|
-
:param delivery_stream_arn: The ARN of
|
|
71241
|
+
:param delivery_stream_arn: The ARN of Amazon Data Firehose delivery stream to publish the flow logs to. Default: - undefined
|
|
71129
71242
|
:param destination_options: Options for writing flow logs to a supported destination. Default: - undefined
|
|
71130
71243
|
:param iam_role: The IAM Role that has access to publish to CloudWatch logs. Default: - default IAM role is created for you
|
|
71131
71244
|
:param key_prefix: S3 bucket key prefix to publish the flow logs to. Default: - undefined
|
|
@@ -71202,7 +71315,7 @@ class FlowLogDestinationConfig:
|
|
|
71202
71315
|
|
|
71203
71316
|
@builtins.property
|
|
71204
71317
|
def delivery_stream_arn(self) -> typing.Optional[builtins.str]:
|
|
71205
|
-
'''The ARN of
|
|
71318
|
+
'''The ARN of Amazon Data Firehose delivery stream to publish the flow logs to.
|
|
71206
71319
|
|
|
71207
71320
|
:default: - undefined
|
|
71208
71321
|
'''
|
|
@@ -71275,7 +71388,7 @@ class FlowLogDestinationType(enum.Enum):
|
|
|
71275
71388
|
S3 = "S3"
|
|
71276
71389
|
'''Send flow logs to S3 Bucket.'''
|
|
71277
71390
|
KINESIS_DATA_FIREHOSE = "KINESIS_DATA_FIREHOSE"
|
|
71278
|
-
'''Send flow logs to
|
|
71391
|
+
'''Send flow logs to Amazon Data Firehose.'''
|
|
71279
71392
|
|
|
71280
71393
|
|
|
71281
71394
|
@jsii.enum(jsii_type="aws-cdk-lib.aws_ec2.FlowLogFileFormat")
|
|
@@ -96163,7 +96276,7 @@ class FlowLog(
|
|
|
96163
96276
|
@builtins.property
|
|
96164
96277
|
@jsii.member(jsii_name="deliveryStreamArn")
|
|
96165
96278
|
def delivery_stream_arn(self) -> typing.Optional[builtins.str]:
|
|
96166
|
-
'''The ARN of the
|
|
96279
|
+
'''The ARN of the Amazon Data Firehose delivery stream to publish flow logs to.'''
|
|
96167
96280
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "deliveryStreamArn"))
|
|
96168
96281
|
|
|
96169
96282
|
@builtins.property
|
|
@@ -103705,6 +103818,7 @@ def _typecheckingstub__32e451f142fe00b3c107b71085c6014d26afe5f783aa89348cda122b9
|
|
|
103705
103818
|
metadata_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnLaunchTemplate.MetadataOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
103706
103819
|
monitoring: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnLaunchTemplate.MonitoringProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
103707
103820
|
network_interfaces: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnLaunchTemplate.NetworkInterfaceProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
103821
|
+
network_performance_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnLaunchTemplate.NetworkPerformanceOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
103708
103822
|
placement: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnLaunchTemplate.PlacementProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
103709
103823
|
private_dns_name_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnLaunchTemplate.PrivateDnsNameOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
103710
103824
|
ram_disk_id: typing.Optional[builtins.str] = None,
|
|
@@ -103824,6 +103938,13 @@ def _typecheckingstub__c599e12c3de63926f26bb5da3afad64e8c60b24c3b563faa2986e88c1
|
|
|
103824
103938
|
"""Type checking stubs"""
|
|
103825
103939
|
pass
|
|
103826
103940
|
|
|
103941
|
+
def _typecheckingstub__6debda9e4d3c6d44941e145e13f4b9fc9cbef841de7fbb20157320c8391b1342(
|
|
103942
|
+
*,
|
|
103943
|
+
bandwidth_weighting: typing.Optional[builtins.str] = None,
|
|
103944
|
+
) -> None:
|
|
103945
|
+
"""Type checking stubs"""
|
|
103946
|
+
pass
|
|
103947
|
+
|
|
103827
103948
|
def _typecheckingstub__ab6cfd4307c62f4b0cd9a09bdc9e9e2583df0d1ddc9984a975653e43f89e243e(
|
|
103828
103949
|
*,
|
|
103829
103950
|
affinity: typing.Optional[builtins.str] = None,
|
|
@@ -108348,6 +108469,7 @@ def _typecheckingstub__bd65bb2d0beb1d62ef8b72a33a352ac48e00600bc2b025bdec06b82cf
|
|
|
108348
108469
|
gateway_load_balancer_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
108349
108470
|
network_load_balancer_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
108350
108471
|
payer_responsibility: typing.Optional[builtins.str] = None,
|
|
108472
|
+
supported_ip_address_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
108351
108473
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
108352
108474
|
) -> None:
|
|
108353
108475
|
"""Type checking stubs"""
|
|
@@ -108395,6 +108517,12 @@ def _typecheckingstub__c2babfa96e86ea450f85f7e83cc11905d68dc09b226c3e578bfcba308
|
|
|
108395
108517
|
"""Type checking stubs"""
|
|
108396
108518
|
pass
|
|
108397
108519
|
|
|
108520
|
+
def _typecheckingstub__4f3f2000badada7fa5b32f7a5144ba0ad0a0da831f8211c47464b99d092bec82(
|
|
108521
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
108522
|
+
) -> None:
|
|
108523
|
+
"""Type checking stubs"""
|
|
108524
|
+
pass
|
|
108525
|
+
|
|
108398
108526
|
def _typecheckingstub__fb88e38ee31fea753761176490a0c4f49435705e0e51b6d055979684ea151b42(
|
|
108399
108527
|
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
108400
108528
|
) -> None:
|
|
@@ -108450,6 +108578,7 @@ def _typecheckingstub__0924bdc7dd965ab8320d62e573fa88bcec434cb586b2ba9e4f2916169
|
|
|
108450
108578
|
gateway_load_balancer_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
108451
108579
|
network_load_balancer_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
108452
108580
|
payer_responsibility: typing.Optional[builtins.str] = None,
|
|
108581
|
+
supported_ip_address_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
108453
108582
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
108454
108583
|
) -> None:
|
|
108455
108584
|
"""Type checking stubs"""
|