interface CfnUserDefinedFunctionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnUserDefinedFunctionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnUserDefinedFunctionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnUserDefinedFunctionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnUserDefinedFunctionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnUserDefinedFunctionMixinProps |
Properties for CfnUserDefinedFunctionPropsMixin.
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/cfn-property-mixins';
const cfnUserDefinedFunctionMixinProps: glue.CfnUserDefinedFunctionMixinProps = {
className: 'className',
databaseName: 'databaseName',
functionName: 'functionName',
functionType: 'functionType',
ownerName: 'ownerName',
ownerType: 'ownerType',
resourceUris: [{
resourceType: 'resourceType',
uri: 'uri',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| class | string | The Java class that contains the function code. |
| database | string | The name of the catalog database in which the function is located. |
| function | string | The name of the function. |
| 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. |
className?
Type:
string
(optional)
The Java class that contains the function code.
databaseName?
Type:
string
(optional)
The name of the catalog database in which the function is located.
functionName?
Type:
string
(optional)
The name of the function.
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