public static interface CfnDocumentationPart.LocationProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDocumentationPart.LocationProperty.Builder
A builder for
CfnDocumentationPart.LocationProperty |
static class |
CfnDocumentationPart.LocationProperty.Jsii$Proxy
An implementation for
CfnDocumentationPart.LocationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDocumentationPart.LocationProperty.Builder |
builder() |
default java.lang.String |
getMethod()
The HTTP verb of a method.
|
default java.lang.String |
getName()
The name of the targeted API entity.
|
default java.lang.String |
getPath()
The URL path of the target.
|
default java.lang.String |
getStatusCode()
The HTTP status code of a response.
|
default java.lang.String |
getType()
The type of API entity that the documentation content applies to.
|
default java.lang.String getMethod()
default java.lang.String getName()
default java.lang.String getPath()
default java.lang.String getStatusCode()
default java.lang.String getType()
static CfnDocumentationPart.LocationProperty.Builder builder()