@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.206Z") @Stability(value=Stable) public interface ResourceAttributes extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.apigateway.*;
RestApi restApi;
ResourceAttributes resourceAttributes = ResourceAttributes.builder()
.path("path")
.resourceId("resourceId")
.restApi(restApi)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
ResourceAttributes.Builder
A builder for
ResourceAttributes |
static class |
ResourceAttributes.Jsii$Proxy
An implementation for
ResourceAttributes |
| Modifier and Type | Method and Description |
|---|---|
static ResourceAttributes.Builder |
builder() |
String |
getPath()
The full path of this resource.
|
String |
getResourceId()
The ID of the resource.
|
IRestApi |
getRestApi()
The rest API that this resource is part of.
|
@Stability(value=Stable) @NotNull String getPath()
@Stability(value=Stable) @NotNull String getResourceId()
@Stability(value=Stable) @NotNull IRestApi getRestApi()
@Stability(value=Stable) static ResourceAttributes.Builder builder()
ResourceAttributes.Builder of ResourceAttributesCopyright © 2022. All rights reserved.