Interface CfnResourceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResourceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-07T10:36:01.262Z")
@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();
- See Also:
-
Nested Class Summary
Modifier 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.- See Also:
-
getPathPart
The last path segment for this resource.- See Also:
-
getRestApiId
The string identifier of the associated RestApi.- See Also:
-
builder
- Returns:
- a
CfnResourceProps.Builder
ofCfnResourceProps
-