aws-cdk-lib 2.204.0__py3-none-any.whl → 2.206.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 +170 -92
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.204.0.jsii.tgz → aws-cdk-lib@2.206.0.jsii.tgz} +0 -0
- aws_cdk/aws_aiops/__init__.py +89 -39
- aws_cdk/aws_applicationautoscaling/__init__.py +2 -2
- aws_cdk/aws_arczonalshift/__init__.py +4 -1
- aws_cdk/aws_b2bi/__init__.py +32 -16
- aws_cdk/aws_bedrock/__init__.py +198 -10
- aws_cdk/aws_cassandra/__init__.py +156 -0
- aws_cdk/aws_cloudformation/__init__.py +74 -72
- aws_cdk/aws_cloudfront/__init__.py +1181 -485
- aws_cdk/aws_cloudfront_origins/__init__.py +26 -21
- aws_cdk/aws_cloudwatch/__init__.py +61 -0
- aws_cdk/aws_codebuild/__init__.py +216 -36
- aws_cdk/aws_datasync/__init__.py +2 -2
- aws_cdk/aws_docdb/__init__.py +78 -0
- aws_cdk/aws_dynamodb/__init__.py +207 -35
- aws_cdk/aws_ec2/__init__.py +32 -30
- aws_cdk/aws_ecs/__init__.py +718 -213
- aws_cdk/aws_emrserverless/__init__.py +5 -5
- aws_cdk/aws_events/__init__.py +58 -3
- aws_cdk/aws_events_targets/__init__.py +7 -2
- aws_cdk/aws_evs/__init__.py +7 -7
- aws_cdk/aws_fsx/__init__.py +138 -78
- aws_cdk/aws_gamelift/__init__.py +19 -0
- aws_cdk/aws_glue/__init__.py +3 -3
- aws_cdk/aws_iot/__init__.py +1 -1
- aws_cdk/aws_kinesis/__init__.py +67 -13
- aws_cdk/aws_kinesisfirehose/__init__.py +28 -1
- aws_cdk/aws_lex/__init__.py +36 -19
- aws_cdk/aws_neptune/__init__.py +12 -12
- aws_cdk/aws_odb/__init__.py +4049 -0
- aws_cdk/aws_omics/__init__.py +1 -1
- aws_cdk/aws_qbusiness/__init__.py +471 -4
- aws_cdk/aws_quicksight/__init__.py +185 -16
- aws_cdk/aws_rds/__init__.py +169 -17
- aws_cdk/aws_redshiftserverless/__init__.py +72 -45
- aws_cdk/aws_route53/__init__.py +41 -19
- aws_cdk/aws_s3tables/__init__.py +1005 -0
- aws_cdk/aws_sagemaker/__init__.py +20 -0
- aws_cdk/aws_synthetics/__init__.py +141 -37
- aws_cdk/aws_transfer/__init__.py +23 -1
- aws_cdk/custom_resources/__init__.py +32 -4
- {aws_cdk_lib-2.204.0.dist-info → aws_cdk_lib-2.206.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.204.0.dist-info → aws_cdk_lib-2.206.0.dist-info}/RECORD +49 -48
- {aws_cdk_lib-2.204.0.dist-info → aws_cdk_lib-2.206.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.204.0.dist-info → aws_cdk_lib-2.206.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.204.0.dist-info → aws_cdk_lib-2.206.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.204.0.dist-info → aws_cdk_lib-2.206.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ec2/__init__.py
CHANGED
|
@@ -6621,7 +6621,7 @@ class CfnCapacityReservation(
|
|
|
6621
6621
|
)
|
|
6622
6622
|
|
|
6623
6623
|
|
|
6624
|
-
@jsii.implements(_IInspectable_c2943556)
|
|
6624
|
+
@jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
|
|
6625
6625
|
class CfnCapacityReservationFleet(
|
|
6626
6626
|
_CfnResource_9df397a6,
|
|
6627
6627
|
metaclass=jsii.JSIIMeta,
|
|
@@ -6679,7 +6679,7 @@ class CfnCapacityReservationFleet(
|
|
|
6679
6679
|
instance_type_specifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCapacityReservationFleet.InstanceTypeSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
6680
6680
|
no_remove_end_date: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
6681
6681
|
remove_end_date: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
6682
|
-
tag_specifications: typing.Optional[typing.
|
|
6682
|
+
tag_specifications: typing.Optional[typing.Sequence[typing.Union["CfnCapacityReservationFleet.TagSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6683
6683
|
tenancy: typing.Optional[builtins.str] = None,
|
|
6684
6684
|
total_target_capacity: typing.Optional[jsii.Number] = None,
|
|
6685
6685
|
) -> None:
|
|
@@ -6753,6 +6753,12 @@ class CfnCapacityReservationFleet(
|
|
|
6753
6753
|
'''
|
|
6754
6754
|
return typing.cast(builtins.str, jsii.get(self, "attrCapacityReservationFleetId"))
|
|
6755
6755
|
|
|
6756
|
+
@builtins.property
|
|
6757
|
+
@jsii.member(jsii_name="cdkTagManager")
|
|
6758
|
+
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
6759
|
+
'''Tag Manager which manages the tags for this resource.'''
|
|
6760
|
+
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
|
|
6761
|
+
|
|
6756
6762
|
@builtins.property
|
|
6757
6763
|
@jsii.member(jsii_name="cfnProperties")
|
|
6758
6764
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -6855,14 +6861,14 @@ class CfnCapacityReservationFleet(
|
|
|
6855
6861
|
@jsii.member(jsii_name="tagSpecifications")
|
|
6856
6862
|
def tag_specifications(
|
|
6857
6863
|
self,
|
|
6858
|
-
) -> typing.Optional[typing.
|
|
6864
|
+
) -> typing.Optional[typing.List["CfnCapacityReservationFleet.TagSpecificationProperty"]]:
|
|
6859
6865
|
'''The tags to assign to the Capacity Reservation Fleet.'''
|
|
6860
|
-
return typing.cast(typing.Optional[typing.
|
|
6866
|
+
return typing.cast(typing.Optional[typing.List["CfnCapacityReservationFleet.TagSpecificationProperty"]], jsii.get(self, "tagSpecifications"))
|
|
6861
6867
|
|
|
6862
6868
|
@tag_specifications.setter
|
|
6863
6869
|
def tag_specifications(
|
|
6864
6870
|
self,
|
|
6865
|
-
value: typing.Optional[typing.
|
|
6871
|
+
value: typing.Optional[typing.List["CfnCapacityReservationFleet.TagSpecificationProperty"]],
|
|
6866
6872
|
) -> None:
|
|
6867
6873
|
if __debug__:
|
|
6868
6874
|
type_hints = typing.get_type_hints(_typecheckingstub__9be24701036c5abd754bc67058ec4d8c733250163e5a63577648325991d133e9)
|
|
@@ -7170,7 +7176,7 @@ class CfnCapacityReservationFleetProps:
|
|
|
7170
7176
|
instance_type_specifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCapacityReservationFleet.InstanceTypeSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
7171
7177
|
no_remove_end_date: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
7172
7178
|
remove_end_date: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
7173
|
-
tag_specifications: typing.Optional[typing.
|
|
7179
|
+
tag_specifications: typing.Optional[typing.Sequence[typing.Union[CfnCapacityReservationFleet.TagSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7174
7180
|
tenancy: typing.Optional[builtins.str] = None,
|
|
7175
7181
|
total_target_capacity: typing.Optional[jsii.Number] = None,
|
|
7176
7182
|
) -> None:
|
|
@@ -7331,7 +7337,7 @@ class CfnCapacityReservationFleetProps:
|
|
|
7331
7337
|
@builtins.property
|
|
7332
7338
|
def tag_specifications(
|
|
7333
7339
|
self,
|
|
7334
|
-
) -> typing.Optional[typing.
|
|
7340
|
+
) -> typing.Optional[typing.List[CfnCapacityReservationFleet.TagSpecificationProperty]]:
|
|
7335
7341
|
'''The tags to assign to the Capacity Reservation Fleet.
|
|
7336
7342
|
|
|
7337
7343
|
The tags are automatically assigned to the Capacity Reservations in the Fleet.
|
|
@@ -7339,7 +7345,7 @@ class CfnCapacityReservationFleetProps:
|
|
|
7339
7345
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservationfleet.html#cfn-ec2-capacityreservationfleet-tagspecifications
|
|
7340
7346
|
'''
|
|
7341
7347
|
result = self._values.get("tag_specifications")
|
|
7342
|
-
return typing.cast(typing.Optional[typing.
|
|
7348
|
+
return typing.cast(typing.Optional[typing.List[CfnCapacityReservationFleet.TagSpecificationProperty]], result)
|
|
7343
7349
|
|
|
7344
7350
|
@builtins.property
|
|
7345
7351
|
def tenancy(self) -> typing.Optional[builtins.str]:
|
|
@@ -10401,7 +10407,7 @@ class CfnCustomerGateway(
|
|
|
10401
10407
|
'''
|
|
10402
10408
|
:param scope: Scope in which this resource is defined.
|
|
10403
10409
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
10404
|
-
:param ip_address:
|
|
10410
|
+
:param ip_address: The IP address for the customer gateway device's outside interface. The address must be static. If ``OutsideIpAddressType`` in your VPN connection options is set to ``PrivateIpv4`` , you can use an RFC6598 or RFC1918 private IPv4 address. If ``OutsideIpAddressType`` is set to ``Ipv6`` , you can use an IPv6 address.
|
|
10405
10411
|
:param type: The type of VPN connection that this customer gateway supports ( ``ipsec.1`` ).
|
|
10406
10412
|
:param bgp_asn: For customer gateway devices that support BGP, specify the device's ASN. You must specify either ``BgpAsn`` or ``BgpAsnExtended`` when creating the customer gateway. If the ASN is larger than ``2,147,483,647`` , you must use ``BgpAsnExtended`` . Default: 65000 Valid values: ``1`` to ``2,147,483,647`` Default: - 65000
|
|
10407
10413
|
:param bgp_asn_extended: For customer gateway devices that support BGP, specify the device's ASN. You must specify either ``BgpAsn`` or ``BgpAsnExtended`` when creating the customer gateway. If the ASN is larger than ``2,147,483,647`` , you must use ``BgpAsnExtended`` . Valid values: ``2,147,483,648`` to ``4,294,967,295``
|
|
@@ -10478,7 +10484,7 @@ class CfnCustomerGateway(
|
|
|
10478
10484
|
@builtins.property
|
|
10479
10485
|
@jsii.member(jsii_name="ipAddress")
|
|
10480
10486
|
def ip_address(self) -> builtins.str:
|
|
10481
|
-
'''
|
|
10487
|
+
'''The IP address for the customer gateway device's outside interface.'''
|
|
10482
10488
|
return typing.cast(builtins.str, jsii.get(self, "ipAddress"))
|
|
10483
10489
|
|
|
10484
10490
|
@ip_address.setter
|
|
@@ -10594,7 +10600,7 @@ class CfnCustomerGatewayProps:
|
|
|
10594
10600
|
) -> None:
|
|
10595
10601
|
'''Properties for defining a ``CfnCustomerGateway``.
|
|
10596
10602
|
|
|
10597
|
-
:param ip_address:
|
|
10603
|
+
:param ip_address: The IP address for the customer gateway device's outside interface. The address must be static. If ``OutsideIpAddressType`` in your VPN connection options is set to ``PrivateIpv4`` , you can use an RFC6598 or RFC1918 private IPv4 address. If ``OutsideIpAddressType`` is set to ``Ipv6`` , you can use an IPv6 address.
|
|
10598
10604
|
:param type: The type of VPN connection that this customer gateway supports ( ``ipsec.1`` ).
|
|
10599
10605
|
:param bgp_asn: For customer gateway devices that support BGP, specify the device's ASN. You must specify either ``BgpAsn`` or ``BgpAsnExtended`` when creating the customer gateway. If the ASN is larger than ``2,147,483,647`` , you must use ``BgpAsnExtended`` . Default: 65000 Valid values: ``1`` to ``2,147,483,647`` Default: - 65000
|
|
10600
10606
|
:param bgp_asn_extended: For customer gateway devices that support BGP, specify the device's ASN. You must specify either ``BgpAsn`` or ``BgpAsnExtended`` when creating the customer gateway. If the ASN is larger than ``2,147,483,647`` , you must use ``BgpAsnExtended`` . Valid values: ``2,147,483,648`` to ``4,294,967,295``
|
|
@@ -10652,9 +10658,9 @@ class CfnCustomerGatewayProps:
|
|
|
10652
10658
|
|
|
10653
10659
|
@builtins.property
|
|
10654
10660
|
def ip_address(self) -> builtins.str:
|
|
10655
|
-
'''
|
|
10661
|
+
'''The IP address for the customer gateway device's outside interface.
|
|
10656
10662
|
|
|
10657
|
-
The address must be static. If ``OutsideIpAddressType`` in your VPN connection options is set to ``PrivateIpv4`` , you can use an RFC6598 or RFC1918 private IPv4 address. If ``OutsideIpAddressType`` is set to ``
|
|
10663
|
+
The address must be static. If ``OutsideIpAddressType`` in your VPN connection options is set to ``PrivateIpv4`` , you can use an RFC6598 or RFC1918 private IPv4 address. If ``OutsideIpAddressType`` is set to ``Ipv6`` , you can use an IPv6 address.
|
|
10658
10664
|
|
|
10659
10665
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customergateway.html#cfn-ec2-customergateway-ipaddress
|
|
10660
10666
|
'''
|
|
@@ -54653,18 +54659,10 @@ class CfnTrafficMirrorFilterRule(
|
|
|
54653
54659
|
'''The CloudFormation resource type name for this resource class.'''
|
|
54654
54660
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
54655
54661
|
|
|
54656
|
-
@builtins.property
|
|
54657
|
-
@jsii.member(jsii_name="attrId")
|
|
54658
|
-
def attr_id(self) -> builtins.str:
|
|
54659
|
-
'''
|
|
54660
|
-
:cloudformationAttribute: Id
|
|
54661
|
-
'''
|
|
54662
|
-
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
54663
|
-
|
|
54664
54662
|
@builtins.property
|
|
54665
54663
|
@jsii.member(jsii_name="attrTrafficMirrorFilterRuleId")
|
|
54666
54664
|
def attr_traffic_mirror_filter_rule_id(self) -> builtins.str:
|
|
54667
|
-
'''The ID of the Traffic Mirror
|
|
54665
|
+
'''The ID of the Traffic Mirror rule.
|
|
54668
54666
|
|
|
54669
54667
|
:cloudformationAttribute: TrafficMirrorFilterRuleId
|
|
54670
54668
|
'''
|
|
@@ -64306,7 +64304,7 @@ class CfnVPNConnection(
|
|
|
64306
64304
|
:param enable_acceleration: Indicate whether to enable acceleration for the VPN connection. Default: ``false``
|
|
64307
64305
|
:param local_ipv4_network_cidr: The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. Default: ``0.0.0.0/0``
|
|
64308
64306
|
:param local_ipv6_network_cidr: The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. Default: ``::/0``
|
|
64309
|
-
:param outside_ip_address_type: The type of
|
|
64307
|
+
:param outside_ip_address_type: The type of IP address assigned to the outside interface of the customer gateway device. Valid values: ``PrivateIpv4`` | ``PublicIpv4`` | ``Ipv6`` Default: ``PublicIpv4``
|
|
64310
64308
|
:param remote_ipv4_network_cidr: The IPv4 CIDR on the AWS side of the VPN connection. Default: ``0.0.0.0/0``
|
|
64311
64309
|
:param remote_ipv6_network_cidr: The IPv6 CIDR on the AWS side of the VPN connection. Default: ``::/0``
|
|
64312
64310
|
:param static_routes_only: Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don't support BGP. If you are creating a VPN connection for a device that does not support Border Gateway Protocol (BGP), you must specify ``true`` .
|
|
@@ -64464,7 +64462,7 @@ class CfnVPNConnection(
|
|
|
64464
64462
|
@builtins.property
|
|
64465
64463
|
@jsii.member(jsii_name="outsideIpAddressType")
|
|
64466
64464
|
def outside_ip_address_type(self) -> typing.Optional[builtins.str]:
|
|
64467
|
-
'''The type of
|
|
64465
|
+
'''The type of IP address assigned to the outside interface of the customer gateway device.'''
|
|
64468
64466
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "outsideIpAddressType"))
|
|
64469
64467
|
|
|
64470
64468
|
@outside_ip_address_type.setter
|
|
@@ -65635,7 +65633,7 @@ class CfnVPNConnectionProps:
|
|
|
65635
65633
|
:param enable_acceleration: Indicate whether to enable acceleration for the VPN connection. Default: ``false``
|
|
65636
65634
|
:param local_ipv4_network_cidr: The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. Default: ``0.0.0.0/0``
|
|
65637
65635
|
:param local_ipv6_network_cidr: The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. Default: ``::/0``
|
|
65638
|
-
:param outside_ip_address_type: The type of
|
|
65636
|
+
:param outside_ip_address_type: The type of IP address assigned to the outside interface of the customer gateway device. Valid values: ``PrivateIpv4`` | ``PublicIpv4`` | ``Ipv6`` Default: ``PublicIpv4``
|
|
65639
65637
|
:param remote_ipv4_network_cidr: The IPv4 CIDR on the AWS side of the VPN connection. Default: ``0.0.0.0/0``
|
|
65640
65638
|
:param remote_ipv6_network_cidr: The IPv6 CIDR on the AWS side of the VPN connection. Default: ``::/0``
|
|
65641
65639
|
:param static_routes_only: Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don't support BGP. If you are creating a VPN connection for a device that does not support Border Gateway Protocol (BGP), you must specify ``true`` .
|
|
@@ -65824,9 +65822,9 @@ class CfnVPNConnectionProps:
|
|
|
65824
65822
|
|
|
65825
65823
|
@builtins.property
|
|
65826
65824
|
def outside_ip_address_type(self) -> typing.Optional[builtins.str]:
|
|
65827
|
-
'''The type of
|
|
65825
|
+
'''The type of IP address assigned to the outside interface of the customer gateway device.
|
|
65828
65826
|
|
|
65829
|
-
Valid values: ``PrivateIpv4`` | ``PublicIpv4``
|
|
65827
|
+
Valid values: ``PrivateIpv4`` | ``PublicIpv4`` | ``Ipv6``
|
|
65830
65828
|
|
|
65831
65829
|
Default: ``PublicIpv4``
|
|
65832
65830
|
|
|
@@ -80951,6 +80949,10 @@ class InstanceClass(enum.Enum):
|
|
|
80951
80949
|
'''Compute optimized instances for high performance computing, 7th generation with Graviton3 processors and high network bandwidth capabilities.'''
|
|
80952
80950
|
C7GN = "C7GN"
|
|
80953
80951
|
'''Compute optimized instances for high performance computing, 7th generation with Graviton3 processors and high network bandwidth capabilities.'''
|
|
80952
|
+
COMPUTE8_GRAVITON4_HIGH_NETWORK_BANDWIDTH = "COMPUTE8_GRAVITON4_HIGH_NETWORK_BANDWIDTH"
|
|
80953
|
+
'''Compute optimized instances for high performance computing, 8th generation with Graviton4 processors and high network bandwidth capabilities.'''
|
|
80954
|
+
C8GN = "C8GN"
|
|
80955
|
+
'''Compute optimized instances for high performance computing, 8th generation with Graviton4 processors and high network bandwidth capabilities.'''
|
|
80954
80956
|
COMPUTE7_INTEL = "COMPUTE7_INTEL"
|
|
80955
80957
|
'''Compute optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation.'''
|
|
80956
80958
|
C7I = "C7I"
|
|
@@ -105047,7 +105049,7 @@ def _typecheckingstub__f6fb1af1f639a354aff6bb978bcac42ab042448e257770c8bed7a4689
|
|
|
105047
105049
|
instance_type_specifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCapacityReservationFleet.InstanceTypeSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
105048
105050
|
no_remove_end_date: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
105049
105051
|
remove_end_date: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
105050
|
-
tag_specifications: typing.Optional[typing.
|
|
105052
|
+
tag_specifications: typing.Optional[typing.Sequence[typing.Union[CfnCapacityReservationFleet.TagSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
105051
105053
|
tenancy: typing.Optional[builtins.str] = None,
|
|
105052
105054
|
total_target_capacity: typing.Optional[jsii.Number] = None,
|
|
105053
105055
|
) -> None:
|
|
@@ -105103,7 +105105,7 @@ def _typecheckingstub__6cfebbe0400b084370b4e45e01a83c61bb47ae01d37c14a2ac6591c47
|
|
|
105103
105105
|
pass
|
|
105104
105106
|
|
|
105105
105107
|
def _typecheckingstub__9be24701036c5abd754bc67058ec4d8c733250163e5a63577648325991d133e9(
|
|
105106
|
-
value: typing.Optional[typing.
|
|
105108
|
+
value: typing.Optional[typing.List[CfnCapacityReservationFleet.TagSpecificationProperty]],
|
|
105107
105109
|
) -> None:
|
|
105108
105110
|
"""Type checking stubs"""
|
|
105109
105111
|
pass
|
|
@@ -105149,7 +105151,7 @@ def _typecheckingstub__43bd0a52cfe7402bf156151a3e760ed1bd133935bd29982a3798f854c
|
|
|
105149
105151
|
instance_type_specifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCapacityReservationFleet.InstanceTypeSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
105150
105152
|
no_remove_end_date: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
105151
105153
|
remove_end_date: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
105152
|
-
tag_specifications: typing.Optional[typing.
|
|
105154
|
+
tag_specifications: typing.Optional[typing.Sequence[typing.Union[CfnCapacityReservationFleet.TagSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
105153
105155
|
tenancy: typing.Optional[builtins.str] = None,
|
|
105154
105156
|
total_target_capacity: typing.Optional[jsii.Number] = None,
|
|
105155
105157
|
) -> None:
|