aws-cdk-lib 2.181.1__py3-none-any.whl → 2.183.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 +751 -41
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.181.1.jsii.tgz → aws-cdk-lib@2.183.0.jsii.tgz} +0 -0
- aws_cdk/assertions/__init__.py +59 -0
- aws_cdk/aws_apigateway/__init__.py +122 -66
- aws_cdk/aws_applicationautoscaling/__init__.py +4 -0
- aws_cdk/aws_appsync/__init__.py +30 -4
- aws_cdk/aws_autoscaling/__init__.py +409 -36
- aws_cdk/aws_batch/__init__.py +638 -14
- aws_cdk/aws_bedrock/__init__.py +6009 -2326
- aws_cdk/aws_ce/__init__.py +141 -3
- aws_cdk/aws_certificatemanager/__init__.py +24 -0
- aws_cdk/aws_cloudformation/__init__.py +310 -35
- aws_cdk/aws_cloudfront/__init__.py +1 -0
- aws_cdk/aws_cloudtrail/__init__.py +8 -8
- aws_cdk/aws_codebuild/__init__.py +4 -10
- aws_cdk/aws_cognito/__init__.py +3 -3
- aws_cdk/aws_datazone/__init__.py +82 -0
- aws_cdk/aws_dms/__init__.py +350 -0
- aws_cdk/aws_ec2/__init__.py +95 -17
- aws_cdk/aws_ecr/__init__.py +10 -4
- aws_cdk/aws_ecs/__init__.py +58 -9
- aws_cdk/aws_eks/__init__.py +32 -3
- aws_cdk/aws_elasticache/__init__.py +3 -3
- aws_cdk/aws_emr/__init__.py +9 -3
- aws_cdk/aws_fsx/__init__.py +2 -0
- aws_cdk/aws_gameliftstreams/__init__.py +1205 -0
- aws_cdk/aws_guardduty/__init__.py +38 -26
- aws_cdk/aws_iam/__init__.py +295 -37
- aws_cdk/aws_inspector/__init__.py +180 -1
- aws_cdk/aws_iot/__init__.py +616 -22
- aws_cdk/aws_iotfleetwise/__init__.py +72 -10
- aws_cdk/aws_iotsitewise/__init__.py +14 -11
- aws_cdk/aws_kafkaconnect/__init__.py +4 -2
- aws_cdk/aws_kinesisfirehose/__init__.py +6 -0
- aws_cdk/aws_lambda/__init__.py +17 -0
- aws_cdk/aws_logs/__init__.py +135 -0
- aws_cdk/aws_medialive/__init__.py +86 -86
- aws_cdk/aws_mediapackagev2/__init__.py +22 -14
- aws_cdk/aws_msk/__init__.py +236 -128
- aws_cdk/aws_neptunegraph/__init__.py +3 -3
- aws_cdk/aws_opensearchserverless/__init__.py +1031 -0
- aws_cdk/aws_opensearchservice/__init__.py +261 -1
- aws_cdk/aws_pcaconnectorad/__init__.py +30 -4
- aws_cdk/aws_pipes/__init__.py +6 -2
- aws_cdk/aws_quicksight/__init__.py +6712 -20758
- aws_cdk/aws_rds/__init__.py +174 -30
- aws_cdk/aws_redshift/__init__.py +8 -8
- aws_cdk/aws_s3/__init__.py +8 -0
- aws_cdk/aws_sagemaker/__init__.py +80 -18
- aws_cdk/aws_securitylake/__init__.py +3 -0
- aws_cdk/aws_sns/__init__.py +76 -1
- aws_cdk/aws_synthetics/__init__.py +2 -0
- aws_cdk/aws_transfer/__init__.py +241 -40
- aws_cdk/aws_vpclattice/__init__.py +144 -9
- aws_cdk/aws_wafv2/__init__.py +790 -0
- aws_cdk/aws_wisdom/__init__.py +3 -110
- aws_cdk/aws_workspacesthinclient/__init__.py +4 -4
- aws_cdk/aws_workspacesweb/__init__.py +179 -2
- aws_cdk/aws_xray/__init__.py +195 -0
- aws_cdk/cloud_assembly_schema/__init__.py +224 -4
- aws_cdk/custom_resources/__init__.py +65 -8
- aws_cdk/cx_api/__init__.py +2 -1
- {aws_cdk_lib-2.181.1.dist-info → aws_cdk_lib-2.183.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.181.1.dist-info → aws_cdk_lib-2.183.0.dist-info}/RECORD +69 -68
- {aws_cdk_lib-2.181.1.dist-info → aws_cdk_lib-2.183.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.181.1.dist-info → aws_cdk_lib-2.183.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.181.1.dist-info → aws_cdk_lib-2.183.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.181.1.dist-info → aws_cdk_lib-2.183.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_eks/__init__.py
CHANGED
|
@@ -2107,6 +2107,7 @@ from ..aws_autoscaling import (
|
|
|
2107
2107
|
CommonAutoScalingGroupProps as _CommonAutoScalingGroupProps_808bbf2d,
|
|
2108
2108
|
GroupMetrics as _GroupMetrics_7cdf729b,
|
|
2109
2109
|
HealthCheck as _HealthCheck_03a4bd5a,
|
|
2110
|
+
HealthChecks as _HealthChecks_b8757873,
|
|
2110
2111
|
Monitoring as _Monitoring_50020f91,
|
|
2111
2112
|
NotificationConfiguration as _NotificationConfiguration_d5911670,
|
|
2112
2113
|
Signals as _Signals_69fbeb6e,
|
|
@@ -3509,6 +3510,7 @@ class AuthenticationMode(enum.Enum):
|
|
|
3509
3510
|
"desired_capacity": "desiredCapacity",
|
|
3510
3511
|
"group_metrics": "groupMetrics",
|
|
3511
3512
|
"health_check": "healthCheck",
|
|
3513
|
+
"health_checks": "healthChecks",
|
|
3512
3514
|
"ignore_unmodified_size_properties": "ignoreUnmodifiedSizeProperties",
|
|
3513
3515
|
"instance_monitoring": "instanceMonitoring",
|
|
3514
3516
|
"key_name": "keyName",
|
|
@@ -3548,6 +3550,7 @@ class AutoScalingGroupCapacityOptions(_CommonAutoScalingGroupProps_808bbf2d):
|
|
|
3548
3550
|
desired_capacity: typing.Optional[jsii.Number] = None,
|
|
3549
3551
|
group_metrics: typing.Optional[typing.Sequence[_GroupMetrics_7cdf729b]] = None,
|
|
3550
3552
|
health_check: typing.Optional[_HealthCheck_03a4bd5a] = None,
|
|
3553
|
+
health_checks: typing.Optional[_HealthChecks_b8757873] = None,
|
|
3551
3554
|
ignore_unmodified_size_properties: typing.Optional[builtins.bool] = None,
|
|
3552
3555
|
instance_monitoring: typing.Optional[_Monitoring_50020f91] = None,
|
|
3553
3556
|
key_name: typing.Optional[builtins.str] = None,
|
|
@@ -3583,7 +3586,8 @@ class AutoScalingGroupCapacityOptions(_CommonAutoScalingGroupProps_808bbf2d):
|
|
|
3583
3586
|
:param default_instance_warmup: The amount of time, in seconds, until a newly launched instance can contribute to the Amazon CloudWatch metrics. This delay lets an instance finish initializing before Amazon EC2 Auto Scaling aggregates instance metrics, resulting in more reliable usage data. Set this value equal to the amount of time that it takes for resource consumption to become stable after an instance reaches the InService state. To optimize the performance of scaling policies that scale continuously, such as target tracking and step scaling policies, we strongly recommend that you enable the default instance warmup, even if its value is set to 0 seconds Default instance warmup will not be added if no value is specified Default: None
|
|
3584
3587
|
:param desired_capacity: Initial amount of instances in the fleet. If this is set to a number, every deployment will reset the amount of instances to this number. It is recommended to leave this value blank. Default: minCapacity, and leave unchanged during deployment
|
|
3585
3588
|
:param group_metrics: Enable monitoring for group metrics, these metrics describe the group rather than any of its instances. To report all group metrics use ``GroupMetrics.all()`` Group metrics are reported in a granularity of 1 minute at no additional charge. Default: - no group metrics will be reported
|
|
3586
|
-
:param health_check: Configuration for health checks. Default: - HealthCheck.ec2 with no grace period
|
|
3589
|
+
:param health_check: (deprecated) Configuration for health checks. Default: - HealthCheck.ec2 with no grace period
|
|
3590
|
+
:param health_checks: Configuration for EC2 or additional health checks. Even when using ``HealthChecks.withAdditionalChecks()``, the EC2 type is implicitly included. Default: - EC2 type with no grace period
|
|
3587
3591
|
:param ignore_unmodified_size_properties: If the ASG has scheduled actions, don't reset unchanged group sizes. Only used if the ASG has scheduled actions (which may scale your ASG up or down regardless of cdk deployments). If true, the size of the group will only be reset if it has been changed in the CDK app. If false, the sizes will always be changed back to what they were in the CDK app on deployment. Default: true
|
|
3588
3592
|
:param instance_monitoring: Controls whether instances in this group are launched with detailed or basic monitoring. When detailed monitoring is enabled, Amazon CloudWatch generates metrics every minute and your account is charged a fee. When you disable detailed monitoring, CloudWatch generates metrics every 5 minutes. ``launchTemplate`` and ``mixedInstancesPolicy`` must not be specified when this property is specified Default: - Monitoring.DETAILED
|
|
3589
3593
|
:param key_name: (deprecated) Name of SSH keypair to grant access to instances. ``launchTemplate`` and ``mixedInstancesPolicy`` must not be specified when this property is specified You can either specify ``keyPair`` or ``keyName``, not both. Default: - No SSH access will be possible.
|
|
@@ -3636,6 +3640,7 @@ class AutoScalingGroupCapacityOptions(_CommonAutoScalingGroupProps_808bbf2d):
|
|
|
3636
3640
|
check_type(argname="argument desired_capacity", value=desired_capacity, expected_type=type_hints["desired_capacity"])
|
|
3637
3641
|
check_type(argname="argument group_metrics", value=group_metrics, expected_type=type_hints["group_metrics"])
|
|
3638
3642
|
check_type(argname="argument health_check", value=health_check, expected_type=type_hints["health_check"])
|
|
3643
|
+
check_type(argname="argument health_checks", value=health_checks, expected_type=type_hints["health_checks"])
|
|
3639
3644
|
check_type(argname="argument ignore_unmodified_size_properties", value=ignore_unmodified_size_properties, expected_type=type_hints["ignore_unmodified_size_properties"])
|
|
3640
3645
|
check_type(argname="argument instance_monitoring", value=instance_monitoring, expected_type=type_hints["instance_monitoring"])
|
|
3641
3646
|
check_type(argname="argument key_name", value=key_name, expected_type=type_hints["key_name"])
|
|
@@ -3683,6 +3688,8 @@ class AutoScalingGroupCapacityOptions(_CommonAutoScalingGroupProps_808bbf2d):
|
|
|
3683
3688
|
self._values["group_metrics"] = group_metrics
|
|
3684
3689
|
if health_check is not None:
|
|
3685
3690
|
self._values["health_check"] = health_check
|
|
3691
|
+
if health_checks is not None:
|
|
3692
|
+
self._values["health_checks"] = health_checks
|
|
3686
3693
|
if ignore_unmodified_size_properties is not None:
|
|
3687
3694
|
self._values["ignore_unmodified_size_properties"] = ignore_unmodified_size_properties
|
|
3688
3695
|
if instance_monitoring is not None:
|
|
@@ -3858,13 +3865,30 @@ class AutoScalingGroupCapacityOptions(_CommonAutoScalingGroupProps_808bbf2d):
|
|
|
3858
3865
|
|
|
3859
3866
|
@builtins.property
|
|
3860
3867
|
def health_check(self) -> typing.Optional[_HealthCheck_03a4bd5a]:
|
|
3861
|
-
'''Configuration for health checks.
|
|
3868
|
+
'''(deprecated) Configuration for health checks.
|
|
3862
3869
|
|
|
3863
3870
|
:default: - HealthCheck.ec2 with no grace period
|
|
3871
|
+
|
|
3872
|
+
:deprecated: Use ``healthChecks`` instead
|
|
3873
|
+
|
|
3874
|
+
:stability: deprecated
|
|
3864
3875
|
'''
|
|
3865
3876
|
result = self._values.get("health_check")
|
|
3866
3877
|
return typing.cast(typing.Optional[_HealthCheck_03a4bd5a], result)
|
|
3867
3878
|
|
|
3879
|
+
@builtins.property
|
|
3880
|
+
def health_checks(self) -> typing.Optional[_HealthChecks_b8757873]:
|
|
3881
|
+
'''Configuration for EC2 or additional health checks.
|
|
3882
|
+
|
|
3883
|
+
Even when using ``HealthChecks.withAdditionalChecks()``, the EC2 type is implicitly included.
|
|
3884
|
+
|
|
3885
|
+
:default: - EC2 type with no grace period
|
|
3886
|
+
|
|
3887
|
+
:see: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-health-checks.html
|
|
3888
|
+
'''
|
|
3889
|
+
result = self._values.get("health_checks")
|
|
3890
|
+
return typing.cast(typing.Optional[_HealthChecks_b8757873], result)
|
|
3891
|
+
|
|
3868
3892
|
@builtins.property
|
|
3869
3893
|
def ignore_unmodified_size_properties(self) -> typing.Optional[builtins.bool]:
|
|
3870
3894
|
'''If the ASG has scheduled actions, don't reset unchanged group sizes.
|
|
@@ -18478,6 +18502,7 @@ class Cluster(
|
|
|
18478
18502
|
desired_capacity: typing.Optional[jsii.Number] = None,
|
|
18479
18503
|
group_metrics: typing.Optional[typing.Sequence[_GroupMetrics_7cdf729b]] = None,
|
|
18480
18504
|
health_check: typing.Optional[_HealthCheck_03a4bd5a] = None,
|
|
18505
|
+
health_checks: typing.Optional[_HealthChecks_b8757873] = None,
|
|
18481
18506
|
ignore_unmodified_size_properties: typing.Optional[builtins.bool] = None,
|
|
18482
18507
|
instance_monitoring: typing.Optional[_Monitoring_50020f91] = None,
|
|
18483
18508
|
key_name: typing.Optional[builtins.str] = None,
|
|
@@ -18526,7 +18551,8 @@ class Cluster(
|
|
|
18526
18551
|
:param default_instance_warmup: The amount of time, in seconds, until a newly launched instance can contribute to the Amazon CloudWatch metrics. This delay lets an instance finish initializing before Amazon EC2 Auto Scaling aggregates instance metrics, resulting in more reliable usage data. Set this value equal to the amount of time that it takes for resource consumption to become stable after an instance reaches the InService state. To optimize the performance of scaling policies that scale continuously, such as target tracking and step scaling policies, we strongly recommend that you enable the default instance warmup, even if its value is set to 0 seconds Default instance warmup will not be added if no value is specified Default: None
|
|
18527
18552
|
:param desired_capacity: Initial amount of instances in the fleet. If this is set to a number, every deployment will reset the amount of instances to this number. It is recommended to leave this value blank. Default: minCapacity, and leave unchanged during deployment
|
|
18528
18553
|
:param group_metrics: Enable monitoring for group metrics, these metrics describe the group rather than any of its instances. To report all group metrics use ``GroupMetrics.all()`` Group metrics are reported in a granularity of 1 minute at no additional charge. Default: - no group metrics will be reported
|
|
18529
|
-
:param health_check: Configuration for health checks. Default: - HealthCheck.ec2 with no grace period
|
|
18554
|
+
:param health_check: (deprecated) Configuration for health checks. Default: - HealthCheck.ec2 with no grace period
|
|
18555
|
+
:param health_checks: Configuration for EC2 or additional health checks. Even when using ``HealthChecks.withAdditionalChecks()``, the EC2 type is implicitly included. Default: - EC2 type with no grace period
|
|
18530
18556
|
:param ignore_unmodified_size_properties: If the ASG has scheduled actions, don't reset unchanged group sizes. Only used if the ASG has scheduled actions (which may scale your ASG up or down regardless of cdk deployments). If true, the size of the group will only be reset if it has been changed in the CDK app. If false, the sizes will always be changed back to what they were in the CDK app on deployment. Default: true
|
|
18531
18557
|
:param instance_monitoring: Controls whether instances in this group are launched with detailed or basic monitoring. When detailed monitoring is enabled, Amazon CloudWatch generates metrics every minute and your account is charged a fee. When you disable detailed monitoring, CloudWatch generates metrics every 5 minutes. ``launchTemplate`` and ``mixedInstancesPolicy`` must not be specified when this property is specified Default: - Monitoring.DETAILED
|
|
18532
18558
|
:param key_name: (deprecated) Name of SSH keypair to grant access to instances. ``launchTemplate`` and ``mixedInstancesPolicy`` must not be specified when this property is specified You can either specify ``keyPair`` or ``keyName``, not both. Default: - No SSH access will be possible.
|
|
@@ -18565,6 +18591,7 @@ class Cluster(
|
|
|
18565
18591
|
desired_capacity=desired_capacity,
|
|
18566
18592
|
group_metrics=group_metrics,
|
|
18567
18593
|
health_check=health_check,
|
|
18594
|
+
health_checks=health_checks,
|
|
18568
18595
|
ignore_unmodified_size_properties=ignore_unmodified_size_properties,
|
|
18569
18596
|
instance_monitoring=instance_monitoring,
|
|
18570
18597
|
key_name=key_name,
|
|
@@ -21542,6 +21569,7 @@ def _typecheckingstub__9ac94eb5cd9569dcf4122cf20026c6f104b737f68ecd3395b237320bd
|
|
|
21542
21569
|
desired_capacity: typing.Optional[jsii.Number] = None,
|
|
21543
21570
|
group_metrics: typing.Optional[typing.Sequence[_GroupMetrics_7cdf729b]] = None,
|
|
21544
21571
|
health_check: typing.Optional[_HealthCheck_03a4bd5a] = None,
|
|
21572
|
+
health_checks: typing.Optional[_HealthChecks_b8757873] = None,
|
|
21545
21573
|
ignore_unmodified_size_properties: typing.Optional[builtins.bool] = None,
|
|
21546
21574
|
instance_monitoring: typing.Optional[_Monitoring_50020f91] = None,
|
|
21547
21575
|
key_name: typing.Optional[builtins.str] = None,
|
|
@@ -23343,6 +23371,7 @@ def _typecheckingstub__e9e81d821b1c1d14225d1c9cc695af8e71b96a7489dcd36bd237c9363
|
|
|
23343
23371
|
desired_capacity: typing.Optional[jsii.Number] = None,
|
|
23344
23372
|
group_metrics: typing.Optional[typing.Sequence[_GroupMetrics_7cdf729b]] = None,
|
|
23345
23373
|
health_check: typing.Optional[_HealthCheck_03a4bd5a] = None,
|
|
23374
|
+
health_checks: typing.Optional[_HealthChecks_b8757873] = None,
|
|
23346
23375
|
ignore_unmodified_size_properties: typing.Optional[builtins.bool] = None,
|
|
23347
23376
|
instance_monitoring: typing.Optional[_Monitoring_50020f91] = None,
|
|
23348
23377
|
key_name: typing.Optional[builtins.str] = None,
|
|
@@ -2451,7 +2451,7 @@ class CfnParameterGroup(
|
|
|
2451
2451
|
'''
|
|
2452
2452
|
:param scope: Scope in which this resource is defined.
|
|
2453
2453
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
2454
|
-
:param cache_parameter_group_family: The name of the cache parameter group family that this cache parameter group is compatible with. Valid values are: ``memcached1.4`` | ``memcached1.5`` | ``memcached1.6`` | ``redis2.6`` | ``redis2.8`` | ``redis3.2`` | ``redis4.0`` | ``redis5.0`` | ``redis6.x`` | ``redis7``
|
|
2454
|
+
:param cache_parameter_group_family: The name of the cache parameter group family that this cache parameter group is compatible with. Valid values are: ``valkey8`` | ``valkey7`` | ``memcached1.4`` | ``memcached1.5`` | ``memcached1.6`` | ``redis2.6`` | ``redis2.8`` | ``redis3.2`` | ``redis4.0`` | ``redis5.0`` | ``redis6.x`` | ``redis7``
|
|
2455
2455
|
:param description: The description for this cache parameter group.
|
|
2456
2456
|
:param properties: A comma-delimited list of parameter name/value pairs. For example:: "Properties" : { "cas_disabled" : "1", "chunk_size_growth_factor" : "1.02" }
|
|
2457
2457
|
:param tags: A tag that can be added to an ElastiCache parameter group. Tags are composed of a Key/Value pair. You can use tags to categorize and track all your parameter groups. A tag with a null Value is permitted.
|
|
@@ -2598,7 +2598,7 @@ class CfnParameterGroupProps:
|
|
|
2598
2598
|
) -> None:
|
|
2599
2599
|
'''Properties for defining a ``CfnParameterGroup``.
|
|
2600
2600
|
|
|
2601
|
-
:param cache_parameter_group_family: The name of the cache parameter group family that this cache parameter group is compatible with. Valid values are: ``memcached1.4`` | ``memcached1.5`` | ``memcached1.6`` | ``redis2.6`` | ``redis2.8`` | ``redis3.2`` | ``redis4.0`` | ``redis5.0`` | ``redis6.x`` | ``redis7``
|
|
2601
|
+
:param cache_parameter_group_family: The name of the cache parameter group family that this cache parameter group is compatible with. Valid values are: ``valkey8`` | ``valkey7`` | ``memcached1.4`` | ``memcached1.5`` | ``memcached1.6`` | ``redis2.6`` | ``redis2.8`` | ``redis3.2`` | ``redis4.0`` | ``redis5.0`` | ``redis6.x`` | ``redis7``
|
|
2602
2602
|
:param description: The description for this cache parameter group.
|
|
2603
2603
|
:param properties: A comma-delimited list of parameter name/value pairs. For example:: "Properties" : { "cas_disabled" : "1", "chunk_size_growth_factor" : "1.02" }
|
|
2604
2604
|
:param tags: A tag that can be added to an ElastiCache parameter group. Tags are composed of a Key/Value pair. You can use tags to categorize and track all your parameter groups. A tag with a null Value is permitted.
|
|
@@ -2645,7 +2645,7 @@ class CfnParameterGroupProps:
|
|
|
2645
2645
|
def cache_parameter_group_family(self) -> builtins.str:
|
|
2646
2646
|
'''The name of the cache parameter group family that this cache parameter group is compatible with.
|
|
2647
2647
|
|
|
2648
|
-
Valid values are: ``memcached1.4`` | ``memcached1.5`` | ``memcached1.6`` | ``redis2.6`` | ``redis2.8`` | ``redis3.2`` | ``redis4.0`` | ``redis5.0`` | ``redis6.x`` | ``redis7``
|
|
2648
|
+
Valid values are: ``valkey8`` | ``valkey7`` | ``memcached1.4`` | ``memcached1.5`` | ``memcached1.6`` | ``redis2.6`` | ``redis2.8`` | ``redis3.2`` | ``redis4.0`` | ``redis5.0`` | ``redis6.x`` | ``redis7``
|
|
2649
2649
|
|
|
2650
2650
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-parametergroup.html#cfn-elasticache-parametergroup-cacheparametergroupfamily
|
|
2651
2651
|
'''
|
aws_cdk/aws_emr/__init__.py
CHANGED
|
@@ -1573,7 +1573,7 @@ class CfnCluster(
|
|
|
1573
1573
|
``EbsConfiguration`` determines the EBS volumes to attach to EMR cluster instances.
|
|
1574
1574
|
|
|
1575
1575
|
:param ebs_block_device_configs: An array of Amazon EBS volume specifications attached to a cluster instance.
|
|
1576
|
-
:param ebs_optimized: Indicates whether an Amazon EBS volume is EBS-optimized.
|
|
1576
|
+
:param ebs_optimized: Indicates whether an Amazon EBS volume is EBS-optimized. The default is false. You should explicitly set this value to true to enable the Amazon EBS-optimized setting for an EC2 instance.
|
|
1577
1577
|
|
|
1578
1578
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-ebsconfiguration.html
|
|
1579
1579
|
:exampleMetadata: fixture=_generated
|
|
@@ -1628,6 +1628,8 @@ class CfnCluster(
|
|
|
1628
1628
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
1629
1629
|
'''Indicates whether an Amazon EBS volume is EBS-optimized.
|
|
1630
1630
|
|
|
1631
|
+
The default is false. You should explicitly set this value to true to enable the Amazon EBS-optimized setting for an EC2 instance.
|
|
1632
|
+
|
|
1631
1633
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-ebsconfiguration.html#cfn-emr-cluster-ebsconfiguration-ebsoptimized
|
|
1632
1634
|
'''
|
|
1633
1635
|
result = self._values.get("ebs_optimized")
|
|
@@ -6262,7 +6264,7 @@ class CfnInstanceFleetConfig(
|
|
|
6262
6264
|
'''``EbsConfiguration`` determines the EBS volumes to attach to EMR cluster instances.
|
|
6263
6265
|
|
|
6264
6266
|
:param ebs_block_device_configs: An array of Amazon EBS volume specifications attached to a cluster instance.
|
|
6265
|
-
:param ebs_optimized: Indicates whether an Amazon EBS volume is EBS-optimized.
|
|
6267
|
+
:param ebs_optimized: Indicates whether an Amazon EBS volume is EBS-optimized. The default is false. You should explicitly set this value to true to enable the Amazon EBS-optimized setting for an EC2 instance.
|
|
6266
6268
|
|
|
6267
6269
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-ebsconfiguration.html
|
|
6268
6270
|
:exampleMetadata: fixture=_generated
|
|
@@ -6317,6 +6319,8 @@ class CfnInstanceFleetConfig(
|
|
|
6317
6319
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
6318
6320
|
'''Indicates whether an Amazon EBS volume is EBS-optimized.
|
|
6319
6321
|
|
|
6322
|
+
The default is false. You should explicitly set this value to true to enable the Amazon EBS-optimized setting for an EC2 instance.
|
|
6323
|
+
|
|
6320
6324
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-ebsconfiguration.html#cfn-emr-instancefleetconfig-ebsconfiguration-ebsoptimized
|
|
6321
6325
|
'''
|
|
6322
6326
|
result = self._values.get("ebs_optimized")
|
|
@@ -8495,7 +8499,7 @@ class CfnInstanceGroupConfig(
|
|
|
8495
8499
|
'''The Amazon EBS configuration of a cluster instance.
|
|
8496
8500
|
|
|
8497
8501
|
:param ebs_block_device_configs: An array of Amazon EBS volume specifications attached to a cluster instance.
|
|
8498
|
-
:param ebs_optimized: Indicates whether an Amazon EBS volume is EBS-optimized.
|
|
8502
|
+
:param ebs_optimized: Indicates whether an Amazon EBS volume is EBS-optimized. The default is false. You should explicitly set this value to true to enable the Amazon EBS-optimized setting for an EC2 instance.
|
|
8499
8503
|
|
|
8500
8504
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancegroupconfig-ebsconfiguration.html
|
|
8501
8505
|
:exampleMetadata: fixture=_generated
|
|
@@ -8550,6 +8554,8 @@ class CfnInstanceGroupConfig(
|
|
|
8550
8554
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
8551
8555
|
'''Indicates whether an Amazon EBS volume is EBS-optimized.
|
|
8552
8556
|
|
|
8557
|
+
The default is false. You should explicitly set this value to true to enable the Amazon EBS-optimized setting for an EC2 instance.
|
|
8558
|
+
|
|
8553
8559
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancegroupconfig-ebsconfiguration.html#cfn-emr-instancegroupconfig-ebsconfiguration-ebsoptimized
|
|
8554
8560
|
'''
|
|
8555
8561
|
result = self._values.get("ebs_optimized")
|
aws_cdk/aws_fsx/__init__.py
CHANGED
|
@@ -8258,6 +8258,8 @@ class StorageType(enum.Enum):
|
|
|
8258
8258
|
'''Solid State Drive storage.'''
|
|
8259
8259
|
HDD = "HDD"
|
|
8260
8260
|
'''Hard Disk Drive storage.'''
|
|
8261
|
+
INTELLIGENT_TIERING = "INTELLIGENT_TIERING"
|
|
8262
|
+
'''Intelligent Tiering storage.'''
|
|
8261
8263
|
|
|
8262
8264
|
|
|
8263
8265
|
@jsii.enum(jsii_type="aws-cdk-lib.aws_fsx.Weekday")
|