aws-cdk-lib 2.115.0__py3-none-any.whl → 2.116.1__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 +801 -356
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.115.0.jsii.tgz → aws-cdk-lib@2.116.1.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +3 -1
- aws_cdk/aws_apigatewayv2/__init__.py +595 -222
- aws_cdk/aws_apigatewayv2_integrations/__init__.py +4 -5
- aws_cdk/aws_applicationautoscaling/__init__.py +51 -15
- aws_cdk/aws_appsync/__init__.py +14 -3
- aws_cdk/aws_autoscaling/__init__.py +6 -0
- aws_cdk/aws_b2bi/__init__.py +2445 -0
- aws_cdk/aws_cloud9/__init__.py +63 -63
- aws_cdk/aws_cloudfront/__init__.py +394 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +5 -2
- aws_cdk/aws_cloudtrail/__init__.py +90 -11
- aws_cdk/aws_cloudwatch/__init__.py +6 -6
- aws_cdk/aws_codedeploy/__init__.py +88 -15
- aws_cdk/aws_codepipeline/__init__.py +645 -0
- aws_cdk/aws_cognito/__init__.py +13 -26
- aws_cdk/aws_config/__init__.py +315 -1
- aws_cdk/aws_connect/__init__.py +532 -37
- aws_cdk/aws_controltower/__init__.py +4 -4
- aws_cdk/aws_datasync/__init__.py +6 -4
- aws_cdk/aws_dms/__init__.py +241 -131
- aws_cdk/aws_dynamodb/__init__.py +8 -0
- aws_cdk/aws_ec2/__init__.py +1030 -45
- aws_cdk/aws_ecr/__init__.py +78 -10
- aws_cdk/aws_ecs/__init__.py +210 -2
- aws_cdk/aws_ecs_patterns/__init__.py +77 -62
- aws_cdk/aws_eks/__init__.py +8 -1
- aws_cdk/aws_elasticache/__init__.py +136 -10
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +10 -13
- aws_cdk/aws_emr/__init__.py +234 -17
- aws_cdk/aws_eventschemas/__init__.py +15 -13
- aws_cdk/aws_fis/__init__.py +33 -13
- aws_cdk/aws_gamelift/__init__.py +47 -0
- aws_cdk/aws_imagebuilder/__init__.py +922 -84
- aws_cdk/aws_internetmonitor/__init__.py +12 -10
- aws_cdk/aws_iot/__init__.py +26 -46
- aws_cdk/aws_iottwinmaker/__init__.py +36 -34
- aws_cdk/aws_lambda/__init__.py +19 -15
- aws_cdk/aws_lambda_nodejs/__init__.py +5 -2
- aws_cdk/aws_logs/__init__.py +6 -6
- aws_cdk/aws_opensearchservice/__init__.py +5 -3
- aws_cdk/aws_organizations/__init__.py +3 -3
- aws_cdk/aws_osis/__init__.py +17 -13
- aws_cdk/aws_rds/__init__.py +6 -0
- aws_cdk/aws_s3/__init__.py +4 -2
- aws_cdk/aws_s3outposts/__init__.py +8 -8
- aws_cdk/aws_sagemaker/__init__.py +17 -94
- aws_cdk/aws_secretsmanager/__init__.py +9 -7
- aws_cdk/aws_securityhub/__init__.py +18 -0
- aws_cdk/aws_servicecatalogappregistry/__init__.py +31 -0
- aws_cdk/aws_ses/__init__.py +58 -11
- aws_cdk/aws_sns/__init__.py +309 -10
- aws_cdk/aws_ssm/__init__.py +3 -5
- aws_cdk/aws_stepfunctions/__init__.py +335 -19
- aws_cdk/aws_stepfunctions_tasks/__init__.py +388 -38
- aws_cdk/aws_transfer/__init__.py +37 -10
- aws_cdk/custom_resources/__init__.py +443 -1
- aws_cdk/triggers/__init__.py +5 -2
- {aws_cdk_lib-2.115.0.dist-info → aws_cdk_lib-2.116.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.115.0.dist-info → aws_cdk_lib-2.116.1.dist-info}/RECORD +66 -65
- {aws_cdk_lib-2.115.0.dist-info → aws_cdk_lib-2.116.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.115.0.dist-info → aws_cdk_lib-2.116.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.115.0.dist-info → aws_cdk_lib-2.116.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.115.0.dist-info → aws_cdk_lib-2.116.1.dist-info}/top_level.txt +0 -0
aws_cdk/aws_emr/__init__.py
CHANGED
|
@@ -503,7 +503,9 @@ class CfnCluster(
|
|
|
503
503
|
configurations=[configuration_property_]
|
|
504
504
|
)],
|
|
505
505
|
custom_ami_id="customAmiId",
|
|
506
|
+
ebs_root_volume_iops=123,
|
|
506
507
|
ebs_root_volume_size=123,
|
|
508
|
+
ebs_root_volume_throughput=123,
|
|
507
509
|
kerberos_attributes=emr.CfnCluster.KerberosAttributesProperty(
|
|
508
510
|
kdc_admin_password="kdcAdminPassword",
|
|
509
511
|
realm="realm",
|
|
@@ -527,6 +529,12 @@ class CfnCluster(
|
|
|
527
529
|
)
|
|
528
530
|
),
|
|
529
531
|
os_release_label="osReleaseLabel",
|
|
532
|
+
placement_group_configs=[emr.CfnCluster.PlacementGroupConfigProperty(
|
|
533
|
+
instance_role="instanceRole",
|
|
534
|
+
|
|
535
|
+
# the properties below are optional
|
|
536
|
+
placement_strategy="placementStrategy"
|
|
537
|
+
)],
|
|
530
538
|
release_label="releaseLabel",
|
|
531
539
|
scale_down_behavior="scaleDownBehavior",
|
|
532
540
|
security_configuration="securityConfiguration",
|
|
@@ -572,12 +580,15 @@ class CfnCluster(
|
|
|
572
580
|
bootstrap_actions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.BootstrapActionConfigProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
573
581
|
configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.ConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
574
582
|
custom_ami_id: typing.Optional[builtins.str] = None,
|
|
583
|
+
ebs_root_volume_iops: typing.Optional[jsii.Number] = None,
|
|
575
584
|
ebs_root_volume_size: typing.Optional[jsii.Number] = None,
|
|
585
|
+
ebs_root_volume_throughput: typing.Optional[jsii.Number] = None,
|
|
576
586
|
kerberos_attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.KerberosAttributesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
577
587
|
log_encryption_kms_key_id: typing.Optional[builtins.str] = None,
|
|
578
588
|
log_uri: typing.Optional[builtins.str] = None,
|
|
579
589
|
managed_scaling_policy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.ManagedScalingPolicyProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
580
590
|
os_release_label: typing.Optional[builtins.str] = None,
|
|
591
|
+
placement_group_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.PlacementGroupConfigProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
581
592
|
release_label: typing.Optional[builtins.str] = None,
|
|
582
593
|
scale_down_behavior: typing.Optional[builtins.str] = None,
|
|
583
594
|
security_configuration: typing.Optional[builtins.str] = None,
|
|
@@ -600,12 +611,15 @@ class CfnCluster(
|
|
|
600
611
|
:param bootstrap_actions: A list of bootstrap actions to run before Hadoop starts on the cluster nodes.
|
|
601
612
|
:param configurations: Applies only to Amazon EMR releases 4.x and later. The list of configurations that are supplied to the Amazon EMR cluster.
|
|
602
613
|
:param custom_ami_id: Available only in Amazon EMR releases 5.7.0 and later. The ID of a custom Amazon EBS-backed Linux AMI if the cluster uses a custom AMI.
|
|
614
|
+
:param ebs_root_volume_iops:
|
|
603
615
|
:param ebs_root_volume_size: The size, in GiB, of the Amazon EBS root device volume of the Linux AMI that is used for each Amazon EC2 instance. Available in Amazon EMR releases 4.x and later.
|
|
616
|
+
:param ebs_root_volume_throughput:
|
|
604
617
|
:param kerberos_attributes: Attributes for Kerberos configuration when Kerberos authentication is enabled using a security configuration. For more information see `Use Kerberos Authentication <https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-kerberos.html>`_ in the *Amazon EMR Management Guide* .
|
|
605
618
|
:param log_encryption_kms_key_id: The AWS KMS key used for encrypting log files. This attribute is only available with Amazon EMR 5.30.0 and later, excluding Amazon EMR 6.0.0.
|
|
606
619
|
:param log_uri: The path to the Amazon S3 location where logs for this cluster are stored.
|
|
607
620
|
:param managed_scaling_policy: Creates or updates a managed scaling policy for an Amazon EMR cluster. The managed scaling policy defines the limits for resources, such as Amazon EC2 instances that can be added or terminated from a cluster. The policy only applies to the core and task nodes. The master node cannot be scaled after initial configuration.
|
|
608
621
|
:param os_release_label: The Amazon Linux release specified in a cluster launch RunJobFlow request. If no Amazon Linux release was specified, the default Amazon Linux release is shown in the response.
|
|
622
|
+
:param placement_group_configs:
|
|
609
623
|
:param release_label: The Amazon EMR release label, which determines the version of open-source application packages installed on the cluster. Release labels are in the form ``emr-x.x.x`` , where x.x.x is an Amazon EMR release version such as ``emr-5.14.0`` . For more information about Amazon EMR release versions and included application versions and features, see ` <https://docs.aws.amazon.com/emr/latest/ReleaseGuide/>`_ . The release label applies only to Amazon EMR releases version 4.0 and later. Earlier versions use ``AmiVersion`` .
|
|
610
624
|
:param scale_down_behavior: The way that individual Amazon EC2 instances terminate when an automatic scale-in activity occurs or an instance group is resized. ``TERMINATE_AT_INSTANCE_HOUR`` indicates that Amazon EMR terminates nodes at the instance-hour boundary, regardless of when the request to terminate the instance was submitted. This option is only available with Amazon EMR 5.1.0 and later and is the default for clusters created using that version. ``TERMINATE_AT_TASK_COMPLETION`` indicates that Amazon EMR adds nodes to a deny list and drains tasks from nodes before terminating the Amazon EC2 instances, regardless of the instance-hour boundary. With either behavior, Amazon EMR removes the least active nodes first and blocks instance termination if it could lead to HDFS corruption. ``TERMINATE_AT_TASK_COMPLETION`` is available only in Amazon EMR releases 4.1.0 and later, and is the default for versions of Amazon EMR earlier than 5.1.0.
|
|
611
625
|
:param security_configuration: The name of the security configuration applied to the cluster.
|
|
@@ -630,12 +644,15 @@ class CfnCluster(
|
|
|
630
644
|
bootstrap_actions=bootstrap_actions,
|
|
631
645
|
configurations=configurations,
|
|
632
646
|
custom_ami_id=custom_ami_id,
|
|
647
|
+
ebs_root_volume_iops=ebs_root_volume_iops,
|
|
633
648
|
ebs_root_volume_size=ebs_root_volume_size,
|
|
649
|
+
ebs_root_volume_throughput=ebs_root_volume_throughput,
|
|
634
650
|
kerberos_attributes=kerberos_attributes,
|
|
635
651
|
log_encryption_kms_key_id=log_encryption_kms_key_id,
|
|
636
652
|
log_uri=log_uri,
|
|
637
653
|
managed_scaling_policy=managed_scaling_policy,
|
|
638
654
|
os_release_label=os_release_label,
|
|
655
|
+
placement_group_configs=placement_group_configs,
|
|
639
656
|
release_label=release_label,
|
|
640
657
|
scale_down_behavior=scale_down_behavior,
|
|
641
658
|
security_configuration=security_configuration,
|
|
@@ -874,6 +891,18 @@ class CfnCluster(
|
|
|
874
891
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
875
892
|
jsii.set(self, "customAmiId", value)
|
|
876
893
|
|
|
894
|
+
@builtins.property
|
|
895
|
+
@jsii.member(jsii_name="ebsRootVolumeIops")
|
|
896
|
+
def ebs_root_volume_iops(self) -> typing.Optional[jsii.Number]:
|
|
897
|
+
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "ebsRootVolumeIops"))
|
|
898
|
+
|
|
899
|
+
@ebs_root_volume_iops.setter
|
|
900
|
+
def ebs_root_volume_iops(self, value: typing.Optional[jsii.Number]) -> None:
|
|
901
|
+
if __debug__:
|
|
902
|
+
type_hints = typing.get_type_hints(_typecheckingstub__54a5180c93c70a8f43ed9835c3357a42eafc25f6dc6c5aa034d474e2f615dd1f)
|
|
903
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
904
|
+
jsii.set(self, "ebsRootVolumeIops", value)
|
|
905
|
+
|
|
877
906
|
@builtins.property
|
|
878
907
|
@jsii.member(jsii_name="ebsRootVolumeSize")
|
|
879
908
|
def ebs_root_volume_size(self) -> typing.Optional[jsii.Number]:
|
|
@@ -887,6 +916,18 @@ class CfnCluster(
|
|
|
887
916
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
888
917
|
jsii.set(self, "ebsRootVolumeSize", value)
|
|
889
918
|
|
|
919
|
+
@builtins.property
|
|
920
|
+
@jsii.member(jsii_name="ebsRootVolumeThroughput")
|
|
921
|
+
def ebs_root_volume_throughput(self) -> typing.Optional[jsii.Number]:
|
|
922
|
+
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "ebsRootVolumeThroughput"))
|
|
923
|
+
|
|
924
|
+
@ebs_root_volume_throughput.setter
|
|
925
|
+
def ebs_root_volume_throughput(self, value: typing.Optional[jsii.Number]) -> None:
|
|
926
|
+
if __debug__:
|
|
927
|
+
type_hints = typing.get_type_hints(_typecheckingstub__951b4ef3a48c5da248736a1dd98ab6d527bce3f6de302ca2d84d41ee7e213288)
|
|
928
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
929
|
+
jsii.set(self, "ebsRootVolumeThroughput", value)
|
|
930
|
+
|
|
890
931
|
@builtins.property
|
|
891
932
|
@jsii.member(jsii_name="kerberosAttributes")
|
|
892
933
|
def kerberos_attributes(
|
|
@@ -962,6 +1003,23 @@ class CfnCluster(
|
|
|
962
1003
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
963
1004
|
jsii.set(self, "osReleaseLabel", value)
|
|
964
1005
|
|
|
1006
|
+
@builtins.property
|
|
1007
|
+
@jsii.member(jsii_name="placementGroupConfigs")
|
|
1008
|
+
def placement_group_configs(
|
|
1009
|
+
self,
|
|
1010
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnCluster.PlacementGroupConfigProperty"]]]]:
|
|
1011
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnCluster.PlacementGroupConfigProperty"]]]], jsii.get(self, "placementGroupConfigs"))
|
|
1012
|
+
|
|
1013
|
+
@placement_group_configs.setter
|
|
1014
|
+
def placement_group_configs(
|
|
1015
|
+
self,
|
|
1016
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnCluster.PlacementGroupConfigProperty"]]]],
|
|
1017
|
+
) -> None:
|
|
1018
|
+
if __debug__:
|
|
1019
|
+
type_hints = typing.get_type_hints(_typecheckingstub__398553fa8e4e3f5661ed1198260a3a1fcc13ee30c6c2bc59bacdcffe873be756)
|
|
1020
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1021
|
+
jsii.set(self, "placementGroupConfigs", value)
|
|
1022
|
+
|
|
965
1023
|
@builtins.property
|
|
966
1024
|
@jsii.member(jsii_name="releaseLabel")
|
|
967
1025
|
def release_label(self) -> typing.Optional[builtins.str]:
|
|
@@ -4067,6 +4125,79 @@ class CfnCluster(
|
|
|
4067
4125
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
4068
4126
|
)
|
|
4069
4127
|
|
|
4128
|
+
@jsii.data_type(
|
|
4129
|
+
jsii_type="aws-cdk-lib.aws_emr.CfnCluster.PlacementGroupConfigProperty",
|
|
4130
|
+
jsii_struct_bases=[],
|
|
4131
|
+
name_mapping={
|
|
4132
|
+
"instance_role": "instanceRole",
|
|
4133
|
+
"placement_strategy": "placementStrategy",
|
|
4134
|
+
},
|
|
4135
|
+
)
|
|
4136
|
+
class PlacementGroupConfigProperty:
|
|
4137
|
+
def __init__(
|
|
4138
|
+
self,
|
|
4139
|
+
*,
|
|
4140
|
+
instance_role: builtins.str,
|
|
4141
|
+
placement_strategy: typing.Optional[builtins.str] = None,
|
|
4142
|
+
) -> None:
|
|
4143
|
+
'''
|
|
4144
|
+
:param instance_role:
|
|
4145
|
+
:param placement_strategy:
|
|
4146
|
+
|
|
4147
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-placementgroupconfig.html
|
|
4148
|
+
:exampleMetadata: fixture=_generated
|
|
4149
|
+
|
|
4150
|
+
Example::
|
|
4151
|
+
|
|
4152
|
+
# The code below shows an example of how to instantiate this type.
|
|
4153
|
+
# The values are placeholders you should change.
|
|
4154
|
+
from aws_cdk import aws_emr as emr
|
|
4155
|
+
|
|
4156
|
+
placement_group_config_property = emr.CfnCluster.PlacementGroupConfigProperty(
|
|
4157
|
+
instance_role="instanceRole",
|
|
4158
|
+
|
|
4159
|
+
# the properties below are optional
|
|
4160
|
+
placement_strategy="placementStrategy"
|
|
4161
|
+
)
|
|
4162
|
+
'''
|
|
4163
|
+
if __debug__:
|
|
4164
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9024d4ca1b091fc3350c52943f87c19e6db412c0ba54cd4b2061955ab335200d)
|
|
4165
|
+
check_type(argname="argument instance_role", value=instance_role, expected_type=type_hints["instance_role"])
|
|
4166
|
+
check_type(argname="argument placement_strategy", value=placement_strategy, expected_type=type_hints["placement_strategy"])
|
|
4167
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4168
|
+
"instance_role": instance_role,
|
|
4169
|
+
}
|
|
4170
|
+
if placement_strategy is not None:
|
|
4171
|
+
self._values["placement_strategy"] = placement_strategy
|
|
4172
|
+
|
|
4173
|
+
@builtins.property
|
|
4174
|
+
def instance_role(self) -> builtins.str:
|
|
4175
|
+
'''
|
|
4176
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-placementgroupconfig.html#cfn-emr-cluster-placementgroupconfig-instancerole
|
|
4177
|
+
'''
|
|
4178
|
+
result = self._values.get("instance_role")
|
|
4179
|
+
assert result is not None, "Required property 'instance_role' is missing"
|
|
4180
|
+
return typing.cast(builtins.str, result)
|
|
4181
|
+
|
|
4182
|
+
@builtins.property
|
|
4183
|
+
def placement_strategy(self) -> typing.Optional[builtins.str]:
|
|
4184
|
+
'''
|
|
4185
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-placementgroupconfig.html#cfn-emr-cluster-placementgroupconfig-placementstrategy
|
|
4186
|
+
'''
|
|
4187
|
+
result = self._values.get("placement_strategy")
|
|
4188
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4189
|
+
|
|
4190
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4191
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4192
|
+
|
|
4193
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
4194
|
+
return not (rhs == self)
|
|
4195
|
+
|
|
4196
|
+
def __repr__(self) -> str:
|
|
4197
|
+
return "PlacementGroupConfigProperty(%s)" % ", ".join(
|
|
4198
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
4199
|
+
)
|
|
4200
|
+
|
|
4070
4201
|
@jsii.data_type(
|
|
4071
4202
|
jsii_type="aws-cdk-lib.aws_emr.CfnCluster.PlacementTypeProperty",
|
|
4072
4203
|
jsii_struct_bases=[],
|
|
@@ -5051,12 +5182,15 @@ class CfnCluster(
|
|
|
5051
5182
|
"bootstrap_actions": "bootstrapActions",
|
|
5052
5183
|
"configurations": "configurations",
|
|
5053
5184
|
"custom_ami_id": "customAmiId",
|
|
5185
|
+
"ebs_root_volume_iops": "ebsRootVolumeIops",
|
|
5054
5186
|
"ebs_root_volume_size": "ebsRootVolumeSize",
|
|
5187
|
+
"ebs_root_volume_throughput": "ebsRootVolumeThroughput",
|
|
5055
5188
|
"kerberos_attributes": "kerberosAttributes",
|
|
5056
5189
|
"log_encryption_kms_key_id": "logEncryptionKmsKeyId",
|
|
5057
5190
|
"log_uri": "logUri",
|
|
5058
5191
|
"managed_scaling_policy": "managedScalingPolicy",
|
|
5059
5192
|
"os_release_label": "osReleaseLabel",
|
|
5193
|
+
"placement_group_configs": "placementGroupConfigs",
|
|
5060
5194
|
"release_label": "releaseLabel",
|
|
5061
5195
|
"scale_down_behavior": "scaleDownBehavior",
|
|
5062
5196
|
"security_configuration": "securityConfiguration",
|
|
@@ -5081,12 +5215,15 @@ class CfnClusterProps:
|
|
|
5081
5215
|
bootstrap_actions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.BootstrapActionConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
5082
5216
|
configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
5083
5217
|
custom_ami_id: typing.Optional[builtins.str] = None,
|
|
5218
|
+
ebs_root_volume_iops: typing.Optional[jsii.Number] = None,
|
|
5084
5219
|
ebs_root_volume_size: typing.Optional[jsii.Number] = None,
|
|
5220
|
+
ebs_root_volume_throughput: typing.Optional[jsii.Number] = None,
|
|
5085
5221
|
kerberos_attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.KerberosAttributesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5086
5222
|
log_encryption_kms_key_id: typing.Optional[builtins.str] = None,
|
|
5087
5223
|
log_uri: typing.Optional[builtins.str] = None,
|
|
5088
5224
|
managed_scaling_policy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ManagedScalingPolicyProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5089
5225
|
os_release_label: typing.Optional[builtins.str] = None,
|
|
5226
|
+
placement_group_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.PlacementGroupConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
5090
5227
|
release_label: typing.Optional[builtins.str] = None,
|
|
5091
5228
|
scale_down_behavior: typing.Optional[builtins.str] = None,
|
|
5092
5229
|
security_configuration: typing.Optional[builtins.str] = None,
|
|
@@ -5108,12 +5245,15 @@ class CfnClusterProps:
|
|
|
5108
5245
|
:param bootstrap_actions: A list of bootstrap actions to run before Hadoop starts on the cluster nodes.
|
|
5109
5246
|
:param configurations: Applies only to Amazon EMR releases 4.x and later. The list of configurations that are supplied to the Amazon EMR cluster.
|
|
5110
5247
|
:param custom_ami_id: Available only in Amazon EMR releases 5.7.0 and later. The ID of a custom Amazon EBS-backed Linux AMI if the cluster uses a custom AMI.
|
|
5248
|
+
:param ebs_root_volume_iops:
|
|
5111
5249
|
:param ebs_root_volume_size: The size, in GiB, of the Amazon EBS root device volume of the Linux AMI that is used for each Amazon EC2 instance. Available in Amazon EMR releases 4.x and later.
|
|
5250
|
+
:param ebs_root_volume_throughput:
|
|
5112
5251
|
:param kerberos_attributes: Attributes for Kerberos configuration when Kerberos authentication is enabled using a security configuration. For more information see `Use Kerberos Authentication <https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-kerberos.html>`_ in the *Amazon EMR Management Guide* .
|
|
5113
5252
|
:param log_encryption_kms_key_id: The AWS KMS key used for encrypting log files. This attribute is only available with Amazon EMR 5.30.0 and later, excluding Amazon EMR 6.0.0.
|
|
5114
5253
|
:param log_uri: The path to the Amazon S3 location where logs for this cluster are stored.
|
|
5115
5254
|
:param managed_scaling_policy: Creates or updates a managed scaling policy for an Amazon EMR cluster. The managed scaling policy defines the limits for resources, such as Amazon EC2 instances that can be added or terminated from a cluster. The policy only applies to the core and task nodes. The master node cannot be scaled after initial configuration.
|
|
5116
5255
|
:param os_release_label: The Amazon Linux release specified in a cluster launch RunJobFlow request. If no Amazon Linux release was specified, the default Amazon Linux release is shown in the response.
|
|
5256
|
+
:param placement_group_configs:
|
|
5117
5257
|
:param release_label: The Amazon EMR release label, which determines the version of open-source application packages installed on the cluster. Release labels are in the form ``emr-x.x.x`` , where x.x.x is an Amazon EMR release version such as ``emr-5.14.0`` . For more information about Amazon EMR release versions and included application versions and features, see ` <https://docs.aws.amazon.com/emr/latest/ReleaseGuide/>`_ . The release label applies only to Amazon EMR releases version 4.0 and later. Earlier versions use ``AmiVersion`` .
|
|
5118
5258
|
:param scale_down_behavior: The way that individual Amazon EC2 instances terminate when an automatic scale-in activity occurs or an instance group is resized. ``TERMINATE_AT_INSTANCE_HOUR`` indicates that Amazon EMR terminates nodes at the instance-hour boundary, regardless of when the request to terminate the instance was submitted. This option is only available with Amazon EMR 5.1.0 and later and is the default for clusters created using that version. ``TERMINATE_AT_TASK_COMPLETION`` indicates that Amazon EMR adds nodes to a deny list and drains tasks from nodes before terminating the Amazon EC2 instances, regardless of the instance-hour boundary. With either behavior, Amazon EMR removes the least active nodes first and blocks instance termination if it could lead to HDFS corruption. ``TERMINATE_AT_TASK_COMPLETION`` is available only in Amazon EMR releases 4.1.0 and later, and is the default for versions of Amazon EMR earlier than 5.1.0.
|
|
5119
5259
|
:param security_configuration: The name of the security configuration applied to the cluster.
|
|
@@ -5561,7 +5701,9 @@ class CfnClusterProps:
|
|
|
5561
5701
|
configurations=[configuration_property_]
|
|
5562
5702
|
)],
|
|
5563
5703
|
custom_ami_id="customAmiId",
|
|
5704
|
+
ebs_root_volume_iops=123,
|
|
5564
5705
|
ebs_root_volume_size=123,
|
|
5706
|
+
ebs_root_volume_throughput=123,
|
|
5565
5707
|
kerberos_attributes=emr.CfnCluster.KerberosAttributesProperty(
|
|
5566
5708
|
kdc_admin_password="kdcAdminPassword",
|
|
5567
5709
|
realm="realm",
|
|
@@ -5585,6 +5727,12 @@ class CfnClusterProps:
|
|
|
5585
5727
|
)
|
|
5586
5728
|
),
|
|
5587
5729
|
os_release_label="osReleaseLabel",
|
|
5730
|
+
placement_group_configs=[emr.CfnCluster.PlacementGroupConfigProperty(
|
|
5731
|
+
instance_role="instanceRole",
|
|
5732
|
+
|
|
5733
|
+
# the properties below are optional
|
|
5734
|
+
placement_strategy="placementStrategy"
|
|
5735
|
+
)],
|
|
5588
5736
|
release_label="releaseLabel",
|
|
5589
5737
|
scale_down_behavior="scaleDownBehavior",
|
|
5590
5738
|
security_configuration="securityConfiguration",
|
|
@@ -5626,12 +5774,15 @@ class CfnClusterProps:
|
|
|
5626
5774
|
check_type(argname="argument bootstrap_actions", value=bootstrap_actions, expected_type=type_hints["bootstrap_actions"])
|
|
5627
5775
|
check_type(argname="argument configurations", value=configurations, expected_type=type_hints["configurations"])
|
|
5628
5776
|
check_type(argname="argument custom_ami_id", value=custom_ami_id, expected_type=type_hints["custom_ami_id"])
|
|
5777
|
+
check_type(argname="argument ebs_root_volume_iops", value=ebs_root_volume_iops, expected_type=type_hints["ebs_root_volume_iops"])
|
|
5629
5778
|
check_type(argname="argument ebs_root_volume_size", value=ebs_root_volume_size, expected_type=type_hints["ebs_root_volume_size"])
|
|
5779
|
+
check_type(argname="argument ebs_root_volume_throughput", value=ebs_root_volume_throughput, expected_type=type_hints["ebs_root_volume_throughput"])
|
|
5630
5780
|
check_type(argname="argument kerberos_attributes", value=kerberos_attributes, expected_type=type_hints["kerberos_attributes"])
|
|
5631
5781
|
check_type(argname="argument log_encryption_kms_key_id", value=log_encryption_kms_key_id, expected_type=type_hints["log_encryption_kms_key_id"])
|
|
5632
5782
|
check_type(argname="argument log_uri", value=log_uri, expected_type=type_hints["log_uri"])
|
|
5633
5783
|
check_type(argname="argument managed_scaling_policy", value=managed_scaling_policy, expected_type=type_hints["managed_scaling_policy"])
|
|
5634
5784
|
check_type(argname="argument os_release_label", value=os_release_label, expected_type=type_hints["os_release_label"])
|
|
5785
|
+
check_type(argname="argument placement_group_configs", value=placement_group_configs, expected_type=type_hints["placement_group_configs"])
|
|
5635
5786
|
check_type(argname="argument release_label", value=release_label, expected_type=type_hints["release_label"])
|
|
5636
5787
|
check_type(argname="argument scale_down_behavior", value=scale_down_behavior, expected_type=type_hints["scale_down_behavior"])
|
|
5637
5788
|
check_type(argname="argument security_configuration", value=security_configuration, expected_type=type_hints["security_configuration"])
|
|
@@ -5659,8 +5810,12 @@ class CfnClusterProps:
|
|
|
5659
5810
|
self._values["configurations"] = configurations
|
|
5660
5811
|
if custom_ami_id is not None:
|
|
5661
5812
|
self._values["custom_ami_id"] = custom_ami_id
|
|
5813
|
+
if ebs_root_volume_iops is not None:
|
|
5814
|
+
self._values["ebs_root_volume_iops"] = ebs_root_volume_iops
|
|
5662
5815
|
if ebs_root_volume_size is not None:
|
|
5663
5816
|
self._values["ebs_root_volume_size"] = ebs_root_volume_size
|
|
5817
|
+
if ebs_root_volume_throughput is not None:
|
|
5818
|
+
self._values["ebs_root_volume_throughput"] = ebs_root_volume_throughput
|
|
5664
5819
|
if kerberos_attributes is not None:
|
|
5665
5820
|
self._values["kerberos_attributes"] = kerberos_attributes
|
|
5666
5821
|
if log_encryption_kms_key_id is not None:
|
|
@@ -5671,6 +5826,8 @@ class CfnClusterProps:
|
|
|
5671
5826
|
self._values["managed_scaling_policy"] = managed_scaling_policy
|
|
5672
5827
|
if os_release_label is not None:
|
|
5673
5828
|
self._values["os_release_label"] = os_release_label
|
|
5829
|
+
if placement_group_configs is not None:
|
|
5830
|
+
self._values["placement_group_configs"] = placement_group_configs
|
|
5674
5831
|
if release_label is not None:
|
|
5675
5832
|
self._values["release_label"] = release_label
|
|
5676
5833
|
if scale_down_behavior is not None:
|
|
@@ -5805,6 +5962,14 @@ class CfnClusterProps:
|
|
|
5805
5962
|
result = self._values.get("custom_ami_id")
|
|
5806
5963
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
5807
5964
|
|
|
5965
|
+
@builtins.property
|
|
5966
|
+
def ebs_root_volume_iops(self) -> typing.Optional[jsii.Number]:
|
|
5967
|
+
'''
|
|
5968
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-cluster.html#cfn-emr-cluster-ebsrootvolumeiops
|
|
5969
|
+
'''
|
|
5970
|
+
result = self._values.get("ebs_root_volume_iops")
|
|
5971
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
5972
|
+
|
|
5808
5973
|
@builtins.property
|
|
5809
5974
|
def ebs_root_volume_size(self) -> typing.Optional[jsii.Number]:
|
|
5810
5975
|
'''The size, in GiB, of the Amazon EBS root device volume of the Linux AMI that is used for each Amazon EC2 instance.
|
|
@@ -5816,6 +5981,14 @@ class CfnClusterProps:
|
|
|
5816
5981
|
result = self._values.get("ebs_root_volume_size")
|
|
5817
5982
|
return typing.cast(typing.Optional[jsii.Number], result)
|
|
5818
5983
|
|
|
5984
|
+
@builtins.property
|
|
5985
|
+
def ebs_root_volume_throughput(self) -> typing.Optional[jsii.Number]:
|
|
5986
|
+
'''
|
|
5987
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-cluster.html#cfn-emr-cluster-ebsrootvolumethroughput
|
|
5988
|
+
'''
|
|
5989
|
+
result = self._values.get("ebs_root_volume_throughput")
|
|
5990
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
5991
|
+
|
|
5819
5992
|
@builtins.property
|
|
5820
5993
|
def kerberos_attributes(
|
|
5821
5994
|
self,
|
|
@@ -5873,6 +6046,16 @@ class CfnClusterProps:
|
|
|
5873
6046
|
result = self._values.get("os_release_label")
|
|
5874
6047
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
5875
6048
|
|
|
6049
|
+
@builtins.property
|
|
6050
|
+
def placement_group_configs(
|
|
6051
|
+
self,
|
|
6052
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnCluster.PlacementGroupConfigProperty]]]]:
|
|
6053
|
+
'''
|
|
6054
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-cluster.html#cfn-emr-cluster-placementgroupconfigs
|
|
6055
|
+
'''
|
|
6056
|
+
result = self._values.get("placement_group_configs")
|
|
6057
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnCluster.PlacementGroupConfigProperty]]]], result)
|
|
6058
|
+
|
|
5876
6059
|
@builtins.property
|
|
5877
6060
|
def release_label(self) -> typing.Optional[builtins.str]:
|
|
5878
6061
|
'''The Amazon EMR release label, which determines the version of open-source application packages installed on the cluster.
|
|
@@ -10108,13 +10291,13 @@ class CfnStudio(
|
|
|
10108
10291
|
:param vpc_id: The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate with the Studio.
|
|
10109
10292
|
:param workspace_security_group_id: The ID of the Workspace security group associated with the Amazon EMR Studio. The Workspace security group allows outbound network traffic to resources in the Engine security group and to the internet.
|
|
10110
10293
|
:param description: A detailed description of the Amazon EMR Studio.
|
|
10111
|
-
:param encryption_key_arn:
|
|
10112
|
-
:param idc_instance_arn: The ARN of the IAM Identity Center instance
|
|
10113
|
-
:param idc_user_assignment:
|
|
10294
|
+
:param encryption_key_arn: The AWS KMS key identifier (ARN) used to encrypt Amazon EMR Studio workspace and notebook files when backed up to Amazon S3.
|
|
10295
|
+
:param idc_instance_arn: The ARN of the IAM Identity Center instance the Studio application belongs to.
|
|
10296
|
+
:param idc_user_assignment: Indicates whether the Studio has ``REQUIRED`` or ``OPTIONAL`` IAM Identity Center user assignment. If the value is set to ``REQUIRED`` , users must be explicitly assigned to the Studio application to access the Studio.
|
|
10114
10297
|
:param idp_auth_url: Your identity provider's authentication endpoint. Amazon EMR Studio redirects federated users to this endpoint for authentication when logging in to a Studio with the Studio URL.
|
|
10115
10298
|
:param idp_relay_state_parameter_name: The name of your identity provider's ``RelayState`` parameter.
|
|
10116
10299
|
:param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
10117
|
-
:param trusted_identity_propagation_enabled:
|
|
10300
|
+
:param trusted_identity_propagation_enabled: Indicates whether the Studio has Trusted identity propagation enabled. The default value is ``false`` .
|
|
10118
10301
|
:param user_role: The Amazon Resource Name (ARN) of the IAM user role that will be assumed by users and groups logged in to a Studio. The permissions attached to this IAM role can be scoped down for each user or group using session policies. You only need to specify ``UserRole`` when you set ``AuthMode`` to ``SSO`` .
|
|
10119
10302
|
'''
|
|
10120
10303
|
if __debug__:
|
|
@@ -10337,6 +10520,7 @@ class CfnStudio(
|
|
|
10337
10520
|
@builtins.property
|
|
10338
10521
|
@jsii.member(jsii_name="encryptionKeyArn")
|
|
10339
10522
|
def encryption_key_arn(self) -> typing.Optional[builtins.str]:
|
|
10523
|
+
'''The AWS KMS key identifier (ARN) used to encrypt Amazon EMR Studio workspace and notebook files when backed up to Amazon S3.'''
|
|
10340
10524
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "encryptionKeyArn"))
|
|
10341
10525
|
|
|
10342
10526
|
@encryption_key_arn.setter
|
|
@@ -10349,7 +10533,7 @@ class CfnStudio(
|
|
|
10349
10533
|
@builtins.property
|
|
10350
10534
|
@jsii.member(jsii_name="idcInstanceArn")
|
|
10351
10535
|
def idc_instance_arn(self) -> typing.Optional[builtins.str]:
|
|
10352
|
-
'''The ARN of the IAM Identity Center instance
|
|
10536
|
+
'''The ARN of the IAM Identity Center instance the Studio application belongs to.'''
|
|
10353
10537
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "idcInstanceArn"))
|
|
10354
10538
|
|
|
10355
10539
|
@idc_instance_arn.setter
|
|
@@ -10362,7 +10546,7 @@ class CfnStudio(
|
|
|
10362
10546
|
@builtins.property
|
|
10363
10547
|
@jsii.member(jsii_name="idcUserAssignment")
|
|
10364
10548
|
def idc_user_assignment(self) -> typing.Optional[builtins.str]:
|
|
10365
|
-
'''
|
|
10549
|
+
'''Indicates whether the Studio has ``REQUIRED`` or ``OPTIONAL`` IAM Identity Center user assignment.'''
|
|
10366
10550
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "idcUserAssignment"))
|
|
10367
10551
|
|
|
10368
10552
|
@idc_user_assignment.setter
|
|
@@ -10419,7 +10603,7 @@ class CfnStudio(
|
|
|
10419
10603
|
def trusted_identity_propagation_enabled(
|
|
10420
10604
|
self,
|
|
10421
10605
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
10422
|
-
'''
|
|
10606
|
+
'''Indicates whether the Studio has Trusted identity propagation enabled.'''
|
|
10423
10607
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "trustedIdentityPropagationEnabled"))
|
|
10424
10608
|
|
|
10425
10609
|
@trusted_identity_propagation_enabled.setter
|
|
@@ -10502,13 +10686,13 @@ class CfnStudioProps:
|
|
|
10502
10686
|
:param vpc_id: The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate with the Studio.
|
|
10503
10687
|
:param workspace_security_group_id: The ID of the Workspace security group associated with the Amazon EMR Studio. The Workspace security group allows outbound network traffic to resources in the Engine security group and to the internet.
|
|
10504
10688
|
:param description: A detailed description of the Amazon EMR Studio.
|
|
10505
|
-
:param encryption_key_arn:
|
|
10506
|
-
:param idc_instance_arn: The ARN of the IAM Identity Center instance
|
|
10507
|
-
:param idc_user_assignment:
|
|
10689
|
+
:param encryption_key_arn: The AWS KMS key identifier (ARN) used to encrypt Amazon EMR Studio workspace and notebook files when backed up to Amazon S3.
|
|
10690
|
+
:param idc_instance_arn: The ARN of the IAM Identity Center instance the Studio application belongs to.
|
|
10691
|
+
:param idc_user_assignment: Indicates whether the Studio has ``REQUIRED`` or ``OPTIONAL`` IAM Identity Center user assignment. If the value is set to ``REQUIRED`` , users must be explicitly assigned to the Studio application to access the Studio.
|
|
10508
10692
|
:param idp_auth_url: Your identity provider's authentication endpoint. Amazon EMR Studio redirects federated users to this endpoint for authentication when logging in to a Studio with the Studio URL.
|
|
10509
10693
|
:param idp_relay_state_parameter_name: The name of your identity provider's ``RelayState`` parameter.
|
|
10510
10694
|
:param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
10511
|
-
:param trusted_identity_propagation_enabled:
|
|
10695
|
+
:param trusted_identity_propagation_enabled: Indicates whether the Studio has Trusted identity propagation enabled. The default value is ``false`` .
|
|
10512
10696
|
:param user_role: The Amazon Resource Name (ARN) of the IAM user role that will be assumed by users and groups logged in to a Studio. The permissions attached to this IAM role can be scoped down for each user or group using session policies. You only need to specify ``UserRole`` when you set ``AuthMode`` to ``SSO`` .
|
|
10513
10697
|
|
|
10514
10698
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-studio.html
|
|
@@ -10692,7 +10876,8 @@ class CfnStudioProps:
|
|
|
10692
10876
|
|
|
10693
10877
|
@builtins.property
|
|
10694
10878
|
def encryption_key_arn(self) -> typing.Optional[builtins.str]:
|
|
10695
|
-
'''
|
|
10879
|
+
'''The AWS KMS key identifier (ARN) used to encrypt Amazon EMR Studio workspace and notebook files when backed up to Amazon S3.
|
|
10880
|
+
|
|
10696
10881
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-studio.html#cfn-emr-studio-encryptionkeyarn
|
|
10697
10882
|
'''
|
|
10698
10883
|
result = self._values.get("encryption_key_arn")
|
|
@@ -10700,7 +10885,7 @@ class CfnStudioProps:
|
|
|
10700
10885
|
|
|
10701
10886
|
@builtins.property
|
|
10702
10887
|
def idc_instance_arn(self) -> typing.Optional[builtins.str]:
|
|
10703
|
-
'''The ARN of the IAM Identity Center instance
|
|
10888
|
+
'''The ARN of the IAM Identity Center instance the Studio application belongs to.
|
|
10704
10889
|
|
|
10705
10890
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-studio.html#cfn-emr-studio-idcinstancearn
|
|
10706
10891
|
'''
|
|
@@ -10709,9 +10894,9 @@ class CfnStudioProps:
|
|
|
10709
10894
|
|
|
10710
10895
|
@builtins.property
|
|
10711
10896
|
def idc_user_assignment(self) -> typing.Optional[builtins.str]:
|
|
10712
|
-
'''
|
|
10897
|
+
'''Indicates whether the Studio has ``REQUIRED`` or ``OPTIONAL`` IAM Identity Center user assignment.
|
|
10713
10898
|
|
|
10714
|
-
If the value is set to REQUIRED, users must be explicitly assigned to the Studio application to access the Studio.
|
|
10899
|
+
If the value is set to ``REQUIRED`` , users must be explicitly assigned to the Studio application to access the Studio.
|
|
10715
10900
|
|
|
10716
10901
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-studio.html#cfn-emr-studio-idcuserassignment
|
|
10717
10902
|
'''
|
|
@@ -10753,9 +10938,9 @@ class CfnStudioProps:
|
|
|
10753
10938
|
def trusted_identity_propagation_enabled(
|
|
10754
10939
|
self,
|
|
10755
10940
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
10756
|
-
'''
|
|
10941
|
+
'''Indicates whether the Studio has Trusted identity propagation enabled.
|
|
10757
10942
|
|
|
10758
|
-
The default value is false.
|
|
10943
|
+
The default value is ``false`` .
|
|
10759
10944
|
|
|
10760
10945
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-studio.html#cfn-emr-studio-trustedidentitypropagationenabled
|
|
10761
10946
|
'''
|
|
@@ -11266,12 +11451,15 @@ def _typecheckingstub__078ec582504b982aedaecb6e8181c3cf53ae51c1b43cd59a31f8379e1
|
|
|
11266
11451
|
bootstrap_actions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.BootstrapActionConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
11267
11452
|
configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
11268
11453
|
custom_ami_id: typing.Optional[builtins.str] = None,
|
|
11454
|
+
ebs_root_volume_iops: typing.Optional[jsii.Number] = None,
|
|
11269
11455
|
ebs_root_volume_size: typing.Optional[jsii.Number] = None,
|
|
11456
|
+
ebs_root_volume_throughput: typing.Optional[jsii.Number] = None,
|
|
11270
11457
|
kerberos_attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.KerberosAttributesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11271
11458
|
log_encryption_kms_key_id: typing.Optional[builtins.str] = None,
|
|
11272
11459
|
log_uri: typing.Optional[builtins.str] = None,
|
|
11273
11460
|
managed_scaling_policy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ManagedScalingPolicyProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11274
11461
|
os_release_label: typing.Optional[builtins.str] = None,
|
|
11462
|
+
placement_group_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.PlacementGroupConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
11275
11463
|
release_label: typing.Optional[builtins.str] = None,
|
|
11276
11464
|
scale_down_behavior: typing.Optional[builtins.str] = None,
|
|
11277
11465
|
security_configuration: typing.Optional[builtins.str] = None,
|
|
@@ -11361,12 +11549,24 @@ def _typecheckingstub__6a91e39dff57dc0abc6e50e192e054139d45c74fc3bc1945999d3f946
|
|
|
11361
11549
|
"""Type checking stubs"""
|
|
11362
11550
|
pass
|
|
11363
11551
|
|
|
11552
|
+
def _typecheckingstub__54a5180c93c70a8f43ed9835c3357a42eafc25f6dc6c5aa034d474e2f615dd1f(
|
|
11553
|
+
value: typing.Optional[jsii.Number],
|
|
11554
|
+
) -> None:
|
|
11555
|
+
"""Type checking stubs"""
|
|
11556
|
+
pass
|
|
11557
|
+
|
|
11364
11558
|
def _typecheckingstub__ec1be0c0b7c99ca4316b39ef88877cc04569c66abbd6ae83da0946947f1bf063(
|
|
11365
11559
|
value: typing.Optional[jsii.Number],
|
|
11366
11560
|
) -> None:
|
|
11367
11561
|
"""Type checking stubs"""
|
|
11368
11562
|
pass
|
|
11369
11563
|
|
|
11564
|
+
def _typecheckingstub__951b4ef3a48c5da248736a1dd98ab6d527bce3f6de302ca2d84d41ee7e213288(
|
|
11565
|
+
value: typing.Optional[jsii.Number],
|
|
11566
|
+
) -> None:
|
|
11567
|
+
"""Type checking stubs"""
|
|
11568
|
+
pass
|
|
11569
|
+
|
|
11370
11570
|
def _typecheckingstub__fb6e8fa078ddb5d5ca597385e37e266a7ee1587d10523bea725cff21909211bd(
|
|
11371
11571
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCluster.KerberosAttributesProperty]],
|
|
11372
11572
|
) -> None:
|
|
@@ -11397,6 +11597,12 @@ def _typecheckingstub__6d4c0fd8467e6006f700dcbf1ba5095561e1d0287c44dc0c0a3753aae
|
|
|
11397
11597
|
"""Type checking stubs"""
|
|
11398
11598
|
pass
|
|
11399
11599
|
|
|
11600
|
+
def _typecheckingstub__398553fa8e4e3f5661ed1198260a3a1fcc13ee30c6c2bc59bacdcffe873be756(
|
|
11601
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnCluster.PlacementGroupConfigProperty]]]],
|
|
11602
|
+
) -> None:
|
|
11603
|
+
"""Type checking stubs"""
|
|
11604
|
+
pass
|
|
11605
|
+
|
|
11400
11606
|
def _typecheckingstub__34f4881cac49b58e2914939050f8e5a864a826f6035515c68f81b50fc7b14ded(
|
|
11401
11607
|
value: typing.Optional[builtins.str],
|
|
11402
11608
|
) -> None:
|
|
@@ -11645,6 +11851,14 @@ def _typecheckingstub__2a2b2b082993c86b69c150a13684b12a05c6ed2134f215a73050d14af
|
|
|
11645
11851
|
"""Type checking stubs"""
|
|
11646
11852
|
pass
|
|
11647
11853
|
|
|
11854
|
+
def _typecheckingstub__9024d4ca1b091fc3350c52943f87c19e6db412c0ba54cd4b2061955ab335200d(
|
|
11855
|
+
*,
|
|
11856
|
+
instance_role: builtins.str,
|
|
11857
|
+
placement_strategy: typing.Optional[builtins.str] = None,
|
|
11858
|
+
) -> None:
|
|
11859
|
+
"""Type checking stubs"""
|
|
11860
|
+
pass
|
|
11861
|
+
|
|
11648
11862
|
def _typecheckingstub__c2a2af5f8dbc7ce16a771e9390fe33448839574f71eaa2acb2f7b7050a1ca0da(
|
|
11649
11863
|
*,
|
|
11650
11864
|
availability_zone: builtins.str,
|
|
@@ -11744,12 +11958,15 @@ def _typecheckingstub__25985ea8bea73f3b566e4cc44a54f891c8c64b46cf5c4fb0ac288983c
|
|
|
11744
11958
|
bootstrap_actions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.BootstrapActionConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
11745
11959
|
configurations: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
11746
11960
|
custom_ami_id: typing.Optional[builtins.str] = None,
|
|
11961
|
+
ebs_root_volume_iops: typing.Optional[jsii.Number] = None,
|
|
11747
11962
|
ebs_root_volume_size: typing.Optional[jsii.Number] = None,
|
|
11963
|
+
ebs_root_volume_throughput: typing.Optional[jsii.Number] = None,
|
|
11748
11964
|
kerberos_attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.KerberosAttributesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11749
11965
|
log_encryption_kms_key_id: typing.Optional[builtins.str] = None,
|
|
11750
11966
|
log_uri: typing.Optional[builtins.str] = None,
|
|
11751
11967
|
managed_scaling_policy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ManagedScalingPolicyProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11752
11968
|
os_release_label: typing.Optional[builtins.str] = None,
|
|
11969
|
+
placement_group_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.PlacementGroupConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
11753
11970
|
release_label: typing.Optional[builtins.str] = None,
|
|
11754
11971
|
scale_down_behavior: typing.Optional[builtins.str] = None,
|
|
11755
11972
|
security_configuration: typing.Optional[builtins.str] = None,
|
|
@@ -521,14 +521,6 @@ class CfnRegistry(
|
|
|
521
521
|
'''The CloudFormation resource type name for this resource class.'''
|
|
522
522
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
523
523
|
|
|
524
|
-
@builtins.property
|
|
525
|
-
@jsii.member(jsii_name="attrId")
|
|
526
|
-
def attr_id(self) -> builtins.str:
|
|
527
|
-
'''
|
|
528
|
-
:cloudformationAttribute: Id
|
|
529
|
-
'''
|
|
530
|
-
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
531
|
-
|
|
532
524
|
@builtins.property
|
|
533
525
|
@jsii.member(jsii_name="attrRegistryArn")
|
|
534
526
|
def attr_registry_arn(self) -> builtins.str:
|
|
@@ -1095,12 +1087,13 @@ class CfnSchema(
|
|
|
1095
1087
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
1096
1088
|
|
|
1097
1089
|
@builtins.property
|
|
1098
|
-
@jsii.member(jsii_name="
|
|
1099
|
-
def
|
|
1100
|
-
'''
|
|
1101
|
-
|
|
1090
|
+
@jsii.member(jsii_name="attrLastModified")
|
|
1091
|
+
def attr_last_modified(self) -> builtins.str:
|
|
1092
|
+
'''The last modified time of the schema.
|
|
1093
|
+
|
|
1094
|
+
:cloudformationAttribute: LastModified
|
|
1102
1095
|
'''
|
|
1103
|
-
return typing.cast(builtins.str, jsii.get(self, "
|
|
1096
|
+
return typing.cast(builtins.str, jsii.get(self, "attrLastModified"))
|
|
1104
1097
|
|
|
1105
1098
|
@builtins.property
|
|
1106
1099
|
@jsii.member(jsii_name="attrSchemaArn")
|
|
@@ -1129,6 +1122,15 @@ class CfnSchema(
|
|
|
1129
1122
|
'''
|
|
1130
1123
|
return typing.cast(builtins.str, jsii.get(self, "attrSchemaVersion"))
|
|
1131
1124
|
|
|
1125
|
+
@builtins.property
|
|
1126
|
+
@jsii.member(jsii_name="attrVersionCreatedDate")
|
|
1127
|
+
def attr_version_created_date(self) -> builtins.str:
|
|
1128
|
+
'''The date the schema version was created.
|
|
1129
|
+
|
|
1130
|
+
:cloudformationAttribute: VersionCreatedDate
|
|
1131
|
+
'''
|
|
1132
|
+
return typing.cast(builtins.str, jsii.get(self, "attrVersionCreatedDate"))
|
|
1133
|
+
|
|
1132
1134
|
@builtins.property
|
|
1133
1135
|
@jsii.member(jsii_name="cfnProperties")
|
|
1134
1136
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|