interface ResourceUriProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnUserDefinedFunctionPropsMixin.ResourceUriProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnUserDefinedFunctionPropsMixin_ResourceUriProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnUserDefinedFunctionPropsMixin.ResourceUriProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnUserDefinedFunctionPropsMixin.ResourceUriProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnUserDefinedFunctionPropsMixin » 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/cfn-property-mixins';
const resourceUriProperty: glue.CfnUserDefinedFunctionPropsMixin.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