Show / Hide Table of Contents

Class CfnUserDefinedFunction.ResourceUriProperty

The URIs for function resources.

Inheritance
object
CfnUserDefinedFunction.ResourceUriProperty
Implements
CfnUserDefinedFunction.IResourceUriProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-userdefinedfunction-resourceuri.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-userdefinedfunction-resourceuri.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-userdefinedfunction-resourceuri.html#cfn-glue-userdefinedfunction-resourceuri-resourcetype

Uri

The URI for accessing the resource.

public string? Uri { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-userdefinedfunction-resourceuri.html#cfn-glue-userdefinedfunction-resourceuri-uri

Implements

CfnUserDefinedFunction.IResourceUriProperty
Back to top Generated by DocFX