@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.558Z") @Stability(value=Stable) public interface CfnRouteProps extends software.amazon.jsii.JsiiSerializable
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.refactorspaces.*;
CfnRouteProps cfnRouteProps = CfnRouteProps.builder()
.applicationIdentifier("applicationIdentifier")
.environmentIdentifier("environmentIdentifier")
.serviceIdentifier("serviceIdentifier")
// the properties below are optional
.defaultRoute(DefaultRouteInputProperty.builder()
.activationState("activationState")
.build())
.routeType("routeType")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.uriPathRoute(UriPathRouteInputProperty.builder()
.activationState("activationState")
// the properties below are optional
.includeChildPaths(false)
.methods(List.of("methods"))
.sourcePath("sourcePath")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnRouteProps.Builder
A builder for
CfnRouteProps |
static class |
CfnRouteProps.Jsii$Proxy
An implementation for
CfnRouteProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnRouteProps.Builder |
builder() |
String |
getApplicationIdentifier()
The unique identifier of the application.
|
default Object |
getDefaultRoute()
`AWS::RefactorSpaces::Route.DefaultRoute`.
|
String |
getEnvironmentIdentifier()
The unique identifier of the environment.
|
default String |
getRouteType()
The route type of the route.
|
String |
getServiceIdentifier()
The unique identifier of the service.
|
default List<CfnTag> |
getTags()
The tags assigned to the route.
|
default Object |
getUriPathRoute()
The configuration for the URI path route type.
|
@Stability(value=Stable) @NotNull String getApplicationIdentifier()
@Stability(value=Stable) @NotNull String getEnvironmentIdentifier()
@Stability(value=Stable) @NotNull String getServiceIdentifier()
@Stability(value=Stable) @Nullable default Object getDefaultRoute()
@Stability(value=Stable) @Nullable default String getRouteType()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @Nullable default Object getUriPathRoute()
@Stability(value=Stable) static CfnRouteProps.Builder builder()
CfnRouteProps.Builder of CfnRoutePropsCopyright © 2022. All rights reserved.