Interface CfnDocumentationPart.LocationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDocumentationPart.LocationProperty.Jsii$Proxy
Enclosing class:
CfnDocumentationPart

@Stability(Stable) public static interface CfnDocumentationPart.LocationProperty extends software.amazon.jsii.JsiiSerializable
The Location property specifies the location of the Amazon API Gateway API entity that the documentation applies to.

Location is a property of the AWS::ApiGateway::DocumentationPart resource.

For more information about each property, including constraints and valid values, see DocumentationPart in the Amazon API Gateway REST API Reference .

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.*;
 LocationProperty locationProperty = LocationProperty.builder()
         .method("method")
         .name("name")
         .path("path")
         .statusCode("statusCode")
         .type("type")
         .build();
 

See Also: