Show / Hide Table of Contents

Interface IResourceAttributes

Attributes that can be specified when importing a Resource.

Namespace: Amazon.CDK.AWS.APIGateway
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IResourceAttributes
Syntax (vb)
Public Interface IResourceAttributes
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.APIGateway;

RestApi restApi;

var resourceAttributes = new ResourceAttributes {
    Path = "path",
    ResourceId = "resourceId",
    RestApi = restApi
};

Synopsis

Properties

Path

The full path of this resource.

ResourceId

The ID of the resource.

RestApi

The rest API that this resource is part of.

Properties

Path

The full path of this resource.

string Path { get; }
Property Value

System.String

ResourceId

The ID of the resource.

string ResourceId { get; }
Property Value

System.String

RestApi

The rest API that this resource is part of.

IRestApi RestApi { get; }
Property Value

IRestApi

Back to top Generated by DocFX