Class CfnUserDefinedFunction.ResourceUriProperty
The URIs for function resources.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnUserDefinedFunction.ResourceUriProperty : CfnUserDefinedFunction.IResourceUriProperty
Syntax (vb)
Public Class CfnUserDefinedFunction.ResourceUriProperty Implements CfnUserDefinedFunction.IResourceUriProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Glue;
var resourceUriProperty = new ResourceUriProperty {
ResourceType = "resourceType",
Uri = "uri"
};
Synopsis
Constructors
| ResourceUriProperty() | The URIs for function resources. |
Properties
| ResourceType | The type of the resource. |
| Uri | The URI for accessing the resource. |
Constructors
ResourceUriProperty()
The URIs for function resources.
public ResourceUriProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Glue;
var resourceUriProperty = new ResourceUriProperty {
ResourceType = "resourceType",
Uri = "uri"
};
Properties
ResourceType
The type of the resource.
public string? ResourceType { get; set; }
Property Value
Remarks
Uri
The URI for accessing the resource.
public string? Uri { get; set; }