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
ResourceId
The ID of the resource.
string ResourceId { get; }
Property Value
RestApi
The rest API that this resource is part of.
IRestApi RestApi { get; }