CfnUserDefinedFunctionMixinProps
- class aws_cdk.cfn_property_mixins.aws_glue.CfnUserDefinedFunctionMixinProps(*, class_name=None, database_name=None, function_name=None, function_type=None, owner_name=None, owner_type=None, resource_uris=None)
Bases:
objectProperties for CfnUserDefinedFunctionPropsMixin.
- Parameters:
class_name (
Optional[str]) – The Java class that contains the function code.database_name (
Optional[str]) – The name of the catalog database in which the function is located.function_name (
Optional[str]) – The name of the function.function_type (
Optional[str]) – The type of the function.owner_name (
Optional[str]) – The owner of the function.owner_type (
Optional[str]) – The owner type.resource_uris (
Union[IResolvable,Sequence[Union[IResolvable,ResourceUriProperty,Dict[str,Any]]],None]) – The resource URIs for the function.
- See:
- 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.cfn_property_mixins import aws_glue as glue cfn_user_defined_function_mixin_props = glue.CfnUserDefinedFunctionMixinProps( class_name="className", database_name="databaseName", function_name="functionName", function_type="functionType", owner_name="ownerName", owner_type="ownerType", resource_uris=[glue.CfnUserDefinedFunctionPropsMixin.ResourceUriProperty( resource_type="resourceType", uri="uri" )] )
Attributes
- class_name
The Java class that contains the function code.
- database_name
The name of the catalog database in which the function is located.
- function_name
The name of the function.
- function_type
The type of the function.
- owner_name
The owner of the function.
- owner_type
The owner type.
- resource_uris
The resource URIs for the function.