aws-cdk-lib 2.133.0__py3-none-any.whl → 2.134.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 +9 -1
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.133.0.jsii.tgz → aws-cdk-lib@2.134.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2/__init__.py +105 -3
- aws_cdk/aws_apigatewayv2_integrations/__init__.py +155 -3
- aws_cdk/aws_appconfig/__init__.py +186 -8
- aws_cdk/aws_appintegrations/__init__.py +551 -0
- aws_cdk/aws_appsync/__init__.py +71 -0
- aws_cdk/aws_autoscaling/__init__.py +6 -4
- aws_cdk/aws_backup/__init__.py +23 -12
- aws_cdk/aws_batch/__init__.py +423 -73
- aws_cdk/aws_bedrock/__init__.py +197 -2
- aws_cdk/aws_cloudformation/__init__.py +1 -1
- aws_cdk/aws_cloudfront/__init__.py +2 -2
- aws_cdk/aws_cloudtrail/__init__.py +44 -14
- aws_cdk/aws_cloudwatch/__init__.py +18 -0
- aws_cdk/aws_codeartifact/__init__.py +812 -2
- aws_cdk/aws_codebuild/__init__.py +21 -5
- aws_cdk/aws_codepipeline/__init__.py +24 -8
- aws_cdk/aws_cognito/__init__.py +41 -40
- aws_cdk/aws_connect/__init__.py +256 -0
- aws_cdk/aws_datasync/__init__.py +393 -13
- aws_cdk/aws_dlm/__init__.py +2 -2
- aws_cdk/aws_docdbelastic/__init__.py +117 -0
- aws_cdk/aws_dynamodb/__init__.py +416 -5
- aws_cdk/aws_ec2/__init__.py +493 -93
- aws_cdk/aws_ecs/__init__.py +6 -4
- aws_cdk/aws_eks/__init__.py +27 -25
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +359 -60
- aws_cdk/aws_entityresolution/__init__.py +91 -64
- aws_cdk/aws_glue/__init__.py +137 -3
- aws_cdk/aws_iam/__init__.py +9 -10
- aws_cdk/aws_internetmonitor/__init__.py +85 -0
- aws_cdk/aws_iotsitewise/__init__.py +110 -50
- aws_cdk/aws_kafkaconnect/__init__.py +1237 -162
- aws_cdk/aws_kendra/__init__.py +34 -24
- aws_cdk/aws_kinesisanalytics/__init__.py +37 -37
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +37 -37
- aws_cdk/aws_kinesisfirehose/__init__.py +6 -2
- aws_cdk/aws_msk/__init__.py +88 -0
- aws_cdk/aws_opensearchservice/__init__.py +19 -17
- aws_cdk/aws_pinpoint/__init__.py +42 -0
- aws_cdk/aws_rds/__init__.py +48 -14
- aws_cdk/aws_sagemaker/__init__.py +2 -2
- aws_cdk/aws_ssm/__init__.py +3 -3
- aws_cdk/aws_stepfunctions_tasks/__init__.py +23 -0
- aws_cdk/aws_synthetics/__init__.py +74 -14
- aws_cdk/aws_transfer/__init__.py +4 -3
- aws_cdk/aws_wafv2/__init__.py +96 -46
- aws_cdk/cx_api/__init__.py +17 -0
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/RECORD +56 -56
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ec2/__init__.py
CHANGED
|
@@ -1163,6 +1163,19 @@ ec2.VpcEndpointService(self, "EndpointService",
|
|
|
1163
1163
|
)
|
|
1164
1164
|
```
|
|
1165
1165
|
|
|
1166
|
+
You can also include a service principal in the `allowedPrincipals` property by specifying it as a parameter to the `ArnPrincipal` constructor.
|
|
1167
|
+
The resulting VPC endpoint will have an allowlisted principal of type `Service`, instead of `Arn` for that item in the list.
|
|
1168
|
+
|
|
1169
|
+
```python
|
|
1170
|
+
# network_load_balancer: elbv2.NetworkLoadBalancer
|
|
1171
|
+
|
|
1172
|
+
|
|
1173
|
+
ec2.VpcEndpointService(self, "EndpointService",
|
|
1174
|
+
vpc_endpoint_service_load_balancers=[network_load_balancer],
|
|
1175
|
+
allowed_principals=[iam.ArnPrincipal("ec2.amazonaws.com")]
|
|
1176
|
+
)
|
|
1177
|
+
```
|
|
1178
|
+
|
|
1166
1179
|
Endpoint services support private DNS, which makes it easier for clients to connect to your service by automatically setting up DNS in their VPC.
|
|
1167
1180
|
You can enable private DNS on an endpoint service like so:
|
|
1168
1181
|
|
|
@@ -9616,6 +9629,7 @@ class CfnDHCPOptions(
|
|
|
9616
9629
|
cfn_dHCPOptions = ec2.CfnDHCPOptions(self, "MyCfnDHCPOptions",
|
|
9617
9630
|
domain_name="domainName",
|
|
9618
9631
|
domain_name_servers=["domainNameServers"],
|
|
9632
|
+
ipv6_address_preferred_lease_time=123,
|
|
9619
9633
|
netbios_name_servers=["netbiosNameServers"],
|
|
9620
9634
|
netbios_node_type=123,
|
|
9621
9635
|
ntp_servers=["ntpServers"],
|
|
@@ -9633,6 +9647,7 @@ class CfnDHCPOptions(
|
|
|
9633
9647
|
*,
|
|
9634
9648
|
domain_name: typing.Optional[builtins.str] = None,
|
|
9635
9649
|
domain_name_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
9650
|
+
ipv6_address_preferred_lease_time: typing.Optional[jsii.Number] = None,
|
|
9636
9651
|
netbios_name_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
9637
9652
|
netbios_node_type: typing.Optional[jsii.Number] = None,
|
|
9638
9653
|
ntp_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -9643,6 +9658,7 @@ class CfnDHCPOptions(
|
|
|
9643
9658
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
9644
9659
|
:param domain_name: This value is used to complete unqualified DNS hostnames. If you're using AmazonProvidedDNS in ``us-east-1`` , specify ``ec2.internal`` . If you're using AmazonProvidedDNS in another Region, specify *region* . ``compute.internal`` (for example, ``ap-northeast-1.compute.internal`` ). Otherwise, specify a domain name (for example, *MyCompany.com* ).
|
|
9645
9660
|
:param domain_name_servers: The IPv4 addresses of up to four domain name servers, or ``AmazonProvidedDNS`` . The default is ``AmazonProvidedDNS`` . To have your instance receive a custom DNS hostname as specified in ``DomainName`` , you must set this property to a custom DNS server.
|
|
9661
|
+
:param ipv6_address_preferred_lease_time: A value (in seconds, minutes, hours, or years) for how frequently a running instance with an IPv6 assigned to it goes through DHCPv6 lease renewal. Acceptable values are between 140 and 2147483647 seconds (approximately 68 years). If no value is entered, the default lease time is 140 seconds. If you use long-term addressing for EC2 instances, you can increase the lease time and avoid frequent lease renewal requests. Lease renewal typically occurs when half of the lease time has elapsed.
|
|
9646
9662
|
:param netbios_name_servers: The IPv4 addresses of up to four NetBIOS name servers.
|
|
9647
9663
|
:param netbios_node_type: The NetBIOS node type (1, 2, 4, or 8). We recommend that you specify 2 (broadcast and multicast are not currently supported).
|
|
9648
9664
|
:param ntp_servers: The IPv4 addresses of up to four Network Time Protocol (NTP) servers.
|
|
@@ -9655,6 +9671,7 @@ class CfnDHCPOptions(
|
|
|
9655
9671
|
props = CfnDHCPOptionsProps(
|
|
9656
9672
|
domain_name=domain_name,
|
|
9657
9673
|
domain_name_servers=domain_name_servers,
|
|
9674
|
+
ipv6_address_preferred_lease_time=ipv6_address_preferred_lease_time,
|
|
9658
9675
|
netbios_name_servers=netbios_name_servers,
|
|
9659
9676
|
netbios_node_type=netbios_node_type,
|
|
9660
9677
|
ntp_servers=ntp_servers,
|
|
@@ -9742,6 +9759,22 @@ class CfnDHCPOptions(
|
|
|
9742
9759
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
9743
9760
|
jsii.set(self, "domainNameServers", value)
|
|
9744
9761
|
|
|
9762
|
+
@builtins.property
|
|
9763
|
+
@jsii.member(jsii_name="ipv6AddressPreferredLeaseTime")
|
|
9764
|
+
def ipv6_address_preferred_lease_time(self) -> typing.Optional[jsii.Number]:
|
|
9765
|
+
'''A value (in seconds, minutes, hours, or years) for how frequently a running instance with an IPv6 assigned to it goes through DHCPv6 lease renewal.'''
|
|
9766
|
+
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "ipv6AddressPreferredLeaseTime"))
|
|
9767
|
+
|
|
9768
|
+
@ipv6_address_preferred_lease_time.setter
|
|
9769
|
+
def ipv6_address_preferred_lease_time(
|
|
9770
|
+
self,
|
|
9771
|
+
value: typing.Optional[jsii.Number],
|
|
9772
|
+
) -> None:
|
|
9773
|
+
if __debug__:
|
|
9774
|
+
type_hints = typing.get_type_hints(_typecheckingstub__0cbb91e4162eb4b7aab6b1e90fa6fbbbade04b38a95d6c1bb778946ae93b50a3)
|
|
9775
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
9776
|
+
jsii.set(self, "ipv6AddressPreferredLeaseTime", value)
|
|
9777
|
+
|
|
9745
9778
|
@builtins.property
|
|
9746
9779
|
@jsii.member(jsii_name="netbiosNameServers")
|
|
9747
9780
|
def netbios_name_servers(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
@@ -9804,6 +9837,7 @@ class CfnDHCPOptions(
|
|
|
9804
9837
|
name_mapping={
|
|
9805
9838
|
"domain_name": "domainName",
|
|
9806
9839
|
"domain_name_servers": "domainNameServers",
|
|
9840
|
+
"ipv6_address_preferred_lease_time": "ipv6AddressPreferredLeaseTime",
|
|
9807
9841
|
"netbios_name_servers": "netbiosNameServers",
|
|
9808
9842
|
"netbios_node_type": "netbiosNodeType",
|
|
9809
9843
|
"ntp_servers": "ntpServers",
|
|
@@ -9816,6 +9850,7 @@ class CfnDHCPOptionsProps:
|
|
|
9816
9850
|
*,
|
|
9817
9851
|
domain_name: typing.Optional[builtins.str] = None,
|
|
9818
9852
|
domain_name_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
9853
|
+
ipv6_address_preferred_lease_time: typing.Optional[jsii.Number] = None,
|
|
9819
9854
|
netbios_name_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
9820
9855
|
netbios_node_type: typing.Optional[jsii.Number] = None,
|
|
9821
9856
|
ntp_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -9825,6 +9860,7 @@ class CfnDHCPOptionsProps:
|
|
|
9825
9860
|
|
|
9826
9861
|
:param domain_name: This value is used to complete unqualified DNS hostnames. If you're using AmazonProvidedDNS in ``us-east-1`` , specify ``ec2.internal`` . If you're using AmazonProvidedDNS in another Region, specify *region* . ``compute.internal`` (for example, ``ap-northeast-1.compute.internal`` ). Otherwise, specify a domain name (for example, *MyCompany.com* ).
|
|
9827
9862
|
:param domain_name_servers: The IPv4 addresses of up to four domain name servers, or ``AmazonProvidedDNS`` . The default is ``AmazonProvidedDNS`` . To have your instance receive a custom DNS hostname as specified in ``DomainName`` , you must set this property to a custom DNS server.
|
|
9863
|
+
:param ipv6_address_preferred_lease_time: A value (in seconds, minutes, hours, or years) for how frequently a running instance with an IPv6 assigned to it goes through DHCPv6 lease renewal. Acceptable values are between 140 and 2147483647 seconds (approximately 68 years). If no value is entered, the default lease time is 140 seconds. If you use long-term addressing for EC2 instances, you can increase the lease time and avoid frequent lease renewal requests. Lease renewal typically occurs when half of the lease time has elapsed.
|
|
9828
9864
|
:param netbios_name_servers: The IPv4 addresses of up to four NetBIOS name servers.
|
|
9829
9865
|
:param netbios_node_type: The NetBIOS node type (1, 2, 4, or 8). We recommend that you specify 2 (broadcast and multicast are not currently supported).
|
|
9830
9866
|
:param ntp_servers: The IPv4 addresses of up to four Network Time Protocol (NTP) servers.
|
|
@@ -9842,6 +9878,7 @@ class CfnDHCPOptionsProps:
|
|
|
9842
9878
|
cfn_dHCPOptions_props = ec2.CfnDHCPOptionsProps(
|
|
9843
9879
|
domain_name="domainName",
|
|
9844
9880
|
domain_name_servers=["domainNameServers"],
|
|
9881
|
+
ipv6_address_preferred_lease_time=123,
|
|
9845
9882
|
netbios_name_servers=["netbiosNameServers"],
|
|
9846
9883
|
netbios_node_type=123,
|
|
9847
9884
|
ntp_servers=["ntpServers"],
|
|
@@ -9855,6 +9892,7 @@ class CfnDHCPOptionsProps:
|
|
|
9855
9892
|
type_hints = typing.get_type_hints(_typecheckingstub__569097ad87e4dddbcfaee4fb50fc7ddb345c4f97ae82fcf897497039e7f81a38)
|
|
9856
9893
|
check_type(argname="argument domain_name", value=domain_name, expected_type=type_hints["domain_name"])
|
|
9857
9894
|
check_type(argname="argument domain_name_servers", value=domain_name_servers, expected_type=type_hints["domain_name_servers"])
|
|
9895
|
+
check_type(argname="argument ipv6_address_preferred_lease_time", value=ipv6_address_preferred_lease_time, expected_type=type_hints["ipv6_address_preferred_lease_time"])
|
|
9858
9896
|
check_type(argname="argument netbios_name_servers", value=netbios_name_servers, expected_type=type_hints["netbios_name_servers"])
|
|
9859
9897
|
check_type(argname="argument netbios_node_type", value=netbios_node_type, expected_type=type_hints["netbios_node_type"])
|
|
9860
9898
|
check_type(argname="argument ntp_servers", value=ntp_servers, expected_type=type_hints["ntp_servers"])
|
|
@@ -9864,6 +9902,8 @@ class CfnDHCPOptionsProps:
|
|
|
9864
9902
|
self._values["domain_name"] = domain_name
|
|
9865
9903
|
if domain_name_servers is not None:
|
|
9866
9904
|
self._values["domain_name_servers"] = domain_name_servers
|
|
9905
|
+
if ipv6_address_preferred_lease_time is not None:
|
|
9906
|
+
self._values["ipv6_address_preferred_lease_time"] = ipv6_address_preferred_lease_time
|
|
9867
9907
|
if netbios_name_servers is not None:
|
|
9868
9908
|
self._values["netbios_name_servers"] = netbios_name_servers
|
|
9869
9909
|
if netbios_node_type is not None:
|
|
@@ -9895,6 +9935,17 @@ class CfnDHCPOptionsProps:
|
|
|
9895
9935
|
result = self._values.get("domain_name_servers")
|
|
9896
9936
|
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
9897
9937
|
|
|
9938
|
+
@builtins.property
|
|
9939
|
+
def ipv6_address_preferred_lease_time(self) -> typing.Optional[jsii.Number]:
|
|
9940
|
+
'''A value (in seconds, minutes, hours, or years) for how frequently a running instance with an IPv6 assigned to it goes through DHCPv6 lease renewal.
|
|
9941
|
+
|
|
9942
|
+
Acceptable values are between 140 and 2147483647 seconds (approximately 68 years). If no value is entered, the default lease time is 140 seconds. If you use long-term addressing for EC2 instances, you can increase the lease time and avoid frequent lease renewal requests. Lease renewal typically occurs when half of the lease time has elapsed.
|
|
9943
|
+
|
|
9944
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-dhcpoptions.html#cfn-ec2-dhcpoptions-ipv6addresspreferredleasetime
|
|
9945
|
+
'''
|
|
9946
|
+
result = self._values.get("ipv6_address_preferred_lease_time")
|
|
9947
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
9948
|
+
|
|
9898
9949
|
@builtins.property
|
|
9899
9950
|
def netbios_name_servers(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
9900
9951
|
'''The IPv4 addresses of up to four NetBIOS name servers.
|
|
@@ -14754,8 +14805,8 @@ class CfnFlowLog(
|
|
|
14754
14805
|
:param resource_id: The ID of the resource to monitor. For example, if the resource type is ``VPC`` , specify the ID of the VPC.
|
|
14755
14806
|
:param resource_type: The type of resource to monitor.
|
|
14756
14807
|
:param deliver_cross_account_role: The ARN of the IAM role that allows the service to publish flow logs across accounts.
|
|
14757
|
-
:param deliver_logs_permission_arn: The ARN of the IAM role that allows Amazon EC2 to publish flow logs to
|
|
14758
|
-
:param destination_options: The destination options.
|
|
14808
|
+
:param deliver_logs_permission_arn: The ARN of the IAM role that allows Amazon EC2 to publish flow logs to the log destination. This parameter is required if the destination type is ``cloud-watch-logs`` , or if the destination type is ``kinesis-data-firehose`` and the delivery stream and the resources to monitor are in different accounts.
|
|
14809
|
+
:param destination_options: The destination options.
|
|
14759
14810
|
:param log_destination: The destination for the flow log data. The meaning of this parameter depends on the destination type. - If the destination type is ``cloud-watch-logs`` , specify the ARN of a CloudWatch Logs log group. For example: arn:aws:logs: *region* : *account_id* :log-group: *my_group* Alternatively, use the ``LogGroupName`` parameter. - If the destination type is ``s3`` , specify the ARN of an S3 bucket. For example: arn:aws:s3::: *my_bucket* / *my_subfolder* / The subfolder is optional. Note that you can't use ``AWSLogs`` as a subfolder name. - If the destination type is ``kinesis-data-firehose`` , specify the ARN of a Kinesis Data Firehose delivery stream. For example: arn:aws:firehose: *region* : *account_id* :deliverystream: *my_stream*
|
|
14760
14811
|
:param log_destination_type: The type of destination for the flow log data. Default: ``cloud-watch-logs``
|
|
14761
14812
|
:param log_format: The fields to include in the flow log record, in the order in which they should appear. If you omit this parameter, the flow log is created using the default format. If you specify this parameter, you must include at least one field. For more information about the available fields, see `Flow log records <https://docs.aws.amazon.com/vpc/latest/userguide/flow-logs.html#flow-log-records>`_ in the *Amazon VPC User Guide* or `Transit Gateway Flow Log records <https://docs.aws.amazon.com/vpc/latest/tgw/tgw-flow-logs.html#flow-log-records>`_ in the *AWS Transit Gateway Guide* . Specify the fields using the ``${field-id}`` format, separated by spaces.
|
|
@@ -14879,7 +14930,7 @@ class CfnFlowLog(
|
|
|
14879
14930
|
@builtins.property
|
|
14880
14931
|
@jsii.member(jsii_name="deliverLogsPermissionArn")
|
|
14881
14932
|
def deliver_logs_permission_arn(self) -> typing.Optional[builtins.str]:
|
|
14882
|
-
'''The ARN of the IAM role that allows Amazon EC2 to publish flow logs to
|
|
14933
|
+
'''The ARN of the IAM role that allows Amazon EC2 to publish flow logs to the log destination.'''
|
|
14883
14934
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "deliverLogsPermissionArn"))
|
|
14884
14935
|
|
|
14885
14936
|
@deliver_logs_permission_arn.setter
|
|
@@ -14892,10 +14943,7 @@ class CfnFlowLog(
|
|
|
14892
14943
|
@builtins.property
|
|
14893
14944
|
@jsii.member(jsii_name="destinationOptions")
|
|
14894
14945
|
def destination_options(self) -> typing.Any:
|
|
14895
|
-
'''The destination options.
|
|
14896
|
-
|
|
14897
|
-
The following options are supported:.
|
|
14898
|
-
'''
|
|
14946
|
+
'''The destination options.'''
|
|
14899
14947
|
return typing.cast(typing.Any, jsii.get(self, "destinationOptions"))
|
|
14900
14948
|
|
|
14901
14949
|
@destination_options.setter
|
|
@@ -15140,8 +15188,8 @@ class CfnFlowLogProps:
|
|
|
15140
15188
|
:param resource_id: The ID of the resource to monitor. For example, if the resource type is ``VPC`` , specify the ID of the VPC.
|
|
15141
15189
|
:param resource_type: The type of resource to monitor.
|
|
15142
15190
|
:param deliver_cross_account_role: The ARN of the IAM role that allows the service to publish flow logs across accounts.
|
|
15143
|
-
:param deliver_logs_permission_arn: The ARN of the IAM role that allows Amazon EC2 to publish flow logs to
|
|
15144
|
-
:param destination_options: The destination options.
|
|
15191
|
+
:param deliver_logs_permission_arn: The ARN of the IAM role that allows Amazon EC2 to publish flow logs to the log destination. This parameter is required if the destination type is ``cloud-watch-logs`` , or if the destination type is ``kinesis-data-firehose`` and the delivery stream and the resources to monitor are in different accounts.
|
|
15192
|
+
:param destination_options: The destination options.
|
|
15145
15193
|
:param log_destination: The destination for the flow log data. The meaning of this parameter depends on the destination type. - If the destination type is ``cloud-watch-logs`` , specify the ARN of a CloudWatch Logs log group. For example: arn:aws:logs: *region* : *account_id* :log-group: *my_group* Alternatively, use the ``LogGroupName`` parameter. - If the destination type is ``s3`` , specify the ARN of an S3 bucket. For example: arn:aws:s3::: *my_bucket* / *my_subfolder* / The subfolder is optional. Note that you can't use ``AWSLogs`` as a subfolder name. - If the destination type is ``kinesis-data-firehose`` , specify the ARN of a Kinesis Data Firehose delivery stream. For example: arn:aws:firehose: *region* : *account_id* :deliverystream: *my_stream*
|
|
15146
15194
|
:param log_destination_type: The type of destination for the flow log data. Default: ``cloud-watch-logs``
|
|
15147
15195
|
:param log_format: The fields to include in the flow log record, in the order in which they should appear. If you omit this parameter, the flow log is created using the default format. If you specify this parameter, you must include at least one field. For more information about the available fields, see `Flow log records <https://docs.aws.amazon.com/vpc/latest/userguide/flow-logs.html#flow-log-records>`_ in the *Amazon VPC User Guide* or `Transit Gateway Flow Log records <https://docs.aws.amazon.com/vpc/latest/tgw/tgw-flow-logs.html#flow-log-records>`_ in the *AWS Transit Gateway Guide* . Specify the fields using the ``${field-id}`` format, separated by spaces.
|
|
@@ -15253,9 +15301,9 @@ class CfnFlowLogProps:
|
|
|
15253
15301
|
|
|
15254
15302
|
@builtins.property
|
|
15255
15303
|
def deliver_logs_permission_arn(self) -> typing.Optional[builtins.str]:
|
|
15256
|
-
'''The ARN of the IAM role that allows Amazon EC2 to publish flow logs to
|
|
15304
|
+
'''The ARN of the IAM role that allows Amazon EC2 to publish flow logs to the log destination.
|
|
15257
15305
|
|
|
15258
|
-
This parameter is required if the destination type is ``cloud-watch-logs`` and
|
|
15306
|
+
This parameter is required if the destination type is ``cloud-watch-logs`` , or if the destination type is ``kinesis-data-firehose`` and the delivery stream and the resources to monitor are in different accounts.
|
|
15259
15307
|
|
|
15260
15308
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-deliverlogspermissionarn
|
|
15261
15309
|
'''
|
|
@@ -15264,11 +15312,7 @@ class CfnFlowLogProps:
|
|
|
15264
15312
|
|
|
15265
15313
|
@builtins.property
|
|
15266
15314
|
def destination_options(self) -> typing.Any:
|
|
15267
|
-
'''The destination options.
|
|
15268
|
-
|
|
15269
|
-
- ``FileFormat`` - The format for the flow log ( ``plain-text`` | ``parquet`` ). The default is ``plain-text`` .
|
|
15270
|
-
- ``HiveCompatiblePartitions`` - Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3 ( ``true`` | ``false`` ). The default is ``false`` .
|
|
15271
|
-
- ``PerHourPartition`` - Indicates whether to partition the flow log per hour ( ``true`` | ``false`` ). The default is ``false`` .
|
|
15315
|
+
'''The destination options.
|
|
15272
15316
|
|
|
15273
15317
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-destinationoptions
|
|
15274
15318
|
'''
|
|
@@ -19214,10 +19258,7 @@ class CfnInstance(
|
|
|
19214
19258
|
@builtins.property
|
|
19215
19259
|
@jsii.member(jsii_name="attrAvailabilityZone")
|
|
19216
19260
|
def attr_availability_zone(self) -> builtins.str:
|
|
19217
|
-
'''
|
|
19218
|
-
|
|
19219
|
-
You can retrieve a list of all Availability Zones for a Region by using the `Fn::GetAZs <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-getavailabilityzones.html>`_ intrinsic function.
|
|
19220
|
-
|
|
19261
|
+
'''
|
|
19221
19262
|
:cloudformationAttribute: AvailabilityZone
|
|
19222
19263
|
'''
|
|
19223
19264
|
return typing.cast(builtins.str, jsii.get(self, "attrAvailabilityZone"))
|
|
@@ -19225,12 +19266,20 @@ class CfnInstance(
|
|
|
19225
19266
|
@builtins.property
|
|
19226
19267
|
@jsii.member(jsii_name="attrId")
|
|
19227
19268
|
def attr_id(self) -> builtins.str:
|
|
19228
|
-
'''
|
|
19229
|
-
|
|
19269
|
+
'''
|
|
19230
19270
|
:cloudformationAttribute: Id
|
|
19231
19271
|
'''
|
|
19232
19272
|
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
19233
19273
|
|
|
19274
|
+
@builtins.property
|
|
19275
|
+
@jsii.member(jsii_name="attrInstanceId")
|
|
19276
|
+
def attr_instance_id(self) -> builtins.str:
|
|
19277
|
+
'''The ID of the instance.
|
|
19278
|
+
|
|
19279
|
+
:cloudformationAttribute: InstanceId
|
|
19280
|
+
'''
|
|
19281
|
+
return typing.cast(builtins.str, jsii.get(self, "attrInstanceId"))
|
|
19282
|
+
|
|
19234
19283
|
@builtins.property
|
|
19235
19284
|
@jsii.member(jsii_name="attrPrivateDnsName")
|
|
19236
19285
|
def attr_private_dns_name(self) -> builtins.str:
|
|
@@ -19275,6 +19324,15 @@ class CfnInstance(
|
|
|
19275
19324
|
'''
|
|
19276
19325
|
return typing.cast(builtins.str, jsii.get(self, "attrPublicIp"))
|
|
19277
19326
|
|
|
19327
|
+
@builtins.property
|
|
19328
|
+
@jsii.member(jsii_name="attrVpcId")
|
|
19329
|
+
def attr_vpc_id(self) -> builtins.str:
|
|
19330
|
+
'''The ID of the VPC in which the instance is running.
|
|
19331
|
+
|
|
19332
|
+
:cloudformationAttribute: VpcId
|
|
19333
|
+
'''
|
|
19334
|
+
return typing.cast(builtins.str, jsii.get(self, "attrVpcId"))
|
|
19335
|
+
|
|
19278
19336
|
@builtins.property
|
|
19279
19337
|
@jsii.member(jsii_name="cfnProperties")
|
|
19280
19338
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -20717,7 +20775,7 @@ class CfnInstance(
|
|
|
20717
20775
|
|
|
20718
20776
|
``HibernationOptions`` is a property of the `AWS::EC2::Instance <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html>`_ resource.
|
|
20719
20777
|
|
|
20720
|
-
:param configured: Set to ``true`` to enable your instance for hibernation. For Spot Instances, if you set ``Configured`` to ``true`` , either omit the ``InstanceInterruptionBehavior`` parameter (for ```SpotMarketOptions`` <https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_SpotMarketOptions.html>`_ ), or set it to ``hibernate`` . When ``Configured`` is true: - If you omit ``InstanceInterruptionBehavior`` , it defaults to ``hibernate`` . - If you set ``InstanceInterruptionBehavior`` to a value other than ``hibernate`` , you'll get an error. Default: ``false``
|
|
20778
|
+
:param configured: Set to ``true`` to enable your instance for hibernation. For Spot Instances, if you set ``Configured`` to ``true`` , either omit the ``InstanceInterruptionBehavior`` parameter (for ```SpotMarketOptions`` <https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_SpotMarketOptions.html>`_ ), or set it to ``hibernate`` . When ``Configured`` is true: - If you omit ``InstanceInterruptionBehavior`` , it defaults to ``hibernate`` . - If you set ``InstanceInterruptionBehavior`` to a value other than ``hibernate`` , you'll get an error. Default: ``false`` Default: - false
|
|
20721
20779
|
|
|
20722
20780
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html
|
|
20723
20781
|
:exampleMetadata: fixture=_generated
|
|
@@ -20752,6 +20810,8 @@ class CfnInstance(
|
|
|
20752
20810
|
|
|
20753
20811
|
Default: ``false``
|
|
20754
20812
|
|
|
20813
|
+
:default: - false
|
|
20814
|
+
|
|
20755
20815
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html#cfn-ec2-instance-hibernationoptions-configured
|
|
20756
20816
|
'''
|
|
20757
20817
|
result = self._values.get("configured")
|
|
@@ -36690,19 +36750,19 @@ class CfnNetworkInterface(
|
|
|
36690
36750
|
:param connection_tracking_specification: A connection tracking specification for the network interface.
|
|
36691
36751
|
:param description: A description for the network interface.
|
|
36692
36752
|
:param enable_primary_ipv6: If you’re modifying a network interface in a dual-stack or IPv6-only subnet, you have the option to assign a primary IPv6 IP address. A primary IPv6 address is an IPv6 GUA address associated with an ENI that you have enabled to use a primary IPv6 address. Use this option if the instance that this ENI will be attached to relies on its IPv6 address not changing. AWS will automatically assign an IPv6 address associated with the ENI attached to your instance to be the primary IPv6 address. Once you enable an IPv6 GUA address to be a primary IPv6, you cannot disable it. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. If you have multiple IPv6 addresses associated with an ENI attached to your instance and you enable a primary IPv6 address, the first IPv6 GUA address associated with the ENI becomes the primary IPv6 address.
|
|
36693
|
-
:param group_set: The security
|
|
36753
|
+
:param group_set: The IDs of the security groups associated with this network interface.
|
|
36694
36754
|
:param interface_type: The type of network interface. The default is ``interface`` . The supported values are ``efa`` and ``trunk`` .
|
|
36695
36755
|
:param ipv4_prefix_count: The number of IPv4 prefixes to be automatically assigned to the network interface. When creating a network interface, you can't specify a count of IPv4 prefixes if you've specified one of the following: specific IPv4 prefixes, specific private IPv4 addresses, or a count of private IPv4 addresses.
|
|
36696
36756
|
:param ipv4_prefixes: The IPv4 delegated prefixes that are assigned to the network interface. When creating a network interface, you can't specify IPv4 prefixes if you've specified one of the following: a count of IPv4 prefixes, specific private IPv4 addresses, or a count of private IPv4 addresses.
|
|
36697
|
-
:param ipv6_address_count: The number of IPv6 addresses to assign to
|
|
36698
|
-
:param ipv6_addresses:
|
|
36757
|
+
:param ipv6_address_count: The number of IPv6 addresses to assign to the network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range. To specify specific IPv6 addresses, use the ``Ipv6Addresses`` property and don't specify this property. When creating a network interface, you can't specify a count of IPv6 addresses if you've specified one of the following: specific IPv6 addresses, specific IPv6 prefixes, or a count of IPv6 prefixes.
|
|
36758
|
+
:param ipv6_addresses: The IPv6 addresses from the IPv6 CIDR block range of your subnet to assign to the network interface. If you're specifying a number of IPv6 addresses, use the ``Ipv6AddressCount`` property and don't specify this property. When creating a network interface, you can't specify IPv6 addresses if you've specified one of the following: a count of IPv6 addresses, specific IPv6 prefixes, or a count of IPv6 prefixes.
|
|
36699
36759
|
:param ipv6_prefix_count: The number of IPv6 prefixes to be automatically assigned to the network interface. When creating a network interface, you can't specify a count of IPv6 prefixes if you've specified one of the following: specific IPv6 prefixes, specific IPv6 addresses, or a count of IPv6 addresses.
|
|
36700
36760
|
:param ipv6_prefixes: The IPv6 delegated prefixes that are assigned to the network interface. When creating a network interface, you can't specify IPv6 prefixes if you've specified one of the following: a count of IPv6 prefixes, specific IPv6 addresses, or a count of IPv6 addresses.
|
|
36701
|
-
:param private_ip_address:
|
|
36702
|
-
:param private_ip_addresses:
|
|
36761
|
+
:param private_ip_address: The private IPv4 address to assign to the network interface as the primary private IP address. If you want to specify multiple private IP addresses, use the ``PrivateIpAddresses`` property.
|
|
36762
|
+
:param private_ip_addresses: The private IPv4 addresses to assign to the network interface. You can specify a primary private IP address by setting the value of the ``Primary`` property to ``true`` in the ``PrivateIpAddressSpecification`` property. If you want EC2 to automatically assign private IP addresses, use the ``SecondaryPrivateIpAddressCount`` property and do not specify this property. When creating a network interface, you can't specify private IPv4 addresses if you've specified one of the following: a count of private IPv4 addresses, specific IPv4 prefixes, or a count of IPv4 prefixes.
|
|
36703
36763
|
:param secondary_private_ip_address_count: The number of secondary private IPv4 addresses to assign to a network interface. When you specify a number of secondary IPv4 addresses, Amazon EC2 selects these IP addresses within the subnet's IPv4 CIDR range. You can't specify this option and specify more than one private IP address using ``privateIpAddresses`` . When creating a Network Interface, you can't specify a count of private IPv4 addresses if you've specified one of the following: specific private IPv4 addresses, specific IPv4 prefixes, or a count of IPv4 prefixes.
|
|
36704
36764
|
:param source_dest_check: Enable or disable source/destination checks, which ensure that the instance is either the source or the destination of any traffic that it receives. If the value is ``true`` , source/destination checks are enabled; otherwise, they are disabled. The default value is ``true`` . You must disable source/destination checks if the instance runs services such as network address translation, routing, or firewalls.
|
|
36705
|
-
:param tags:
|
|
36765
|
+
:param tags: The tags to apply to the network interface.
|
|
36706
36766
|
'''
|
|
36707
36767
|
if __debug__:
|
|
36708
36768
|
type_hints = typing.get_type_hints(_typecheckingstub__8393da3cca9727d94c340192bc7d8b11bde1fb62e8d43771091b9a3e120a301a)
|
|
@@ -36774,8 +36834,6 @@ class CfnNetworkInterface(
|
|
|
36774
36834
|
def attr_primary_ipv6_address(self) -> builtins.str:
|
|
36775
36835
|
'''The primary IPv6 address of the network interface.
|
|
36776
36836
|
|
|
36777
|
-
When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached.
|
|
36778
|
-
|
|
36779
36837
|
:cloudformationAttribute: PrimaryIpv6Address
|
|
36780
36838
|
'''
|
|
36781
36839
|
return typing.cast(builtins.str, jsii.get(self, "attrPrimaryIpv6Address"))
|
|
@@ -36802,6 +36860,15 @@ class CfnNetworkInterface(
|
|
|
36802
36860
|
'''
|
|
36803
36861
|
return typing.cast(typing.List[builtins.str], jsii.get(self, "attrSecondaryPrivateIpAddresses"))
|
|
36804
36862
|
|
|
36863
|
+
@builtins.property
|
|
36864
|
+
@jsii.member(jsii_name="attrVpcId")
|
|
36865
|
+
def attr_vpc_id(self) -> builtins.str:
|
|
36866
|
+
'''The ID of the VPC.
|
|
36867
|
+
|
|
36868
|
+
:cloudformationAttribute: VpcId
|
|
36869
|
+
'''
|
|
36870
|
+
return typing.cast(builtins.str, jsii.get(self, "attrVpcId"))
|
|
36871
|
+
|
|
36805
36872
|
@builtins.property
|
|
36806
36873
|
@jsii.member(jsii_name="cfnProperties")
|
|
36807
36874
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -36878,7 +36945,7 @@ class CfnNetworkInterface(
|
|
|
36878
36945
|
@builtins.property
|
|
36879
36946
|
@jsii.member(jsii_name="groupSet")
|
|
36880
36947
|
def group_set(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
36881
|
-
'''The security
|
|
36948
|
+
'''The IDs of the security groups associated with this network interface.'''
|
|
36882
36949
|
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "groupSet"))
|
|
36883
36950
|
|
|
36884
36951
|
@group_set.setter
|
|
@@ -36935,7 +37002,7 @@ class CfnNetworkInterface(
|
|
|
36935
37002
|
@builtins.property
|
|
36936
37003
|
@jsii.member(jsii_name="ipv6AddressCount")
|
|
36937
37004
|
def ipv6_address_count(self) -> typing.Optional[jsii.Number]:
|
|
36938
|
-
'''The number of IPv6 addresses to assign to
|
|
37005
|
+
'''The number of IPv6 addresses to assign to the network interface.'''
|
|
36939
37006
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "ipv6AddressCount"))
|
|
36940
37007
|
|
|
36941
37008
|
@ipv6_address_count.setter
|
|
@@ -36950,7 +37017,7 @@ class CfnNetworkInterface(
|
|
|
36950
37017
|
def ipv6_addresses(
|
|
36951
37018
|
self,
|
|
36952
37019
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnNetworkInterface.InstanceIpv6AddressProperty"]]]]:
|
|
36953
|
-
'''
|
|
37020
|
+
'''The IPv6 addresses from the IPv6 CIDR block range of your subnet to assign to the network interface.'''
|
|
36954
37021
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnNetworkInterface.InstanceIpv6AddressProperty"]]]], jsii.get(self, "ipv6Addresses"))
|
|
36955
37022
|
|
|
36956
37023
|
@ipv6_addresses.setter
|
|
@@ -36997,7 +37064,7 @@ class CfnNetworkInterface(
|
|
|
36997
37064
|
@builtins.property
|
|
36998
37065
|
@jsii.member(jsii_name="privateIpAddress")
|
|
36999
37066
|
def private_ip_address(self) -> typing.Optional[builtins.str]:
|
|
37000
|
-
'''
|
|
37067
|
+
'''The private IPv4 address to assign to the network interface as the primary private IP address.'''
|
|
37001
37068
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "privateIpAddress"))
|
|
37002
37069
|
|
|
37003
37070
|
@private_ip_address.setter
|
|
@@ -37012,7 +37079,7 @@ class CfnNetworkInterface(
|
|
|
37012
37079
|
def private_ip_addresses(
|
|
37013
37080
|
self,
|
|
37014
37081
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnNetworkInterface.PrivateIpAddressSpecificationProperty"]]]]:
|
|
37015
|
-
'''
|
|
37082
|
+
'''The private IPv4 addresses to assign to the network interface.'''
|
|
37016
37083
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnNetworkInterface.PrivateIpAddressSpecificationProperty"]]]], jsii.get(self, "privateIpAddresses"))
|
|
37017
37084
|
|
|
37018
37085
|
@private_ip_addresses.setter
|
|
@@ -37062,7 +37129,7 @@ class CfnNetworkInterface(
|
|
|
37062
37129
|
@builtins.property
|
|
37063
37130
|
@jsii.member(jsii_name="tagsRaw")
|
|
37064
37131
|
def tags_raw(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
37065
|
-
'''
|
|
37132
|
+
'''The tags to apply to the network interface.'''
|
|
37066
37133
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tagsRaw"))
|
|
37067
37134
|
|
|
37068
37135
|
@tags_raw.setter
|
|
@@ -38157,19 +38224,19 @@ class CfnNetworkInterfaceProps:
|
|
|
38157
38224
|
:param connection_tracking_specification: A connection tracking specification for the network interface.
|
|
38158
38225
|
:param description: A description for the network interface.
|
|
38159
38226
|
:param enable_primary_ipv6: If you’re modifying a network interface in a dual-stack or IPv6-only subnet, you have the option to assign a primary IPv6 IP address. A primary IPv6 address is an IPv6 GUA address associated with an ENI that you have enabled to use a primary IPv6 address. Use this option if the instance that this ENI will be attached to relies on its IPv6 address not changing. AWS will automatically assign an IPv6 address associated with the ENI attached to your instance to be the primary IPv6 address. Once you enable an IPv6 GUA address to be a primary IPv6, you cannot disable it. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. If you have multiple IPv6 addresses associated with an ENI attached to your instance and you enable a primary IPv6 address, the first IPv6 GUA address associated with the ENI becomes the primary IPv6 address.
|
|
38160
|
-
:param group_set: The security
|
|
38227
|
+
:param group_set: The IDs of the security groups associated with this network interface.
|
|
38161
38228
|
:param interface_type: The type of network interface. The default is ``interface`` . The supported values are ``efa`` and ``trunk`` .
|
|
38162
38229
|
:param ipv4_prefix_count: The number of IPv4 prefixes to be automatically assigned to the network interface. When creating a network interface, you can't specify a count of IPv4 prefixes if you've specified one of the following: specific IPv4 prefixes, specific private IPv4 addresses, or a count of private IPv4 addresses.
|
|
38163
38230
|
:param ipv4_prefixes: The IPv4 delegated prefixes that are assigned to the network interface. When creating a network interface, you can't specify IPv4 prefixes if you've specified one of the following: a count of IPv4 prefixes, specific private IPv4 addresses, or a count of private IPv4 addresses.
|
|
38164
|
-
:param ipv6_address_count: The number of IPv6 addresses to assign to
|
|
38165
|
-
:param ipv6_addresses:
|
|
38231
|
+
:param ipv6_address_count: The number of IPv6 addresses to assign to the network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range. To specify specific IPv6 addresses, use the ``Ipv6Addresses`` property and don't specify this property. When creating a network interface, you can't specify a count of IPv6 addresses if you've specified one of the following: specific IPv6 addresses, specific IPv6 prefixes, or a count of IPv6 prefixes.
|
|
38232
|
+
:param ipv6_addresses: The IPv6 addresses from the IPv6 CIDR block range of your subnet to assign to the network interface. If you're specifying a number of IPv6 addresses, use the ``Ipv6AddressCount`` property and don't specify this property. When creating a network interface, you can't specify IPv6 addresses if you've specified one of the following: a count of IPv6 addresses, specific IPv6 prefixes, or a count of IPv6 prefixes.
|
|
38166
38233
|
:param ipv6_prefix_count: The number of IPv6 prefixes to be automatically assigned to the network interface. When creating a network interface, you can't specify a count of IPv6 prefixes if you've specified one of the following: specific IPv6 prefixes, specific IPv6 addresses, or a count of IPv6 addresses.
|
|
38167
38234
|
:param ipv6_prefixes: The IPv6 delegated prefixes that are assigned to the network interface. When creating a network interface, you can't specify IPv6 prefixes if you've specified one of the following: a count of IPv6 prefixes, specific IPv6 addresses, or a count of IPv6 addresses.
|
|
38168
|
-
:param private_ip_address:
|
|
38169
|
-
:param private_ip_addresses:
|
|
38235
|
+
:param private_ip_address: The private IPv4 address to assign to the network interface as the primary private IP address. If you want to specify multiple private IP addresses, use the ``PrivateIpAddresses`` property.
|
|
38236
|
+
:param private_ip_addresses: The private IPv4 addresses to assign to the network interface. You can specify a primary private IP address by setting the value of the ``Primary`` property to ``true`` in the ``PrivateIpAddressSpecification`` property. If you want EC2 to automatically assign private IP addresses, use the ``SecondaryPrivateIpAddressCount`` property and do not specify this property. When creating a network interface, you can't specify private IPv4 addresses if you've specified one of the following: a count of private IPv4 addresses, specific IPv4 prefixes, or a count of IPv4 prefixes.
|
|
38170
38237
|
:param secondary_private_ip_address_count: The number of secondary private IPv4 addresses to assign to a network interface. When you specify a number of secondary IPv4 addresses, Amazon EC2 selects these IP addresses within the subnet's IPv4 CIDR range. You can't specify this option and specify more than one private IP address using ``privateIpAddresses`` . When creating a Network Interface, you can't specify a count of private IPv4 addresses if you've specified one of the following: specific private IPv4 addresses, specific IPv4 prefixes, or a count of IPv4 prefixes.
|
|
38171
38238
|
:param source_dest_check: Enable or disable source/destination checks, which ensure that the instance is either the source or the destination of any traffic that it receives. If the value is ``true`` , source/destination checks are enabled; otherwise, they are disabled. The default value is ``true`` . You must disable source/destination checks if the instance runs services such as network address translation, routing, or firewalls.
|
|
38172
|
-
:param tags:
|
|
38239
|
+
:param tags: The tags to apply to the network interface.
|
|
38173
38240
|
|
|
38174
38241
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterface.html
|
|
38175
38242
|
:exampleMetadata: fixture=_generated
|
|
@@ -38318,7 +38385,7 @@ class CfnNetworkInterfaceProps:
|
|
|
38318
38385
|
|
|
38319
38386
|
@builtins.property
|
|
38320
38387
|
def group_set(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
38321
|
-
'''The security
|
|
38388
|
+
'''The IDs of the security groups associated with this network interface.
|
|
38322
38389
|
|
|
38323
38390
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterface.html#cfn-ec2-networkinterface-groupset
|
|
38324
38391
|
'''
|
|
@@ -38362,7 +38429,7 @@ class CfnNetworkInterfaceProps:
|
|
|
38362
38429
|
|
|
38363
38430
|
@builtins.property
|
|
38364
38431
|
def ipv6_address_count(self) -> typing.Optional[jsii.Number]:
|
|
38365
|
-
'''The number of IPv6 addresses to assign to
|
|
38432
|
+
'''The number of IPv6 addresses to assign to the network interface.
|
|
38366
38433
|
|
|
38367
38434
|
Amazon EC2 automatically selects the IPv6 addresses from the subnet range. To specify specific IPv6 addresses, use the ``Ipv6Addresses`` property and don't specify this property.
|
|
38368
38435
|
|
|
@@ -38377,7 +38444,7 @@ class CfnNetworkInterfaceProps:
|
|
|
38377
38444
|
def ipv6_addresses(
|
|
38378
38445
|
self,
|
|
38379
38446
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnNetworkInterface.InstanceIpv6AddressProperty]]]]:
|
|
38380
|
-
'''
|
|
38447
|
+
'''The IPv6 addresses from the IPv6 CIDR block range of your subnet to assign to the network interface.
|
|
38381
38448
|
|
|
38382
38449
|
If you're specifying a number of IPv6 addresses, use the ``Ipv6AddressCount`` property and don't specify this property.
|
|
38383
38450
|
|
|
@@ -38414,9 +38481,9 @@ class CfnNetworkInterfaceProps:
|
|
|
38414
38481
|
|
|
38415
38482
|
@builtins.property
|
|
38416
38483
|
def private_ip_address(self) -> typing.Optional[builtins.str]:
|
|
38417
|
-
'''
|
|
38484
|
+
'''The private IPv4 address to assign to the network interface as the primary private IP address.
|
|
38418
38485
|
|
|
38419
|
-
If you want to specify multiple private IP
|
|
38486
|
+
If you want to specify multiple private IP addresses, use the ``PrivateIpAddresses`` property.
|
|
38420
38487
|
|
|
38421
38488
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterface.html#cfn-ec2-networkinterface-privateipaddress
|
|
38422
38489
|
'''
|
|
@@ -38427,7 +38494,7 @@ class CfnNetworkInterfaceProps:
|
|
|
38427
38494
|
def private_ip_addresses(
|
|
38428
38495
|
self,
|
|
38429
38496
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnNetworkInterface.PrivateIpAddressSpecificationProperty]]]]:
|
|
38430
|
-
'''
|
|
38497
|
+
'''The private IPv4 addresses to assign to the network interface.
|
|
38431
38498
|
|
|
38432
38499
|
You can specify a primary private IP address by setting the value of the ``Primary`` property to ``true`` in the ``PrivateIpAddressSpecification`` property. If you want EC2 to automatically assign private IP addresses, use the ``SecondaryPrivateIpAddressCount`` property and do not specify this property.
|
|
38433
38500
|
|
|
@@ -38466,7 +38533,7 @@ class CfnNetworkInterfaceProps:
|
|
|
38466
38533
|
|
|
38467
38534
|
@builtins.property
|
|
38468
38535
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
38469
|
-
'''
|
|
38536
|
+
'''The tags to apply to the network interface.
|
|
38470
38537
|
|
|
38471
38538
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterface.html#cfn-ec2-networkinterface-tags
|
|
38472
38539
|
'''
|
|
@@ -40613,18 +40680,18 @@ class CfnSecurityGroup(
|
|
|
40613
40680
|
|
|
40614
40681
|
An outbound rule permits instances to send traffic to the specified IPv4 or IPv6 address range, the IP address ranges that are specified by a prefix list, or the instances that are associated with a destination security group. For more information, see `Security group rules <https://docs.aws.amazon.com/vpc/latest/userguide/security-group-rules.html>`_ .
|
|
40615
40682
|
|
|
40616
|
-
You must specify exactly one of the following destinations: an IPv4
|
|
40683
|
+
You must specify exactly one of the following destinations: an IPv4 address range, an IPv6 address range, a prefix list, or a security group.
|
|
40617
40684
|
|
|
40618
40685
|
You must specify a protocol for each rule (for example, TCP). If the protocol is TCP or UDP, you must also specify a port or port range. If the protocol is ICMP or ICMPv6, you must also specify the ICMP/ICMPv6 type and code.
|
|
40619
40686
|
|
|
40620
40687
|
Rule changes are propagated to instances associated with the security group as quickly as possible. However, a small delay might occur.
|
|
40621
40688
|
|
|
40622
40689
|
:param ip_protocol: The IP protocol name ( ``tcp`` , ``udp`` , ``icmp`` , ``icmpv6`` ) or number (see `Protocol Numbers <https://docs.aws.amazon.com/http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml>`_ ). Use ``-1`` to specify all protocols. When authorizing security group rules, specifying ``-1`` or a protocol number other than ``tcp`` , ``udp`` , ``icmp`` , or ``icmpv6`` allows traffic on all ports, regardless of any port range you specify. For ``tcp`` , ``udp`` , and ``icmp`` , you must specify a port range. For ``icmpv6`` , the port range is optional; if you omit the port range, traffic for all types and codes is allowed.
|
|
40623
|
-
:param cidr_ip: The IPv4 address range, in CIDR format. You must specify
|
|
40624
|
-
:param cidr_ipv6: The IPv6 address range, in CIDR format. You must specify
|
|
40690
|
+
:param cidr_ip: The IPv4 address range, in CIDR format. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` . For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
40691
|
+
:param cidr_ipv6: The IPv6 address range, in CIDR format. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` . For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
40625
40692
|
:param description: A description for the security group rule. Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=;{}!$*
|
|
40626
|
-
:param destination_prefix_list_id: The prefix list IDs for the destination AWS service. This is the AWS service that you want to access through a VPC endpoint from instances associated with the security group. You must specify
|
|
40627
|
-
:param destination_security_group_id: The ID of the destination VPC security group. You must specify
|
|
40693
|
+
:param destination_prefix_list_id: The prefix list IDs for the destination AWS service. This is the AWS service that you want to access through a VPC endpoint from instances associated with the security group. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` .
|
|
40694
|
+
:param destination_security_group_id: The ID of the destination VPC security group. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` .
|
|
40628
40695
|
:param from_port: If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP or ICMPv6, this is the ICMP type or -1 (all ICMP types).
|
|
40629
40696
|
:param source_security_group_id:
|
|
40630
40697
|
:param to_port: If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP or ICMPv6, this is the ICMP code or -1 (all ICMP codes). If the start port is -1 (all ICMP types), then the end port must be -1 (all ICMP codes).
|
|
@@ -40699,7 +40766,7 @@ class CfnSecurityGroup(
|
|
|
40699
40766
|
def cidr_ip(self) -> typing.Optional[builtins.str]:
|
|
40700
40767
|
'''The IPv4 address range, in CIDR format.
|
|
40701
40768
|
|
|
40702
|
-
You must specify
|
|
40769
|
+
You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` .
|
|
40703
40770
|
|
|
40704
40771
|
For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
40705
40772
|
|
|
@@ -40712,7 +40779,7 @@ class CfnSecurityGroup(
|
|
|
40712
40779
|
def cidr_ipv6(self) -> typing.Optional[builtins.str]:
|
|
40713
40780
|
'''The IPv6 address range, in CIDR format.
|
|
40714
40781
|
|
|
40715
|
-
You must specify
|
|
40782
|
+
You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` .
|
|
40716
40783
|
|
|
40717
40784
|
For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
40718
40785
|
|
|
@@ -40738,7 +40805,7 @@ class CfnSecurityGroup(
|
|
|
40738
40805
|
|
|
40739
40806
|
This is the AWS service that you want to access through a VPC endpoint from instances associated with the security group.
|
|
40740
40807
|
|
|
40741
|
-
You must specify
|
|
40808
|
+
You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` .
|
|
40742
40809
|
|
|
40743
40810
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-securitygroup-egress.html#cfn-ec2-securitygroup-egress-destinationprefixlistid
|
|
40744
40811
|
'''
|
|
@@ -40749,7 +40816,7 @@ class CfnSecurityGroup(
|
|
|
40749
40816
|
def destination_security_group_id(self) -> typing.Optional[builtins.str]:
|
|
40750
40817
|
'''The ID of the destination VPC security group.
|
|
40751
40818
|
|
|
40752
|
-
You must specify
|
|
40819
|
+
You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` .
|
|
40753
40820
|
|
|
40754
40821
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-securitygroup-egress.html#cfn-ec2-securitygroup-egress-destinationsecuritygroupid
|
|
40755
40822
|
'''
|
|
@@ -40832,15 +40899,15 @@ class CfnSecurityGroup(
|
|
|
40832
40899
|
|
|
40833
40900
|
An inbound rule permits instances to receive traffic from the specified IPv4 or IPv6 address range, the IP address ranges that are specified by a prefix list, or the instances that are associated with a source security group. For more information, see `Security group rules <https://docs.aws.amazon.com/vpc/latest/userguide/security-group-rules.html>`_ .
|
|
40834
40901
|
|
|
40835
|
-
You must specify exactly one of the following sources: an IPv4
|
|
40902
|
+
You must specify exactly one of the following sources: an IPv4 address range, an IPv6 address range, a prefix list, or a security group.
|
|
40836
40903
|
|
|
40837
40904
|
You must specify a protocol for each rule (for example, TCP). If the protocol is TCP or UDP, you must also specify a port or port range. If the protocol is ICMP or ICMPv6, you must also specify the ICMP/ICMPv6 type and code.
|
|
40838
40905
|
|
|
40839
40906
|
Rule changes are propagated to instances associated with the security group as quickly as possible. However, a small delay might occur.
|
|
40840
40907
|
|
|
40841
40908
|
:param ip_protocol: The IP protocol name ( ``tcp`` , ``udp`` , ``icmp`` , ``icmpv6`` ) or number (see `Protocol Numbers <https://docs.aws.amazon.com/http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml>`_ ). Use ``-1`` to specify all protocols. When authorizing security group rules, specifying ``-1`` or a protocol number other than ``tcp`` , ``udp`` , ``icmp`` , or ``icmpv6`` allows traffic on all ports, regardless of any port range you specify. For ``tcp`` , ``udp`` , and ``icmp`` , you must specify a port range. For ``icmpv6`` , the port range is optional; if you omit the port range, traffic for all types and codes is allowed.
|
|
40842
|
-
:param cidr_ip: The IPv4 address range, in CIDR format. You must specify
|
|
40843
|
-
:param cidr_ipv6: The IPv6 address range, in CIDR format. You must specify
|
|
40909
|
+
:param cidr_ip: The IPv4 address range, in CIDR format. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``SourcePrefixListId`` , or ``SourceSecurityGroupId`` . For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
40910
|
+
:param cidr_ipv6: The IPv6 address range, in CIDR format. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``SourcePrefixListId`` , or ``SourceSecurityGroupId`` . For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
40844
40911
|
:param description: Updates the description of an ingress (inbound) security group rule. You can replace an existing description, or add a description to a rule that did not have one previously. Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=;{}!$*
|
|
40845
40912
|
:param from_port: If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP or ICMPv6, this is the ICMP type or -1 (all ICMP types).
|
|
40846
40913
|
:param source_prefix_list_id: The ID of a prefix list.
|
|
@@ -40923,7 +40990,7 @@ class CfnSecurityGroup(
|
|
|
40923
40990
|
def cidr_ip(self) -> typing.Optional[builtins.str]:
|
|
40924
40991
|
'''The IPv4 address range, in CIDR format.
|
|
40925
40992
|
|
|
40926
|
-
You must specify
|
|
40993
|
+
You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``SourcePrefixListId`` , or ``SourceSecurityGroupId`` .
|
|
40927
40994
|
|
|
40928
40995
|
For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
40929
40996
|
|
|
@@ -40936,7 +41003,7 @@ class CfnSecurityGroup(
|
|
|
40936
41003
|
def cidr_ipv6(self) -> typing.Optional[builtins.str]:
|
|
40937
41004
|
'''The IPv6 address range, in CIDR format.
|
|
40938
41005
|
|
|
40939
|
-
You must specify
|
|
41006
|
+
You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``SourcePrefixListId`` , or ``SourceSecurityGroupId`` .
|
|
40940
41007
|
|
|
40941
41008
|
For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
40942
41009
|
|
|
@@ -41046,7 +41113,7 @@ class CfnSecurityGroupEgress(
|
|
|
41046
41113
|
|
|
41047
41114
|
An outbound rule permits instances to send traffic to the specified IPv4 or IPv6 address range, the IP addresses that are specified by a prefix list, or the instances that are associated with a destination security group. For more information, see `Security group rules <https://docs.aws.amazon.com/vpc/latest/userguide/security-group-rules.html>`_ .
|
|
41048
41115
|
|
|
41049
|
-
You must specify exactly one of the following destinations: an IPv4
|
|
41116
|
+
You must specify exactly one of the following destinations: an IPv4 address range, an IPv6 address range, a prefix list, or a security group.
|
|
41050
41117
|
|
|
41051
41118
|
You must specify a protocol for each rule (for example, TCP). If the protocol is TCP or UDP, you must also specify a port or port range. If the protocol is ICMP or ICMPv6, you must also specify the ICMP/ICMPv6 type and code. To specify all types or all codes, use -1.
|
|
41052
41119
|
|
|
@@ -41097,11 +41164,11 @@ class CfnSecurityGroupEgress(
|
|
|
41097
41164
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
41098
41165
|
:param group_id: The ID of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.
|
|
41099
41166
|
:param ip_protocol: The IP protocol name ( ``tcp`` , ``udp`` , ``icmp`` , ``icmpv6`` ) or number (see `Protocol Numbers <https://docs.aws.amazon.com/http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml>`_ ). Use ``-1`` to specify all protocols. When authorizing security group rules, specifying ``-1`` or a protocol number other than ``tcp`` , ``udp`` , ``icmp`` , or ``icmpv6`` allows traffic on all ports, regardless of any port range you specify. For ``tcp`` , ``udp`` , and ``icmp`` , you must specify a port range. For ``icmpv6`` , the port range is optional; if you omit the port range, traffic for all types and codes is allowed.
|
|
41100
|
-
:param cidr_ip: The IPv4 address range, in CIDR format. You must specify
|
|
41101
|
-
:param cidr_ipv6: The IPv6 address range, in CIDR format. You must specify
|
|
41167
|
+
:param cidr_ip: The IPv4 address range, in CIDR format. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` . For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
41168
|
+
:param cidr_ipv6: The IPv6 address range, in CIDR format. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` . For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
41102
41169
|
:param description: The description of an egress (outbound) security group rule. Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=;{}!$*
|
|
41103
|
-
:param destination_prefix_list_id: The prefix list IDs for an AWS service. This is the AWS service
|
|
41104
|
-
:param destination_security_group_id: The ID of the security group. You must specify
|
|
41170
|
+
:param destination_prefix_list_id: The prefix list IDs for an AWS service. This is the AWS service to access through a VPC endpoint from instances associated with the security group. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` .
|
|
41171
|
+
:param destination_security_group_id: The ID of the security group. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` .
|
|
41105
41172
|
:param from_port: If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP or ICMPv6, this is the ICMP type or -1 (all ICMP types).
|
|
41106
41173
|
:param to_port: If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP or ICMPv6, this is the ICMP code or -1 (all ICMP codes). If the start port is -1 (all ICMP types), then the end port must be -1 (all ICMP codes).
|
|
41107
41174
|
'''
|
|
@@ -41320,11 +41387,11 @@ class CfnSecurityGroupEgressProps:
|
|
|
41320
41387
|
|
|
41321
41388
|
:param group_id: The ID of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.
|
|
41322
41389
|
:param ip_protocol: The IP protocol name ( ``tcp`` , ``udp`` , ``icmp`` , ``icmpv6`` ) or number (see `Protocol Numbers <https://docs.aws.amazon.com/http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml>`_ ). Use ``-1`` to specify all protocols. When authorizing security group rules, specifying ``-1`` or a protocol number other than ``tcp`` , ``udp`` , ``icmp`` , or ``icmpv6`` allows traffic on all ports, regardless of any port range you specify. For ``tcp`` , ``udp`` , and ``icmp`` , you must specify a port range. For ``icmpv6`` , the port range is optional; if you omit the port range, traffic for all types and codes is allowed.
|
|
41323
|
-
:param cidr_ip: The IPv4 address range, in CIDR format. You must specify
|
|
41324
|
-
:param cidr_ipv6: The IPv6 address range, in CIDR format. You must specify
|
|
41390
|
+
:param cidr_ip: The IPv4 address range, in CIDR format. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` . For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
41391
|
+
:param cidr_ipv6: The IPv6 address range, in CIDR format. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` . For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
41325
41392
|
:param description: The description of an egress (outbound) security group rule. Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=;{}!$*
|
|
41326
|
-
:param destination_prefix_list_id: The prefix list IDs for an AWS service. This is the AWS service
|
|
41327
|
-
:param destination_security_group_id: The ID of the security group. You must specify
|
|
41393
|
+
:param destination_prefix_list_id: The prefix list IDs for an AWS service. This is the AWS service to access through a VPC endpoint from instances associated with the security group. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` .
|
|
41394
|
+
:param destination_security_group_id: The ID of the security group. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` .
|
|
41328
41395
|
:param from_port: If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP or ICMPv6, this is the ICMP type or -1 (all ICMP types).
|
|
41329
41396
|
:param to_port: If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP or ICMPv6, this is the ICMP code or -1 (all ICMP codes). If the start port is -1 (all ICMP types), then the end port must be -1 (all ICMP codes).
|
|
41330
41397
|
|
|
@@ -41409,7 +41476,7 @@ class CfnSecurityGroupEgressProps:
|
|
|
41409
41476
|
def cidr_ip(self) -> typing.Optional[builtins.str]:
|
|
41410
41477
|
'''The IPv4 address range, in CIDR format.
|
|
41411
41478
|
|
|
41412
|
-
You must specify
|
|
41479
|
+
You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` .
|
|
41413
41480
|
|
|
41414
41481
|
For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
41415
41482
|
|
|
@@ -41422,7 +41489,7 @@ class CfnSecurityGroupEgressProps:
|
|
|
41422
41489
|
def cidr_ipv6(self) -> typing.Optional[builtins.str]:
|
|
41423
41490
|
'''The IPv6 address range, in CIDR format.
|
|
41424
41491
|
|
|
41425
|
-
You must specify
|
|
41492
|
+
You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` .
|
|
41426
41493
|
|
|
41427
41494
|
For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
41428
41495
|
|
|
@@ -41446,9 +41513,9 @@ class CfnSecurityGroupEgressProps:
|
|
|
41446
41513
|
def destination_prefix_list_id(self) -> typing.Optional[builtins.str]:
|
|
41447
41514
|
'''The prefix list IDs for an AWS service.
|
|
41448
41515
|
|
|
41449
|
-
This is the AWS service
|
|
41516
|
+
This is the AWS service to access through a VPC endpoint from instances associated with the security group.
|
|
41450
41517
|
|
|
41451
|
-
You must specify
|
|
41518
|
+
You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` .
|
|
41452
41519
|
|
|
41453
41520
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-securitygroupegress.html#cfn-ec2-securitygroupegress-destinationprefixlistid
|
|
41454
41521
|
'''
|
|
@@ -41459,7 +41526,7 @@ class CfnSecurityGroupEgressProps:
|
|
|
41459
41526
|
def destination_security_group_id(self) -> typing.Optional[builtins.str]:
|
|
41460
41527
|
'''The ID of the security group.
|
|
41461
41528
|
|
|
41462
|
-
You must specify
|
|
41529
|
+
You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``DestinationPrefixListId`` , or ``DestinationSecurityGroupId`` .
|
|
41463
41530
|
|
|
41464
41531
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-securitygroupegress.html#cfn-ec2-securitygroupegress-destinationsecuritygroupid
|
|
41465
41532
|
'''
|
|
@@ -41510,7 +41577,7 @@ class CfnSecurityGroupIngress(
|
|
|
41510
41577
|
|
|
41511
41578
|
An inbound rule permits instances to receive traffic from the specified IPv4 or IPv6 address range, the IP addresses that are specified by a prefix list, or the instances that are associated with a source security group. For more information, see `Security group rules <https://docs.aws.amazon.com/vpc/latest/userguide/security-group-rules.html>`_ .
|
|
41512
41579
|
|
|
41513
|
-
You must specify
|
|
41580
|
+
You must specify exactly one of the following sources: an IPv4 address range, an IPv6 address range, a prefix list, or a security group.
|
|
41514
41581
|
|
|
41515
41582
|
You must specify a protocol for each rule (for example, TCP). If the protocol is TCP or UDP, you must also specify a port or port range. If the protocol is ICMP or ICMPv6, you must also specify the ICMP/ICMPv6 type and code.
|
|
41516
41583
|
|
|
@@ -41566,8 +41633,8 @@ class CfnSecurityGroupIngress(
|
|
|
41566
41633
|
:param scope: Scope in which this resource is defined.
|
|
41567
41634
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
41568
41635
|
:param ip_protocol: The IP protocol name ( ``tcp`` , ``udp`` , ``icmp`` , ``icmpv6`` ) or number (see `Protocol Numbers <https://docs.aws.amazon.com/http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml>`_ ). Use ``-1`` to specify all protocols. When authorizing security group rules, specifying ``-1`` or a protocol number other than ``tcp`` , ``udp`` , ``icmp`` , or ``icmpv6`` allows traffic on all ports, regardless of any port range you specify. For ``tcp`` , ``udp`` , and ``icmp`` , you must specify a port range. For ``icmpv6`` , the port range is optional; if you omit the port range, traffic for all types and codes is allowed.
|
|
41569
|
-
:param cidr_ip: The IPv4 address range, in CIDR format. You must specify
|
|
41570
|
-
:param cidr_ipv6: The IPv6 address range, in CIDR format. You must specify
|
|
41636
|
+
:param cidr_ip: The IPv4 address range, in CIDR format. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``SourcePrefixListId`` , or ``SourceSecurityGroupId`` . For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
41637
|
+
:param cidr_ipv6: The IPv6 address range, in CIDR format. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``SourcePrefixListId`` , or ``SourceSecurityGroupId`` . For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
41571
41638
|
:param description: Updates the description of an ingress (inbound) security group rule. You can replace an existing description, or add a description to a rule that did not have one previously. Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=;{}!$*
|
|
41572
41639
|
:param from_port: The start of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 type number. A value of ``-1`` indicates all ICMP/ICMPv6 types. If you specify all ICMP/ICMPv6 types, you must specify all codes. Use this for ICMP and any protocol that uses ports.
|
|
41573
41640
|
:param group_id: The ID of the security group.
|
|
@@ -41841,8 +41908,8 @@ class CfnSecurityGroupIngressProps:
|
|
|
41841
41908
|
'''Properties for defining a ``CfnSecurityGroupIngress``.
|
|
41842
41909
|
|
|
41843
41910
|
:param ip_protocol: The IP protocol name ( ``tcp`` , ``udp`` , ``icmp`` , ``icmpv6`` ) or number (see `Protocol Numbers <https://docs.aws.amazon.com/http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml>`_ ). Use ``-1`` to specify all protocols. When authorizing security group rules, specifying ``-1`` or a protocol number other than ``tcp`` , ``udp`` , ``icmp`` , or ``icmpv6`` allows traffic on all ports, regardless of any port range you specify. For ``tcp`` , ``udp`` , and ``icmp`` , you must specify a port range. For ``icmpv6`` , the port range is optional; if you omit the port range, traffic for all types and codes is allowed.
|
|
41844
|
-
:param cidr_ip: The IPv4 address range, in CIDR format. You must specify
|
|
41845
|
-
:param cidr_ipv6: The IPv6 address range, in CIDR format. You must specify
|
|
41911
|
+
:param cidr_ip: The IPv4 address range, in CIDR format. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``SourcePrefixListId`` , or ``SourceSecurityGroupId`` . For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
41912
|
+
:param cidr_ipv6: The IPv6 address range, in CIDR format. You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``SourcePrefixListId`` , or ``SourceSecurityGroupId`` . For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
41846
41913
|
:param description: Updates the description of an ingress (inbound) security group rule. You can replace an existing description, or add a description to a rule that did not have one previously. Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=;{}!$*
|
|
41847
41914
|
:param from_port: The start of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 type number. A value of ``-1`` indicates all ICMP/ICMPv6 types. If you specify all ICMP/ICMPv6 types, you must specify all codes. Use this for ICMP and any protocol that uses ports.
|
|
41848
41915
|
:param group_id: The ID of the security group.
|
|
@@ -41935,7 +42002,7 @@ class CfnSecurityGroupIngressProps:
|
|
|
41935
42002
|
def cidr_ip(self) -> typing.Optional[builtins.str]:
|
|
41936
42003
|
'''The IPv4 address range, in CIDR format.
|
|
41937
42004
|
|
|
41938
|
-
You must specify
|
|
42005
|
+
You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``SourcePrefixListId`` , or ``SourceSecurityGroupId`` .
|
|
41939
42006
|
|
|
41940
42007
|
For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
41941
42008
|
|
|
@@ -41948,7 +42015,7 @@ class CfnSecurityGroupIngressProps:
|
|
|
41948
42015
|
def cidr_ipv6(self) -> typing.Optional[builtins.str]:
|
|
41949
42016
|
'''The IPv6 address range, in CIDR format.
|
|
41950
42017
|
|
|
41951
|
-
You must specify
|
|
42018
|
+
You must specify exactly one of the following: ``CidrIp`` , ``CidrIpv6`` , ``SourcePrefixListId`` , or ``SourceSecurityGroupId`` .
|
|
41952
42019
|
|
|
41953
42020
|
For examples of rules that you can add to security groups for specific access scenarios, see `Security group rules for different use cases <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html>`_ in the *Amazon EC2 User Guide* .
|
|
41954
42021
|
|
|
@@ -72137,6 +72204,8 @@ class InstanceClass(enum.Enum):
|
|
|
72137
72204
|
'''Memory optimized instances based on AMD EPYC, 5th generation.'''
|
|
72138
72205
|
MEMORY5_AMD_NVME_DRIVE = "MEMORY5_AMD_NVME_DRIVE"
|
|
72139
72206
|
'''Memory optimized instances based on AMD EPYC with local NVME drive, 5th generation.'''
|
|
72207
|
+
R5AD = "R5AD"
|
|
72208
|
+
'''Memory optimized instances based on AMD EPYC with local NVME drive, 5th generation.'''
|
|
72140
72209
|
HIGH_MEMORY_3TB_1 = "HIGH_MEMORY_3TB_1"
|
|
72141
72210
|
'''High memory instances (3TB) based on Intel Xeon Platinum 8176M (Skylake) processors, 1st generation.'''
|
|
72142
72211
|
U_3TB1 = "U_3TB1"
|
|
@@ -72161,8 +72230,6 @@ class InstanceClass(enum.Enum):
|
|
|
72161
72230
|
'''High memory instances (24TB) based on Intel Xeon Scalable (Cascade Lake) processors, 1st generation.'''
|
|
72162
72231
|
U_24TB1 = "U_24TB1"
|
|
72163
72232
|
'''High memory instances (24TB) based on Intel Xeon Scalable (Cascade Lake) processors, 1st generation.'''
|
|
72164
|
-
R5AD = "R5AD"
|
|
72165
|
-
'''Memory optimized instances based on AMD EPYC with local NVME drive, 5th generation.'''
|
|
72166
72233
|
MEMORY5_EBS_OPTIMIZED = "MEMORY5_EBS_OPTIMIZED"
|
|
72167
72234
|
'''Memory optimized instances that are also EBS-optimized, 5th generation.'''
|
|
72168
72235
|
R5B = "R5B"
|
|
@@ -72303,12 +72370,16 @@ class InstanceClass(enum.Enum):
|
|
|
72303
72370
|
'''Storage-optimized instances, 3rd generation.'''
|
|
72304
72371
|
STORAGE_COMPUTE_1 = "STORAGE_COMPUTE_1"
|
|
72305
72372
|
'''Storage/compute balanced instances, 1st generation.'''
|
|
72373
|
+
H1 = "H1"
|
|
72374
|
+
'''Storage/compute balanced instances, 1st generation.'''
|
|
72375
|
+
TRAINING_ACCELERATOR1 = "TRAINING_ACCELERATOR1"
|
|
72376
|
+
'''High performance computing powered by AWS Trainium.'''
|
|
72306
72377
|
TRN1 = "TRN1"
|
|
72307
72378
|
'''High performance computing powered by AWS Trainium.'''
|
|
72379
|
+
TRAINING_ACCELERATOR1_ENHANCED_NETWORK = "TRAINING_ACCELERATOR1_ENHANCED_NETWORK"
|
|
72380
|
+
'''Network-optimized high performance computing powered by AWS Trainium.'''
|
|
72308
72381
|
TRN1N = "TRN1N"
|
|
72309
|
-
'''
|
|
72310
|
-
H1 = "H1"
|
|
72311
|
-
'''Storage/compute balanced instances, 1st generation.'''
|
|
72382
|
+
'''Network-optimized high performance computing powered by AWS Trainium.'''
|
|
72312
72383
|
IO3 = "IO3"
|
|
72313
72384
|
'''I/O-optimized instances, 3rd generation.'''
|
|
72314
72385
|
I3 = "I3"
|
|
@@ -72356,7 +72427,7 @@ class InstanceClass(enum.Enum):
|
|
|
72356
72427
|
MEMORY_INTENSIVE_1_EXTENDED = "MEMORY_INTENSIVE_1_EXTENDED"
|
|
72357
72428
|
'''Memory-intensive instances, extended, 1st generation.'''
|
|
72358
72429
|
X1E = "X1E"
|
|
72359
|
-
'''Memory-intensive instances, 1st generation.'''
|
|
72430
|
+
'''Memory-intensive instances, extended, 1st generation.'''
|
|
72360
72431
|
MEMORY_INTENSIVE_2_GRAVITON2 = "MEMORY_INTENSIVE_2_GRAVITON2"
|
|
72361
72432
|
'''Memory-intensive instances, 2nd generation with Graviton2 processors.
|
|
72362
72433
|
|
|
@@ -72422,11 +72493,11 @@ class InstanceClass(enum.Enum):
|
|
|
72422
72493
|
P2 = "P2"
|
|
72423
72494
|
'''Parallel-processing optimized instances, 2nd generation.'''
|
|
72424
72495
|
PARALLEL3 = "PARALLEL3"
|
|
72425
|
-
'''Parallel-processing optimized instances,
|
|
72496
|
+
'''Parallel-processing optimized instances, 3rd generation.'''
|
|
72426
72497
|
P3 = "P3"
|
|
72427
72498
|
'''Parallel-processing optimized instances, 3rd generation.'''
|
|
72428
72499
|
PARALLEL3_NVME_DRIVE_HIGH_PERFORMANCE = "PARALLEL3_NVME_DRIVE_HIGH_PERFORMANCE"
|
|
72429
|
-
'''Parallel-processing optimized instances with local NVME drive for high performance computing,
|
|
72500
|
+
'''Parallel-processing optimized instances with local NVME drive for high performance computing, 3rd generation.'''
|
|
72430
72501
|
P3DN = "P3DN"
|
|
72431
72502
|
'''Parallel-processing optimized instances with local NVME drive for high performance computing, 3rd generation.'''
|
|
72432
72503
|
PARALLEL4_NVME_DRIVE_EXTENDED = "PARALLEL4_NVME_DRIVE_EXTENDED"
|
|
@@ -72557,6 +72628,10 @@ class InstanceClass(enum.Enum):
|
|
|
72557
72628
|
'''Deep learning instances powered by Gaudi accelerators from Habana Labs (an Intel company), 1st generation.'''
|
|
72558
72629
|
DL1 = "DL1"
|
|
72559
72630
|
'''Deep learning instances powered by Gaudi accelerators from Habana Labs (an Intel company), 1st generation.'''
|
|
72631
|
+
DEEP_LEARNING2_QUALCOMM = "DEEP_LEARNING2_QUALCOMM"
|
|
72632
|
+
'''Deep learning instances powered by Qualcomm AI 100 Standard accelerators, 2nd generation.'''
|
|
72633
|
+
DL2Q = "DL2Q"
|
|
72634
|
+
'''Deep learning instances powered by Qualcomm AI 100 Standard accelerators, 2nd generation.'''
|
|
72560
72635
|
|
|
72561
72636
|
|
|
72562
72637
|
@jsii.enum(jsii_type="aws-cdk-lib.aws_ec2.InstanceInitiatedShutdownBehavior")
|
|
@@ -73571,8 +73646,23 @@ class InterfaceVpcEndpointAwsService(
|
|
|
73571
73646
|
@jsii.python.classproperty
|
|
73572
73647
|
@jsii.member(jsii_name="APP_MESH")
|
|
73573
73648
|
def APP_MESH(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73649
|
+
'''
|
|
73650
|
+
:deprecated: - Use InterfaceVpcEndpointAwsService.APP_MESH_ENVOY_MANAGEMENT instead.
|
|
73651
|
+
|
|
73652
|
+
:stability: deprecated
|
|
73653
|
+
'''
|
|
73574
73654
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "APP_MESH"))
|
|
73575
73655
|
|
|
73656
|
+
@jsii.python.classproperty
|
|
73657
|
+
@jsii.member(jsii_name="APP_MESH_ENVOY_MANAGEMENT")
|
|
73658
|
+
def APP_MESH_ENVOY_MANAGEMENT(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73659
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "APP_MESH_ENVOY_MANAGEMENT"))
|
|
73660
|
+
|
|
73661
|
+
@jsii.python.classproperty
|
|
73662
|
+
@jsii.member(jsii_name="APP_MESH_OPS")
|
|
73663
|
+
def APP_MESH_OPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73664
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "APP_MESH_OPS"))
|
|
73665
|
+
|
|
73576
73666
|
@jsii.python.classproperty
|
|
73577
73667
|
@jsii.member(jsii_name="APP_RUNNER")
|
|
73578
73668
|
def APP_RUNNER(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -73638,6 +73728,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
73638
73728
|
def AUTOSCALING_PLANS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73639
73729
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "AUTOSCALING_PLANS"))
|
|
73640
73730
|
|
|
73731
|
+
@jsii.python.classproperty
|
|
73732
|
+
@jsii.member(jsii_name="B2B_DATA_INTERCHANGE")
|
|
73733
|
+
def B2_B_DATA_INTERCHANGE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73734
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "B2B_DATA_INTERCHANGE"))
|
|
73735
|
+
|
|
73641
73736
|
@jsii.python.classproperty
|
|
73642
73737
|
@jsii.member(jsii_name="BACKUP")
|
|
73643
73738
|
def BACKUP(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -73653,6 +73748,26 @@ class InterfaceVpcEndpointAwsService(
|
|
|
73653
73748
|
def BATCH(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73654
73749
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "BATCH"))
|
|
73655
73750
|
|
|
73751
|
+
@jsii.python.classproperty
|
|
73752
|
+
@jsii.member(jsii_name="BEDROCK")
|
|
73753
|
+
def BEDROCK(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73754
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "BEDROCK"))
|
|
73755
|
+
|
|
73756
|
+
@jsii.python.classproperty
|
|
73757
|
+
@jsii.member(jsii_name="BEDROCK_AGENT")
|
|
73758
|
+
def BEDROCK_AGENT(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73759
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "BEDROCK_AGENT"))
|
|
73760
|
+
|
|
73761
|
+
@jsii.python.classproperty
|
|
73762
|
+
@jsii.member(jsii_name="BEDROCK_AGENT_RUNTIME")
|
|
73763
|
+
def BEDROCK_AGENT_RUNTIME(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73764
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "BEDROCK_AGENT_RUNTIME"))
|
|
73765
|
+
|
|
73766
|
+
@jsii.python.classproperty
|
|
73767
|
+
@jsii.member(jsii_name="BEDROCK_RUNTIME")
|
|
73768
|
+
def BEDROCK_RUNTIME(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73769
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "BEDROCK_RUNTIME"))
|
|
73770
|
+
|
|
73656
73771
|
@jsii.python.classproperty
|
|
73657
73772
|
@jsii.member(jsii_name="BILLING_CONDUCTOR")
|
|
73658
73773
|
def BILLING_CONDUCTOR(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -73663,6 +73778,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
73663
73778
|
def BRAKET(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73664
73779
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "BRAKET"))
|
|
73665
73780
|
|
|
73781
|
+
@jsii.python.classproperty
|
|
73782
|
+
@jsii.member(jsii_name="CLEAN_ROOMS")
|
|
73783
|
+
def CLEAN_ROOMS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73784
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "CLEAN_ROOMS"))
|
|
73785
|
+
|
|
73666
73786
|
@jsii.python.classproperty
|
|
73667
73787
|
@jsii.member(jsii_name="CLOUD_CONTROL_API")
|
|
73668
73788
|
def CLOUD_CONTROL_API(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -73678,6 +73798,26 @@ class InterfaceVpcEndpointAwsService(
|
|
|
73678
73798
|
def CLOUD_DIRECTORY(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73679
73799
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "CLOUD_DIRECTORY"))
|
|
73680
73800
|
|
|
73801
|
+
@jsii.python.classproperty
|
|
73802
|
+
@jsii.member(jsii_name="CLOUD_MAP_DATA_SERVICE_DISCOVERY")
|
|
73803
|
+
def CLOUD_MAP_DATA_SERVICE_DISCOVERY(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73804
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "CLOUD_MAP_DATA_SERVICE_DISCOVERY"))
|
|
73805
|
+
|
|
73806
|
+
@jsii.python.classproperty
|
|
73807
|
+
@jsii.member(jsii_name="CLOUD_MAP_DATA_SERVICE_DISCOVERY_FIPS")
|
|
73808
|
+
def CLOUD_MAP_DATA_SERVICE_DISCOVERY_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73809
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "CLOUD_MAP_DATA_SERVICE_DISCOVERY_FIPS"))
|
|
73810
|
+
|
|
73811
|
+
@jsii.python.classproperty
|
|
73812
|
+
@jsii.member(jsii_name="CLOUD_MAP_SERVICE_DISCOVERY")
|
|
73813
|
+
def CLOUD_MAP_SERVICE_DISCOVERY(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73814
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "CLOUD_MAP_SERVICE_DISCOVERY"))
|
|
73815
|
+
|
|
73816
|
+
@jsii.python.classproperty
|
|
73817
|
+
@jsii.member(jsii_name="CLOUD_MAP_SERVICE_DISCOVERY_FIPS")
|
|
73818
|
+
def CLOUD_MAP_SERVICE_DISCOVERY_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73819
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "CLOUD_MAP_SERVICE_DISCOVERY_FIPS"))
|
|
73820
|
+
|
|
73681
73821
|
@jsii.python.classproperty
|
|
73682
73822
|
@jsii.member(jsii_name="CLOUDFORMATION")
|
|
73683
73823
|
def CLOUDFORMATION(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -73733,6 +73873,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
73733
73873
|
def CLOUDWATCH_MONITORING(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73734
73874
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "CLOUDWATCH_MONITORING"))
|
|
73735
73875
|
|
|
73876
|
+
@jsii.python.classproperty
|
|
73877
|
+
@jsii.member(jsii_name="CLOUDWATCH_NETWORK_MONITOR")
|
|
73878
|
+
def CLOUDWATCH_NETWORK_MONITOR(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73879
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "CLOUDWATCH_NETWORK_MONITOR"))
|
|
73880
|
+
|
|
73736
73881
|
@jsii.python.classproperty
|
|
73737
73882
|
@jsii.member(jsii_name="CLOUDWATCH_RUM")
|
|
73738
73883
|
def CLOUDWATCH_RUM(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -73768,6 +73913,16 @@ class InterfaceVpcEndpointAwsService(
|
|
|
73768
73913
|
def CODEBUILD_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73769
73914
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "CODEBUILD_FIPS"))
|
|
73770
73915
|
|
|
73916
|
+
@jsii.python.classproperty
|
|
73917
|
+
@jsii.member(jsii_name="CODECATALYST_GIT")
|
|
73918
|
+
def CODECATALYST_GIT(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73919
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "CODECATALYST_GIT"))
|
|
73920
|
+
|
|
73921
|
+
@jsii.python.classproperty
|
|
73922
|
+
@jsii.member(jsii_name="CODECATALYST_PACKAGES")
|
|
73923
|
+
def CODECATALYST_PACKAGES(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73924
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "CODECATALYST_PACKAGES"))
|
|
73925
|
+
|
|
73771
73926
|
@jsii.python.classproperty
|
|
73772
73927
|
@jsii.member(jsii_name="CODECOMMIT")
|
|
73773
73928
|
def CODECOMMIT(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -73818,6 +73973,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
73818
73973
|
def CODESTAR_CONNECTIONS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73819
73974
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "CODESTAR_CONNECTIONS"))
|
|
73820
73975
|
|
|
73976
|
+
@jsii.python.classproperty
|
|
73977
|
+
@jsii.member(jsii_name="CODEWHISPERER")
|
|
73978
|
+
def CODEWHISPERER(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73979
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "CODEWHISPERER"))
|
|
73980
|
+
|
|
73821
73981
|
@jsii.python.classproperty
|
|
73822
73982
|
@jsii.member(jsii_name="COMPREHEND")
|
|
73823
73983
|
def COMPREHEND(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -73883,11 +74043,21 @@ class InterfaceVpcEndpointAwsService(
|
|
|
73883
74043
|
def DATASYNC(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73884
74044
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "DATASYNC"))
|
|
73885
74045
|
|
|
74046
|
+
@jsii.python.classproperty
|
|
74047
|
+
@jsii.member(jsii_name="DATAZONE")
|
|
74048
|
+
def DATAZONE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74049
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "DATAZONE"))
|
|
74050
|
+
|
|
73886
74051
|
@jsii.python.classproperty
|
|
73887
74052
|
@jsii.member(jsii_name="DEVOPS_GURU")
|
|
73888
74053
|
def DEVOPS_GURU(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73889
74054
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "DEVOPS_GURU"))
|
|
73890
74055
|
|
|
74056
|
+
@jsii.python.classproperty
|
|
74057
|
+
@jsii.member(jsii_name="DIRECTORY_SERVICE")
|
|
74058
|
+
def DIRECTORY_SERVICE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74059
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "DIRECTORY_SERVICE"))
|
|
74060
|
+
|
|
73891
74061
|
@jsii.python.classproperty
|
|
73892
74062
|
@jsii.member(jsii_name="EBS_DIRECT")
|
|
73893
74063
|
def EBS_DIRECT(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -73933,6 +74103,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
73933
74103
|
def EKS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73934
74104
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "EKS"))
|
|
73935
74105
|
|
|
74106
|
+
@jsii.python.classproperty
|
|
74107
|
+
@jsii.member(jsii_name="EKS_AUTH")
|
|
74108
|
+
def EKS_AUTH(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74109
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "EKS_AUTH"))
|
|
74110
|
+
|
|
73936
74111
|
@jsii.python.classproperty
|
|
73937
74112
|
@jsii.member(jsii_name="ELASTIC_BEANSTALK")
|
|
73938
74113
|
def ELASTIC_BEANSTALK(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -73978,6 +74153,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
73978
74153
|
def ELASTICACHE_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73979
74154
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "ELASTICACHE_FIPS"))
|
|
73980
74155
|
|
|
74156
|
+
@jsii.python.classproperty
|
|
74157
|
+
@jsii.member(jsii_name="ELEMENTAL_MEDIACONNECT")
|
|
74158
|
+
def ELEMENTAL_MEDIACONNECT(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74159
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "ELEMENTAL_MEDIACONNECT"))
|
|
74160
|
+
|
|
73981
74161
|
@jsii.python.classproperty
|
|
73982
74162
|
@jsii.member(jsii_name="EMAIL_SMTP")
|
|
73983
74163
|
def EMAIL_SMTP(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -73998,6 +74178,16 @@ class InterfaceVpcEndpointAwsService(
|
|
|
73998
74178
|
def EMR_SERVERLESS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
73999
74179
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "EMR_SERVERLESS"))
|
|
74000
74180
|
|
|
74181
|
+
@jsii.python.classproperty
|
|
74182
|
+
@jsii.member(jsii_name="EMR_WAL")
|
|
74183
|
+
def EMR_WAL(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74184
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "EMR_WAL"))
|
|
74185
|
+
|
|
74186
|
+
@jsii.python.classproperty
|
|
74187
|
+
@jsii.member(jsii_name="ENTITY_RESOLUTION")
|
|
74188
|
+
def ENTITY_RESOLUTION(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74189
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "ENTITY_RESOLUTION"))
|
|
74190
|
+
|
|
74001
74191
|
@jsii.python.classproperty
|
|
74002
74192
|
@jsii.member(jsii_name="EVENTBRIDGE")
|
|
74003
74193
|
def EVENTBRIDGE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -74078,6 +74268,26 @@ class InterfaceVpcEndpointAwsService(
|
|
|
74078
74268
|
def GROUNDSTATION(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74079
74269
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "GROUNDSTATION"))
|
|
74080
74270
|
|
|
74271
|
+
@jsii.python.classproperty
|
|
74272
|
+
@jsii.member(jsii_name="GUARDDUTY_DATA")
|
|
74273
|
+
def GUARDDUTY_DATA(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74274
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "GUARDDUTY_DATA"))
|
|
74275
|
+
|
|
74276
|
+
@jsii.python.classproperty
|
|
74277
|
+
@jsii.member(jsii_name="GUARDDUTY_DATA_FIPS")
|
|
74278
|
+
def GUARDDUTY_DATA_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74279
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "GUARDDUTY_DATA_FIPS"))
|
|
74280
|
+
|
|
74281
|
+
@jsii.python.classproperty
|
|
74282
|
+
@jsii.member(jsii_name="HEALTH_IMAGING")
|
|
74283
|
+
def HEALTH_IMAGING(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74284
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "HEALTH_IMAGING"))
|
|
74285
|
+
|
|
74286
|
+
@jsii.python.classproperty
|
|
74287
|
+
@jsii.member(jsii_name="HEALTH_IMAGING_RUNTIME")
|
|
74288
|
+
def HEALTH_IMAGING_RUNTIME(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74289
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "HEALTH_IMAGING_RUNTIME"))
|
|
74290
|
+
|
|
74081
74291
|
@jsii.python.classproperty
|
|
74082
74292
|
@jsii.member(jsii_name="HEALTHLAKE")
|
|
74083
74293
|
def HEALTHLAKE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -74103,21 +74313,41 @@ class InterfaceVpcEndpointAwsService(
|
|
|
74103
74313
|
def INSPECTOR(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74104
74314
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "INSPECTOR"))
|
|
74105
74315
|
|
|
74316
|
+
@jsii.python.classproperty
|
|
74317
|
+
@jsii.member(jsii_name="INSPECTOR_SCAN")
|
|
74318
|
+
def INSPECTOR_SCAN(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74319
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "INSPECTOR_SCAN"))
|
|
74320
|
+
|
|
74106
74321
|
@jsii.python.classproperty
|
|
74107
74322
|
@jsii.member(jsii_name="IOT_CORE")
|
|
74108
74323
|
def IOT_CORE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74109
74324
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "IOT_CORE"))
|
|
74110
74325
|
|
|
74326
|
+
@jsii.python.classproperty
|
|
74327
|
+
@jsii.member(jsii_name="IOT_CORE_CREDENTIALS")
|
|
74328
|
+
def IOT_CORE_CREDENTIALS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74329
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "IOT_CORE_CREDENTIALS"))
|
|
74330
|
+
|
|
74111
74331
|
@jsii.python.classproperty
|
|
74112
74332
|
@jsii.member(jsii_name="IOT_CORE_DEVICE_ADVISOR")
|
|
74113
74333
|
def IOT_CORE_DEVICE_ADVISOR(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74114
74334
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "IOT_CORE_DEVICE_ADVISOR"))
|
|
74115
74335
|
|
|
74336
|
+
@jsii.python.classproperty
|
|
74337
|
+
@jsii.member(jsii_name="IOT_CORE_FLEETHUB_API")
|
|
74338
|
+
def IOT_CORE_FLEETHUB_API(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74339
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "IOT_CORE_FLEETHUB_API"))
|
|
74340
|
+
|
|
74116
74341
|
@jsii.python.classproperty
|
|
74117
74342
|
@jsii.member(jsii_name="IOT_CORE_FOR_LORAWAN")
|
|
74118
74343
|
def IOT_CORE_FOR_LORAWAN(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74119
74344
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "IOT_CORE_FOR_LORAWAN"))
|
|
74120
74345
|
|
|
74346
|
+
@jsii.python.classproperty
|
|
74347
|
+
@jsii.member(jsii_name="IOT_FLEETWISE")
|
|
74348
|
+
def IOT_FLEETWISE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74349
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "IOT_FLEETWISE"))
|
|
74350
|
+
|
|
74121
74351
|
@jsii.python.classproperty
|
|
74122
74352
|
@jsii.member(jsii_name="IOT_GREENGRASS")
|
|
74123
74353
|
def IOT_GREENGRASS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -74228,6 +74458,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
74228
74458
|
def LICENSE_MANAGER_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74229
74459
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "LICENSE_MANAGER_FIPS"))
|
|
74230
74460
|
|
|
74461
|
+
@jsii.python.classproperty
|
|
74462
|
+
@jsii.member(jsii_name="LICENSE_MANAGER_USER_SUBSCRIPTIONS")
|
|
74463
|
+
def LICENSE_MANAGER_USER_SUBSCRIPTIONS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74464
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "LICENSE_MANAGER_USER_SUBSCRIPTIONS"))
|
|
74465
|
+
|
|
74231
74466
|
@jsii.python.classproperty
|
|
74232
74467
|
@jsii.member(jsii_name="LOOKOUT_EQUIPMENT")
|
|
74233
74468
|
def LOOKOUT_EQUIPMENT(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -74253,6 +74488,31 @@ class InterfaceVpcEndpointAwsService(
|
|
|
74253
74488
|
def MAINFRAME_MODERNIZATION(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74254
74489
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "MAINFRAME_MODERNIZATION"))
|
|
74255
74490
|
|
|
74491
|
+
@jsii.python.classproperty
|
|
74492
|
+
@jsii.member(jsii_name="MANAGED_BLOCKCHAIN_BITCOIN_MAINNET")
|
|
74493
|
+
def MANAGED_BLOCKCHAIN_BITCOIN_MAINNET(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74494
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "MANAGED_BLOCKCHAIN_BITCOIN_MAINNET"))
|
|
74495
|
+
|
|
74496
|
+
@jsii.python.classproperty
|
|
74497
|
+
@jsii.member(jsii_name="MANAGED_BLOCKCHAIN_BITCOIN_TESTNET")
|
|
74498
|
+
def MANAGED_BLOCKCHAIN_BITCOIN_TESTNET(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74499
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "MANAGED_BLOCKCHAIN_BITCOIN_TESTNET"))
|
|
74500
|
+
|
|
74501
|
+
@jsii.python.classproperty
|
|
74502
|
+
@jsii.member(jsii_name="MANAGED_BLOCKCHAIN_QUERY")
|
|
74503
|
+
def MANAGED_BLOCKCHAIN_QUERY(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74504
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "MANAGED_BLOCKCHAIN_QUERY"))
|
|
74505
|
+
|
|
74506
|
+
@jsii.python.classproperty
|
|
74507
|
+
@jsii.member(jsii_name="MANAGEMENT_CONSOLE")
|
|
74508
|
+
def MANAGEMENT_CONSOLE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74509
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "MANAGEMENT_CONSOLE"))
|
|
74510
|
+
|
|
74511
|
+
@jsii.python.classproperty
|
|
74512
|
+
@jsii.member(jsii_name="MANAGEMENT_CONSOLE_SIGNIN")
|
|
74513
|
+
def MANAGEMENT_CONSOLE_SIGNIN(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74514
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "MANAGEMENT_CONSOLE_SIGNIN"))
|
|
74515
|
+
|
|
74256
74516
|
@jsii.python.classproperty
|
|
74257
74517
|
@jsii.member(jsii_name="MEMORY_DB")
|
|
74258
74518
|
def MEMORY_DB(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -74278,6 +74538,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
74278
74538
|
def MIGRATIONHUB_STRATEGY(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74279
74539
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "MIGRATIONHUB_STRATEGY"))
|
|
74280
74540
|
|
|
74541
|
+
@jsii.python.classproperty
|
|
74542
|
+
@jsii.member(jsii_name="NEPTUNE_ANALYTICS")
|
|
74543
|
+
def NEPTUNE_ANALYTICS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74544
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "NEPTUNE_ANALYTICS"))
|
|
74545
|
+
|
|
74281
74546
|
@jsii.python.classproperty
|
|
74282
74547
|
@jsii.member(jsii_name="NIMBLE_STUDIO")
|
|
74283
74548
|
def NIMBLE_STUDIO(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -74308,16 +74573,66 @@ class InterfaceVpcEndpointAwsService(
|
|
|
74308
74573
|
def OMICS_WORKFLOWS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74309
74574
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "OMICS_WORKFLOWS"))
|
|
74310
74575
|
|
|
74576
|
+
@jsii.python.classproperty
|
|
74577
|
+
@jsii.member(jsii_name="ORGANIZATIONS")
|
|
74578
|
+
def ORGANIZATIONS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74579
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "ORGANIZATIONS"))
|
|
74580
|
+
|
|
74581
|
+
@jsii.python.classproperty
|
|
74582
|
+
@jsii.member(jsii_name="ORGANIZATIONS_FIPS")
|
|
74583
|
+
def ORGANIZATIONS_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74584
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "ORGANIZATIONS_FIPS"))
|
|
74585
|
+
|
|
74311
74586
|
@jsii.python.classproperty
|
|
74312
74587
|
@jsii.member(jsii_name="PANORAMA")
|
|
74313
74588
|
def PANORAMA(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74314
74589
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "PANORAMA"))
|
|
74315
74590
|
|
|
74591
|
+
@jsii.python.classproperty
|
|
74592
|
+
@jsii.member(jsii_name="PAYMENT_CRYPTOGRAPHY_CONTROLPLANE")
|
|
74593
|
+
def PAYMENT_CRYPTOGRAPHY_CONTROLPLANE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74594
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "PAYMENT_CRYPTOGRAPHY_CONTROLPLANE"))
|
|
74595
|
+
|
|
74596
|
+
@jsii.python.classproperty
|
|
74597
|
+
@jsii.member(jsii_name="PAYMENT_CRYTOGRAPHY_DATAPLANE")
|
|
74598
|
+
def PAYMENT_CRYTOGRAPHY_DATAPLANE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74599
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "PAYMENT_CRYTOGRAPHY_DATAPLANE"))
|
|
74600
|
+
|
|
74601
|
+
@jsii.python.classproperty
|
|
74602
|
+
@jsii.member(jsii_name="PERSONALIZE")
|
|
74603
|
+
def PERSONALIZE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74604
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "PERSONALIZE"))
|
|
74605
|
+
|
|
74606
|
+
@jsii.python.classproperty
|
|
74607
|
+
@jsii.member(jsii_name="PERSONALIZE_EVENTS")
|
|
74608
|
+
def PERSONALIZE_EVENTS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74609
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "PERSONALIZE_EVENTS"))
|
|
74610
|
+
|
|
74611
|
+
@jsii.python.classproperty
|
|
74612
|
+
@jsii.member(jsii_name="PERSONALIZE_RUNTIME")
|
|
74613
|
+
def PERSONALIZE_RUNTIME(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74614
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "PERSONALIZE_RUNTIME"))
|
|
74615
|
+
|
|
74316
74616
|
@jsii.python.classproperty
|
|
74317
74617
|
@jsii.member(jsii_name="PINPOINT")
|
|
74318
74618
|
def PINPOINT(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74619
|
+
'''
|
|
74620
|
+
:deprecated: - Use InterfaceVpcEndpointAwsService.PINPOINT_SMS_VOICE_V2 instead.
|
|
74621
|
+
|
|
74622
|
+
:stability: deprecated
|
|
74623
|
+
'''
|
|
74319
74624
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "PINPOINT"))
|
|
74320
74625
|
|
|
74626
|
+
@jsii.python.classproperty
|
|
74627
|
+
@jsii.member(jsii_name="PINPOINT_SMS_VOICE_V2")
|
|
74628
|
+
def PINPOINT_SMS_VOICE_V2(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74629
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "PINPOINT_SMS_VOICE_V2"))
|
|
74630
|
+
|
|
74631
|
+
@jsii.python.classproperty
|
|
74632
|
+
@jsii.member(jsii_name="PINPOINT_V1")
|
|
74633
|
+
def PINPOINT_V1(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74634
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "PINPOINT_V1"))
|
|
74635
|
+
|
|
74321
74636
|
@jsii.python.classproperty
|
|
74322
74637
|
@jsii.member(jsii_name="POLLY")
|
|
74323
74638
|
def POLLY(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -74333,6 +74648,13 @@ class InterfaceVpcEndpointAwsService(
|
|
|
74333
74648
|
def PRIVATE_CERTIFICATE_AUTHORITY(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74334
74649
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "PRIVATE_CERTIFICATE_AUTHORITY"))
|
|
74335
74650
|
|
|
74651
|
+
@jsii.python.classproperty
|
|
74652
|
+
@jsii.member(jsii_name="PRIVATE_CERTIFICATE_AUTHORITY_CONNECTOR_AD")
|
|
74653
|
+
def PRIVATE_CERTIFICATE_AUTHORITY_CONNECTOR_AD(
|
|
74654
|
+
cls,
|
|
74655
|
+
) -> "InterfaceVpcEndpointAwsService":
|
|
74656
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "PRIVATE_CERTIFICATE_AUTHORITY_CONNECTOR_AD"))
|
|
74657
|
+
|
|
74336
74658
|
@jsii.python.classproperty
|
|
74337
74659
|
@jsii.member(jsii_name="PROMETHEUS")
|
|
74338
74660
|
def PROMETHEUS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -74388,6 +74710,21 @@ class InterfaceVpcEndpointAwsService(
|
|
|
74388
74710
|
def REKOGNITION_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74389
74711
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "REKOGNITION_FIPS"))
|
|
74390
74712
|
|
|
74713
|
+
@jsii.python.classproperty
|
|
74714
|
+
@jsii.member(jsii_name="REKOGNITION_STREAMING")
|
|
74715
|
+
def REKOGNITION_STREAMING(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74716
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "REKOGNITION_STREAMING"))
|
|
74717
|
+
|
|
74718
|
+
@jsii.python.classproperty
|
|
74719
|
+
@jsii.member(jsii_name="REKOGNITION_STREAMING_FIPS")
|
|
74720
|
+
def REKOGNITION_STREAMING_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74721
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "REKOGNITION_STREAMING_FIPS"))
|
|
74722
|
+
|
|
74723
|
+
@jsii.python.classproperty
|
|
74724
|
+
@jsii.member(jsii_name="REPOST_SPACE")
|
|
74725
|
+
def REPOST_SPACE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74726
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "REPOST_SPACE"))
|
|
74727
|
+
|
|
74391
74728
|
@jsii.python.classproperty
|
|
74392
74729
|
@jsii.member(jsii_name="ROBOMAKER")
|
|
74393
74730
|
def ROBOMAKER(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -74418,6 +74755,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
74418
74755
|
def SAGEMAKER_FEATURESTORE_RUNTIME(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74419
74756
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "SAGEMAKER_FEATURESTORE_RUNTIME"))
|
|
74420
74757
|
|
|
74758
|
+
@jsii.python.classproperty
|
|
74759
|
+
@jsii.member(jsii_name="SAGEMAKER_GEOSPATIAL")
|
|
74760
|
+
def SAGEMAKER_GEOSPATIAL(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74761
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "SAGEMAKER_GEOSPATIAL"))
|
|
74762
|
+
|
|
74421
74763
|
@jsii.python.classproperty
|
|
74422
74764
|
@jsii.member(jsii_name="SAGEMAKER_METRICS")
|
|
74423
74765
|
def SAGEMAKER_METRICS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -74488,6 +74830,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
74488
74830
|
'''
|
|
74489
74831
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "SES"))
|
|
74490
74832
|
|
|
74833
|
+
@jsii.python.classproperty
|
|
74834
|
+
@jsii.member(jsii_name="SIMSPACE_WEAVER")
|
|
74835
|
+
def SIMSPACE_WEAVER(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74836
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "SIMSPACE_WEAVER"))
|
|
74837
|
+
|
|
74491
74838
|
@jsii.python.classproperty
|
|
74492
74839
|
@jsii.member(jsii_name="SNOW_DEVICE_MANAGEMENT")
|
|
74493
74840
|
def SNOW_DEVICE_MANAGEMENT(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -74543,6 +74890,26 @@ class InterfaceVpcEndpointAwsService(
|
|
|
74543
74890
|
def STS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74544
74891
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "STS"))
|
|
74545
74892
|
|
|
74893
|
+
@jsii.python.classproperty
|
|
74894
|
+
@jsii.member(jsii_name="SUPPLY_CHAIN")
|
|
74895
|
+
def SUPPLY_CHAIN(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74896
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "SUPPLY_CHAIN"))
|
|
74897
|
+
|
|
74898
|
+
@jsii.python.classproperty
|
|
74899
|
+
@jsii.member(jsii_name="SWF")
|
|
74900
|
+
def SWF(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74901
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "SWF"))
|
|
74902
|
+
|
|
74903
|
+
@jsii.python.classproperty
|
|
74904
|
+
@jsii.member(jsii_name="SWF_FIPS")
|
|
74905
|
+
def SWF_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74906
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "SWF_FIPS"))
|
|
74907
|
+
|
|
74908
|
+
@jsii.python.classproperty
|
|
74909
|
+
@jsii.member(jsii_name="TELCO_NETWORK_BUILDER")
|
|
74910
|
+
def TELCO_NETWORK_BUILDER(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74911
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "TELCO_NETWORK_BUILDER"))
|
|
74912
|
+
|
|
74546
74913
|
@jsii.python.classproperty
|
|
74547
74914
|
@jsii.member(jsii_name="TEXTRACT")
|
|
74548
74915
|
def TEXTRACT(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -74553,6 +74920,11 @@ class InterfaceVpcEndpointAwsService(
|
|
|
74553
74920
|
def TEXTRACT_FIPS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74554
74921
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "TEXTRACT_FIPS"))
|
|
74555
74922
|
|
|
74923
|
+
@jsii.python.classproperty
|
|
74924
|
+
@jsii.member(jsii_name="TIMESTREAM_INFLUXDB")
|
|
74925
|
+
def TIMESTREAM_INFLUXDB(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74926
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "TIMESTREAM_INFLUXDB"))
|
|
74927
|
+
|
|
74556
74928
|
@jsii.python.classproperty
|
|
74557
74929
|
@jsii.member(jsii_name="TRANSCRIBE")
|
|
74558
74930
|
def TRANSCRIBE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -74578,16 +74950,31 @@ class InterfaceVpcEndpointAwsService(
|
|
|
74578
74950
|
def TRANSLATE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74579
74951
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "TRANSLATE"))
|
|
74580
74952
|
|
|
74953
|
+
@jsii.python.classproperty
|
|
74954
|
+
@jsii.member(jsii_name="TRUSTED_ADVISOR")
|
|
74955
|
+
def TRUSTED_ADVISOR(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74956
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "TRUSTED_ADVISOR"))
|
|
74957
|
+
|
|
74581
74958
|
@jsii.python.classproperty
|
|
74582
74959
|
@jsii.member(jsii_name="VERIFIED_PERMISSIONS")
|
|
74583
74960
|
def VERIFIED_PERMISSIONS(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74584
74961
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "VERIFIED_PERMISSIONS"))
|
|
74585
74962
|
|
|
74963
|
+
@jsii.python.classproperty
|
|
74964
|
+
@jsii.member(jsii_name="VPC_LATTICE")
|
|
74965
|
+
def VPC_LATTICE(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74966
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "VPC_LATTICE"))
|
|
74967
|
+
|
|
74586
74968
|
@jsii.python.classproperty
|
|
74587
74969
|
@jsii.member(jsii_name="WORKSPACES")
|
|
74588
74970
|
def WORKSPACES(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74589
74971
|
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "WORKSPACES"))
|
|
74590
74972
|
|
|
74973
|
+
@jsii.python.classproperty
|
|
74974
|
+
@jsii.member(jsii_name="WORKSPACES_THIN_CLIENT")
|
|
74975
|
+
def WORKSPACES_THIN_CLIENT(cls) -> "InterfaceVpcEndpointAwsService":
|
|
74976
|
+
return typing.cast("InterfaceVpcEndpointAwsService", jsii.sget(cls, "WORKSPACES_THIN_CLIENT"))
|
|
74977
|
+
|
|
74591
74978
|
@jsii.python.classproperty
|
|
74592
74979
|
@jsii.member(jsii_name="XRAY")
|
|
74593
74980
|
def XRAY(cls) -> "InterfaceVpcEndpointAwsService":
|
|
@@ -89456,6 +89843,11 @@ class GatewayVpcEndpointAwsService(
|
|
|
89456
89843
|
def S3(cls) -> "GatewayVpcEndpointAwsService":
|
|
89457
89844
|
return typing.cast("GatewayVpcEndpointAwsService", jsii.sget(cls, "S3"))
|
|
89458
89845
|
|
|
89846
|
+
@jsii.python.classproperty
|
|
89847
|
+
@jsii.member(jsii_name="S3_EXPRESS")
|
|
89848
|
+
def S3_EXPRESS(cls) -> "GatewayVpcEndpointAwsService":
|
|
89849
|
+
return typing.cast("GatewayVpcEndpointAwsService", jsii.sget(cls, "S3_EXPRESS"))
|
|
89850
|
+
|
|
89459
89851
|
@builtins.property
|
|
89460
89852
|
@jsii.member(jsii_name="name")
|
|
89461
89853
|
def name(self) -> builtins.str:
|
|
@@ -94276,6 +94668,7 @@ def _typecheckingstub__5f22238da23e1a95528fc55d3e3a28b661b69a5dfe2d1e64620bef1eb
|
|
|
94276
94668
|
*,
|
|
94277
94669
|
domain_name: typing.Optional[builtins.str] = None,
|
|
94278
94670
|
domain_name_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
94671
|
+
ipv6_address_preferred_lease_time: typing.Optional[jsii.Number] = None,
|
|
94279
94672
|
netbios_name_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
94280
94673
|
netbios_node_type: typing.Optional[jsii.Number] = None,
|
|
94281
94674
|
ntp_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -94308,6 +94701,12 @@ def _typecheckingstub__d9ee8e87c9581893159e005c5c7c786324d9f9c9a41ba0af4f72aedd3
|
|
|
94308
94701
|
"""Type checking stubs"""
|
|
94309
94702
|
pass
|
|
94310
94703
|
|
|
94704
|
+
def _typecheckingstub__0cbb91e4162eb4b7aab6b1e90fa6fbbbade04b38a95d6c1bb778946ae93b50a3(
|
|
94705
|
+
value: typing.Optional[jsii.Number],
|
|
94706
|
+
) -> None:
|
|
94707
|
+
"""Type checking stubs"""
|
|
94708
|
+
pass
|
|
94709
|
+
|
|
94311
94710
|
def _typecheckingstub__e3b8e4bd8f79a27f01b9c18995f6a45e13c80f3ff9f392b3c558b6cc5a5e5dba(
|
|
94312
94711
|
value: typing.Optional[typing.List[builtins.str]],
|
|
94313
94712
|
) -> None:
|
|
@@ -94336,6 +94735,7 @@ def _typecheckingstub__569097ad87e4dddbcfaee4fb50fc7ddb345c4f97ae82fcf897497039e
|
|
|
94336
94735
|
*,
|
|
94337
94736
|
domain_name: typing.Optional[builtins.str] = None,
|
|
94338
94737
|
domain_name_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
94738
|
+
ipv6_address_preferred_lease_time: typing.Optional[jsii.Number] = None,
|
|
94339
94739
|
netbios_name_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
94340
94740
|
netbios_node_type: typing.Optional[jsii.Number] = None,
|
|
94341
94741
|
ntp_servers: typing.Optional[typing.Sequence[builtins.str]] = None,
|