Interface CfnResourceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResourceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:44.860Z")
@Stability(Stable)
public interface CfnResourceProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnResource
.
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.*; CfnResourceProps cfnResourceProps = CfnResourceProps.builder() .parentId("parentId") .pathPart("pathPart") .restApiId("restApiId") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnResourceProps
static final class
An implementation forCfnResourceProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnResourceProps.Builder
builder()
The parent resource's identifier.The last path segment for this resource.The string identifier of the associated RestApi.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParentId
The parent resource's identifier. -
getPathPart
The last path segment for this resource. -
getRestApiId
The string identifier of the associated RestApi. -
builder
- Returns:
- a
CfnResourceProps.Builder
ofCfnResourceProps
-