CfnDevEndpointPropsMixin
- class aws_cdk.mixins_preview.aws_glue.mixins.CfnDevEndpointPropsMixin(props, *, strategy=None)
Bases:
MixinThe
AWS::Glue::DevEndpointresource specifies a development endpoint where a developer can remotely debug ETL scripts for AWS Glue .For more information, see DevEndpoint Structure in the AWS Glue Developer Guide.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html
- CloudformationResource:
AWS::Glue::DevEndpoint
- Mixin:
true
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview import mixins from aws_cdk.mixins_preview.aws_glue import mixins as glue_mixins # arguments_: Any # tags: Any cfn_dev_endpoint_props_mixin = glue_mixins.CfnDevEndpointPropsMixin(glue_mixins.CfnDevEndpointMixinProps( arguments=arguments_, endpoint_name="endpointName", extra_jars_s3_path="extraJarsS3Path", extra_python_libs_s3_path="extraPythonLibsS3Path", glue_version="glueVersion", number_of_nodes=123, number_of_workers=123, public_key="publicKey", public_keys=["publicKeys"], role_arn="roleArn", security_configuration="securityConfiguration", security_group_ids=["securityGroupIds"], subnet_id="subnetId", tags=tags, worker_type="workerType" ), strategy=mixins.PropertyMergeStrategy.OVERRIDE )
Create a mixin to apply properties to
AWS::Glue::DevEndpoint.- Parameters:
props (
Union[CfnDevEndpointMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['arguments', 'endpointName', 'extraJarsS3Path', 'extraPythonLibsS3Path', 'glueVersion', 'numberOfNodes', 'numberOfWorkers', 'publicKey', 'publicKeys', 'roleArn', 'securityConfiguration', 'securityGroupIds', 'subnetId', 'tags', 'workerType']
Static Methods
- classmethod is_mixin(x)
(experimental) Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental