interface CfnRouteMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RefactorSpaces.Mixins.CfnRouteMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrefactorspaces/mixins#CfnRouteMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.refactorspaces.mixins.CfnRouteMixinProps |
Python | aws_cdk.mixins_preview.aws_refactorspaces.mixins.CfnRouteMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_refactorspaces » mixins » CfnRouteMixinProps |
Properties for CfnRoutePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-route.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as refactorspaces_mixins } from '@aws-cdk/mixins-preview/aws-refactorspaces';
const cfnRouteMixinProps: refactorspaces_mixins.CfnRouteMixinProps = {
applicationIdentifier: 'applicationIdentifier',
defaultRoute: {
activationState: 'activationState',
},
environmentIdentifier: 'environmentIdentifier',
routeType: 'routeType',
serviceIdentifier: 'serviceIdentifier',
tags: [{
key: 'key',
value: 'value',
}],
uriPathRoute: {
activationState: 'activationState',
appendSourcePath: false,
includeChildPaths: false,
methods: ['methods'],
sourcePath: 'sourcePath',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The unique identifier of the application. |
| default | IResolvable | Default | Configuration for the default route type. |
| environment | string | The unique identifier of the environment. |
| route | string | The route type of the route. |
| service | string | The unique identifier of the service. |
| tags? | Cfn[] | The tags assigned to the route. |
| uri | IResolvable | Uri | The configuration for the URI path route type. |
applicationIdentifier?
Type:
string
(optional)
The unique identifier of the application.
defaultRoute?
Type:
IResolvable | Default
(optional)
Configuration for the default route type.
environmentIdentifier?
Type:
string
(optional)
The unique identifier of the environment.
routeType?
Type:
string
(optional)
The route type of the route.
serviceIdentifier?
Type:
string
(optional)
The unique identifier of the service.
tags?
Type:
Cfn[]
(optional)
The tags assigned to the route.
uriPathRoute?
Type:
IResolvable | Uri
(optional)
The configuration for the URI path route type.

.NET
Go
Java
Python
TypeScript