interface CfnUserDefinedFunctionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnUserDefinedFunctionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnUserDefinedFunctionProps |
Java | software.amazon.awscdk.services.glue.CfnUserDefinedFunctionProps |
Python | aws_cdk.aws_glue.CfnUserDefinedFunctionProps |
TypeScript | aws-cdk-lib » aws_glue » CfnUserDefinedFunctionProps |
Properties for defining a CfnUserDefinedFunction.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';
const cfnUserDefinedFunctionProps: glue.CfnUserDefinedFunctionProps = {
databaseName: 'databaseName',
functionName: 'functionName',
// the properties below are optional
className: 'className',
functionType: 'functionType',
ownerName: 'ownerName',
ownerType: 'ownerType',
resourceUris: [{
resourceType: 'resourceType',
uri: 'uri',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| database | string | The name of the catalog database in which the function is located. |
| function | string | The name of the function. |
| class | string | The Java class that contains the function code. |
| function | string | The type of the function. |
| owner | string | The owner of the function. |
| owner | string | The owner type. |
| resource | IResolvable | (IResolvable | Resource)[] | The resource URIs for the function. |
databaseName
Type:
string
The name of the catalog database in which the function is located.
functionName
Type:
string
The name of the function.
className?
Type:
string
(optional)
The Java class that contains the function code.
functionType?
Type:
string
(optional)
The type of the function.
ownerName?
Type:
string
(optional)
The owner of the function.
ownerType?
Type:
string
(optional)
The owner type.
resourceUris?
Type:
IResolvable | (IResolvable | Resource)[]
(optional)
The resource URIs for the function.

.NET
Go
Java
Python
TypeScript