interface IngressPathSummaryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnExpressGatewayService.IngressPathSummaryProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnExpressGatewayService_IngressPathSummaryProperty |
Java | software.amazon.awscdk.services.ecs.CfnExpressGatewayService.IngressPathSummaryProperty |
Python | aws_cdk.aws_ecs.CfnExpressGatewayService.IngressPathSummaryProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnExpressGatewayService » 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 { aws_ecs as ecs } from 'aws-cdk-lib';
const ingressPathSummaryProperty: ecs.CfnExpressGatewayService.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