interface IngressPathSummaryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins.CfnExpressGatewayServicePropsMixin.IngressPathSummaryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/mixins#CfnExpressGatewayServicePropsMixin_IngressPathSummaryProperty |
Java | software.amazon.awscdk.mixins.preview.services.ecs.mixins.CfnExpressGatewayServicePropsMixin.IngressPathSummaryProperty |
Python | aws_cdk.mixins_preview.aws_ecs.mixins.CfnExpressGatewayServicePropsMixin.IngressPathSummaryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ecs » mixins » CfnExpressGatewayServicePropsMixin » IngressPathSummaryProperty |
The entry point into an Express service.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ecs_mixins } from '@aws-cdk/mixins-preview/aws-ecs';
const ingressPathSummaryProperty: ecs_mixins.CfnExpressGatewayServicePropsMixin.IngressPathSummaryProperty = {
accessType: 'accessType',
endpoint: 'endpoint',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | The type of access to the endpoint for the Express service. |
| endpoint? | string | The endpoint for access to the service. |
accessType?
Type:
string
(optional)
The type of access to the endpoint for the Express service.
endpoint?
Type:
string
(optional)
The endpoint for access to the service.

.NET
Go
Java
Python
TypeScript