Interface CfnResourceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResourceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:31.439Z")
@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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResourcePropsstatic final classAn implementation forCfnResourceProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnResourceProps.Builderbuilder()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.BuilderofCfnResourceProps
-