aws-cdk-lib 2.207.0__py3-none-any.whl → 2.209.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 +31 -3
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.207.0.jsii.tgz → aws-cdk-lib@2.209.0.jsii.tgz} +0 -0
- aws_cdk/aws_aiops/__init__.py +16 -12
- aws_cdk/aws_amazonmq/__init__.py +8 -18
- aws_cdk/aws_appstream/__init__.py +36 -4
- aws_cdk/aws_bedrock/__init__.py +227 -102
- aws_cdk/aws_certificatemanager/__init__.py +45 -0
- aws_cdk/aws_cloudfront/__init__.py +12 -2
- aws_cdk/aws_connect/__init__.py +107 -3
- aws_cdk/aws_customerprofiles/__init__.py +27 -22
- aws_cdk/aws_docdb/__init__.py +5 -3
- aws_cdk/aws_ec2/__init__.py +58 -16
- aws_cdk/aws_ecs/__init__.py +1554 -78
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +27 -15
- aws_cdk/aws_events/__init__.py +142 -0
- aws_cdk/aws_gamelift/__init__.py +2 -2
- aws_cdk/aws_guardduty/__init__.py +86 -0
- aws_cdk/aws_kinesisfirehose/__init__.py +377 -4
- aws_cdk/aws_lambda/__init__.py +76 -67
- aws_cdk/aws_logs/__init__.py +53 -4
- aws_cdk/aws_mediapackagev2/__init__.py +881 -0
- aws_cdk/aws_omics/__init__.py +13 -10
- aws_cdk/aws_quicksight/__init__.py +111 -4
- aws_cdk/aws_rds/__init__.py +214 -10
- aws_cdk/aws_route53/__init__.py +97 -41
- aws_cdk/aws_s3/__init__.py +775 -5
- aws_cdk/aws_s3express/__init__.py +61 -3
- aws_cdk/aws_s3tables/__init__.py +254 -0
- aws_cdk/aws_sagemaker/__init__.py +524 -137
- aws_cdk/aws_ssm/__init__.py +48 -0
- aws_cdk/aws_transfer/__init__.py +49 -0
- aws_cdk/aws_wisdom/__init__.py +1185 -100
- aws_cdk/cloud_assembly_schema/__init__.py +28 -2
- aws_cdk/custom_resources/__init__.py +1 -1
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/RECORD +41 -41
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ec2/__init__.py
CHANGED
|
@@ -5924,9 +5924,9 @@ class CfnCapacityReservation(
|
|
|
5924
5924
|
'''
|
|
5925
5925
|
:param scope: Scope in which this resource is defined.
|
|
5926
5926
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
5927
|
-
:param instance_count: The number of instances for which to reserve capacity. .. epigraph:: You can request future-dated Capacity Reservations for an instance count with a minimum of
|
|
5927
|
+
:param instance_count: The number of instances for which to reserve capacity. .. epigraph:: You can request future-dated Capacity Reservations for an instance count with a minimum of 64 vCPUs. For example, if you request a future-dated Capacity Reservation for ``m5.xlarge`` instances, you must request at least 25 instances ( *16 * m5.xlarge = 64 vCPUs* ). Valid range: 1 - 1000
|
|
5928
5928
|
:param instance_platform: The type of operating system for which to reserve capacity.
|
|
5929
|
-
:param instance_type: The instance type for which to reserve capacity. .. epigraph:: You can request future-dated Capacity Reservations for instance types in the C, M, R, I, and
|
|
5929
|
+
:param instance_type: The instance type for which to reserve capacity. .. epigraph:: You can request future-dated Capacity Reservations for instance types in the C, M, R, I, T, and G instance families only. For more information, see `Instance types <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html>`_ in the *Amazon EC2 User Guide* .
|
|
5930
5930
|
:param availability_zone: The Availability Zone in which to create the Capacity Reservation.
|
|
5931
5931
|
:param availability_zone_id: The Availability Zone ID of the Capacity Reservation.
|
|
5932
5932
|
:param ebs_optimized: Indicates whether the Capacity Reservation supports EBS-optimized instances. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal I/O performance. This optimization isn't available with all instance types. Additional usage charges apply when using an EBS- optimized instance.
|
|
@@ -7427,9 +7427,9 @@ class CfnCapacityReservationProps:
|
|
|
7427
7427
|
) -> None:
|
|
7428
7428
|
'''Properties for defining a ``CfnCapacityReservation``.
|
|
7429
7429
|
|
|
7430
|
-
:param instance_count: The number of instances for which to reserve capacity. .. epigraph:: You can request future-dated Capacity Reservations for an instance count with a minimum of
|
|
7430
|
+
:param instance_count: The number of instances for which to reserve capacity. .. epigraph:: You can request future-dated Capacity Reservations for an instance count with a minimum of 64 vCPUs. For example, if you request a future-dated Capacity Reservation for ``m5.xlarge`` instances, you must request at least 25 instances ( *16 * m5.xlarge = 64 vCPUs* ). Valid range: 1 - 1000
|
|
7431
7431
|
:param instance_platform: The type of operating system for which to reserve capacity.
|
|
7432
|
-
:param instance_type: The instance type for which to reserve capacity. .. epigraph:: You can request future-dated Capacity Reservations for instance types in the C, M, R, I, and
|
|
7432
|
+
:param instance_type: The instance type for which to reserve capacity. .. epigraph:: You can request future-dated Capacity Reservations for instance types in the C, M, R, I, T, and G instance families only. For more information, see `Instance types <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html>`_ in the *Amazon EC2 User Guide* .
|
|
7433
7433
|
:param availability_zone: The Availability Zone in which to create the Capacity Reservation.
|
|
7434
7434
|
:param availability_zone_id: The Availability Zone ID of the Capacity Reservation.
|
|
7435
7435
|
:param ebs_optimized: Indicates whether the Capacity Reservation supports EBS-optimized instances. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal I/O performance. This optimization isn't available with all instance types. Additional usage charges apply when using an EBS- optimized instance.
|
|
@@ -7531,7 +7531,7 @@ class CfnCapacityReservationProps:
|
|
|
7531
7531
|
|
|
7532
7532
|
.. epigraph::
|
|
7533
7533
|
|
|
7534
|
-
You can request future-dated Capacity Reservations for an instance count with a minimum of
|
|
7534
|
+
You can request future-dated Capacity Reservations for an instance count with a minimum of 64 vCPUs. For example, if you request a future-dated Capacity Reservation for ``m5.xlarge`` instances, you must request at least 25 instances ( *16 * m5.xlarge = 64 vCPUs* ).
|
|
7535
7535
|
|
|
7536
7536
|
Valid range: 1 - 1000
|
|
7537
7537
|
|
|
@@ -7557,7 +7557,7 @@ class CfnCapacityReservationProps:
|
|
|
7557
7557
|
|
|
7558
7558
|
.. epigraph::
|
|
7559
7559
|
|
|
7560
|
-
You can request future-dated Capacity Reservations for instance types in the C, M, R, I, and
|
|
7560
|
+
You can request future-dated Capacity Reservations for instance types in the C, M, R, I, T, and G instance families only.
|
|
7561
7561
|
|
|
7562
7562
|
For more information, see `Instance types <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html>`_ in the *Amazon EC2 User Guide* .
|
|
7563
7563
|
|
|
@@ -21415,7 +21415,7 @@ class CfnInstance(
|
|
|
21415
21415
|
:param ipv6_address_count: The number of IPv6 addresses to associate with the primary network interface. Amazon EC2 chooses the IPv6 addresses from the range of your subnet. You cannot specify this option and the option to assign specific IPv6 addresses in the same request. You can specify this option if you've specified a minimum number of instances to launch. You cannot specify this option and the network interfaces option in the same request.
|
|
21416
21416
|
:param ipv6_addresses: The IPv6 addresses from the range of the subnet to associate with the primary network interface. You cannot specify this option and the option to assign a number of IPv6 addresses in the same request. You cannot specify this option if you've specified a minimum number of instances to launch. You cannot specify this option and the network interfaces option in the same request.
|
|
21417
21417
|
:param kernel_id: The ID of the kernel. .. epigraph:: We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see `PV-GRUB <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedkernels.html>`_ in the *Amazon EC2 User Guide* .
|
|
21418
|
-
:param key_name: The name of the key pair.
|
|
21418
|
+
:param key_name: The name of the key pair. For more information, see `Create a key pair for your EC2 instance <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/create-key-pairs.html>`_ . .. epigraph:: If you do not specify a key pair, you can't connect to the instance unless you choose an AMI that is configured to allow users another way to log in.
|
|
21419
21419
|
:param launch_template: The launch template. Any additional parameters that you specify for the new instance overwrite the corresponding parameters included in the launch template.
|
|
21420
21420
|
:param license_specifications: The license configurations.
|
|
21421
21421
|
:param metadata_options: The metadata options for the instance.
|
|
@@ -21940,7 +21940,7 @@ class CfnInstance(
|
|
|
21940
21940
|
def key_name(self) -> typing.Optional[builtins.str]:
|
|
21941
21941
|
'''The name of the key pair.
|
|
21942
21942
|
|
|
21943
|
-
|
|
21943
|
+
For more information, see `Create a key pair for your EC2 instance <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/create-key-pairs.html>`_ .
|
|
21944
21944
|
'''
|
|
21945
21945
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "keyName"))
|
|
21946
21946
|
|
|
@@ -24829,7 +24829,7 @@ class CfnInstanceProps:
|
|
|
24829
24829
|
:param ipv6_address_count: The number of IPv6 addresses to associate with the primary network interface. Amazon EC2 chooses the IPv6 addresses from the range of your subnet. You cannot specify this option and the option to assign specific IPv6 addresses in the same request. You can specify this option if you've specified a minimum number of instances to launch. You cannot specify this option and the network interfaces option in the same request.
|
|
24830
24830
|
:param ipv6_addresses: The IPv6 addresses from the range of the subnet to associate with the primary network interface. You cannot specify this option and the option to assign a number of IPv6 addresses in the same request. You cannot specify this option if you've specified a minimum number of instances to launch. You cannot specify this option and the network interfaces option in the same request.
|
|
24831
24831
|
:param kernel_id: The ID of the kernel. .. epigraph:: We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see `PV-GRUB <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedkernels.html>`_ in the *Amazon EC2 User Guide* .
|
|
24832
|
-
:param key_name: The name of the key pair.
|
|
24832
|
+
:param key_name: The name of the key pair. For more information, see `Create a key pair for your EC2 instance <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/create-key-pairs.html>`_ . .. epigraph:: If you do not specify a key pair, you can't connect to the instance unless you choose an AMI that is configured to allow users another way to log in.
|
|
24833
24833
|
:param launch_template: The launch template. Any additional parameters that you specify for the new instance overwrite the corresponding parameters included in the launch template.
|
|
24834
24834
|
:param license_specifications: The license configurations.
|
|
24835
24835
|
:param metadata_options: The metadata options for the instance.
|
|
@@ -25396,7 +25396,7 @@ class CfnInstanceProps:
|
|
|
25396
25396
|
|
|
25397
25397
|
@builtins.property
|
|
25398
25398
|
def key_name(self) -> typing.Optional[builtins.str]:
|
|
25399
|
-
'''The name of the key pair.
|
|
25399
|
+
'''The name of the key pair. For more information, see `Create a key pair for your EC2 instance <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/create-key-pairs.html>`_ .
|
|
25400
25400
|
|
|
25401
25401
|
.. epigraph::
|
|
25402
25402
|
|
|
@@ -55177,6 +55177,7 @@ class CfnTrafficMirrorSession(
|
|
|
55177
55177
|
|
|
55178
55178
|
# the properties below are optional
|
|
55179
55179
|
description="description",
|
|
55180
|
+
owner_id="ownerId",
|
|
55180
55181
|
packet_length=123,
|
|
55181
55182
|
tags=[CfnTag(
|
|
55182
55183
|
key="key",
|
|
@@ -55196,6 +55197,7 @@ class CfnTrafficMirrorSession(
|
|
|
55196
55197
|
traffic_mirror_filter_id: builtins.str,
|
|
55197
55198
|
traffic_mirror_target_id: builtins.str,
|
|
55198
55199
|
description: typing.Optional[builtins.str] = None,
|
|
55200
|
+
owner_id: typing.Optional[builtins.str] = None,
|
|
55199
55201
|
packet_length: typing.Optional[jsii.Number] = None,
|
|
55200
55202
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
55201
55203
|
virtual_network_id: typing.Optional[jsii.Number] = None,
|
|
@@ -55208,6 +55210,7 @@ class CfnTrafficMirrorSession(
|
|
|
55208
55210
|
:param traffic_mirror_filter_id: The ID of the Traffic Mirror filter.
|
|
55209
55211
|
:param traffic_mirror_target_id: The ID of the Traffic Mirror target.
|
|
55210
55212
|
:param description: The description of the Traffic Mirror session.
|
|
55213
|
+
:param owner_id: The ID of the account that owns the Traffic Mirror session.
|
|
55211
55214
|
:param packet_length: The number of bytes in each packet to mirror. These are bytes after the VXLAN header. Do not specify this parameter when you want to mirror the entire packet. To mirror a subset of the packet, set this to the length (in bytes) that you want to mirror. For example, if you set this value to 100, then the first 100 bytes that meet the filter criteria are copied to the target. If you do not want to mirror the entire packet, use the ``PacketLength`` parameter to specify the number of bytes in each packet to mirror. For sessions with Network Load Balancer (NLB) Traffic Mirror targets the default ``PacketLength`` will be set to 8500. Valid values are 1-8500. Setting a ``PacketLength`` greater than 8500 will result in an error response.
|
|
55212
55215
|
:param tags: The tags to assign to a Traffic Mirror session.
|
|
55213
55216
|
:param virtual_network_id: The VXLAN ID for the Traffic Mirror session. For more information about the VXLAN protocol, see `RFC 7348 <https://docs.aws.amazon.com/https://datatracker.ietf.org/doc/html/rfc7348>`_ . If you do not specify a ``VirtualNetworkId`` , an account-wide unique ID is chosen at random.
|
|
@@ -55222,6 +55225,7 @@ class CfnTrafficMirrorSession(
|
|
|
55222
55225
|
traffic_mirror_filter_id=traffic_mirror_filter_id,
|
|
55223
55226
|
traffic_mirror_target_id=traffic_mirror_target_id,
|
|
55224
55227
|
description=description,
|
|
55228
|
+
owner_id=owner_id,
|
|
55225
55229
|
packet_length=packet_length,
|
|
55226
55230
|
tags=tags,
|
|
55227
55231
|
virtual_network_id=virtual_network_id,
|
|
@@ -55262,7 +55266,8 @@ class CfnTrafficMirrorSession(
|
|
|
55262
55266
|
@builtins.property
|
|
55263
55267
|
@jsii.member(jsii_name="attrId")
|
|
55264
55268
|
def attr_id(self) -> builtins.str:
|
|
55265
|
-
'''
|
|
55269
|
+
'''The ID of a Traffic Mirror session.
|
|
55270
|
+
|
|
55266
55271
|
:cloudformationAttribute: Id
|
|
55267
55272
|
'''
|
|
55268
55273
|
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
@@ -55343,6 +55348,19 @@ class CfnTrafficMirrorSession(
|
|
|
55343
55348
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
55344
55349
|
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
55345
55350
|
|
|
55351
|
+
@builtins.property
|
|
55352
|
+
@jsii.member(jsii_name="ownerId")
|
|
55353
|
+
def owner_id(self) -> typing.Optional[builtins.str]:
|
|
55354
|
+
'''The ID of the account that owns the Traffic Mirror session.'''
|
|
55355
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "ownerId"))
|
|
55356
|
+
|
|
55357
|
+
@owner_id.setter
|
|
55358
|
+
def owner_id(self, value: typing.Optional[builtins.str]) -> None:
|
|
55359
|
+
if __debug__:
|
|
55360
|
+
type_hints = typing.get_type_hints(_typecheckingstub__21588510c317dbb4d3f093aedb52504c662e37e8a686d1ea3651a49a04ed0e49)
|
|
55361
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
55362
|
+
jsii.set(self, "ownerId", value) # pyright: ignore[reportArgumentType]
|
|
55363
|
+
|
|
55346
55364
|
@builtins.property
|
|
55347
55365
|
@jsii.member(jsii_name="packetLength")
|
|
55348
55366
|
def packet_length(self) -> typing.Optional[jsii.Number]:
|
|
@@ -55392,6 +55410,7 @@ class CfnTrafficMirrorSession(
|
|
|
55392
55410
|
"traffic_mirror_filter_id": "trafficMirrorFilterId",
|
|
55393
55411
|
"traffic_mirror_target_id": "trafficMirrorTargetId",
|
|
55394
55412
|
"description": "description",
|
|
55413
|
+
"owner_id": "ownerId",
|
|
55395
55414
|
"packet_length": "packetLength",
|
|
55396
55415
|
"tags": "tags",
|
|
55397
55416
|
"virtual_network_id": "virtualNetworkId",
|
|
@@ -55406,6 +55425,7 @@ class CfnTrafficMirrorSessionProps:
|
|
|
55406
55425
|
traffic_mirror_filter_id: builtins.str,
|
|
55407
55426
|
traffic_mirror_target_id: builtins.str,
|
|
55408
55427
|
description: typing.Optional[builtins.str] = None,
|
|
55428
|
+
owner_id: typing.Optional[builtins.str] = None,
|
|
55409
55429
|
packet_length: typing.Optional[jsii.Number] = None,
|
|
55410
55430
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
55411
55431
|
virtual_network_id: typing.Optional[jsii.Number] = None,
|
|
@@ -55417,6 +55437,7 @@ class CfnTrafficMirrorSessionProps:
|
|
|
55417
55437
|
:param traffic_mirror_filter_id: The ID of the Traffic Mirror filter.
|
|
55418
55438
|
:param traffic_mirror_target_id: The ID of the Traffic Mirror target.
|
|
55419
55439
|
:param description: The description of the Traffic Mirror session.
|
|
55440
|
+
:param owner_id: The ID of the account that owns the Traffic Mirror session.
|
|
55420
55441
|
:param packet_length: The number of bytes in each packet to mirror. These are bytes after the VXLAN header. Do not specify this parameter when you want to mirror the entire packet. To mirror a subset of the packet, set this to the length (in bytes) that you want to mirror. For example, if you set this value to 100, then the first 100 bytes that meet the filter criteria are copied to the target. If you do not want to mirror the entire packet, use the ``PacketLength`` parameter to specify the number of bytes in each packet to mirror. For sessions with Network Load Balancer (NLB) Traffic Mirror targets the default ``PacketLength`` will be set to 8500. Valid values are 1-8500. Setting a ``PacketLength`` greater than 8500 will result in an error response.
|
|
55421
55442
|
:param tags: The tags to assign to a Traffic Mirror session.
|
|
55422
55443
|
:param virtual_network_id: The VXLAN ID for the Traffic Mirror session. For more information about the VXLAN protocol, see `RFC 7348 <https://docs.aws.amazon.com/https://datatracker.ietf.org/doc/html/rfc7348>`_ . If you do not specify a ``VirtualNetworkId`` , an account-wide unique ID is chosen at random.
|
|
@@ -55438,6 +55459,7 @@ class CfnTrafficMirrorSessionProps:
|
|
|
55438
55459
|
|
|
55439
55460
|
# the properties below are optional
|
|
55440
55461
|
description="description",
|
|
55462
|
+
owner_id="ownerId",
|
|
55441
55463
|
packet_length=123,
|
|
55442
55464
|
tags=[CfnTag(
|
|
55443
55465
|
key="key",
|
|
@@ -55453,6 +55475,7 @@ class CfnTrafficMirrorSessionProps:
|
|
|
55453
55475
|
check_type(argname="argument traffic_mirror_filter_id", value=traffic_mirror_filter_id, expected_type=type_hints["traffic_mirror_filter_id"])
|
|
55454
55476
|
check_type(argname="argument traffic_mirror_target_id", value=traffic_mirror_target_id, expected_type=type_hints["traffic_mirror_target_id"])
|
|
55455
55477
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
55478
|
+
check_type(argname="argument owner_id", value=owner_id, expected_type=type_hints["owner_id"])
|
|
55456
55479
|
check_type(argname="argument packet_length", value=packet_length, expected_type=type_hints["packet_length"])
|
|
55457
55480
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
55458
55481
|
check_type(argname="argument virtual_network_id", value=virtual_network_id, expected_type=type_hints["virtual_network_id"])
|
|
@@ -55464,6 +55487,8 @@ class CfnTrafficMirrorSessionProps:
|
|
|
55464
55487
|
}
|
|
55465
55488
|
if description is not None:
|
|
55466
55489
|
self._values["description"] = description
|
|
55490
|
+
if owner_id is not None:
|
|
55491
|
+
self._values["owner_id"] = owner_id
|
|
55467
55492
|
if packet_length is not None:
|
|
55468
55493
|
self._values["packet_length"] = packet_length
|
|
55469
55494
|
if tags is not None:
|
|
@@ -55524,6 +55549,15 @@ class CfnTrafficMirrorSessionProps:
|
|
|
55524
55549
|
result = self._values.get("description")
|
|
55525
55550
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
55526
55551
|
|
|
55552
|
+
@builtins.property
|
|
55553
|
+
def owner_id(self) -> typing.Optional[builtins.str]:
|
|
55554
|
+
'''The ID of the account that owns the Traffic Mirror session.
|
|
55555
|
+
|
|
55556
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorsession.html#cfn-ec2-trafficmirrorsession-ownerid
|
|
55557
|
+
'''
|
|
55558
|
+
result = self._values.get("owner_id")
|
|
55559
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
55560
|
+
|
|
55527
55561
|
@builtins.property
|
|
55528
55562
|
def packet_length(self) -> typing.Optional[jsii.Number]:
|
|
55529
55563
|
'''The number of bytes in each packet to mirror.
|
|
@@ -91109,15 +91143,15 @@ class ResolveSsmParameterAtLaunchImage(
|
|
|
91109
91143
|
jsii.create(self.__class__, self, [parameter_name, props])
|
|
91110
91144
|
|
|
91111
91145
|
@jsii.member(jsii_name="getImage")
|
|
91112
|
-
def get_image(self,
|
|
91146
|
+
def get_image(self, _scope: _constructs_77d1e7e8.Construct) -> MachineImageConfig:
|
|
91113
91147
|
'''Return the image to use in the given context.
|
|
91114
91148
|
|
|
91115
|
-
:param
|
|
91149
|
+
:param _scope: -
|
|
91116
91150
|
'''
|
|
91117
91151
|
if __debug__:
|
|
91118
91152
|
type_hints = typing.get_type_hints(_typecheckingstub__d20c701794e8ce600958b0084cd7254773f41a44aeda9ef5a9b369a5688d8019)
|
|
91119
|
-
check_type(argname="argument
|
|
91120
|
-
return typing.cast(MachineImageConfig, jsii.invoke(self, "getImage", [
|
|
91153
|
+
check_type(argname="argument _scope", value=_scope, expected_type=type_hints["_scope"])
|
|
91154
|
+
return typing.cast(MachineImageConfig, jsii.invoke(self, "getImage", [_scope]))
|
|
91121
91155
|
|
|
91122
91156
|
@builtins.property
|
|
91123
91157
|
@jsii.member(jsii_name="parameterName")
|
|
@@ -111673,6 +111707,7 @@ def _typecheckingstub__9e0df29e9de2cc6eed997cd0738e89aa6fc9bdffd0c700ef4584f2c9e
|
|
|
111673
111707
|
traffic_mirror_filter_id: builtins.str,
|
|
111674
111708
|
traffic_mirror_target_id: builtins.str,
|
|
111675
111709
|
description: typing.Optional[builtins.str] = None,
|
|
111710
|
+
owner_id: typing.Optional[builtins.str] = None,
|
|
111676
111711
|
packet_length: typing.Optional[jsii.Number] = None,
|
|
111677
111712
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
111678
111713
|
virtual_network_id: typing.Optional[jsii.Number] = None,
|
|
@@ -111722,6 +111757,12 @@ def _typecheckingstub__4239210691e02d4eea905b9be001d8302bb77db3dde61743cea1aa5b6
|
|
|
111722
111757
|
"""Type checking stubs"""
|
|
111723
111758
|
pass
|
|
111724
111759
|
|
|
111760
|
+
def _typecheckingstub__21588510c317dbb4d3f093aedb52504c662e37e8a686d1ea3651a49a04ed0e49(
|
|
111761
|
+
value: typing.Optional[builtins.str],
|
|
111762
|
+
) -> None:
|
|
111763
|
+
"""Type checking stubs"""
|
|
111764
|
+
pass
|
|
111765
|
+
|
|
111725
111766
|
def _typecheckingstub__9aaf61851419d979865e5ff3ad332c3b90ca87f0fd776502a722e2ebe1429297(
|
|
111726
111767
|
value: typing.Optional[jsii.Number],
|
|
111727
111768
|
) -> None:
|
|
@@ -111747,6 +111788,7 @@ def _typecheckingstub__410c9163482a74952290246bbd3c364855d8d943a582d683fbe831b27
|
|
|
111747
111788
|
traffic_mirror_filter_id: builtins.str,
|
|
111748
111789
|
traffic_mirror_target_id: builtins.str,
|
|
111749
111790
|
description: typing.Optional[builtins.str] = None,
|
|
111791
|
+
owner_id: typing.Optional[builtins.str] = None,
|
|
111750
111792
|
packet_length: typing.Optional[jsii.Number] = None,
|
|
111751
111793
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
111752
111794
|
virtual_network_id: typing.Optional[jsii.Number] = None,
|
|
@@ -116375,7 +116417,7 @@ def _typecheckingstub__ae85933c688e38a0dd9faa69a685488b55c8c19f918eabcacbd33c964
|
|
|
116375
116417
|
pass
|
|
116376
116418
|
|
|
116377
116419
|
def _typecheckingstub__d20c701794e8ce600958b0084cd7254773f41a44aeda9ef5a9b369a5688d8019(
|
|
116378
|
-
|
|
116420
|
+
_scope: _constructs_77d1e7e8.Construct,
|
|
116379
116421
|
) -> None:
|
|
116380
116422
|
"""Type checking stubs"""
|
|
116381
116423
|
pass
|