aws-cdk-lib 2.196.0__py3-none-any.whl → 2.197.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 +2 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.196.0.jsii.tgz → aws-cdk-lib@2.197.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +90 -1
- aws_cdk/aws_apigatewayv2/__init__.py +866 -0
- aws_cdk/aws_bedrock/__init__.py +32 -26
- aws_cdk/aws_cloudfront/__init__.py +9 -3
- aws_cdk/aws_cloudwatch/__init__.py +756 -29
- aws_cdk/aws_codebuild/__init__.py +19 -0
- aws_cdk/aws_codepipeline/__init__.py +42 -7
- aws_cdk/aws_datasync/__init__.py +43 -72
- aws_cdk/aws_datazone/__init__.py +615 -2
- aws_cdk/aws_deadline/__init__.py +139 -0
- aws_cdk/aws_dsql/__init__.py +35 -1
- aws_cdk/aws_ec2/__init__.py +81 -3
- aws_cdk/aws_ecs/__init__.py +24 -17
- aws_cdk/aws_elasticache/__init__.py +5 -5
- aws_cdk/aws_gamelift/__init__.py +103 -15
- aws_cdk/aws_gameliftstreams/__init__.py +6 -6
- aws_cdk/aws_lambda_nodejs/__init__.py +0 -6
- aws_cdk/aws_omics/__init__.py +920 -103
- aws_cdk/aws_route53resolver/__init__.py +0 -41
- aws_cdk/aws_ses/__init__.py +4 -4
- aws_cdk/aws_workspaces/__init__.py +39 -0
- {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/RECORD +30 -30
- {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.196.0.dist-info → aws_cdk_lib-2.197.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_deadline/__init__.py
CHANGED
|
@@ -514,6 +514,12 @@ class CfnFleet(
|
|
|
514
514
|
|
|
515
515
|
# the properties below are optional
|
|
516
516
|
description="description",
|
|
517
|
+
host_configuration=deadline.CfnFleet.HostConfigurationProperty(
|
|
518
|
+
script_body="scriptBody",
|
|
519
|
+
|
|
520
|
+
# the properties below are optional
|
|
521
|
+
script_timeout_seconds=123
|
|
522
|
+
),
|
|
517
523
|
min_worker_count=123,
|
|
518
524
|
tags=[CfnTag(
|
|
519
525
|
key="key",
|
|
@@ -533,6 +539,7 @@ class CfnFleet(
|
|
|
533
539
|
max_worker_count: jsii.Number,
|
|
534
540
|
role_arn: builtins.str,
|
|
535
541
|
description: typing.Optional[builtins.str] = None,
|
|
542
|
+
host_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFleet.HostConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
536
543
|
min_worker_count: typing.Optional[jsii.Number] = None,
|
|
537
544
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
538
545
|
) -> None:
|
|
@@ -545,6 +552,7 @@ class CfnFleet(
|
|
|
545
552
|
:param max_worker_count: The maximum number of workers specified in the fleet.
|
|
546
553
|
:param role_arn: The IAM role that workers in the fleet use when processing jobs.
|
|
547
554
|
:param description: A description that helps identify what the fleet is used for. .. epigraph:: This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field. Default: - ""
|
|
555
|
+
:param host_configuration:
|
|
548
556
|
:param min_worker_count: The minimum number of workers in the fleet. Default: - 0
|
|
549
557
|
:param tags: The tags to add to your fleet. Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.
|
|
550
558
|
'''
|
|
@@ -559,6 +567,7 @@ class CfnFleet(
|
|
|
559
567
|
max_worker_count=max_worker_count,
|
|
560
568
|
role_arn=role_arn,
|
|
561
569
|
description=description,
|
|
570
|
+
host_configuration=host_configuration,
|
|
562
571
|
min_worker_count=min_worker_count,
|
|
563
572
|
tags=tags,
|
|
564
573
|
)
|
|
@@ -733,6 +742,23 @@ class CfnFleet(
|
|
|
733
742
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
734
743
|
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
735
744
|
|
|
745
|
+
@builtins.property
|
|
746
|
+
@jsii.member(jsii_name="hostConfiguration")
|
|
747
|
+
def host_configuration(
|
|
748
|
+
self,
|
|
749
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFleet.HostConfigurationProperty"]]:
|
|
750
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFleet.HostConfigurationProperty"]], jsii.get(self, "hostConfiguration"))
|
|
751
|
+
|
|
752
|
+
@host_configuration.setter
|
|
753
|
+
def host_configuration(
|
|
754
|
+
self,
|
|
755
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFleet.HostConfigurationProperty"]],
|
|
756
|
+
) -> None:
|
|
757
|
+
if __debug__:
|
|
758
|
+
type_hints = typing.get_type_hints(_typecheckingstub__5cb78c2488fd0676b6c07d92f69a0cf51c19a186b0a6d2f13bbc62aec7608cfe)
|
|
759
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
760
|
+
jsii.set(self, "hostConfiguration", value) # pyright: ignore[reportArgumentType]
|
|
761
|
+
|
|
736
762
|
@builtins.property
|
|
737
763
|
@jsii.member(jsii_name="minWorkerCount")
|
|
738
764
|
def min_worker_count(self) -> typing.Optional[jsii.Number]:
|
|
@@ -1965,6 +1991,81 @@ class CfnFleet(
|
|
|
1965
1991
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
1966
1992
|
)
|
|
1967
1993
|
|
|
1994
|
+
@jsii.data_type(
|
|
1995
|
+
jsii_type="aws-cdk-lib.aws_deadline.CfnFleet.HostConfigurationProperty",
|
|
1996
|
+
jsii_struct_bases=[],
|
|
1997
|
+
name_mapping={
|
|
1998
|
+
"script_body": "scriptBody",
|
|
1999
|
+
"script_timeout_seconds": "scriptTimeoutSeconds",
|
|
2000
|
+
},
|
|
2001
|
+
)
|
|
2002
|
+
class HostConfigurationProperty:
|
|
2003
|
+
def __init__(
|
|
2004
|
+
self,
|
|
2005
|
+
*,
|
|
2006
|
+
script_body: builtins.str,
|
|
2007
|
+
script_timeout_seconds: typing.Optional[jsii.Number] = None,
|
|
2008
|
+
) -> None:
|
|
2009
|
+
'''
|
|
2010
|
+
:param script_body:
|
|
2011
|
+
:param script_timeout_seconds: Default: - 300
|
|
2012
|
+
|
|
2013
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-hostconfiguration.html
|
|
2014
|
+
:exampleMetadata: fixture=_generated
|
|
2015
|
+
|
|
2016
|
+
Example::
|
|
2017
|
+
|
|
2018
|
+
# The code below shows an example of how to instantiate this type.
|
|
2019
|
+
# The values are placeholders you should change.
|
|
2020
|
+
from aws_cdk import aws_deadline as deadline
|
|
2021
|
+
|
|
2022
|
+
host_configuration_property = deadline.CfnFleet.HostConfigurationProperty(
|
|
2023
|
+
script_body="scriptBody",
|
|
2024
|
+
|
|
2025
|
+
# the properties below are optional
|
|
2026
|
+
script_timeout_seconds=123
|
|
2027
|
+
)
|
|
2028
|
+
'''
|
|
2029
|
+
if __debug__:
|
|
2030
|
+
type_hints = typing.get_type_hints(_typecheckingstub__6971feb07454886d39f9f5ddb100459001b23544ed3498597d6b4a0ce4b41965)
|
|
2031
|
+
check_type(argname="argument script_body", value=script_body, expected_type=type_hints["script_body"])
|
|
2032
|
+
check_type(argname="argument script_timeout_seconds", value=script_timeout_seconds, expected_type=type_hints["script_timeout_seconds"])
|
|
2033
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2034
|
+
"script_body": script_body,
|
|
2035
|
+
}
|
|
2036
|
+
if script_timeout_seconds is not None:
|
|
2037
|
+
self._values["script_timeout_seconds"] = script_timeout_seconds
|
|
2038
|
+
|
|
2039
|
+
@builtins.property
|
|
2040
|
+
def script_body(self) -> builtins.str:
|
|
2041
|
+
'''
|
|
2042
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-hostconfiguration.html#cfn-deadline-fleet-hostconfiguration-scriptbody
|
|
2043
|
+
'''
|
|
2044
|
+
result = self._values.get("script_body")
|
|
2045
|
+
assert result is not None, "Required property 'script_body' is missing"
|
|
2046
|
+
return typing.cast(builtins.str, result)
|
|
2047
|
+
|
|
2048
|
+
@builtins.property
|
|
2049
|
+
def script_timeout_seconds(self) -> typing.Optional[jsii.Number]:
|
|
2050
|
+
'''
|
|
2051
|
+
:default: - 300
|
|
2052
|
+
|
|
2053
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-hostconfiguration.html#cfn-deadline-fleet-hostconfiguration-scripttimeoutseconds
|
|
2054
|
+
'''
|
|
2055
|
+
result = self._values.get("script_timeout_seconds")
|
|
2056
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
2057
|
+
|
|
2058
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2059
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2060
|
+
|
|
2061
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2062
|
+
return not (rhs == self)
|
|
2063
|
+
|
|
2064
|
+
def __repr__(self) -> str:
|
|
2065
|
+
return "HostConfigurationProperty(%s)" % ", ".join(
|
|
2066
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2067
|
+
)
|
|
2068
|
+
|
|
1968
2069
|
@jsii.data_type(
|
|
1969
2070
|
jsii_type="aws-cdk-lib.aws_deadline.CfnFleet.MemoryMiBRangeProperty",
|
|
1970
2071
|
jsii_struct_bases=[],
|
|
@@ -2559,6 +2660,7 @@ class CfnFleet(
|
|
|
2559
2660
|
"max_worker_count": "maxWorkerCount",
|
|
2560
2661
|
"role_arn": "roleArn",
|
|
2561
2662
|
"description": "description",
|
|
2663
|
+
"host_configuration": "hostConfiguration",
|
|
2562
2664
|
"min_worker_count": "minWorkerCount",
|
|
2563
2665
|
"tags": "tags",
|
|
2564
2666
|
},
|
|
@@ -2573,6 +2675,7 @@ class CfnFleetProps:
|
|
|
2573
2675
|
max_worker_count: jsii.Number,
|
|
2574
2676
|
role_arn: builtins.str,
|
|
2575
2677
|
description: typing.Optional[builtins.str] = None,
|
|
2678
|
+
host_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFleet.HostConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2576
2679
|
min_worker_count: typing.Optional[jsii.Number] = None,
|
|
2577
2680
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2578
2681
|
) -> None:
|
|
@@ -2584,6 +2687,7 @@ class CfnFleetProps:
|
|
|
2584
2687
|
:param max_worker_count: The maximum number of workers specified in the fleet.
|
|
2585
2688
|
:param role_arn: The IAM role that workers in the fleet use when processing jobs.
|
|
2586
2689
|
:param description: A description that helps identify what the fleet is used for. .. epigraph:: This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field. Default: - ""
|
|
2690
|
+
:param host_configuration:
|
|
2587
2691
|
:param min_worker_count: The minimum number of workers in the fleet. Default: - 0
|
|
2588
2692
|
:param tags: The tags to add to your fleet. Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.
|
|
2589
2693
|
|
|
@@ -2711,6 +2815,12 @@ class CfnFleetProps:
|
|
|
2711
2815
|
|
|
2712
2816
|
# the properties below are optional
|
|
2713
2817
|
description="description",
|
|
2818
|
+
host_configuration=deadline.CfnFleet.HostConfigurationProperty(
|
|
2819
|
+
script_body="scriptBody",
|
|
2820
|
+
|
|
2821
|
+
# the properties below are optional
|
|
2822
|
+
script_timeout_seconds=123
|
|
2823
|
+
),
|
|
2714
2824
|
min_worker_count=123,
|
|
2715
2825
|
tags=[CfnTag(
|
|
2716
2826
|
key="key",
|
|
@@ -2726,6 +2836,7 @@ class CfnFleetProps:
|
|
|
2726
2836
|
check_type(argname="argument max_worker_count", value=max_worker_count, expected_type=type_hints["max_worker_count"])
|
|
2727
2837
|
check_type(argname="argument role_arn", value=role_arn, expected_type=type_hints["role_arn"])
|
|
2728
2838
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
2839
|
+
check_type(argname="argument host_configuration", value=host_configuration, expected_type=type_hints["host_configuration"])
|
|
2729
2840
|
check_type(argname="argument min_worker_count", value=min_worker_count, expected_type=type_hints["min_worker_count"])
|
|
2730
2841
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
2731
2842
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
@@ -2737,6 +2848,8 @@ class CfnFleetProps:
|
|
|
2737
2848
|
}
|
|
2738
2849
|
if description is not None:
|
|
2739
2850
|
self._values["description"] = description
|
|
2851
|
+
if host_configuration is not None:
|
|
2852
|
+
self._values["host_configuration"] = host_configuration
|
|
2740
2853
|
if min_worker_count is not None:
|
|
2741
2854
|
self._values["min_worker_count"] = min_worker_count
|
|
2742
2855
|
if tags is not None:
|
|
@@ -2813,6 +2926,16 @@ class CfnFleetProps:
|
|
|
2813
2926
|
result = self._values.get("description")
|
|
2814
2927
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2815
2928
|
|
|
2929
|
+
@builtins.property
|
|
2930
|
+
def host_configuration(
|
|
2931
|
+
self,
|
|
2932
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnFleet.HostConfigurationProperty]]:
|
|
2933
|
+
'''
|
|
2934
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-fleet.html#cfn-deadline-fleet-hostconfiguration
|
|
2935
|
+
'''
|
|
2936
|
+
result = self._values.get("host_configuration")
|
|
2937
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnFleet.HostConfigurationProperty]], result)
|
|
2938
|
+
|
|
2816
2939
|
@builtins.property
|
|
2817
2940
|
def min_worker_count(self) -> typing.Optional[jsii.Number]:
|
|
2818
2941
|
'''The minimum number of workers in the fleet.
|
|
@@ -6067,6 +6190,7 @@ def _typecheckingstub__b982dfa2ac88548efd13c63c65f7144bf79a74dd670eebe5a13537f1f
|
|
|
6067
6190
|
max_worker_count: jsii.Number,
|
|
6068
6191
|
role_arn: builtins.str,
|
|
6069
6192
|
description: typing.Optional[builtins.str] = None,
|
|
6193
|
+
host_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFleet.HostConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6070
6194
|
min_worker_count: typing.Optional[jsii.Number] = None,
|
|
6071
6195
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6072
6196
|
) -> None:
|
|
@@ -6121,6 +6245,12 @@ def _typecheckingstub__084da5a242d843b332de24a8c53af7e8830cd00d0dca22235f0c3d665
|
|
|
6121
6245
|
"""Type checking stubs"""
|
|
6122
6246
|
pass
|
|
6123
6247
|
|
|
6248
|
+
def _typecheckingstub__5cb78c2488fd0676b6c07d92f69a0cf51c19a186b0a6d2f13bbc62aec7608cfe(
|
|
6249
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnFleet.HostConfigurationProperty]],
|
|
6250
|
+
) -> None:
|
|
6251
|
+
"""Type checking stubs"""
|
|
6252
|
+
pass
|
|
6253
|
+
|
|
6124
6254
|
def _typecheckingstub__e98aa63695c4cd93c0aae20c0cd7e90226c1100540a8732e0be19b9d6cc5e094(
|
|
6125
6255
|
value: typing.Optional[jsii.Number],
|
|
6126
6256
|
) -> None:
|
|
@@ -6231,6 +6361,14 @@ def _typecheckingstub__3ef3ed1850d4005d38d3a6c912a28b59698026461815dad08ff096a4c
|
|
|
6231
6361
|
"""Type checking stubs"""
|
|
6232
6362
|
pass
|
|
6233
6363
|
|
|
6364
|
+
def _typecheckingstub__6971feb07454886d39f9f5ddb100459001b23544ed3498597d6b4a0ce4b41965(
|
|
6365
|
+
*,
|
|
6366
|
+
script_body: builtins.str,
|
|
6367
|
+
script_timeout_seconds: typing.Optional[jsii.Number] = None,
|
|
6368
|
+
) -> None:
|
|
6369
|
+
"""Type checking stubs"""
|
|
6370
|
+
pass
|
|
6371
|
+
|
|
6234
6372
|
def _typecheckingstub__e0c49c5364d9d5abab3267eb2a6afca69f203020da3e42493624297dd2a5bf0f(
|
|
6235
6373
|
*,
|
|
6236
6374
|
min: jsii.Number,
|
|
@@ -6286,6 +6424,7 @@ def _typecheckingstub__a1472efddb89af74b2ae4dc1156d30448332099bec47f03ae56886a44
|
|
|
6286
6424
|
max_worker_count: jsii.Number,
|
|
6287
6425
|
role_arn: builtins.str,
|
|
6288
6426
|
description: typing.Optional[builtins.str] = None,
|
|
6427
|
+
host_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFleet.HostConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6289
6428
|
min_worker_count: typing.Optional[jsii.Number] = None,
|
|
6290
6429
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6291
6430
|
) -> None:
|
aws_cdk/aws_dsql/__init__.py
CHANGED
|
@@ -85,7 +85,41 @@ class CfnCluster(
|
|
|
85
85
|
metaclass=jsii.JSIIMeta,
|
|
86
86
|
jsii_type="aws-cdk-lib.aws_dsql.CfnCluster",
|
|
87
87
|
):
|
|
88
|
-
'''
|
|
88
|
+
'''The CreateCluster API allows you to create both single-region clusters and multi-Region clusters.
|
|
89
|
+
|
|
90
|
+
With the addition of the *multiRegionProperties* parameter, you can create a cluster with witness Region support and establish peer relationships with clusters in other Regions during creation.
|
|
91
|
+
.. epigraph::
|
|
92
|
+
|
|
93
|
+
Creating multi-Region clusters requires additional IAM permissions beyond those needed for single-Region clusters, as detailed in the *Required permissions* section below.
|
|
94
|
+
|
|
95
|
+
*Required permissions*
|
|
96
|
+
|
|
97
|
+
- **dsql:CreateCluster** - Required to create a cluster.
|
|
98
|
+
|
|
99
|
+
Resources: ``arn:aws:dsql:region:account-id:cluster/*``
|
|
100
|
+
|
|
101
|
+
- **dsql:TagResource** - Permission to add tags to a resource.
|
|
102
|
+
|
|
103
|
+
Resources: ``arn:aws:dsql:region:account-id:cluster/*``
|
|
104
|
+
|
|
105
|
+
- **dsql:PutMultiRegionProperties** - Permission to configure multi-region properties for a cluster.
|
|
106
|
+
|
|
107
|
+
Resources: ``arn:aws:dsql:region:account-id:cluster/*``
|
|
108
|
+
|
|
109
|
+
- **dsql:AddPeerCluster** - When specifying ``multiRegionProperties.clusters`` , permission to add peer clusters.
|
|
110
|
+
|
|
111
|
+
Resources:
|
|
112
|
+
|
|
113
|
+
- Local cluster: ``arn:aws:dsql:region:account-id:cluster/*``
|
|
114
|
+
- Each peer cluster: exact ARN of each specified peer cluster
|
|
115
|
+
- **dsql:PutWitnessRegion** - When specifying ``multiRegionProperties.witnessRegion`` , permission to set a witness Region. This permission is checked both in the cluster Region and in the witness Region.
|
|
116
|
+
|
|
117
|
+
Resources: ``arn:aws:dsql:region:account-id:cluster/*``
|
|
118
|
+
|
|
119
|
+
Condition Keys: ``dsql:WitnessRegion`` (matching the specified witness region)
|
|
120
|
+
.. epigraph::
|
|
121
|
+
|
|
122
|
+
- The witness Region specified in ``multiRegionProperties.witnessRegion`` cannot be the same as the cluster's Region.
|
|
89
123
|
|
|
90
124
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dsql-cluster.html
|
|
91
125
|
:cloudformationResource: AWS::DSQL::Cluster
|
aws_cdk/aws_ec2/__init__.py
CHANGED
|
@@ -17419,6 +17419,7 @@ class CfnIPAM(
|
|
|
17419
17419
|
)],
|
|
17420
17420
|
description="description",
|
|
17421
17421
|
enable_private_gua=False,
|
|
17422
|
+
metered_account="meteredAccount",
|
|
17422
17423
|
operating_regions=[ec2.CfnIPAM.IpamOperatingRegionProperty(
|
|
17423
17424
|
region_name="regionName"
|
|
17424
17425
|
)],
|
|
@@ -17438,6 +17439,7 @@ class CfnIPAM(
|
|
|
17438
17439
|
default_resource_discovery_organizational_unit_exclusions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnIPAM.IpamOrganizationalUnitExclusionProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
17439
17440
|
description: typing.Optional[builtins.str] = None,
|
|
17440
17441
|
enable_private_gua: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
17442
|
+
metered_account: typing.Optional[builtins.str] = None,
|
|
17441
17443
|
operating_regions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnIPAM.IpamOperatingRegionProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
17442
17444
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17443
17445
|
tier: typing.Optional[builtins.str] = None,
|
|
@@ -17448,6 +17450,7 @@ class CfnIPAM(
|
|
|
17448
17450
|
:param default_resource_discovery_organizational_unit_exclusions: If your IPAM is integrated with AWS Organizations, you can exclude an `organizational unit (OU) <https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#organizationalunit>`_ from being managed by IPAM. When you exclude an OU, IPAM will not manage the IP addresses in accounts in that OU. For more information, see `Exclude organizational units from IPAM <https://docs.aws.amazon.com/vpc/latest/ipam/exclude-ous.html>`_ in the *Amazon Virtual Private Cloud IP Address Manager User Guide* .
|
|
17449
17451
|
:param description: The description for the IPAM.
|
|
17450
17452
|
:param enable_private_gua: Enable this option to use your own GUA ranges as private IPv6 addresses. This option is disabled by default.
|
|
17453
|
+
:param metered_account: A metered account is an account that is charged for active IP addresses managed in IPAM.
|
|
17451
17454
|
:param operating_regions: The operating Regions for an IPAM. Operating Regions are AWS Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the AWS Regions you select as operating Regions. For more information about operating Regions, see `Create an IPAM <https://docs.aws.amazon.com//vpc/latest/ipam/create-ipam.html>`_ in the *Amazon VPC IPAM User Guide* .
|
|
17452
17455
|
:param tags: The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key ``Owner`` and the value ``TeamA`` , specify ``tag:Owner`` for the filter name and ``TeamA`` for the filter value.
|
|
17453
17456
|
:param tier: IPAM is offered in a Free Tier and an Advanced Tier. For more information about the features available in each tier and the costs associated with the tiers, see the `VPC IPAM product pricing page <https://docs.aws.amazon.com//vpc/pricing/>`_ .
|
|
@@ -17460,6 +17463,7 @@ class CfnIPAM(
|
|
|
17460
17463
|
default_resource_discovery_organizational_unit_exclusions=default_resource_discovery_organizational_unit_exclusions,
|
|
17461
17464
|
description=description,
|
|
17462
17465
|
enable_private_gua=enable_private_gua,
|
|
17466
|
+
metered_account=metered_account,
|
|
17463
17467
|
operating_regions=operating_regions,
|
|
17464
17468
|
tags=tags,
|
|
17465
17469
|
tier=tier,
|
|
@@ -17629,6 +17633,19 @@ class CfnIPAM(
|
|
|
17629
17633
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
17630
17634
|
jsii.set(self, "enablePrivateGua", value) # pyright: ignore[reportArgumentType]
|
|
17631
17635
|
|
|
17636
|
+
@builtins.property
|
|
17637
|
+
@jsii.member(jsii_name="meteredAccount")
|
|
17638
|
+
def metered_account(self) -> typing.Optional[builtins.str]:
|
|
17639
|
+
'''A metered account is an account that is charged for active IP addresses managed in IPAM.'''
|
|
17640
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "meteredAccount"))
|
|
17641
|
+
|
|
17642
|
+
@metered_account.setter
|
|
17643
|
+
def metered_account(self, value: typing.Optional[builtins.str]) -> None:
|
|
17644
|
+
if __debug__:
|
|
17645
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b7c475d5b75fcafe38c1fbc14c605291329e484c6645ef305655b392e315268a)
|
|
17646
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
17647
|
+
jsii.set(self, "meteredAccount", value) # pyright: ignore[reportArgumentType]
|
|
17648
|
+
|
|
17632
17649
|
@builtins.property
|
|
17633
17650
|
@jsii.member(jsii_name="operatingRegions")
|
|
17634
17651
|
def operating_regions(
|
|
@@ -19313,6 +19330,7 @@ class CfnIPAMPoolProps:
|
|
|
19313
19330
|
"default_resource_discovery_organizational_unit_exclusions": "defaultResourceDiscoveryOrganizationalUnitExclusions",
|
|
19314
19331
|
"description": "description",
|
|
19315
19332
|
"enable_private_gua": "enablePrivateGua",
|
|
19333
|
+
"metered_account": "meteredAccount",
|
|
19316
19334
|
"operating_regions": "operatingRegions",
|
|
19317
19335
|
"tags": "tags",
|
|
19318
19336
|
"tier": "tier",
|
|
@@ -19325,6 +19343,7 @@ class CfnIPAMProps:
|
|
|
19325
19343
|
default_resource_discovery_organizational_unit_exclusions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIPAM.IpamOrganizationalUnitExclusionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
19326
19344
|
description: typing.Optional[builtins.str] = None,
|
|
19327
19345
|
enable_private_gua: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
19346
|
+
metered_account: typing.Optional[builtins.str] = None,
|
|
19328
19347
|
operating_regions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIPAM.IpamOperatingRegionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
19329
19348
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
19330
19349
|
tier: typing.Optional[builtins.str] = None,
|
|
@@ -19334,6 +19353,7 @@ class CfnIPAMProps:
|
|
|
19334
19353
|
:param default_resource_discovery_organizational_unit_exclusions: If your IPAM is integrated with AWS Organizations, you can exclude an `organizational unit (OU) <https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#organizationalunit>`_ from being managed by IPAM. When you exclude an OU, IPAM will not manage the IP addresses in accounts in that OU. For more information, see `Exclude organizational units from IPAM <https://docs.aws.amazon.com/vpc/latest/ipam/exclude-ous.html>`_ in the *Amazon Virtual Private Cloud IP Address Manager User Guide* .
|
|
19335
19354
|
:param description: The description for the IPAM.
|
|
19336
19355
|
:param enable_private_gua: Enable this option to use your own GUA ranges as private IPv6 addresses. This option is disabled by default.
|
|
19356
|
+
:param metered_account: A metered account is an account that is charged for active IP addresses managed in IPAM.
|
|
19337
19357
|
:param operating_regions: The operating Regions for an IPAM. Operating Regions are AWS Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the AWS Regions you select as operating Regions. For more information about operating Regions, see `Create an IPAM <https://docs.aws.amazon.com//vpc/latest/ipam/create-ipam.html>`_ in the *Amazon VPC IPAM User Guide* .
|
|
19338
19358
|
:param tags: The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key ``Owner`` and the value ``TeamA`` , specify ``tag:Owner`` for the filter name and ``TeamA`` for the filter value.
|
|
19339
19359
|
:param tier: IPAM is offered in a Free Tier and an Advanced Tier. For more information about the features available in each tier and the costs associated with the tiers, see the `VPC IPAM product pricing page <https://docs.aws.amazon.com//vpc/pricing/>`_ .
|
|
@@ -19353,6 +19373,7 @@ class CfnIPAMProps:
|
|
|
19353
19373
|
)],
|
|
19354
19374
|
description="description",
|
|
19355
19375
|
enable_private_gua=False,
|
|
19376
|
+
metered_account="meteredAccount",
|
|
19356
19377
|
operating_regions=[ec2.CfnIPAM.IpamOperatingRegionProperty(
|
|
19357
19378
|
region_name="regionName"
|
|
19358
19379
|
)],
|
|
@@ -19368,6 +19389,7 @@ class CfnIPAMProps:
|
|
|
19368
19389
|
check_type(argname="argument default_resource_discovery_organizational_unit_exclusions", value=default_resource_discovery_organizational_unit_exclusions, expected_type=type_hints["default_resource_discovery_organizational_unit_exclusions"])
|
|
19369
19390
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
19370
19391
|
check_type(argname="argument enable_private_gua", value=enable_private_gua, expected_type=type_hints["enable_private_gua"])
|
|
19392
|
+
check_type(argname="argument metered_account", value=metered_account, expected_type=type_hints["metered_account"])
|
|
19371
19393
|
check_type(argname="argument operating_regions", value=operating_regions, expected_type=type_hints["operating_regions"])
|
|
19372
19394
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
19373
19395
|
check_type(argname="argument tier", value=tier, expected_type=type_hints["tier"])
|
|
@@ -19378,6 +19400,8 @@ class CfnIPAMProps:
|
|
|
19378
19400
|
self._values["description"] = description
|
|
19379
19401
|
if enable_private_gua is not None:
|
|
19380
19402
|
self._values["enable_private_gua"] = enable_private_gua
|
|
19403
|
+
if metered_account is not None:
|
|
19404
|
+
self._values["metered_account"] = metered_account
|
|
19381
19405
|
if operating_regions is not None:
|
|
19382
19406
|
self._values["operating_regions"] = operating_regions
|
|
19383
19407
|
if tags is not None:
|
|
@@ -19418,6 +19442,15 @@ class CfnIPAMProps:
|
|
|
19418
19442
|
result = self._values.get("enable_private_gua")
|
|
19419
19443
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
19420
19444
|
|
|
19445
|
+
@builtins.property
|
|
19446
|
+
def metered_account(self) -> typing.Optional[builtins.str]:
|
|
19447
|
+
'''A metered account is an account that is charged for active IP addresses managed in IPAM.
|
|
19448
|
+
|
|
19449
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipam.html#cfn-ec2-ipam-meteredaccount
|
|
19450
|
+
'''
|
|
19451
|
+
result = self._values.get("metered_account")
|
|
19452
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
19453
|
+
|
|
19421
19454
|
@builtins.property
|
|
19422
19455
|
def operating_regions(
|
|
19423
19456
|
self,
|
|
@@ -25887,6 +25920,7 @@ class CfnLaunchTemplate(
|
|
|
25887
25920
|
kms_key_id="kmsKeyId",
|
|
25888
25921
|
snapshot_id="snapshotId",
|
|
25889
25922
|
throughput=123,
|
|
25923
|
+
volume_initialization_rate=123,
|
|
25890
25924
|
volume_size=123,
|
|
25891
25925
|
volume_type="volumeType"
|
|
25892
25926
|
),
|
|
@@ -26446,6 +26480,7 @@ class CfnLaunchTemplate(
|
|
|
26446
26480
|
"kms_key_id": "kmsKeyId",
|
|
26447
26481
|
"snapshot_id": "snapshotId",
|
|
26448
26482
|
"throughput": "throughput",
|
|
26483
|
+
"volume_initialization_rate": "volumeInitializationRate",
|
|
26449
26484
|
"volume_size": "volumeSize",
|
|
26450
26485
|
"volume_type": "volumeType",
|
|
26451
26486
|
},
|
|
@@ -26460,6 +26495,7 @@ class CfnLaunchTemplate(
|
|
|
26460
26495
|
kms_key_id: typing.Optional[builtins.str] = None,
|
|
26461
26496
|
snapshot_id: typing.Optional[builtins.str] = None,
|
|
26462
26497
|
throughput: typing.Optional[jsii.Number] = None,
|
|
26498
|
+
volume_initialization_rate: typing.Optional[jsii.Number] = None,
|
|
26463
26499
|
volume_size: typing.Optional[jsii.Number] = None,
|
|
26464
26500
|
volume_type: typing.Optional[builtins.str] = None,
|
|
26465
26501
|
) -> None:
|
|
@@ -26473,6 +26509,7 @@ class CfnLaunchTemplate(
|
|
|
26473
26509
|
:param kms_key_id: Identifier (key ID, key alias, key ARN, or alias ARN) of the customer managed KMS key to use for EBS encryption.
|
|
26474
26510
|
:param snapshot_id: The ID of the snapshot.
|
|
26475
26511
|
:param throughput: The throughput to provision for a ``gp3`` volume, with a maximum of 1,000 MiB/s. Valid Range: Minimum value of 125. Maximum value of 1000.
|
|
26512
|
+
:param volume_initialization_rate: Specifies the Amazon EBS Provisioned Rate for Volume Initialization (volume initialization rate), in MiB/s, at which to download the snapshot blocks from Amazon S3 to the volume. This is also known as *volume initialization* . Specifying a volume initialization rate ensures that the volume is initialized at a predictable and consistent rate after creation. This parameter is supported only for volumes created from snapshots. Omit this parameter if: - You want to create the volume using fast snapshot restore. You must specify a snapshot that is enabled for fast snapshot restore. In this case, the volume is fully initialized at creation. .. epigraph:: If you specify a snapshot that is enabled for fast snapshot restore and a volume initialization rate, the volume will be initialized at the specified rate instead of fast snapshot restore. - You want to create a volume that is initialized at the default rate. For more information, see `Initialize Amazon EBS volumes <https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html>`_ in the *Amazon EC2 User Guide* . Valid range: 100 - 300 MiB/s
|
|
26476
26513
|
:param volume_size: The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type: - ``gp2`` and ``gp3`` : 1 - 16,384 GiB - ``io1`` : 4 - 16,384 GiB - ``io2`` : 4 - 65,536 GiB - ``st1`` and ``sc1`` : 125 - 16,384 GiB - ``standard`` : 1 - 1024 GiB
|
|
26477
26514
|
:param volume_type: The volume type. For more information, see `Amazon EBS volume types <https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volume-types.html>`_ in the *Amazon EBS User Guide* .
|
|
26478
26515
|
|
|
@@ -26492,6 +26529,7 @@ class CfnLaunchTemplate(
|
|
|
26492
26529
|
kms_key_id="kmsKeyId",
|
|
26493
26530
|
snapshot_id="snapshotId",
|
|
26494
26531
|
throughput=123,
|
|
26532
|
+
volume_initialization_rate=123,
|
|
26495
26533
|
volume_size=123,
|
|
26496
26534
|
volume_type="volumeType"
|
|
26497
26535
|
)
|
|
@@ -26504,6 +26542,7 @@ class CfnLaunchTemplate(
|
|
|
26504
26542
|
check_type(argname="argument kms_key_id", value=kms_key_id, expected_type=type_hints["kms_key_id"])
|
|
26505
26543
|
check_type(argname="argument snapshot_id", value=snapshot_id, expected_type=type_hints["snapshot_id"])
|
|
26506
26544
|
check_type(argname="argument throughput", value=throughput, expected_type=type_hints["throughput"])
|
|
26545
|
+
check_type(argname="argument volume_initialization_rate", value=volume_initialization_rate, expected_type=type_hints["volume_initialization_rate"])
|
|
26507
26546
|
check_type(argname="argument volume_size", value=volume_size, expected_type=type_hints["volume_size"])
|
|
26508
26547
|
check_type(argname="argument volume_type", value=volume_type, expected_type=type_hints["volume_type"])
|
|
26509
26548
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
@@ -26519,6 +26558,8 @@ class CfnLaunchTemplate(
|
|
|
26519
26558
|
self._values["snapshot_id"] = snapshot_id
|
|
26520
26559
|
if throughput is not None:
|
|
26521
26560
|
self._values["throughput"] = throughput
|
|
26561
|
+
if volume_initialization_rate is not None:
|
|
26562
|
+
self._values["volume_initialization_rate"] = volume_initialization_rate
|
|
26522
26563
|
if volume_size is not None:
|
|
26523
26564
|
self._values["volume_size"] = volume_size
|
|
26524
26565
|
if volume_type is not None:
|
|
@@ -26598,6 +26639,31 @@ class CfnLaunchTemplate(
|
|
|
26598
26639
|
result = self._values.get("throughput")
|
|
26599
26640
|
return typing.cast(typing.Optional[jsii.Number], result)
|
|
26600
26641
|
|
|
26642
|
+
@builtins.property
|
|
26643
|
+
def volume_initialization_rate(self) -> typing.Optional[jsii.Number]:
|
|
26644
|
+
'''Specifies the Amazon EBS Provisioned Rate for Volume Initialization (volume initialization rate), in MiB/s, at which to download the snapshot blocks from Amazon S3 to the volume.
|
|
26645
|
+
|
|
26646
|
+
This is also known as *volume initialization* . Specifying a volume initialization rate ensures that the volume is initialized at a predictable and consistent rate after creation.
|
|
26647
|
+
|
|
26648
|
+
This parameter is supported only for volumes created from snapshots. Omit this parameter if:
|
|
26649
|
+
|
|
26650
|
+
- You want to create the volume using fast snapshot restore. You must specify a snapshot that is enabled for fast snapshot restore. In this case, the volume is fully initialized at creation.
|
|
26651
|
+
|
|
26652
|
+
.. epigraph::
|
|
26653
|
+
|
|
26654
|
+
If you specify a snapshot that is enabled for fast snapshot restore and a volume initialization rate, the volume will be initialized at the specified rate instead of fast snapshot restore.
|
|
26655
|
+
|
|
26656
|
+
- You want to create a volume that is initialized at the default rate.
|
|
26657
|
+
|
|
26658
|
+
For more information, see `Initialize Amazon EBS volumes <https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html>`_ in the *Amazon EC2 User Guide* .
|
|
26659
|
+
|
|
26660
|
+
Valid range: 100 - 300 MiB/s
|
|
26661
|
+
|
|
26662
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-ebs.html#cfn-ec2-launchtemplate-ebs-volumeinitializationrate
|
|
26663
|
+
'''
|
|
26664
|
+
result = self._values.get("volume_initialization_rate")
|
|
26665
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
26666
|
+
|
|
26601
26667
|
@builtins.property
|
|
26602
26668
|
def volume_size(self) -> typing.Optional[jsii.Number]:
|
|
26603
26669
|
'''The size of the volume, in GiBs.
|
|
@@ -28101,6 +28167,7 @@ class CfnLaunchTemplate(
|
|
|
28101
28167
|
kms_key_id="kmsKeyId",
|
|
28102
28168
|
snapshot_id="snapshotId",
|
|
28103
28169
|
throughput=123,
|
|
28170
|
+
volume_initialization_rate=123,
|
|
28104
28171
|
volume_size=123,
|
|
28105
28172
|
volume_type="volumeType"
|
|
28106
28173
|
),
|
|
@@ -34763,7 +34830,7 @@ class CfnNetworkInsightsAnalysis(
|
|
|
34763
34830
|
:param network_insights_path_id: The ID of the path.
|
|
34764
34831
|
:param additional_accounts: The member accounts that contain resources that the path can traverse.
|
|
34765
34832
|
:param filter_in_arns: The Amazon Resource Names (ARN) of the resources that the path must traverse.
|
|
34766
|
-
:param filter_out_arns:
|
|
34833
|
+
:param filter_out_arns: The Amazon Resource Names (ARN) of the resources that the path must ignore.
|
|
34767
34834
|
:param tags: The tags to apply.
|
|
34768
34835
|
'''
|
|
34769
34836
|
if __debug__:
|
|
@@ -34967,6 +35034,7 @@ class CfnNetworkInsightsAnalysis(
|
|
|
34967
35034
|
@builtins.property
|
|
34968
35035
|
@jsii.member(jsii_name="filterOutArns")
|
|
34969
35036
|
def filter_out_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
35037
|
+
'''The Amazon Resource Names (ARN) of the resources that the path must ignore.'''
|
|
34970
35038
|
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "filterOutArns"))
|
|
34971
35039
|
|
|
34972
35040
|
@filter_out_arns.setter
|
|
@@ -38030,7 +38098,7 @@ class CfnNetworkInsightsAnalysisProps:
|
|
|
38030
38098
|
:param network_insights_path_id: The ID of the path.
|
|
38031
38099
|
:param additional_accounts: The member accounts that contain resources that the path can traverse.
|
|
38032
38100
|
:param filter_in_arns: The Amazon Resource Names (ARN) of the resources that the path must traverse.
|
|
38033
|
-
:param filter_out_arns:
|
|
38101
|
+
:param filter_out_arns: The Amazon Resource Names (ARN) of the resources that the path must ignore.
|
|
38034
38102
|
:param tags: The tags to apply.
|
|
38035
38103
|
|
|
38036
38104
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightsanalysis.html
|
|
@@ -38104,7 +38172,8 @@ class CfnNetworkInsightsAnalysisProps:
|
|
|
38104
38172
|
|
|
38105
38173
|
@builtins.property
|
|
38106
38174
|
def filter_out_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
38107
|
-
'''
|
|
38175
|
+
'''The Amazon Resource Names (ARN) of the resources that the path must ignore.
|
|
38176
|
+
|
|
38108
38177
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightsanalysis.html#cfn-ec2-networkinsightsanalysis-filteroutarns
|
|
38109
38178
|
'''
|
|
38110
38179
|
result = self._values.get("filter_out_arns")
|
|
@@ -105268,6 +105337,7 @@ def _typecheckingstub__5dd8d015864426e689ac2f72f1fdd70371d242931964ab4d571ea5601
|
|
|
105268
105337
|
default_resource_discovery_organizational_unit_exclusions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIPAM.IpamOrganizationalUnitExclusionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
105269
105338
|
description: typing.Optional[builtins.str] = None,
|
|
105270
105339
|
enable_private_gua: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
105340
|
+
metered_account: typing.Optional[builtins.str] = None,
|
|
105271
105341
|
operating_regions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIPAM.IpamOperatingRegionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
105272
105342
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
105273
105343
|
tier: typing.Optional[builtins.str] = None,
|
|
@@ -105305,6 +105375,12 @@ def _typecheckingstub__1281235c91c77dfae8d509881b5159b846e5e23d4ec106d47ef850482
|
|
|
105305
105375
|
"""Type checking stubs"""
|
|
105306
105376
|
pass
|
|
105307
105377
|
|
|
105378
|
+
def _typecheckingstub__b7c475d5b75fcafe38c1fbc14c605291329e484c6645ef305655b392e315268a(
|
|
105379
|
+
value: typing.Optional[builtins.str],
|
|
105380
|
+
) -> None:
|
|
105381
|
+
"""Type checking stubs"""
|
|
105382
|
+
pass
|
|
105383
|
+
|
|
105308
105384
|
def _typecheckingstub__fecbb17dcfafe289f5a442dc3b73f564f5de07433cc7e26b8e86425af382451f(
|
|
105309
105385
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnIPAM.IpamOperatingRegionProperty]]]],
|
|
105310
105386
|
) -> None:
|
|
@@ -105621,6 +105697,7 @@ def _typecheckingstub__f1252b3f41198f9c0d9b0c751334626e1084e0106d3be9d92d7720073
|
|
|
105621
105697
|
default_resource_discovery_organizational_unit_exclusions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIPAM.IpamOrganizationalUnitExclusionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
105622
105698
|
description: typing.Optional[builtins.str] = None,
|
|
105623
105699
|
enable_private_gua: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
105700
|
+
metered_account: typing.Optional[builtins.str] = None,
|
|
105624
105701
|
operating_regions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnIPAM.IpamOperatingRegionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
105625
105702
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
105626
105703
|
tier: typing.Optional[builtins.str] = None,
|
|
@@ -106631,6 +106708,7 @@ def _typecheckingstub__0c8f1bdc026599f0d5c31661061b4f7adf3cd9a673d2d6a32326ec212
|
|
|
106631
106708
|
kms_key_id: typing.Optional[builtins.str] = None,
|
|
106632
106709
|
snapshot_id: typing.Optional[builtins.str] = None,
|
|
106633
106710
|
throughput: typing.Optional[jsii.Number] = None,
|
|
106711
|
+
volume_initialization_rate: typing.Optional[jsii.Number] = None,
|
|
106634
106712
|
volume_size: typing.Optional[jsii.Number] = None,
|
|
106635
106713
|
volume_type: typing.Optional[builtins.str] = None,
|
|
106636
106714
|
) -> None:
|