interface CfnVirtualGatewayMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins.CfnVirtualGatewayMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappmesh/mixins#CfnVirtualGatewayMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.appmesh.mixins.CfnVirtualGatewayMixinProps |
Python | aws_cdk.mixins_preview.aws_appmesh.mixins.CfnVirtualGatewayMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_appmesh » mixins » CfnVirtualGatewayMixinProps |
Properties for CfnVirtualGatewayPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appmesh_mixins } from '@aws-cdk/mixins-preview/aws-appmesh';
const cfnVirtualGatewayMixinProps: appmesh_mixins.CfnVirtualGatewayMixinProps = {
meshName: 'meshName',
meshOwner: 'meshOwner',
spec: {
backendDefaults: {
clientPolicy: {
tls: {
certificate: {
file: {
certificateChain: 'certificateChain',
privateKey: 'privateKey',
},
sds: {
secretName: 'secretName',
},
},
enforce: false,
ports: [123],
validation: {
subjectAlternativeNames: {
match: {
exact: ['exact'],
},
},
trust: {
acm: {
certificateAuthorityArns: ['certificateAuthorityArns'],
},
file: {
certificateChain: 'certificateChain',
},
sds: {
secretName: 'secretName',
},
},
},
},
},
},
listeners: [{
connectionPool: {
grpc: {
maxRequests: 123,
},
http: {
maxConnections: 123,
maxPendingRequests: 123,
},
http2: {
maxRequests: 123,
},
},
healthCheck: {
healthyThreshold: 123,
intervalMillis: 123,
path: 'path',
port: 123,
protocol: 'protocol',
timeoutMillis: 123,
unhealthyThreshold: 123,
},
portMapping: {
port: 123,
protocol: 'protocol',
},
tls: {
certificate: {
acm: {
certificateArn: 'certificateArn',
},
file: {
certificateChain: 'certificateChain',
privateKey: 'privateKey',
},
sds: {
secretName: 'secretName',
},
},
mode: 'mode',
validation: {
subjectAlternativeNames: {
match: {
exact: ['exact'],
},
},
trust: {
file: {
certificateChain: 'certificateChain',
},
sds: {
secretName: 'secretName',
},
},
},
},
}],
logging: {
accessLog: {
file: {
format: {
json: [{
key: 'key',
value: 'value',
}],
text: 'text',
},
path: 'path',
},
},
},
},
tags: [{
key: 'key',
value: 'value',
}],
virtualGatewayName: 'virtualGatewayName',
};
Properties
| Name | Type | Description |
|---|---|---|
| mesh | string | The name of the service mesh that the virtual gateway resides in. |
| mesh | string | The AWS IAM account ID of the service mesh owner. |
| spec? | IResolvable | Virtual | The specifications of the virtual gateway. |
| tags? | Cfn[] | Optional metadata that you can apply to the virtual gateway to assist with categorization and organization. |
| virtual | string | The name of the virtual gateway. |
meshName?
Type:
string
(optional)
The name of the service mesh that the virtual gateway resides in.
meshOwner?
Type:
string
(optional)
The AWS IAM account ID of the service mesh owner.
If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes .
spec?
Type:
IResolvable | Virtual
(optional)
The specifications of the virtual gateway.
tags?
Type:
Cfn[]
(optional)
Optional metadata that you can apply to the virtual gateway to assist with categorization and organization.
Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
virtualGatewayName?
Type:
string
(optional)
The name of the virtual gateway.

.NET
Go
Java
Python
TypeScript