aws-cdk-lib 2.211.0__py3-none-any.whl → 2.212.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 +398 -43
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.211.0.jsii.tgz → aws-cdk-lib@2.212.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +2 -0
- aws_cdk/aws_apigatewayv2/__init__.py +1798 -74
- aws_cdk/aws_appintegrations/__init__.py +395 -0
- aws_cdk/aws_arcregionswitch/__init__.py +118 -0
- aws_cdk/aws_batch/__init__.py +4 -4
- aws_cdk/aws_bedrock/__init__.py +18 -0
- aws_cdk/aws_billingconductor/__init__.py +3 -3
- aws_cdk/aws_cloudfront/__init__.py +19 -0
- aws_cdk/aws_codebuild/__init__.py +122 -0
- aws_cdk/aws_codepipeline/__init__.py +51 -50
- aws_cdk/aws_connect/__init__.py +40 -15
- aws_cdk/aws_deadline/__init__.py +16 -5
- aws_cdk/aws_dynamodb/__init__.py +86 -16
- aws_cdk/aws_ec2/__init__.py +266 -55
- aws_cdk/aws_ecs/__init__.py +7 -9
- aws_cdk/aws_eks/__init__.py +6 -4
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +2 -2
- aws_cdk/aws_gameliftstreams/__init__.py +7 -6
- aws_cdk/aws_glue/__init__.py +18 -9
- aws_cdk/aws_guardduty/__init__.py +1233 -113
- aws_cdk/aws_imagebuilder/__init__.py +34 -20
- aws_cdk/aws_inspectorv2/__init__.py +1516 -0
- aws_cdk/aws_ivs/__init__.py +1 -1
- aws_cdk/aws_lakeformation/__init__.py +1 -1
- aws_cdk/aws_lambda/__init__.py +6 -6
- aws_cdk/aws_omics/__init__.py +1 -1
- aws_cdk/aws_opensearchservice/__init__.py +128 -0
- aws_cdk/aws_pcs/__init__.py +16 -8
- aws_cdk/aws_quicksight/__init__.py +81 -83
- aws_cdk/aws_rds/__init__.py +31 -163
- aws_cdk/aws_s3express/__init__.py +7 -3
- aws_cdk/aws_s3tables/__init__.py +2 -2
- aws_cdk/aws_sagemaker/__init__.py +62 -20
- aws_cdk/aws_sqs/__init__.py +4 -3
- aws_cdk/aws_stepfunctions_tasks/__init__.py +16 -9
- aws_cdk/aws_synthetics/__init__.py +116 -0
- aws_cdk/cx_api/__init__.py +22 -0
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/METADATA +329 -9
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/RECORD +46 -46
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/top_level.txt +0 -0
|
@@ -1595,6 +1595,7 @@ class CfnCluster(
|
|
|
1595
1595
|
|
|
1596
1596
|
# the properties below are optional
|
|
1597
1597
|
current_count=123,
|
|
1598
|
+
image_id="imageId",
|
|
1598
1599
|
instance_storage_configs=[sagemaker.CfnCluster.ClusterInstanceStorageConfigProperty(
|
|
1599
1600
|
ebs_volume_config=sagemaker.CfnCluster.ClusterEbsVolumeConfigProperty(
|
|
1600
1601
|
volume_size_in_gb=123
|
|
@@ -1608,6 +1609,7 @@ class CfnCluster(
|
|
|
1608
1609
|
threads_per_core=123,
|
|
1609
1610
|
training_plan_arn="trainingPlanArn"
|
|
1610
1611
|
)],
|
|
1612
|
+
node_provisioning_mode="nodeProvisioningMode",
|
|
1611
1613
|
node_recovery="nodeRecovery",
|
|
1612
1614
|
orchestrator=sagemaker.CfnCluster.OrchestratorProperty(
|
|
1613
1615
|
eks=sagemaker.CfnCluster.ClusterOrchestratorEksConfigProperty(
|
|
@@ -1659,6 +1661,7 @@ class CfnCluster(
|
|
|
1659
1661
|
*,
|
|
1660
1662
|
cluster_name: typing.Optional[builtins.str] = None,
|
|
1661
1663
|
instance_groups: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.ClusterInstanceGroupProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1664
|
+
node_provisioning_mode: typing.Optional[builtins.str] = None,
|
|
1662
1665
|
node_recovery: typing.Optional[builtins.str] = None,
|
|
1663
1666
|
orchestrator: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.OrchestratorProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1664
1667
|
restricted_instance_groups: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.ClusterRestrictedInstanceGroupProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -1670,6 +1673,7 @@ class CfnCluster(
|
|
|
1670
1673
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
1671
1674
|
:param cluster_name: The name of the SageMaker HyperPod cluster.
|
|
1672
1675
|
:param instance_groups: The instance groups of the SageMaker HyperPod cluster. To delete an instance group, remove it from the array.
|
|
1676
|
+
:param node_provisioning_mode: Determines the scaling strategy for the SageMaker HyperPod cluster. When set to 'Continuous', enables continuous scaling which dynamically manages node provisioning. If the parameter is omitted, uses the standard scaling approach in previous release.
|
|
1673
1677
|
:param node_recovery: Specifies whether to enable or disable the automatic node recovery feature of SageMaker HyperPod. Available values are ``Automatic`` for enabling and ``None`` for disabling.
|
|
1674
1678
|
:param orchestrator: The orchestrator type for the SageMaker HyperPod cluster. Currently, ``'eks'`` is the only available option.
|
|
1675
1679
|
:param restricted_instance_groups: The restricted instance groups of the SageMaker HyperPod cluster.
|
|
@@ -1683,6 +1687,7 @@ class CfnCluster(
|
|
|
1683
1687
|
props = CfnClusterProps(
|
|
1684
1688
|
cluster_name=cluster_name,
|
|
1685
1689
|
instance_groups=instance_groups,
|
|
1690
|
+
node_provisioning_mode=node_provisioning_mode,
|
|
1686
1691
|
node_recovery=node_recovery,
|
|
1687
1692
|
orchestrator=orchestrator,
|
|
1688
1693
|
restricted_instance_groups=restricted_instance_groups,
|
|
@@ -1800,6 +1805,19 @@ class CfnCluster(
|
|
|
1800
1805
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1801
1806
|
jsii.set(self, "instanceGroups", value) # pyright: ignore[reportArgumentType]
|
|
1802
1807
|
|
|
1808
|
+
@builtins.property
|
|
1809
|
+
@jsii.member(jsii_name="nodeProvisioningMode")
|
|
1810
|
+
def node_provisioning_mode(self) -> typing.Optional[builtins.str]:
|
|
1811
|
+
'''Determines the scaling strategy for the SageMaker HyperPod cluster.'''
|
|
1812
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "nodeProvisioningMode"))
|
|
1813
|
+
|
|
1814
|
+
@node_provisioning_mode.setter
|
|
1815
|
+
def node_provisioning_mode(self, value: typing.Optional[builtins.str]) -> None:
|
|
1816
|
+
if __debug__:
|
|
1817
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d39c569175a8b9d71cfb9896c875b33282b0e81d29a15b8165b749085dff1964)
|
|
1818
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1819
|
+
jsii.set(self, "nodeProvisioningMode", value) # pyright: ignore[reportArgumentType]
|
|
1820
|
+
|
|
1803
1821
|
@builtins.property
|
|
1804
1822
|
@jsii.member(jsii_name="nodeRecovery")
|
|
1805
1823
|
def node_recovery(self) -> typing.Optional[builtins.str]:
|
|
@@ -1949,6 +1967,7 @@ class CfnCluster(
|
|
|
1949
1967
|
"instance_type": "instanceType",
|
|
1950
1968
|
"life_cycle_config": "lifeCycleConfig",
|
|
1951
1969
|
"current_count": "currentCount",
|
|
1970
|
+
"image_id": "imageId",
|
|
1952
1971
|
"instance_storage_configs": "instanceStorageConfigs",
|
|
1953
1972
|
"on_start_deep_health_checks": "onStartDeepHealthChecks",
|
|
1954
1973
|
"override_vpc_config": "overrideVpcConfig",
|
|
@@ -1966,6 +1985,7 @@ class CfnCluster(
|
|
|
1966
1985
|
instance_type: builtins.str,
|
|
1967
1986
|
life_cycle_config: typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.ClusterLifeCycleConfigProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
1968
1987
|
current_count: typing.Optional[jsii.Number] = None,
|
|
1988
|
+
image_id: typing.Optional[builtins.str] = None,
|
|
1969
1989
|
instance_storage_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.ClusterInstanceStorageConfigProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1970
1990
|
on_start_deep_health_checks: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
1971
1991
|
override_vpc_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.VpcConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -1980,6 +2000,7 @@ class CfnCluster(
|
|
|
1980
2000
|
:param instance_type: The instance type of the instance group of a SageMaker HyperPod cluster.
|
|
1981
2001
|
:param life_cycle_config: The lifecycle configuration for a SageMaker HyperPod cluster.
|
|
1982
2002
|
:param current_count: The number of instances that are currently in the instance group of a SageMaker HyperPod cluster.
|
|
2003
|
+
:param image_id: AMI Id to be used for launching EC2 instances - HyperPodPublicAmiId or CustomAmiId.
|
|
1983
2004
|
:param instance_storage_configs: The configurations of additional storage specified to the instance group where the instance (node) is launched.
|
|
1984
2005
|
:param on_start_deep_health_checks: A flag indicating whether deep health checks should be performed when the HyperPod cluster instance group is created or updated. Deep health checks are comprehensive, invasive tests that validate the health of the underlying hardware and infrastructure components.
|
|
1985
2006
|
:param override_vpc_config: The customized Amazon VPC configuration at the instance group level that overrides the default Amazon VPC configuration of the SageMaker HyperPod cluster.
|
|
@@ -2007,6 +2028,7 @@ class CfnCluster(
|
|
|
2007
2028
|
|
|
2008
2029
|
# the properties below are optional
|
|
2009
2030
|
current_count=123,
|
|
2031
|
+
image_id="imageId",
|
|
2010
2032
|
instance_storage_configs=[sagemaker.CfnCluster.ClusterInstanceStorageConfigProperty(
|
|
2011
2033
|
ebs_volume_config=sagemaker.CfnCluster.ClusterEbsVolumeConfigProperty(
|
|
2012
2034
|
volume_size_in_gb=123
|
|
@@ -2029,6 +2051,7 @@ class CfnCluster(
|
|
|
2029
2051
|
check_type(argname="argument instance_type", value=instance_type, expected_type=type_hints["instance_type"])
|
|
2030
2052
|
check_type(argname="argument life_cycle_config", value=life_cycle_config, expected_type=type_hints["life_cycle_config"])
|
|
2031
2053
|
check_type(argname="argument current_count", value=current_count, expected_type=type_hints["current_count"])
|
|
2054
|
+
check_type(argname="argument image_id", value=image_id, expected_type=type_hints["image_id"])
|
|
2032
2055
|
check_type(argname="argument instance_storage_configs", value=instance_storage_configs, expected_type=type_hints["instance_storage_configs"])
|
|
2033
2056
|
check_type(argname="argument on_start_deep_health_checks", value=on_start_deep_health_checks, expected_type=type_hints["on_start_deep_health_checks"])
|
|
2034
2057
|
check_type(argname="argument override_vpc_config", value=override_vpc_config, expected_type=type_hints["override_vpc_config"])
|
|
@@ -2043,6 +2066,8 @@ class CfnCluster(
|
|
|
2043
2066
|
}
|
|
2044
2067
|
if current_count is not None:
|
|
2045
2068
|
self._values["current_count"] = current_count
|
|
2069
|
+
if image_id is not None:
|
|
2070
|
+
self._values["image_id"] = image_id
|
|
2046
2071
|
if instance_storage_configs is not None:
|
|
2047
2072
|
self._values["instance_storage_configs"] = instance_storage_configs
|
|
2048
2073
|
if on_start_deep_health_checks is not None:
|
|
@@ -2115,6 +2140,15 @@ class CfnCluster(
|
|
|
2115
2140
|
result = self._values.get("current_count")
|
|
2116
2141
|
return typing.cast(typing.Optional[jsii.Number], result)
|
|
2117
2142
|
|
|
2143
|
+
@builtins.property
|
|
2144
|
+
def image_id(self) -> typing.Optional[builtins.str]:
|
|
2145
|
+
'''AMI Id to be used for launching EC2 instances - HyperPodPublicAmiId or CustomAmiId.
|
|
2146
|
+
|
|
2147
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html#cfn-sagemaker-cluster-clusterinstancegroup-imageid
|
|
2148
|
+
'''
|
|
2149
|
+
result = self._values.get("image_id")
|
|
2150
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2151
|
+
|
|
2118
2152
|
@builtins.property
|
|
2119
2153
|
def instance_storage_configs(
|
|
2120
2154
|
self,
|
|
@@ -2899,6 +2933,7 @@ class CfnCluster(
|
|
|
2899
2933
|
name_mapping={
|
|
2900
2934
|
"cluster_name": "clusterName",
|
|
2901
2935
|
"instance_groups": "instanceGroups",
|
|
2936
|
+
"node_provisioning_mode": "nodeProvisioningMode",
|
|
2902
2937
|
"node_recovery": "nodeRecovery",
|
|
2903
2938
|
"orchestrator": "orchestrator",
|
|
2904
2939
|
"restricted_instance_groups": "restrictedInstanceGroups",
|
|
@@ -2912,6 +2947,7 @@ class CfnClusterProps:
|
|
|
2912
2947
|
*,
|
|
2913
2948
|
cluster_name: typing.Optional[builtins.str] = None,
|
|
2914
2949
|
instance_groups: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ClusterInstanceGroupProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2950
|
+
node_provisioning_mode: typing.Optional[builtins.str] = None,
|
|
2915
2951
|
node_recovery: typing.Optional[builtins.str] = None,
|
|
2916
2952
|
orchestrator: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.OrchestratorProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2917
2953
|
restricted_instance_groups: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ClusterRestrictedInstanceGroupProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -2922,6 +2958,7 @@ class CfnClusterProps:
|
|
|
2922
2958
|
|
|
2923
2959
|
:param cluster_name: The name of the SageMaker HyperPod cluster.
|
|
2924
2960
|
:param instance_groups: The instance groups of the SageMaker HyperPod cluster. To delete an instance group, remove it from the array.
|
|
2961
|
+
:param node_provisioning_mode: Determines the scaling strategy for the SageMaker HyperPod cluster. When set to 'Continuous', enables continuous scaling which dynamically manages node provisioning. If the parameter is omitted, uses the standard scaling approach in previous release.
|
|
2925
2962
|
:param node_recovery: Specifies whether to enable or disable the automatic node recovery feature of SageMaker HyperPod. Available values are ``Automatic`` for enabling and ``None`` for disabling.
|
|
2926
2963
|
:param orchestrator: The orchestrator type for the SageMaker HyperPod cluster. Currently, ``'eks'`` is the only available option.
|
|
2927
2964
|
:param restricted_instance_groups: The restricted instance groups of the SageMaker HyperPod cluster.
|
|
@@ -2951,6 +2988,7 @@ class CfnClusterProps:
|
|
|
2951
2988
|
|
|
2952
2989
|
# the properties below are optional
|
|
2953
2990
|
current_count=123,
|
|
2991
|
+
image_id="imageId",
|
|
2954
2992
|
instance_storage_configs=[sagemaker.CfnCluster.ClusterInstanceStorageConfigProperty(
|
|
2955
2993
|
ebs_volume_config=sagemaker.CfnCluster.ClusterEbsVolumeConfigProperty(
|
|
2956
2994
|
volume_size_in_gb=123
|
|
@@ -2964,6 +3002,7 @@ class CfnClusterProps:
|
|
|
2964
3002
|
threads_per_core=123,
|
|
2965
3003
|
training_plan_arn="trainingPlanArn"
|
|
2966
3004
|
)],
|
|
3005
|
+
node_provisioning_mode="nodeProvisioningMode",
|
|
2967
3006
|
node_recovery="nodeRecovery",
|
|
2968
3007
|
orchestrator=sagemaker.CfnCluster.OrchestratorProperty(
|
|
2969
3008
|
eks=sagemaker.CfnCluster.ClusterOrchestratorEksConfigProperty(
|
|
@@ -3011,6 +3050,7 @@ class CfnClusterProps:
|
|
|
3011
3050
|
type_hints = typing.get_type_hints(_typecheckingstub__c8126a53dc1741a2edde75d8d4eca79c53a2294746ea237dfba0097a758522ce)
|
|
3012
3051
|
check_type(argname="argument cluster_name", value=cluster_name, expected_type=type_hints["cluster_name"])
|
|
3013
3052
|
check_type(argname="argument instance_groups", value=instance_groups, expected_type=type_hints["instance_groups"])
|
|
3053
|
+
check_type(argname="argument node_provisioning_mode", value=node_provisioning_mode, expected_type=type_hints["node_provisioning_mode"])
|
|
3014
3054
|
check_type(argname="argument node_recovery", value=node_recovery, expected_type=type_hints["node_recovery"])
|
|
3015
3055
|
check_type(argname="argument orchestrator", value=orchestrator, expected_type=type_hints["orchestrator"])
|
|
3016
3056
|
check_type(argname="argument restricted_instance_groups", value=restricted_instance_groups, expected_type=type_hints["restricted_instance_groups"])
|
|
@@ -3021,6 +3061,8 @@ class CfnClusterProps:
|
|
|
3021
3061
|
self._values["cluster_name"] = cluster_name
|
|
3022
3062
|
if instance_groups is not None:
|
|
3023
3063
|
self._values["instance_groups"] = instance_groups
|
|
3064
|
+
if node_provisioning_mode is not None:
|
|
3065
|
+
self._values["node_provisioning_mode"] = node_provisioning_mode
|
|
3024
3066
|
if node_recovery is not None:
|
|
3025
3067
|
self._values["node_recovery"] = node_recovery
|
|
3026
3068
|
if orchestrator is not None:
|
|
@@ -3054,6 +3096,17 @@ class CfnClusterProps:
|
|
|
3054
3096
|
result = self._values.get("instance_groups")
|
|
3055
3097
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnCluster.ClusterInstanceGroupProperty]]]], result)
|
|
3056
3098
|
|
|
3099
|
+
@builtins.property
|
|
3100
|
+
def node_provisioning_mode(self) -> typing.Optional[builtins.str]:
|
|
3101
|
+
'''Determines the scaling strategy for the SageMaker HyperPod cluster.
|
|
3102
|
+
|
|
3103
|
+
When set to 'Continuous', enables continuous scaling which dynamically manages node provisioning. If the parameter is omitted, uses the standard scaling approach in previous release.
|
|
3104
|
+
|
|
3105
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-cluster.html#cfn-sagemaker-cluster-nodeprovisioningmode
|
|
3106
|
+
'''
|
|
3107
|
+
result = self._values.get("node_provisioning_mode")
|
|
3108
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3109
|
+
|
|
3057
3110
|
@builtins.property
|
|
3058
3111
|
def node_recovery(self) -> typing.Optional[builtins.str]:
|
|
3059
3112
|
'''Specifies whether to enable or disable the automatic node recovery feature of SageMaker HyperPod.
|
|
@@ -6896,7 +6949,6 @@ class CfnDomain(
|
|
|
6896
6949
|
environment_id="environmentId",
|
|
6897
6950
|
project_id="projectId",
|
|
6898
6951
|
project_s3_path="projectS3Path",
|
|
6899
|
-
single_sign_on_application_arn="singleSignOnApplicationArn",
|
|
6900
6952
|
studio_web_portal_access="studioWebPortalAccess"
|
|
6901
6953
|
)
|
|
6902
6954
|
),
|
|
@@ -8322,7 +8374,6 @@ class CfnDomain(
|
|
|
8322
8374
|
environment_id="environmentId",
|
|
8323
8375
|
project_id="projectId",
|
|
8324
8376
|
project_s3_path="projectS3Path",
|
|
8325
|
-
single_sign_on_application_arn="singleSignOnApplicationArn",
|
|
8326
8377
|
studio_web_portal_access="studioWebPortalAccess"
|
|
8327
8378
|
)
|
|
8328
8379
|
)
|
|
@@ -9793,7 +9844,6 @@ class CfnDomain(
|
|
|
9793
9844
|
"environment_id": "environmentId",
|
|
9794
9845
|
"project_id": "projectId",
|
|
9795
9846
|
"project_s3_path": "projectS3Path",
|
|
9796
|
-
"single_sign_on_application_arn": "singleSignOnApplicationArn",
|
|
9797
9847
|
"studio_web_portal_access": "studioWebPortalAccess",
|
|
9798
9848
|
},
|
|
9799
9849
|
)
|
|
@@ -9807,7 +9857,6 @@ class CfnDomain(
|
|
|
9807
9857
|
environment_id: typing.Optional[builtins.str] = None,
|
|
9808
9858
|
project_id: typing.Optional[builtins.str] = None,
|
|
9809
9859
|
project_s3_path: typing.Optional[builtins.str] = None,
|
|
9810
|
-
single_sign_on_application_arn: typing.Optional[builtins.str] = None,
|
|
9811
9860
|
studio_web_portal_access: typing.Optional[builtins.str] = None,
|
|
9812
9861
|
) -> None:
|
|
9813
9862
|
'''The settings that apply to an Amazon SageMaker AI domain when you use it in Amazon SageMaker Unified Studio.
|
|
@@ -9818,7 +9867,6 @@ class CfnDomain(
|
|
|
9818
9867
|
:param environment_id: The ID of the environment that Amazon SageMaker Unified Studio associates with the domain.
|
|
9819
9868
|
:param project_id: The ID of the Amazon SageMaker Unified Studio project that corresponds to the domain.
|
|
9820
9869
|
:param project_s3_path: The location where Amazon S3 stores temporary execution data and other artifacts for the project that corresponds to the domain.
|
|
9821
|
-
:param single_sign_on_application_arn: The ARN of the Amazon DataZone application managed by Amazon SageMaker Unified Studio in the AWS IAM Identity Center.
|
|
9822
9870
|
:param studio_web_portal_access: Sets whether you can access the domain in Amazon SageMaker Studio:. - **ENABLED** - You can access the domain in Amazon SageMaker Studio. If you migrate the domain to Amazon SageMaker Unified Studio, you can access it in both studio interfaces. - **DISABLED** - You can't access the domain in Amazon SageMaker Studio. If you migrate the domain to Amazon SageMaker Unified Studio, you can access it only in that studio interface. To migrate a domain to Amazon SageMaker Unified Studio, you specify the UnifiedStudioSettings data type when you use the UpdateDomain action.
|
|
9823
9871
|
|
|
9824
9872
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-unifiedstudiosettings.html
|
|
@@ -9837,7 +9885,6 @@ class CfnDomain(
|
|
|
9837
9885
|
environment_id="environmentId",
|
|
9838
9886
|
project_id="projectId",
|
|
9839
9887
|
project_s3_path="projectS3Path",
|
|
9840
|
-
single_sign_on_application_arn="singleSignOnApplicationArn",
|
|
9841
9888
|
studio_web_portal_access="studioWebPortalAccess"
|
|
9842
9889
|
)
|
|
9843
9890
|
'''
|
|
@@ -9849,7 +9896,6 @@ class CfnDomain(
|
|
|
9849
9896
|
check_type(argname="argument environment_id", value=environment_id, expected_type=type_hints["environment_id"])
|
|
9850
9897
|
check_type(argname="argument project_id", value=project_id, expected_type=type_hints["project_id"])
|
|
9851
9898
|
check_type(argname="argument project_s3_path", value=project_s3_path, expected_type=type_hints["project_s3_path"])
|
|
9852
|
-
check_type(argname="argument single_sign_on_application_arn", value=single_sign_on_application_arn, expected_type=type_hints["single_sign_on_application_arn"])
|
|
9853
9899
|
check_type(argname="argument studio_web_portal_access", value=studio_web_portal_access, expected_type=type_hints["studio_web_portal_access"])
|
|
9854
9900
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
9855
9901
|
if domain_account_id is not None:
|
|
@@ -9864,8 +9910,6 @@ class CfnDomain(
|
|
|
9864
9910
|
self._values["project_id"] = project_id
|
|
9865
9911
|
if project_s3_path is not None:
|
|
9866
9912
|
self._values["project_s3_path"] = project_s3_path
|
|
9867
|
-
if single_sign_on_application_arn is not None:
|
|
9868
|
-
self._values["single_sign_on_application_arn"] = single_sign_on_application_arn
|
|
9869
9913
|
if studio_web_portal_access is not None:
|
|
9870
9914
|
self._values["studio_web_portal_access"] = studio_web_portal_access
|
|
9871
9915
|
|
|
@@ -9927,15 +9971,6 @@ class CfnDomain(
|
|
|
9927
9971
|
result = self._values.get("project_s3_path")
|
|
9928
9972
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
9929
9973
|
|
|
9930
|
-
@builtins.property
|
|
9931
|
-
def single_sign_on_application_arn(self) -> typing.Optional[builtins.str]:
|
|
9932
|
-
'''The ARN of the Amazon DataZone application managed by Amazon SageMaker Unified Studio in the AWS IAM Identity Center.
|
|
9933
|
-
|
|
9934
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-unifiedstudiosettings.html#cfn-sagemaker-domain-unifiedstudiosettings-singlesignonapplicationarn
|
|
9935
|
-
'''
|
|
9936
|
-
result = self._values.get("single_sign_on_application_arn")
|
|
9937
|
-
return typing.cast(typing.Optional[builtins.str], result)
|
|
9938
|
-
|
|
9939
9974
|
@builtins.property
|
|
9940
9975
|
def studio_web_portal_access(self) -> typing.Optional[builtins.str]:
|
|
9941
9976
|
'''Sets whether you can access the domain in Amazon SageMaker Studio:.
|
|
@@ -10777,7 +10812,6 @@ class CfnDomainProps:
|
|
|
10777
10812
|
environment_id="environmentId",
|
|
10778
10813
|
project_id="projectId",
|
|
10779
10814
|
project_s3_path="projectS3Path",
|
|
10780
|
-
single_sign_on_application_arn="singleSignOnApplicationArn",
|
|
10781
10815
|
studio_web_portal_access="studioWebPortalAccess"
|
|
10782
10816
|
)
|
|
10783
10817
|
),
|
|
@@ -54455,6 +54489,7 @@ def _typecheckingstub__b1441bbec1bb60460bda62b43765e140885fbb36e13b090ded31c919b
|
|
|
54455
54489
|
*,
|
|
54456
54490
|
cluster_name: typing.Optional[builtins.str] = None,
|
|
54457
54491
|
instance_groups: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ClusterInstanceGroupProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
54492
|
+
node_provisioning_mode: typing.Optional[builtins.str] = None,
|
|
54458
54493
|
node_recovery: typing.Optional[builtins.str] = None,
|
|
54459
54494
|
orchestrator: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.OrchestratorProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
54460
54495
|
restricted_instance_groups: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ClusterRestrictedInstanceGroupProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -54488,6 +54523,12 @@ def _typecheckingstub__4e78b567f109d38ee1f8221168fe230f3c378e24d69dab4b08d88a01e
|
|
|
54488
54523
|
"""Type checking stubs"""
|
|
54489
54524
|
pass
|
|
54490
54525
|
|
|
54526
|
+
def _typecheckingstub__d39c569175a8b9d71cfb9896c875b33282b0e81d29a15b8165b749085dff1964(
|
|
54527
|
+
value: typing.Optional[builtins.str],
|
|
54528
|
+
) -> None:
|
|
54529
|
+
"""Type checking stubs"""
|
|
54530
|
+
pass
|
|
54531
|
+
|
|
54491
54532
|
def _typecheckingstub__4fbe65936cd747930256e6fb03ae406dcd4ea78b463b13ed47a475b84468f655(
|
|
54492
54533
|
value: typing.Optional[builtins.str],
|
|
54493
54534
|
) -> None:
|
|
@@ -54533,6 +54574,7 @@ def _typecheckingstub__3a19719ba9f3f785eebfbcc6ee996f6178944dfe9cbd5d5cdf73341bd
|
|
|
54533
54574
|
instance_type: builtins.str,
|
|
54534
54575
|
life_cycle_config: typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ClusterLifeCycleConfigProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
54535
54576
|
current_count: typing.Optional[jsii.Number] = None,
|
|
54577
|
+
image_id: typing.Optional[builtins.str] = None,
|
|
54536
54578
|
instance_storage_configs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ClusterInstanceStorageConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
54537
54579
|
on_start_deep_health_checks: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
54538
54580
|
override_vpc_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.VpcConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -54615,6 +54657,7 @@ def _typecheckingstub__c8126a53dc1741a2edde75d8d4eca79c53a2294746ea237dfba0097a7
|
|
|
54615
54657
|
*,
|
|
54616
54658
|
cluster_name: typing.Optional[builtins.str] = None,
|
|
54617
54659
|
instance_groups: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ClusterInstanceGroupProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
54660
|
+
node_provisioning_mode: typing.Optional[builtins.str] = None,
|
|
54618
54661
|
node_recovery: typing.Optional[builtins.str] = None,
|
|
54619
54662
|
orchestrator: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.OrchestratorProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
54620
54663
|
restricted_instance_groups: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ClusterRestrictedInstanceGroupProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -55421,7 +55464,6 @@ def _typecheckingstub__b4dad77d25b548827f5bcfd63cb5788816c5db5845110e1912053632c
|
|
|
55421
55464
|
environment_id: typing.Optional[builtins.str] = None,
|
|
55422
55465
|
project_id: typing.Optional[builtins.str] = None,
|
|
55423
55466
|
project_s3_path: typing.Optional[builtins.str] = None,
|
|
55424
|
-
single_sign_on_application_arn: typing.Optional[builtins.str] = None,
|
|
55425
55467
|
studio_web_portal_access: typing.Optional[builtins.str] = None,
|
|
55426
55468
|
) -> None:
|
|
55427
55469
|
"""Type checking stubs"""
|
aws_cdk/aws_sqs/__init__.py
CHANGED
|
@@ -261,7 +261,7 @@ class CfnQueue(
|
|
|
261
261
|
:param fifo_throughput_limit: For high throughput for FIFO queues, specifies whether the FIFO queue throughput quota applies to the entire queue or per message group. Valid values are ``perQueue`` and ``perMessageGroupId`` . To enable high throughput for a FIFO queue, set this attribute to ``perMessageGroupId`` *and* set the ``DeduplicationScope`` attribute to ``messageGroup`` . If you set these attributes to anything other than these values, normal throughput is in effect and deduplication occurs as specified. For more information, see `High throughput for FIFO queues <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/high-throughput-fifo.html>`_ and `Quotas related to messages <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/quotas-messages.html>`_ in the *Amazon SQS Developer Guide* .
|
|
262
262
|
:param kms_data_key_reuse_period_seconds: The length of time in seconds for which Amazon SQS can reuse a data key to encrypt or decrypt messages before calling AWS KMS again. The value must be an integer between 60 (1 minute) and 86,400 (24 hours). The default is 300 (5 minutes). .. epigraph:: A shorter time period provides better security, but results in more calls to AWS KMS , which might incur charges after Free Tier. For more information, see `Encryption at rest <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html#sqs-how-does-the-data-key-reuse-period-work>`_ in the *Amazon SQS Developer Guide* .
|
|
263
263
|
:param kms_master_key_id: The ID of an AWS Key Management Service (KMS) for Amazon SQS , or a custom KMS. To use the AWS managed KMS for Amazon SQS , specify a (default) alias ARN, alias name (for example ``alias/aws/sqs`` ), key ARN, or key ID. For more information, see the following: - `Encryption at rest <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html>`_ in the *Amazon SQS Developer Guide* - `CreateQueue <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_CreateQueue.html>`_ in the *Amazon SQS API Reference* - `Request Parameters <https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters>`_ in the *AWS Key Management Service API Reference* - The Key Management Service (KMS) section of the `Security best practices for AWS Key Management Service <https://docs.aws.amazon.com/kms/latest/developerguide/best-practices.html>`_ in the *AWS Key Management Service Developer Guide*
|
|
264
|
-
:param maximum_message_size: The limit of how many bytes that a message can contain before Amazon SQS rejects it. You can specify an integer
|
|
264
|
+
:param maximum_message_size: The limit of how many bytes that a message can contain before Amazon SQS rejects it. You can specify an integer from 1,024 bytes (1 KiB) to 1,048,576 bytes (1 MiB). Default: 1,048,576 bytes (1 MiB).
|
|
265
265
|
:param message_retention_period: The number of seconds that Amazon SQS retains a message. You can specify an integer value from ``60`` seconds (1 minute) to ``1,209,600`` seconds (14 days). The default value is ``345,600`` seconds (4 days).
|
|
266
266
|
:param queue_name: A name for the queue. To create a FIFO queue, the name of your FIFO queue must end with the ``.fifo`` suffix. For more information, see `Amazon SQS FIFO queues <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-fifo-queues.html>`_ in the *Amazon SQS Developer Guide* . If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the queue name. For more information, see `Name type <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html>`_ in the *AWS CloudFormation User Guide* . .. epigraph:: If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
|
|
267
267
|
:param receive_message_wait_time_seconds: Specifies the duration, in seconds, that the ReceiveMessage action call waits until a message is in the queue in order to include it in the response, rather than returning an empty response if a message isn't yet available. You can specify an integer from 1 to 20. Short polling is used as the default or when you specify 0 for this property. For more information, see `Consuming messages using long polling <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-short-and-long-polling.html#sqs-long-polling>`_ in the *Amazon SQS Developer Guide* .
|
|
@@ -1032,7 +1032,7 @@ class CfnQueueProps:
|
|
|
1032
1032
|
:param fifo_throughput_limit: For high throughput for FIFO queues, specifies whether the FIFO queue throughput quota applies to the entire queue or per message group. Valid values are ``perQueue`` and ``perMessageGroupId`` . To enable high throughput for a FIFO queue, set this attribute to ``perMessageGroupId`` *and* set the ``DeduplicationScope`` attribute to ``messageGroup`` . If you set these attributes to anything other than these values, normal throughput is in effect and deduplication occurs as specified. For more information, see `High throughput for FIFO queues <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/high-throughput-fifo.html>`_ and `Quotas related to messages <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/quotas-messages.html>`_ in the *Amazon SQS Developer Guide* .
|
|
1033
1033
|
:param kms_data_key_reuse_period_seconds: The length of time in seconds for which Amazon SQS can reuse a data key to encrypt or decrypt messages before calling AWS KMS again. The value must be an integer between 60 (1 minute) and 86,400 (24 hours). The default is 300 (5 minutes). .. epigraph:: A shorter time period provides better security, but results in more calls to AWS KMS , which might incur charges after Free Tier. For more information, see `Encryption at rest <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html#sqs-how-does-the-data-key-reuse-period-work>`_ in the *Amazon SQS Developer Guide* .
|
|
1034
1034
|
:param kms_master_key_id: The ID of an AWS Key Management Service (KMS) for Amazon SQS , or a custom KMS. To use the AWS managed KMS for Amazon SQS , specify a (default) alias ARN, alias name (for example ``alias/aws/sqs`` ), key ARN, or key ID. For more information, see the following: - `Encryption at rest <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html>`_ in the *Amazon SQS Developer Guide* - `CreateQueue <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_CreateQueue.html>`_ in the *Amazon SQS API Reference* - `Request Parameters <https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters>`_ in the *AWS Key Management Service API Reference* - The Key Management Service (KMS) section of the `Security best practices for AWS Key Management Service <https://docs.aws.amazon.com/kms/latest/developerguide/best-practices.html>`_ in the *AWS Key Management Service Developer Guide*
|
|
1035
|
-
:param maximum_message_size: The limit of how many bytes that a message can contain before Amazon SQS rejects it. You can specify an integer
|
|
1035
|
+
:param maximum_message_size: The limit of how many bytes that a message can contain before Amazon SQS rejects it. You can specify an integer from 1,024 bytes (1 KiB) to 1,048,576 bytes (1 MiB). Default: 1,048,576 bytes (1 MiB).
|
|
1036
1036
|
:param message_retention_period: The number of seconds that Amazon SQS retains a message. You can specify an integer value from ``60`` seconds (1 minute) to ``1,209,600`` seconds (14 days). The default value is ``345,600`` seconds (4 days).
|
|
1037
1037
|
:param queue_name: A name for the queue. To create a FIFO queue, the name of your FIFO queue must end with the ``.fifo`` suffix. For more information, see `Amazon SQS FIFO queues <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-fifo-queues.html>`_ in the *Amazon SQS Developer Guide* . If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the queue name. For more information, see `Name type <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html>`_ in the *AWS CloudFormation User Guide* . .. epigraph:: If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
|
|
1038
1038
|
:param receive_message_wait_time_seconds: Specifies the duration, in seconds, that the ReceiveMessage action call waits until a message is in the queue in order to include it in the response, rather than returning an empty response if a message isn't yet available. You can specify an integer from 1 to 20. Short polling is used as the default or when you specify 0 for this property. For more information, see `Consuming messages using long polling <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-short-and-long-polling.html#sqs-long-polling>`_ in the *Amazon SQS Developer Guide* .
|
|
@@ -1225,7 +1225,8 @@ class CfnQueueProps:
|
|
|
1225
1225
|
def maximum_message_size(self) -> typing.Optional[jsii.Number]:
|
|
1226
1226
|
'''The limit of how many bytes that a message can contain before Amazon SQS rejects it.
|
|
1227
1227
|
|
|
1228
|
-
You can specify an integer
|
|
1228
|
+
You can specify an integer from 1,024 bytes (1 KiB) to 1,048,576 bytes (1 MiB).
|
|
1229
|
+
Default: 1,048,576 bytes (1 MiB).
|
|
1229
1230
|
|
|
1230
1231
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sqs-queue.html#cfn-sqs-queue-maximummessagesize
|
|
1231
1232
|
'''
|
|
@@ -40,6 +40,8 @@ This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aw
|
|
|
40
40
|
* [Bedrock](#bedrock)
|
|
41
41
|
|
|
42
42
|
* [InvokeModel](#invokemodel)
|
|
43
|
+
* [Using Input Path for S3 URI](#using-input-path-for-s3-uri)
|
|
44
|
+
* [Using Input Path](#using-input-path)
|
|
43
45
|
* [createModelCustomizationJob](#createmodelcustomizationjob)
|
|
44
46
|
* [CodeBuild](#codebuild)
|
|
45
47
|
|
|
@@ -57,6 +59,7 @@ This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aw
|
|
|
57
59
|
|
|
58
60
|
* [EC2](#ec2)
|
|
59
61
|
* [Fargate](#fargate)
|
|
62
|
+
* [Override CPU and Memory Parameter](#override-cpu-and-memory-parameter)
|
|
60
63
|
* [ECS enable Exec](#ecs-enable-exec)
|
|
61
64
|
* [EMR](#emr)
|
|
62
65
|
|
|
@@ -78,6 +81,9 @@ This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aw
|
|
|
78
81
|
* [EventBridge](#eventbridge)
|
|
79
82
|
|
|
80
83
|
* [Put Events](#put-events)
|
|
84
|
+
* [EventBridge Scheduler](#eventbridge-scheduler)
|
|
85
|
+
|
|
86
|
+
* [Create Scheduler](#create-scheduler)
|
|
81
87
|
* [Glue](#glue)
|
|
82
88
|
|
|
83
89
|
* [StartJobRun](#startjobrun)
|
|
@@ -85,12 +91,13 @@ This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aw
|
|
|
85
91
|
* [Glue DataBrew](#glue-databrew)
|
|
86
92
|
|
|
87
93
|
* [Start Job Run](#start-job-run-1)
|
|
94
|
+
* [Invoke HTTP API](#invoke-http-api)
|
|
88
95
|
* [Lambda](#lambda)
|
|
89
96
|
|
|
90
97
|
* [Invoke](#invoke)
|
|
91
98
|
* [MediaConvert](#mediaconvert)
|
|
92
99
|
|
|
93
|
-
* [
|
|
100
|
+
* [CreateJob](#createjob)
|
|
94
101
|
* [SageMaker](#sagemaker)
|
|
95
102
|
|
|
96
103
|
* [Create Training Job](#create-training-job)
|
|
@@ -1316,13 +1323,13 @@ The following code snippet includes a Task state that uses eks:call to list the
|
|
|
1316
1323
|
|
|
1317
1324
|
```python
|
|
1318
1325
|
import aws_cdk.aws_eks as eks
|
|
1319
|
-
from aws_cdk.
|
|
1326
|
+
from aws_cdk.lambda_layer_kubectl_v33 import KubectlV33Layer
|
|
1320
1327
|
|
|
1321
1328
|
|
|
1322
1329
|
my_eks_cluster = eks.Cluster(self, "my sample cluster",
|
|
1323
1330
|
version=eks.KubernetesVersion.V1_32,
|
|
1324
1331
|
cluster_name="myEksCluster",
|
|
1325
|
-
kubectl_layer=
|
|
1332
|
+
kubectl_layer=KubectlV33Layer(self, "kubectl")
|
|
1326
1333
|
)
|
|
1327
1334
|
|
|
1328
1335
|
tasks.EksCall(self, "Call a EKS Endpoint",
|
|
@@ -32600,13 +32607,13 @@ class EksCall(
|
|
|
32600
32607
|
Example::
|
|
32601
32608
|
|
|
32602
32609
|
import aws_cdk.aws_eks as eks
|
|
32603
|
-
from aws_cdk.
|
|
32610
|
+
from aws_cdk.lambda_layer_kubectl_v33 import KubectlV33Layer
|
|
32604
32611
|
|
|
32605
32612
|
|
|
32606
32613
|
my_eks_cluster = eks.Cluster(self, "my sample cluster",
|
|
32607
32614
|
version=eks.KubernetesVersion.V1_32,
|
|
32608
32615
|
cluster_name="myEksCluster",
|
|
32609
|
-
kubectl_layer=
|
|
32616
|
+
kubectl_layer=KubectlV33Layer(self, "kubectl")
|
|
32610
32617
|
)
|
|
32611
32618
|
|
|
32612
32619
|
tasks.EksCall(self, "Call a EKS Endpoint",
|
|
@@ -33708,13 +33715,13 @@ class EksCallProps(_TaskStateBaseProps_3a62b6d0):
|
|
|
33708
33715
|
Example::
|
|
33709
33716
|
|
|
33710
33717
|
import aws_cdk.aws_eks as eks
|
|
33711
|
-
from aws_cdk.
|
|
33718
|
+
from aws_cdk.lambda_layer_kubectl_v33 import KubectlV33Layer
|
|
33712
33719
|
|
|
33713
33720
|
|
|
33714
33721
|
my_eks_cluster = eks.Cluster(self, "my sample cluster",
|
|
33715
33722
|
version=eks.KubernetesVersion.V1_32,
|
|
33716
33723
|
cluster_name="myEksCluster",
|
|
33717
|
-
kubectl_layer=
|
|
33724
|
+
kubectl_layer=KubectlV33Layer(self, "kubectl")
|
|
33718
33725
|
)
|
|
33719
33726
|
|
|
33720
33727
|
tasks.EksCall(self, "Call a EKS Endpoint",
|
|
@@ -62964,13 +62971,13 @@ class HttpMethods(enum.Enum):
|
|
|
62964
62971
|
Example::
|
|
62965
62972
|
|
|
62966
62973
|
import aws_cdk.aws_eks as eks
|
|
62967
|
-
from aws_cdk.
|
|
62974
|
+
from aws_cdk.lambda_layer_kubectl_v33 import KubectlV33Layer
|
|
62968
62975
|
|
|
62969
62976
|
|
|
62970
62977
|
my_eks_cluster = eks.Cluster(self, "my sample cluster",
|
|
62971
62978
|
version=eks.KubernetesVersion.V1_32,
|
|
62972
62979
|
cluster_name="myEksCluster",
|
|
62973
|
-
kubectl_layer=
|
|
62980
|
+
kubectl_layer=KubectlV33Layer(self, "kubectl")
|
|
62974
62981
|
)
|
|
62975
62982
|
|
|
62976
62983
|
tasks.EksCall(self, "Call a EKS Endpoint",
|