aws-cdk-lib 2.203.1__py3-none-any.whl → 2.205.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 +208 -92
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.203.1.jsii.tgz → aws-cdk-lib@2.205.0.jsii.tgz} +0 -0
- aws_cdk/aws_aiops/__init__.py +89 -39
- aws_cdk/aws_apigateway/__init__.py +164 -0
- aws_cdk/aws_apigatewayv2/__init__.py +412 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +2 -2
- aws_cdk/aws_arczonalshift/__init__.py +4 -1
- aws_cdk/aws_b2bi/__init__.py +32 -16
- aws_cdk/aws_bedrock/__init__.py +198 -10
- aws_cdk/aws_cassandra/__init__.py +156 -0
- aws_cdk/aws_certificatemanager/__init__.py +28 -0
- aws_cdk/aws_chatbot/__init__.py +28 -0
- aws_cdk/aws_cloudformation/__init__.py +74 -72
- aws_cdk/aws_cloudfront/__init__.py +1273 -485
- aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
- aws_cdk/aws_cloudfront_origins/__init__.py +26 -21
- aws_cdk/aws_cloudwatch/__init__.py +278 -23
- aws_cdk/aws_codebuild/__init__.py +300 -36
- aws_cdk/aws_datasync/__init__.py +2 -2
- aws_cdk/aws_docdb/__init__.py +78 -0
- aws_cdk/aws_dynamodb/__init__.py +523 -37
- aws_cdk/aws_ec2/__init__.py +126 -30
- aws_cdk/aws_ecs/__init__.py +64 -19
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +724 -0
- aws_cdk/aws_elasticsearch/__init__.py +260 -0
- aws_cdk/aws_emrserverless/__init__.py +5 -5
- aws_cdk/aws_events/__init__.py +58 -3
- aws_cdk/aws_events_targets/__init__.py +7 -2
- aws_cdk/aws_evs/__init__.py +7 -7
- aws_cdk/aws_fsx/__init__.py +138 -78
- aws_cdk/aws_gamelift/__init__.py +19 -0
- aws_cdk/aws_glue/__init__.py +3 -3
- aws_cdk/aws_iot/__init__.py +1 -1
- aws_cdk/aws_kinesis/__init__.py +391 -13
- aws_cdk/aws_kinesisfirehose/__init__.py +128 -1
- aws_cdk/aws_lambda/__init__.py +144 -0
- aws_cdk/aws_lex/__init__.py +36 -19
- aws_cdk/aws_logs/__init__.py +58 -0
- aws_cdk/aws_neptune/__init__.py +12 -12
- aws_cdk/aws_odb/__init__.py +4049 -0
- aws_cdk/aws_omics/__init__.py +1 -1
- aws_cdk/aws_opensearchservice/__init__.py +260 -0
- aws_cdk/aws_qbusiness/__init__.py +471 -4
- aws_cdk/aws_quicksight/__init__.py +185 -16
- aws_cdk/aws_rds/__init__.py +553 -17
- aws_cdk/aws_redshiftserverless/__init__.py +72 -45
- aws_cdk/aws_route53/__init__.py +41 -19
- aws_cdk/aws_s3tables/__init__.py +1005 -0
- aws_cdk/aws_sagemaker/__init__.py +20 -0
- aws_cdk/aws_scheduler/__init__.py +210 -0
- aws_cdk/aws_sns/__init__.py +164 -0
- aws_cdk/aws_sqs/__init__.py +164 -0
- aws_cdk/aws_stepfunctions/__init__.py +288 -0
- aws_cdk/aws_synthetics/__init__.py +159 -37
- aws_cdk/aws_transfer/__init__.py +23 -1
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/RECORD +62 -61
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ec2/__init__.py
CHANGED
|
@@ -6621,7 +6621,7 @@ class CfnCapacityReservation(
|
|
|
6621
6621
|
)
|
|
6622
6622
|
|
|
6623
6623
|
|
|
6624
|
-
@jsii.implements(_IInspectable_c2943556)
|
|
6624
|
+
@jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
|
|
6625
6625
|
class CfnCapacityReservationFleet(
|
|
6626
6626
|
_CfnResource_9df397a6,
|
|
6627
6627
|
metaclass=jsii.JSIIMeta,
|
|
@@ -6679,7 +6679,7 @@ class CfnCapacityReservationFleet(
|
|
|
6679
6679
|
instance_type_specifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCapacityReservationFleet.InstanceTypeSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
6680
6680
|
no_remove_end_date: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
6681
6681
|
remove_end_date: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
6682
|
-
tag_specifications: typing.Optional[typing.
|
|
6682
|
+
tag_specifications: typing.Optional[typing.Sequence[typing.Union["CfnCapacityReservationFleet.TagSpecificationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6683
6683
|
tenancy: typing.Optional[builtins.str] = None,
|
|
6684
6684
|
total_target_capacity: typing.Optional[jsii.Number] = None,
|
|
6685
6685
|
) -> None:
|
|
@@ -6753,6 +6753,12 @@ class CfnCapacityReservationFleet(
|
|
|
6753
6753
|
'''
|
|
6754
6754
|
return typing.cast(builtins.str, jsii.get(self, "attrCapacityReservationFleetId"))
|
|
6755
6755
|
|
|
6756
|
+
@builtins.property
|
|
6757
|
+
@jsii.member(jsii_name="cdkTagManager")
|
|
6758
|
+
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
6759
|
+
'''Tag Manager which manages the tags for this resource.'''
|
|
6760
|
+
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
|
|
6761
|
+
|
|
6756
6762
|
@builtins.property
|
|
6757
6763
|
@jsii.member(jsii_name="cfnProperties")
|
|
6758
6764
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -6855,14 +6861,14 @@ class CfnCapacityReservationFleet(
|
|
|
6855
6861
|
@jsii.member(jsii_name="tagSpecifications")
|
|
6856
6862
|
def tag_specifications(
|
|
6857
6863
|
self,
|
|
6858
|
-
) -> typing.Optional[typing.
|
|
6864
|
+
) -> typing.Optional[typing.List["CfnCapacityReservationFleet.TagSpecificationProperty"]]:
|
|
6859
6865
|
'''The tags to assign to the Capacity Reservation Fleet.'''
|
|
6860
|
-
return typing.cast(typing.Optional[typing.
|
|
6866
|
+
return typing.cast(typing.Optional[typing.List["CfnCapacityReservationFleet.TagSpecificationProperty"]], jsii.get(self, "tagSpecifications"))
|
|
6861
6867
|
|
|
6862
6868
|
@tag_specifications.setter
|
|
6863
6869
|
def tag_specifications(
|
|
6864
6870
|
self,
|
|
6865
|
-
value: typing.Optional[typing.
|
|
6871
|
+
value: typing.Optional[typing.List["CfnCapacityReservationFleet.TagSpecificationProperty"]],
|
|
6866
6872
|
) -> None:
|
|
6867
6873
|
if __debug__:
|
|
6868
6874
|
type_hints = typing.get_type_hints(_typecheckingstub__9be24701036c5abd754bc67058ec4d8c733250163e5a63577648325991d133e9)
|
|
@@ -7170,7 +7176,7 @@ class CfnCapacityReservationFleetProps:
|
|
|
7170
7176
|
instance_type_specifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCapacityReservationFleet.InstanceTypeSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
7171
7177
|
no_remove_end_date: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
7172
7178
|
remove_end_date: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
7173
|
-
tag_specifications: typing.Optional[typing.
|
|
7179
|
+
tag_specifications: typing.Optional[typing.Sequence[typing.Union[CfnCapacityReservationFleet.TagSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7174
7180
|
tenancy: typing.Optional[builtins.str] = None,
|
|
7175
7181
|
total_target_capacity: typing.Optional[jsii.Number] = None,
|
|
7176
7182
|
) -> None:
|
|
@@ -7331,7 +7337,7 @@ class CfnCapacityReservationFleetProps:
|
|
|
7331
7337
|
@builtins.property
|
|
7332
7338
|
def tag_specifications(
|
|
7333
7339
|
self,
|
|
7334
|
-
) -> typing.Optional[typing.
|
|
7340
|
+
) -> typing.Optional[typing.List[CfnCapacityReservationFleet.TagSpecificationProperty]]:
|
|
7335
7341
|
'''The tags to assign to the Capacity Reservation Fleet.
|
|
7336
7342
|
|
|
7337
7343
|
The tags are automatically assigned to the Capacity Reservations in the Fleet.
|
|
@@ -7339,7 +7345,7 @@ class CfnCapacityReservationFleetProps:
|
|
|
7339
7345
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservationfleet.html#cfn-ec2-capacityreservationfleet-tagspecifications
|
|
7340
7346
|
'''
|
|
7341
7347
|
result = self._values.get("tag_specifications")
|
|
7342
|
-
return typing.cast(typing.Optional[typing.
|
|
7348
|
+
return typing.cast(typing.Optional[typing.List[CfnCapacityReservationFleet.TagSpecificationProperty]], result)
|
|
7343
7349
|
|
|
7344
7350
|
@builtins.property
|
|
7345
7351
|
def tenancy(self) -> typing.Optional[builtins.str]:
|
|
@@ -10401,7 +10407,7 @@ class CfnCustomerGateway(
|
|
|
10401
10407
|
'''
|
|
10402
10408
|
:param scope: Scope in which this resource is defined.
|
|
10403
10409
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
10404
|
-
:param ip_address:
|
|
10410
|
+
:param ip_address: The IP address for the customer gateway device's outside interface. The address must be static. If ``OutsideIpAddressType`` in your VPN connection options is set to ``PrivateIpv4`` , you can use an RFC6598 or RFC1918 private IPv4 address. If ``OutsideIpAddressType`` is set to ``Ipv6`` , you can use an IPv6 address.
|
|
10405
10411
|
:param type: The type of VPN connection that this customer gateway supports ( ``ipsec.1`` ).
|
|
10406
10412
|
:param bgp_asn: For customer gateway devices that support BGP, specify the device's ASN. You must specify either ``BgpAsn`` or ``BgpAsnExtended`` when creating the customer gateway. If the ASN is larger than ``2,147,483,647`` , you must use ``BgpAsnExtended`` . Default: 65000 Valid values: ``1`` to ``2,147,483,647`` Default: - 65000
|
|
10407
10413
|
:param bgp_asn_extended: For customer gateway devices that support BGP, specify the device's ASN. You must specify either ``BgpAsn`` or ``BgpAsnExtended`` when creating the customer gateway. If the ASN is larger than ``2,147,483,647`` , you must use ``BgpAsnExtended`` . Valid values: ``2,147,483,648`` to ``4,294,967,295``
|
|
@@ -10478,7 +10484,7 @@ class CfnCustomerGateway(
|
|
|
10478
10484
|
@builtins.property
|
|
10479
10485
|
@jsii.member(jsii_name="ipAddress")
|
|
10480
10486
|
def ip_address(self) -> builtins.str:
|
|
10481
|
-
'''
|
|
10487
|
+
'''The IP address for the customer gateway device's outside interface.'''
|
|
10482
10488
|
return typing.cast(builtins.str, jsii.get(self, "ipAddress"))
|
|
10483
10489
|
|
|
10484
10490
|
@ip_address.setter
|
|
@@ -10594,7 +10600,7 @@ class CfnCustomerGatewayProps:
|
|
|
10594
10600
|
) -> None:
|
|
10595
10601
|
'''Properties for defining a ``CfnCustomerGateway``.
|
|
10596
10602
|
|
|
10597
|
-
:param ip_address:
|
|
10603
|
+
:param ip_address: The IP address for the customer gateway device's outside interface. The address must be static. If ``OutsideIpAddressType`` in your VPN connection options is set to ``PrivateIpv4`` , you can use an RFC6598 or RFC1918 private IPv4 address. If ``OutsideIpAddressType`` is set to ``Ipv6`` , you can use an IPv6 address.
|
|
10598
10604
|
:param type: The type of VPN connection that this customer gateway supports ( ``ipsec.1`` ).
|
|
10599
10605
|
:param bgp_asn: For customer gateway devices that support BGP, specify the device's ASN. You must specify either ``BgpAsn`` or ``BgpAsnExtended`` when creating the customer gateway. If the ASN is larger than ``2,147,483,647`` , you must use ``BgpAsnExtended`` . Default: 65000 Valid values: ``1`` to ``2,147,483,647`` Default: - 65000
|
|
10600
10606
|
:param bgp_asn_extended: For customer gateway devices that support BGP, specify the device's ASN. You must specify either ``BgpAsn`` or ``BgpAsnExtended`` when creating the customer gateway. If the ASN is larger than ``2,147,483,647`` , you must use ``BgpAsnExtended`` . Valid values: ``2,147,483,648`` to ``4,294,967,295``
|
|
@@ -10652,9 +10658,9 @@ class CfnCustomerGatewayProps:
|
|
|
10652
10658
|
|
|
10653
10659
|
@builtins.property
|
|
10654
10660
|
def ip_address(self) -> builtins.str:
|
|
10655
|
-
'''
|
|
10661
|
+
'''The IP address for the customer gateway device's outside interface.
|
|
10656
10662
|
|
|
10657
|
-
The address must be static. If ``OutsideIpAddressType`` in your VPN connection options is set to ``PrivateIpv4`` , you can use an RFC6598 or RFC1918 private IPv4 address. If ``OutsideIpAddressType`` is set to ``
|
|
10663
|
+
The address must be static. If ``OutsideIpAddressType`` in your VPN connection options is set to ``PrivateIpv4`` , you can use an RFC6598 or RFC1918 private IPv4 address. If ``OutsideIpAddressType`` is set to ``Ipv6`` , you can use an IPv6 address.
|
|
10658
10664
|
|
|
10659
10665
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customergateway.html#cfn-ec2-customergateway-ipaddress
|
|
10660
10666
|
'''
|
|
@@ -54653,18 +54659,10 @@ class CfnTrafficMirrorFilterRule(
|
|
|
54653
54659
|
'''The CloudFormation resource type name for this resource class.'''
|
|
54654
54660
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
54655
54661
|
|
|
54656
|
-
@builtins.property
|
|
54657
|
-
@jsii.member(jsii_name="attrId")
|
|
54658
|
-
def attr_id(self) -> builtins.str:
|
|
54659
|
-
'''
|
|
54660
|
-
:cloudformationAttribute: Id
|
|
54661
|
-
'''
|
|
54662
|
-
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
54663
|
-
|
|
54664
54662
|
@builtins.property
|
|
54665
54663
|
@jsii.member(jsii_name="attrTrafficMirrorFilterRuleId")
|
|
54666
54664
|
def attr_traffic_mirror_filter_rule_id(self) -> builtins.str:
|
|
54667
|
-
'''The ID of the Traffic Mirror
|
|
54665
|
+
'''The ID of the Traffic Mirror rule.
|
|
54668
54666
|
|
|
54669
54667
|
:cloudformationAttribute: TrafficMirrorFilterRuleId
|
|
54670
54668
|
'''
|
|
@@ -64306,7 +64304,7 @@ class CfnVPNConnection(
|
|
|
64306
64304
|
:param enable_acceleration: Indicate whether to enable acceleration for the VPN connection. Default: ``false``
|
|
64307
64305
|
:param local_ipv4_network_cidr: The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. Default: ``0.0.0.0/0``
|
|
64308
64306
|
:param local_ipv6_network_cidr: The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. Default: ``::/0``
|
|
64309
|
-
:param outside_ip_address_type: The type of
|
|
64307
|
+
:param outside_ip_address_type: The type of IP address assigned to the outside interface of the customer gateway device. Valid values: ``PrivateIpv4`` | ``PublicIpv4`` | ``Ipv6`` Default: ``PublicIpv4``
|
|
64310
64308
|
:param remote_ipv4_network_cidr: The IPv4 CIDR on the AWS side of the VPN connection. Default: ``0.0.0.0/0``
|
|
64311
64309
|
:param remote_ipv6_network_cidr: The IPv6 CIDR on the AWS side of the VPN connection. Default: ``::/0``
|
|
64312
64310
|
:param static_routes_only: Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don't support BGP. If you are creating a VPN connection for a device that does not support Border Gateway Protocol (BGP), you must specify ``true`` .
|
|
@@ -64464,7 +64462,7 @@ class CfnVPNConnection(
|
|
|
64464
64462
|
@builtins.property
|
|
64465
64463
|
@jsii.member(jsii_name="outsideIpAddressType")
|
|
64466
64464
|
def outside_ip_address_type(self) -> typing.Optional[builtins.str]:
|
|
64467
|
-
'''The type of
|
|
64465
|
+
'''The type of IP address assigned to the outside interface of the customer gateway device.'''
|
|
64468
64466
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "outsideIpAddressType"))
|
|
64469
64467
|
|
|
64470
64468
|
@outside_ip_address_type.setter
|
|
@@ -65635,7 +65633,7 @@ class CfnVPNConnectionProps:
|
|
|
65635
65633
|
:param enable_acceleration: Indicate whether to enable acceleration for the VPN connection. Default: ``false``
|
|
65636
65634
|
:param local_ipv4_network_cidr: The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. Default: ``0.0.0.0/0``
|
|
65637
65635
|
:param local_ipv6_network_cidr: The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. Default: ``::/0``
|
|
65638
|
-
:param outside_ip_address_type: The type of
|
|
65636
|
+
:param outside_ip_address_type: The type of IP address assigned to the outside interface of the customer gateway device. Valid values: ``PrivateIpv4`` | ``PublicIpv4`` | ``Ipv6`` Default: ``PublicIpv4``
|
|
65639
65637
|
:param remote_ipv4_network_cidr: The IPv4 CIDR on the AWS side of the VPN connection. Default: ``0.0.0.0/0``
|
|
65640
65638
|
:param remote_ipv6_network_cidr: The IPv6 CIDR on the AWS side of the VPN connection. Default: ``::/0``
|
|
65641
65639
|
:param static_routes_only: Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don't support BGP. If you are creating a VPN connection for a device that does not support Border Gateway Protocol (BGP), you must specify ``true`` .
|
|
@@ -65824,9 +65822,9 @@ class CfnVPNConnectionProps:
|
|
|
65824
65822
|
|
|
65825
65823
|
@builtins.property
|
|
65826
65824
|
def outside_ip_address_type(self) -> typing.Optional[builtins.str]:
|
|
65827
|
-
'''The type of
|
|
65825
|
+
'''The type of IP address assigned to the outside interface of the customer gateway device.
|
|
65828
65826
|
|
|
65829
|
-
Valid values: ``PrivateIpv4`` | ``PublicIpv4``
|
|
65827
|
+
Valid values: ``PrivateIpv4`` | ``PublicIpv4`` | ``Ipv6``
|
|
65830
65828
|
|
|
65831
65829
|
Default: ``PublicIpv4``
|
|
65832
65830
|
|
|
@@ -77866,6 +77864,7 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
77866
77864
|
account: typing.Optional[builtins.str] = None,
|
|
77867
77865
|
color: typing.Optional[builtins.str] = None,
|
|
77868
77866
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
77867
|
+
id: typing.Optional[builtins.str] = None,
|
|
77869
77868
|
label: typing.Optional[builtins.str] = None,
|
|
77870
77869
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
77871
77870
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -77873,6 +77872,7 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
77873
77872
|
stack_region: typing.Optional[builtins.str] = None,
|
|
77874
77873
|
statistic: typing.Optional[builtins.str] = None,
|
|
77875
77874
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
77875
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
77876
77876
|
) -> _Metric_e396a4dc:
|
|
77877
77877
|
'''Return the given named metric for this VPNConnection.
|
|
77878
77878
|
|
|
@@ -77880,6 +77880,7 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
77880
77880
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
77881
77881
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
77882
77882
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
77883
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
77883
77884
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
77884
77885
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
77885
77886
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -77887,6 +77888,7 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
77887
77888
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
77888
77889
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
77889
77890
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
77891
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
77890
77892
|
'''
|
|
77891
77893
|
...
|
|
77892
77894
|
|
|
@@ -77897,6 +77899,7 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
77897
77899
|
account: typing.Optional[builtins.str] = None,
|
|
77898
77900
|
color: typing.Optional[builtins.str] = None,
|
|
77899
77901
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
77902
|
+
id: typing.Optional[builtins.str] = None,
|
|
77900
77903
|
label: typing.Optional[builtins.str] = None,
|
|
77901
77904
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
77902
77905
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -77904,6 +77907,7 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
77904
77907
|
stack_region: typing.Optional[builtins.str] = None,
|
|
77905
77908
|
statistic: typing.Optional[builtins.str] = None,
|
|
77906
77909
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
77910
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
77907
77911
|
) -> _Metric_e396a4dc:
|
|
77908
77912
|
'''The bytes received through the VPN tunnel.
|
|
77909
77913
|
|
|
@@ -77912,6 +77916,7 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
77912
77916
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
77913
77917
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
77914
77918
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
77919
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
77915
77920
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
77916
77921
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
77917
77922
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -77919,6 +77924,7 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
77919
77924
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
77920
77925
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
77921
77926
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
77927
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
77922
77928
|
'''
|
|
77923
77929
|
...
|
|
77924
77930
|
|
|
@@ -77929,6 +77935,7 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
77929
77935
|
account: typing.Optional[builtins.str] = None,
|
|
77930
77936
|
color: typing.Optional[builtins.str] = None,
|
|
77931
77937
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
77938
|
+
id: typing.Optional[builtins.str] = None,
|
|
77932
77939
|
label: typing.Optional[builtins.str] = None,
|
|
77933
77940
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
77934
77941
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -77936,6 +77943,7 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
77936
77943
|
stack_region: typing.Optional[builtins.str] = None,
|
|
77937
77944
|
statistic: typing.Optional[builtins.str] = None,
|
|
77938
77945
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
77946
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
77939
77947
|
) -> _Metric_e396a4dc:
|
|
77940
77948
|
'''The bytes sent through the VPN tunnel.
|
|
77941
77949
|
|
|
@@ -77944,6 +77952,7 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
77944
77952
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
77945
77953
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
77946
77954
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
77955
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
77947
77956
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
77948
77957
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
77949
77958
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -77951,6 +77960,7 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
77951
77960
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
77952
77961
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
77953
77962
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
77963
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
77954
77964
|
'''
|
|
77955
77965
|
...
|
|
77956
77966
|
|
|
@@ -77961,6 +77971,7 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
77961
77971
|
account: typing.Optional[builtins.str] = None,
|
|
77962
77972
|
color: typing.Optional[builtins.str] = None,
|
|
77963
77973
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
77974
|
+
id: typing.Optional[builtins.str] = None,
|
|
77964
77975
|
label: typing.Optional[builtins.str] = None,
|
|
77965
77976
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
77966
77977
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -77968,6 +77979,7 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
77968
77979
|
stack_region: typing.Optional[builtins.str] = None,
|
|
77969
77980
|
statistic: typing.Optional[builtins.str] = None,
|
|
77970
77981
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
77982
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
77971
77983
|
) -> _Metric_e396a4dc:
|
|
77972
77984
|
'''The state of the tunnel. 0 indicates DOWN and 1 indicates UP.
|
|
77973
77985
|
|
|
@@ -77976,6 +77988,7 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
77976
77988
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
77977
77989
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
77978
77990
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
77991
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
77979
77992
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
77980
77993
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
77981
77994
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -77983,6 +77996,7 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
77983
77996
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
77984
77997
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
77985
77998
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
77999
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
77986
78000
|
'''
|
|
77987
78001
|
...
|
|
77988
78002
|
|
|
@@ -78027,6 +78041,7 @@ class _IVpnConnectionProxy(
|
|
|
78027
78041
|
account: typing.Optional[builtins.str] = None,
|
|
78028
78042
|
color: typing.Optional[builtins.str] = None,
|
|
78029
78043
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
78044
|
+
id: typing.Optional[builtins.str] = None,
|
|
78030
78045
|
label: typing.Optional[builtins.str] = None,
|
|
78031
78046
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
78032
78047
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -78034,6 +78049,7 @@ class _IVpnConnectionProxy(
|
|
|
78034
78049
|
stack_region: typing.Optional[builtins.str] = None,
|
|
78035
78050
|
statistic: typing.Optional[builtins.str] = None,
|
|
78036
78051
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
78052
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
78037
78053
|
) -> _Metric_e396a4dc:
|
|
78038
78054
|
'''Return the given named metric for this VPNConnection.
|
|
78039
78055
|
|
|
@@ -78041,6 +78057,7 @@ class _IVpnConnectionProxy(
|
|
|
78041
78057
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
78042
78058
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
78043
78059
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
78060
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
78044
78061
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
78045
78062
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
78046
78063
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -78048,6 +78065,7 @@ class _IVpnConnectionProxy(
|
|
|
78048
78065
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
78049
78066
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
78050
78067
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
78068
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
78051
78069
|
'''
|
|
78052
78070
|
if __debug__:
|
|
78053
78071
|
type_hints = typing.get_type_hints(_typecheckingstub__a2c1c58afbc5e81e1af61d18f3f4b2f840465db1e0e780c358e83b3a110de5ad)
|
|
@@ -78056,6 +78074,7 @@ class _IVpnConnectionProxy(
|
|
|
78056
78074
|
account=account,
|
|
78057
78075
|
color=color,
|
|
78058
78076
|
dimensions_map=dimensions_map,
|
|
78077
|
+
id=id,
|
|
78059
78078
|
label=label,
|
|
78060
78079
|
period=period,
|
|
78061
78080
|
region=region,
|
|
@@ -78063,6 +78082,7 @@ class _IVpnConnectionProxy(
|
|
|
78063
78082
|
stack_region=stack_region,
|
|
78064
78083
|
statistic=statistic,
|
|
78065
78084
|
unit=unit,
|
|
78085
|
+
visible=visible,
|
|
78066
78086
|
)
|
|
78067
78087
|
|
|
78068
78088
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -78074,6 +78094,7 @@ class _IVpnConnectionProxy(
|
|
|
78074
78094
|
account: typing.Optional[builtins.str] = None,
|
|
78075
78095
|
color: typing.Optional[builtins.str] = None,
|
|
78076
78096
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
78097
|
+
id: typing.Optional[builtins.str] = None,
|
|
78077
78098
|
label: typing.Optional[builtins.str] = None,
|
|
78078
78099
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
78079
78100
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -78081,6 +78102,7 @@ class _IVpnConnectionProxy(
|
|
|
78081
78102
|
stack_region: typing.Optional[builtins.str] = None,
|
|
78082
78103
|
statistic: typing.Optional[builtins.str] = None,
|
|
78083
78104
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
78105
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
78084
78106
|
) -> _Metric_e396a4dc:
|
|
78085
78107
|
'''The bytes received through the VPN tunnel.
|
|
78086
78108
|
|
|
@@ -78089,6 +78111,7 @@ class _IVpnConnectionProxy(
|
|
|
78089
78111
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
78090
78112
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
78091
78113
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
78114
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
78092
78115
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
78093
78116
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
78094
78117
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -78096,11 +78119,13 @@ class _IVpnConnectionProxy(
|
|
|
78096
78119
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
78097
78120
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
78098
78121
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
78122
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
78099
78123
|
'''
|
|
78100
78124
|
props = _MetricOptions_1788b62f(
|
|
78101
78125
|
account=account,
|
|
78102
78126
|
color=color,
|
|
78103
78127
|
dimensions_map=dimensions_map,
|
|
78128
|
+
id=id,
|
|
78104
78129
|
label=label,
|
|
78105
78130
|
period=period,
|
|
78106
78131
|
region=region,
|
|
@@ -78108,6 +78133,7 @@ class _IVpnConnectionProxy(
|
|
|
78108
78133
|
stack_region=stack_region,
|
|
78109
78134
|
statistic=statistic,
|
|
78110
78135
|
unit=unit,
|
|
78136
|
+
visible=visible,
|
|
78111
78137
|
)
|
|
78112
78138
|
|
|
78113
78139
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricTunnelDataIn", [props]))
|
|
@@ -78119,6 +78145,7 @@ class _IVpnConnectionProxy(
|
|
|
78119
78145
|
account: typing.Optional[builtins.str] = None,
|
|
78120
78146
|
color: typing.Optional[builtins.str] = None,
|
|
78121
78147
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
78148
|
+
id: typing.Optional[builtins.str] = None,
|
|
78122
78149
|
label: typing.Optional[builtins.str] = None,
|
|
78123
78150
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
78124
78151
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -78126,6 +78153,7 @@ class _IVpnConnectionProxy(
|
|
|
78126
78153
|
stack_region: typing.Optional[builtins.str] = None,
|
|
78127
78154
|
statistic: typing.Optional[builtins.str] = None,
|
|
78128
78155
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
78156
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
78129
78157
|
) -> _Metric_e396a4dc:
|
|
78130
78158
|
'''The bytes sent through the VPN tunnel.
|
|
78131
78159
|
|
|
@@ -78134,6 +78162,7 @@ class _IVpnConnectionProxy(
|
|
|
78134
78162
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
78135
78163
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
78136
78164
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
78165
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
78137
78166
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
78138
78167
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
78139
78168
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -78141,11 +78170,13 @@ class _IVpnConnectionProxy(
|
|
|
78141
78170
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
78142
78171
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
78143
78172
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
78173
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
78144
78174
|
'''
|
|
78145
78175
|
props = _MetricOptions_1788b62f(
|
|
78146
78176
|
account=account,
|
|
78147
78177
|
color=color,
|
|
78148
78178
|
dimensions_map=dimensions_map,
|
|
78179
|
+
id=id,
|
|
78149
78180
|
label=label,
|
|
78150
78181
|
period=period,
|
|
78151
78182
|
region=region,
|
|
@@ -78153,6 +78184,7 @@ class _IVpnConnectionProxy(
|
|
|
78153
78184
|
stack_region=stack_region,
|
|
78154
78185
|
statistic=statistic,
|
|
78155
78186
|
unit=unit,
|
|
78187
|
+
visible=visible,
|
|
78156
78188
|
)
|
|
78157
78189
|
|
|
78158
78190
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricTunnelDataOut", [props]))
|
|
@@ -78164,6 +78196,7 @@ class _IVpnConnectionProxy(
|
|
|
78164
78196
|
account: typing.Optional[builtins.str] = None,
|
|
78165
78197
|
color: typing.Optional[builtins.str] = None,
|
|
78166
78198
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
78199
|
+
id: typing.Optional[builtins.str] = None,
|
|
78167
78200
|
label: typing.Optional[builtins.str] = None,
|
|
78168
78201
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
78169
78202
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -78171,6 +78204,7 @@ class _IVpnConnectionProxy(
|
|
|
78171
78204
|
stack_region: typing.Optional[builtins.str] = None,
|
|
78172
78205
|
statistic: typing.Optional[builtins.str] = None,
|
|
78173
78206
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
78207
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
78174
78208
|
) -> _Metric_e396a4dc:
|
|
78175
78209
|
'''The state of the tunnel. 0 indicates DOWN and 1 indicates UP.
|
|
78176
78210
|
|
|
@@ -78179,6 +78213,7 @@ class _IVpnConnectionProxy(
|
|
|
78179
78213
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
78180
78214
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
78181
78215
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
78216
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
78182
78217
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
78183
78218
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
78184
78219
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -78186,11 +78221,13 @@ class _IVpnConnectionProxy(
|
|
|
78186
78221
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
78187
78222
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
78188
78223
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
78224
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
78189
78225
|
'''
|
|
78190
78226
|
props = _MetricOptions_1788b62f(
|
|
78191
78227
|
account=account,
|
|
78192
78228
|
color=color,
|
|
78193
78229
|
dimensions_map=dimensions_map,
|
|
78230
|
+
id=id,
|
|
78194
78231
|
label=label,
|
|
78195
78232
|
period=period,
|
|
78196
78233
|
region=region,
|
|
@@ -78198,6 +78235,7 @@ class _IVpnConnectionProxy(
|
|
|
78198
78235
|
stack_region=stack_region,
|
|
78199
78236
|
statistic=statistic,
|
|
78200
78237
|
unit=unit,
|
|
78238
|
+
visible=visible,
|
|
78201
78239
|
)
|
|
78202
78240
|
|
|
78203
78241
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricTunnelState", [props]))
|
|
@@ -80911,6 +80949,10 @@ class InstanceClass(enum.Enum):
|
|
|
80911
80949
|
'''Compute optimized instances for high performance computing, 7th generation with Graviton3 processors and high network bandwidth capabilities.'''
|
|
80912
80950
|
C7GN = "C7GN"
|
|
80913
80951
|
'''Compute optimized instances for high performance computing, 7th generation with Graviton3 processors and high network bandwidth capabilities.'''
|
|
80952
|
+
COMPUTE8_GRAVITON4_HIGH_NETWORK_BANDWIDTH = "COMPUTE8_GRAVITON4_HIGH_NETWORK_BANDWIDTH"
|
|
80953
|
+
'''Compute optimized instances for high performance computing, 8th generation with Graviton4 processors and high network bandwidth capabilities.'''
|
|
80954
|
+
C8GN = "C8GN"
|
|
80955
|
+
'''Compute optimized instances for high performance computing, 8th generation with Graviton4 processors and high network bandwidth capabilities.'''
|
|
80914
80956
|
COMPUTE7_INTEL = "COMPUTE7_INTEL"
|
|
80915
80957
|
'''Compute optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation.'''
|
|
80916
80958
|
C7I = "C7I"
|
|
@@ -97352,6 +97394,7 @@ class VpnConnectionBase(
|
|
|
97352
97394
|
account: typing.Optional[builtins.str] = None,
|
|
97353
97395
|
color: typing.Optional[builtins.str] = None,
|
|
97354
97396
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
97397
|
+
id: typing.Optional[builtins.str] = None,
|
|
97355
97398
|
label: typing.Optional[builtins.str] = None,
|
|
97356
97399
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
97357
97400
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -97359,6 +97402,7 @@ class VpnConnectionBase(
|
|
|
97359
97402
|
stack_region: typing.Optional[builtins.str] = None,
|
|
97360
97403
|
statistic: typing.Optional[builtins.str] = None,
|
|
97361
97404
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
97405
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
97362
97406
|
) -> _Metric_e396a4dc:
|
|
97363
97407
|
'''Return the given named metric for this VPNConnection.
|
|
97364
97408
|
|
|
@@ -97366,6 +97410,7 @@ class VpnConnectionBase(
|
|
|
97366
97410
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
97367
97411
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
97368
97412
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
97413
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
97369
97414
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
97370
97415
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
97371
97416
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -97373,6 +97418,7 @@ class VpnConnectionBase(
|
|
|
97373
97418
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
97374
97419
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
97375
97420
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
97421
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
97376
97422
|
'''
|
|
97377
97423
|
if __debug__:
|
|
97378
97424
|
type_hints = typing.get_type_hints(_typecheckingstub__1f244e2fd0db7fcc2c7468799c9a19c8b2a0a6f87bbe53904f9e9cf45c6d5c89)
|
|
@@ -97381,6 +97427,7 @@ class VpnConnectionBase(
|
|
|
97381
97427
|
account=account,
|
|
97382
97428
|
color=color,
|
|
97383
97429
|
dimensions_map=dimensions_map,
|
|
97430
|
+
id=id,
|
|
97384
97431
|
label=label,
|
|
97385
97432
|
period=period,
|
|
97386
97433
|
region=region,
|
|
@@ -97388,6 +97435,7 @@ class VpnConnectionBase(
|
|
|
97388
97435
|
stack_region=stack_region,
|
|
97389
97436
|
statistic=statistic,
|
|
97390
97437
|
unit=unit,
|
|
97438
|
+
visible=visible,
|
|
97391
97439
|
)
|
|
97392
97440
|
|
|
97393
97441
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -97399,6 +97447,7 @@ class VpnConnectionBase(
|
|
|
97399
97447
|
account: typing.Optional[builtins.str] = None,
|
|
97400
97448
|
color: typing.Optional[builtins.str] = None,
|
|
97401
97449
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
97450
|
+
id: typing.Optional[builtins.str] = None,
|
|
97402
97451
|
label: typing.Optional[builtins.str] = None,
|
|
97403
97452
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
97404
97453
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -97406,6 +97455,7 @@ class VpnConnectionBase(
|
|
|
97406
97455
|
stack_region: typing.Optional[builtins.str] = None,
|
|
97407
97456
|
statistic: typing.Optional[builtins.str] = None,
|
|
97408
97457
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
97458
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
97409
97459
|
) -> _Metric_e396a4dc:
|
|
97410
97460
|
'''The bytes received through the VPN tunnel.
|
|
97411
97461
|
|
|
@@ -97414,6 +97464,7 @@ class VpnConnectionBase(
|
|
|
97414
97464
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
97415
97465
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
97416
97466
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
97467
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
97417
97468
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
97418
97469
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
97419
97470
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -97421,11 +97472,13 @@ class VpnConnectionBase(
|
|
|
97421
97472
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
97422
97473
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
97423
97474
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
97475
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
97424
97476
|
'''
|
|
97425
97477
|
props = _MetricOptions_1788b62f(
|
|
97426
97478
|
account=account,
|
|
97427
97479
|
color=color,
|
|
97428
97480
|
dimensions_map=dimensions_map,
|
|
97481
|
+
id=id,
|
|
97429
97482
|
label=label,
|
|
97430
97483
|
period=period,
|
|
97431
97484
|
region=region,
|
|
@@ -97433,6 +97486,7 @@ class VpnConnectionBase(
|
|
|
97433
97486
|
stack_region=stack_region,
|
|
97434
97487
|
statistic=statistic,
|
|
97435
97488
|
unit=unit,
|
|
97489
|
+
visible=visible,
|
|
97436
97490
|
)
|
|
97437
97491
|
|
|
97438
97492
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricTunnelDataIn", [props]))
|
|
@@ -97444,6 +97498,7 @@ class VpnConnectionBase(
|
|
|
97444
97498
|
account: typing.Optional[builtins.str] = None,
|
|
97445
97499
|
color: typing.Optional[builtins.str] = None,
|
|
97446
97500
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
97501
|
+
id: typing.Optional[builtins.str] = None,
|
|
97447
97502
|
label: typing.Optional[builtins.str] = None,
|
|
97448
97503
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
97449
97504
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -97451,6 +97506,7 @@ class VpnConnectionBase(
|
|
|
97451
97506
|
stack_region: typing.Optional[builtins.str] = None,
|
|
97452
97507
|
statistic: typing.Optional[builtins.str] = None,
|
|
97453
97508
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
97509
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
97454
97510
|
) -> _Metric_e396a4dc:
|
|
97455
97511
|
'''The bytes sent through the VPN tunnel.
|
|
97456
97512
|
|
|
@@ -97459,6 +97515,7 @@ class VpnConnectionBase(
|
|
|
97459
97515
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
97460
97516
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
97461
97517
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
97518
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
97462
97519
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
97463
97520
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
97464
97521
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -97466,11 +97523,13 @@ class VpnConnectionBase(
|
|
|
97466
97523
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
97467
97524
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
97468
97525
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
97526
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
97469
97527
|
'''
|
|
97470
97528
|
props = _MetricOptions_1788b62f(
|
|
97471
97529
|
account=account,
|
|
97472
97530
|
color=color,
|
|
97473
97531
|
dimensions_map=dimensions_map,
|
|
97532
|
+
id=id,
|
|
97474
97533
|
label=label,
|
|
97475
97534
|
period=period,
|
|
97476
97535
|
region=region,
|
|
@@ -97478,6 +97537,7 @@ class VpnConnectionBase(
|
|
|
97478
97537
|
stack_region=stack_region,
|
|
97479
97538
|
statistic=statistic,
|
|
97480
97539
|
unit=unit,
|
|
97540
|
+
visible=visible,
|
|
97481
97541
|
)
|
|
97482
97542
|
|
|
97483
97543
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricTunnelDataOut", [props]))
|
|
@@ -97489,6 +97549,7 @@ class VpnConnectionBase(
|
|
|
97489
97549
|
account: typing.Optional[builtins.str] = None,
|
|
97490
97550
|
color: typing.Optional[builtins.str] = None,
|
|
97491
97551
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
97552
|
+
id: typing.Optional[builtins.str] = None,
|
|
97492
97553
|
label: typing.Optional[builtins.str] = None,
|
|
97493
97554
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
97494
97555
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -97496,6 +97557,7 @@ class VpnConnectionBase(
|
|
|
97496
97557
|
stack_region: typing.Optional[builtins.str] = None,
|
|
97497
97558
|
statistic: typing.Optional[builtins.str] = None,
|
|
97498
97559
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
97560
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
97499
97561
|
) -> _Metric_e396a4dc:
|
|
97500
97562
|
'''The state of the tunnel. 0 indicates DOWN and 1 indicates UP.
|
|
97501
97563
|
|
|
@@ -97504,6 +97566,7 @@ class VpnConnectionBase(
|
|
|
97504
97566
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
97505
97567
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
97506
97568
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
97569
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
97507
97570
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
97508
97571
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
97509
97572
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -97511,11 +97574,13 @@ class VpnConnectionBase(
|
|
|
97511
97574
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
97512
97575
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
97513
97576
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
97577
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
97514
97578
|
'''
|
|
97515
97579
|
props = _MetricOptions_1788b62f(
|
|
97516
97580
|
account=account,
|
|
97517
97581
|
color=color,
|
|
97518
97582
|
dimensions_map=dimensions_map,
|
|
97583
|
+
id=id,
|
|
97519
97584
|
label=label,
|
|
97520
97585
|
period=period,
|
|
97521
97586
|
region=region,
|
|
@@ -97523,6 +97588,7 @@ class VpnConnectionBase(
|
|
|
97523
97588
|
stack_region=stack_region,
|
|
97524
97589
|
statistic=statistic,
|
|
97525
97590
|
unit=unit,
|
|
97591
|
+
visible=visible,
|
|
97526
97592
|
)
|
|
97527
97593
|
|
|
97528
97594
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricTunnelState", [props]))
|
|
@@ -102992,6 +103058,7 @@ class VpnConnection(
|
|
|
102992
103058
|
account: typing.Optional[builtins.str] = None,
|
|
102993
103059
|
color: typing.Optional[builtins.str] = None,
|
|
102994
103060
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
103061
|
+
id: typing.Optional[builtins.str] = None,
|
|
102995
103062
|
label: typing.Optional[builtins.str] = None,
|
|
102996
103063
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
102997
103064
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -102999,6 +103066,7 @@ class VpnConnection(
|
|
|
102999
103066
|
stack_region: typing.Optional[builtins.str] = None,
|
|
103000
103067
|
statistic: typing.Optional[builtins.str] = None,
|
|
103001
103068
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
103069
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
103002
103070
|
) -> _Metric_e396a4dc:
|
|
103003
103071
|
'''Return the given named metric for all VPN connections in the account/region.
|
|
103004
103072
|
|
|
@@ -103006,6 +103074,7 @@ class VpnConnection(
|
|
|
103006
103074
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
103007
103075
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
103008
103076
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
103077
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
103009
103078
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
103010
103079
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
103011
103080
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -103013,6 +103082,7 @@ class VpnConnection(
|
|
|
103013
103082
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
103014
103083
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
103015
103084
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
103085
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
103016
103086
|
'''
|
|
103017
103087
|
if __debug__:
|
|
103018
103088
|
type_hints = typing.get_type_hints(_typecheckingstub__bae7a2df51c395d1a24d11925c809c17449294a288dc41db5331ecdee31f4f84)
|
|
@@ -103021,6 +103091,7 @@ class VpnConnection(
|
|
|
103021
103091
|
account=account,
|
|
103022
103092
|
color=color,
|
|
103023
103093
|
dimensions_map=dimensions_map,
|
|
103094
|
+
id=id,
|
|
103024
103095
|
label=label,
|
|
103025
103096
|
period=period,
|
|
103026
103097
|
region=region,
|
|
@@ -103028,6 +103099,7 @@ class VpnConnection(
|
|
|
103028
103099
|
stack_region=stack_region,
|
|
103029
103100
|
statistic=statistic,
|
|
103030
103101
|
unit=unit,
|
|
103102
|
+
visible=visible,
|
|
103031
103103
|
)
|
|
103032
103104
|
|
|
103033
103105
|
return typing.cast(_Metric_e396a4dc, jsii.sinvoke(cls, "metricAll", [metric_name, props]))
|
|
@@ -103040,6 +103112,7 @@ class VpnConnection(
|
|
|
103040
103112
|
account: typing.Optional[builtins.str] = None,
|
|
103041
103113
|
color: typing.Optional[builtins.str] = None,
|
|
103042
103114
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
103115
|
+
id: typing.Optional[builtins.str] = None,
|
|
103043
103116
|
label: typing.Optional[builtins.str] = None,
|
|
103044
103117
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
103045
103118
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -103047,12 +103120,14 @@ class VpnConnection(
|
|
|
103047
103120
|
stack_region: typing.Optional[builtins.str] = None,
|
|
103048
103121
|
statistic: typing.Optional[builtins.str] = None,
|
|
103049
103122
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
103123
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
103050
103124
|
) -> _Metric_e396a4dc:
|
|
103051
103125
|
'''Metric for the tunnel data in of all VPN connections in the account/region.
|
|
103052
103126
|
|
|
103053
103127
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
103054
103128
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
103055
103129
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
103130
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
103056
103131
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
103057
103132
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
103058
103133
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -103060,6 +103135,7 @@ class VpnConnection(
|
|
|
103060
103135
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
103061
103136
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
103062
103137
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
103138
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
103063
103139
|
|
|
103064
103140
|
:default: sum over 5 minutes
|
|
103065
103141
|
'''
|
|
@@ -103067,6 +103143,7 @@ class VpnConnection(
|
|
|
103067
103143
|
account=account,
|
|
103068
103144
|
color=color,
|
|
103069
103145
|
dimensions_map=dimensions_map,
|
|
103146
|
+
id=id,
|
|
103070
103147
|
label=label,
|
|
103071
103148
|
period=period,
|
|
103072
103149
|
region=region,
|
|
@@ -103074,6 +103151,7 @@ class VpnConnection(
|
|
|
103074
103151
|
stack_region=stack_region,
|
|
103075
103152
|
statistic=statistic,
|
|
103076
103153
|
unit=unit,
|
|
103154
|
+
visible=visible,
|
|
103077
103155
|
)
|
|
103078
103156
|
|
|
103079
103157
|
return typing.cast(_Metric_e396a4dc, jsii.sinvoke(cls, "metricAllTunnelDataIn", [props]))
|
|
@@ -103086,6 +103164,7 @@ class VpnConnection(
|
|
|
103086
103164
|
account: typing.Optional[builtins.str] = None,
|
|
103087
103165
|
color: typing.Optional[builtins.str] = None,
|
|
103088
103166
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
103167
|
+
id: typing.Optional[builtins.str] = None,
|
|
103089
103168
|
label: typing.Optional[builtins.str] = None,
|
|
103090
103169
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
103091
103170
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -103093,12 +103172,14 @@ class VpnConnection(
|
|
|
103093
103172
|
stack_region: typing.Optional[builtins.str] = None,
|
|
103094
103173
|
statistic: typing.Optional[builtins.str] = None,
|
|
103095
103174
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
103175
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
103096
103176
|
) -> _Metric_e396a4dc:
|
|
103097
103177
|
'''Metric for the tunnel data out of all VPN connections.
|
|
103098
103178
|
|
|
103099
103179
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
103100
103180
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
103101
103181
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
103182
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
103102
103183
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
103103
103184
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
103104
103185
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -103106,6 +103187,7 @@ class VpnConnection(
|
|
|
103106
103187
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
103107
103188
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
103108
103189
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
103190
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
103109
103191
|
|
|
103110
103192
|
:default: sum over 5 minutes
|
|
103111
103193
|
'''
|
|
@@ -103113,6 +103195,7 @@ class VpnConnection(
|
|
|
103113
103195
|
account=account,
|
|
103114
103196
|
color=color,
|
|
103115
103197
|
dimensions_map=dimensions_map,
|
|
103198
|
+
id=id,
|
|
103116
103199
|
label=label,
|
|
103117
103200
|
period=period,
|
|
103118
103201
|
region=region,
|
|
@@ -103120,6 +103203,7 @@ class VpnConnection(
|
|
|
103120
103203
|
stack_region=stack_region,
|
|
103121
103204
|
statistic=statistic,
|
|
103122
103205
|
unit=unit,
|
|
103206
|
+
visible=visible,
|
|
103123
103207
|
)
|
|
103124
103208
|
|
|
103125
103209
|
return typing.cast(_Metric_e396a4dc, jsii.sinvoke(cls, "metricAllTunnelDataOut", [props]))
|
|
@@ -103132,6 +103216,7 @@ class VpnConnection(
|
|
|
103132
103216
|
account: typing.Optional[builtins.str] = None,
|
|
103133
103217
|
color: typing.Optional[builtins.str] = None,
|
|
103134
103218
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
103219
|
+
id: typing.Optional[builtins.str] = None,
|
|
103135
103220
|
label: typing.Optional[builtins.str] = None,
|
|
103136
103221
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
103137
103222
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -103139,12 +103224,14 @@ class VpnConnection(
|
|
|
103139
103224
|
stack_region: typing.Optional[builtins.str] = None,
|
|
103140
103225
|
statistic: typing.Optional[builtins.str] = None,
|
|
103141
103226
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
103227
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
103142
103228
|
) -> _Metric_e396a4dc:
|
|
103143
103229
|
'''Metric for the tunnel state of all VPN connections in the account/region.
|
|
103144
103230
|
|
|
103145
103231
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
103146
103232
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
103147
103233
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
103234
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
103148
103235
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
103149
103236
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
103150
103237
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -103152,6 +103239,7 @@ class VpnConnection(
|
|
|
103152
103239
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
103153
103240
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
103154
103241
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
103242
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
103155
103243
|
|
|
103156
103244
|
:default: average over 5 minutes
|
|
103157
103245
|
'''
|
|
@@ -103159,6 +103247,7 @@ class VpnConnection(
|
|
|
103159
103247
|
account=account,
|
|
103160
103248
|
color=color,
|
|
103161
103249
|
dimensions_map=dimensions_map,
|
|
103250
|
+
id=id,
|
|
103162
103251
|
label=label,
|
|
103163
103252
|
period=period,
|
|
103164
103253
|
region=region,
|
|
@@ -103166,6 +103255,7 @@ class VpnConnection(
|
|
|
103166
103255
|
stack_region=stack_region,
|
|
103167
103256
|
statistic=statistic,
|
|
103168
103257
|
unit=unit,
|
|
103258
|
+
visible=visible,
|
|
103169
103259
|
)
|
|
103170
103260
|
|
|
103171
103261
|
return typing.cast(_Metric_e396a4dc, jsii.sinvoke(cls, "metricAllTunnelState", [props]))
|
|
@@ -104959,7 +105049,7 @@ def _typecheckingstub__f6fb1af1f639a354aff6bb978bcac42ab042448e257770c8bed7a4689
|
|
|
104959
105049
|
instance_type_specifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCapacityReservationFleet.InstanceTypeSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
104960
105050
|
no_remove_end_date: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
104961
105051
|
remove_end_date: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
104962
|
-
tag_specifications: typing.Optional[typing.
|
|
105052
|
+
tag_specifications: typing.Optional[typing.Sequence[typing.Union[CfnCapacityReservationFleet.TagSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
104963
105053
|
tenancy: typing.Optional[builtins.str] = None,
|
|
104964
105054
|
total_target_capacity: typing.Optional[jsii.Number] = None,
|
|
104965
105055
|
) -> None:
|
|
@@ -105015,7 +105105,7 @@ def _typecheckingstub__6cfebbe0400b084370b4e45e01a83c61bb47ae01d37c14a2ac6591c47
|
|
|
105015
105105
|
pass
|
|
105016
105106
|
|
|
105017
105107
|
def _typecheckingstub__9be24701036c5abd754bc67058ec4d8c733250163e5a63577648325991d133e9(
|
|
105018
|
-
value: typing.Optional[typing.
|
|
105108
|
+
value: typing.Optional[typing.List[CfnCapacityReservationFleet.TagSpecificationProperty]],
|
|
105019
105109
|
) -> None:
|
|
105020
105110
|
"""Type checking stubs"""
|
|
105021
105111
|
pass
|
|
@@ -105061,7 +105151,7 @@ def _typecheckingstub__43bd0a52cfe7402bf156151a3e760ed1bd133935bd29982a3798f854c
|
|
|
105061
105151
|
instance_type_specifications: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCapacityReservationFleet.InstanceTypeSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
105062
105152
|
no_remove_end_date: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
105063
105153
|
remove_end_date: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
105064
|
-
tag_specifications: typing.Optional[typing.
|
|
105154
|
+
tag_specifications: typing.Optional[typing.Sequence[typing.Union[CfnCapacityReservationFleet.TagSpecificationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
105065
105155
|
tenancy: typing.Optional[builtins.str] = None,
|
|
105066
105156
|
total_target_capacity: typing.Optional[jsii.Number] = None,
|
|
105067
105157
|
) -> None:
|
|
@@ -115041,6 +115131,7 @@ def _typecheckingstub__a2c1c58afbc5e81e1af61d18f3f4b2f840465db1e0e780c358e83b3a1
|
|
|
115041
115131
|
account: typing.Optional[builtins.str] = None,
|
|
115042
115132
|
color: typing.Optional[builtins.str] = None,
|
|
115043
115133
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
115134
|
+
id: typing.Optional[builtins.str] = None,
|
|
115044
115135
|
label: typing.Optional[builtins.str] = None,
|
|
115045
115136
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
115046
115137
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -115048,6 +115139,7 @@ def _typecheckingstub__a2c1c58afbc5e81e1af61d18f3f4b2f840465db1e0e780c358e83b3a1
|
|
|
115048
115139
|
stack_region: typing.Optional[builtins.str] = None,
|
|
115049
115140
|
statistic: typing.Optional[builtins.str] = None,
|
|
115050
115141
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
115142
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
115051
115143
|
) -> None:
|
|
115052
115144
|
"""Type checking stubs"""
|
|
115053
115145
|
pass
|
|
@@ -117078,6 +117170,7 @@ def _typecheckingstub__1f244e2fd0db7fcc2c7468799c9a19c8b2a0a6f87bbe53904f9e9cf45
|
|
|
117078
117170
|
account: typing.Optional[builtins.str] = None,
|
|
117079
117171
|
color: typing.Optional[builtins.str] = None,
|
|
117080
117172
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
117173
|
+
id: typing.Optional[builtins.str] = None,
|
|
117081
117174
|
label: typing.Optional[builtins.str] = None,
|
|
117082
117175
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
117083
117176
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -117085,6 +117178,7 @@ def _typecheckingstub__1f244e2fd0db7fcc2c7468799c9a19c8b2a0a6f87bbe53904f9e9cf45
|
|
|
117085
117178
|
stack_region: typing.Optional[builtins.str] = None,
|
|
117086
117179
|
statistic: typing.Optional[builtins.str] = None,
|
|
117087
117180
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
117181
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
117088
117182
|
) -> None:
|
|
117089
117183
|
"""Type checking stubs"""
|
|
117090
117184
|
pass
|
|
@@ -117690,6 +117784,7 @@ def _typecheckingstub__bae7a2df51c395d1a24d11925c809c17449294a288dc41db5331ecdee
|
|
|
117690
117784
|
account: typing.Optional[builtins.str] = None,
|
|
117691
117785
|
color: typing.Optional[builtins.str] = None,
|
|
117692
117786
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
117787
|
+
id: typing.Optional[builtins.str] = None,
|
|
117693
117788
|
label: typing.Optional[builtins.str] = None,
|
|
117694
117789
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
117695
117790
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -117697,6 +117792,7 @@ def _typecheckingstub__bae7a2df51c395d1a24d11925c809c17449294a288dc41db5331ecdee
|
|
|
117697
117792
|
stack_region: typing.Optional[builtins.str] = None,
|
|
117698
117793
|
statistic: typing.Optional[builtins.str] = None,
|
|
117699
117794
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
117795
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
117700
117796
|
) -> None:
|
|
117701
117797
|
"""Type checking stubs"""
|
|
117702
117798
|
pass
|