interface IngressPathArnsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnExpressGatewayService.IngressPathArnsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnExpressGatewayService_IngressPathArnsProperty |
Java | software.amazon.awscdk.services.ecs.CfnExpressGatewayService.IngressPathArnsProperty |
Python | aws_cdk.aws_ecs.CfnExpressGatewayService.IngressPathArnsProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnExpressGatewayService » IngressPathArnsProperty |
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 ingressPathArnsProperty: ecs.CfnExpressGatewayService.IngressPathArnsProperty = {
certificateArn: 'certificateArn',
listenerArn: 'listenerArn',
listenerRuleArn: 'listenerRuleArn',
loadBalancerArn: 'loadBalancerArn',
loadBalancerSecurityGroups: ['loadBalancerSecurityGroups'],
targetGroupArns: ['targetGroupArns'],
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | The Certificate ARN associated with the express service. |
| listener | string | The ARN of the Load Balancer listener associated with the express service. |
| listener | string | The ARN of the Load Balancer listener rule associated with the express service. |
| load | string | The ARN of the Load Balancer associated with the express service. |
| load | string[] | The list of Load Balancer Security Group ARNs associated with the express service. |
| target | string[] | The list of Target Group ARNs associated with the express service. |
certificateArn?
Type:
string
(optional)
The Certificate ARN associated with the express service.
listenerArn?
Type:
string
(optional)
The ARN of the Load Balancer listener associated with the express service.
listenerRuleArn?
Type:
string
(optional)
The ARN of the Load Balancer listener rule associated with the express service.
loadBalancerArn?
Type:
string
(optional)
The ARN of the Load Balancer associated with the express service.
loadBalancerSecurityGroups?
Type:
string[]
(optional)
The list of Load Balancer Security Group ARNs associated with the express service.
targetGroupArns?
Type:
string[]
(optional)
The list of Target Group ARNs associated with the express service.

.NET
Go
Java
Python
TypeScript