Table of Contents

Interface IResourceAttributes

Namespace
Amazon.CDK.AWS.APIGateway
Assembly
Amazon.CDK.AWS.APIGateway.dll

Attributes that can be specified when importing a Resource.

public interface IResourceAttributes

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
            };

Remarks

ExampleMetadata: fixture=_generated

Properties

Path

The full path of this resource.

string Path { get; }

Property Value

string

ResourceId

The ID of the resource.

string ResourceId { get; }

Property Value

string

RestApi

The rest API that this resource is part of.

IRestApi RestApi { get; }

Property Value

IRestApi