@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:41.360Z") @Stability(value=Experimental) 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()
(experimental) The full path of this resource.
|
String |
getResourceId()
(experimental) The ID of the resource.
|
IRestApi |
getRestApi()
(experimental) The rest API that this resource is part of.
|
@Stability(value=Experimental) @NotNull String getPath()
@Stability(value=Experimental) @NotNull String getResourceId()
@Stability(value=Experimental) @NotNull IRestApi getRestApi()
@Stability(value=Experimental) static ResourceAttributes.Builder builder()
ResourceAttributes.Builder of ResourceAttributesCopyright © 2022. All rights reserved.