Interface CfnDocumentationPartMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDocumentationPartMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:55.452Z")
@Stability(Stable)
public interface CfnDocumentationPartMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDocumentationPartPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.apigateway.*;
CfnDocumentationPartMixinProps cfnDocumentationPartMixinProps = CfnDocumentationPartMixinProps.builder()
.location(LocationProperty.builder()
.method("method")
.name("name")
.path("path")
.statusCode("statusCode")
.type("type")
.build())
.properties("properties")
.restApiId("restApiId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDocumentationPartMixinPropsstatic final classAn implementation forCfnDocumentationPartMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLocation
The location of the targeted API entity of the to-be-created documentation part.Returns union: either
IResolvableorCfnDocumentationPartPropsMixin.LocationProperty- See Also:
-
getProperties
The new documentation content map of the targeted API entity.Enclosed key-value pairs are API-specific, but only OpenAPI-compliant key-value pairs can be exported and, hence, published.
- See Also:
-
getRestApiId
The string identifier of the associated RestApi.Returns union: either
StringorIRestApiRef- See Also:
-
builder
-