interface ResourceUriProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnUserDefinedFunction.ResourceUriProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnUserDefinedFunction_ResourceUriProperty |
Java | software.amazon.awscdk.services.glue.CfnUserDefinedFunction.ResourceUriProperty |
Python | aws_cdk.aws_glue.CfnUserDefinedFunction.ResourceUriProperty |
TypeScript | aws-cdk-lib » aws_glue » CfnUserDefinedFunction » ResourceUriProperty |
The URIs for function resources.
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 resourceUriProperty: glue.CfnUserDefinedFunction.ResourceUriProperty = {
resourceType: 'resourceType',
uri: 'uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The type of the resource. |
| uri? | string | The URI for accessing the resource. |
resourceType?
Type:
string
(optional)
The type of the resource.
uri?
Type:
string
(optional)
The URI for accessing the resource.

.NET
Go
Java
Python
TypeScript