interface ECSManagedResourceArnsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnExpressGatewayService.ECSManagedResourceArnsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnExpressGatewayService_ECSManagedResourceArnsProperty |
Java | software.amazon.awscdk.services.ecs.CfnExpressGatewayService.ECSManagedResourceArnsProperty |
Python | aws_cdk.aws_ecs.CfnExpressGatewayService.ECSManagedResourceArnsProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnExpressGatewayService » ECSManagedResourceArnsProperty |
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 eCSManagedResourceArnsProperty: ecs.CfnExpressGatewayService.ECSManagedResourceArnsProperty = {
autoScaling: {
applicationAutoScalingPolicies: ['applicationAutoScalingPolicies'],
scalableTarget: 'scalableTarget',
},
ingressPath: {
certificateArn: 'certificateArn',
listenerArn: 'listenerArn',
listenerRuleArn: 'listenerRuleArn',
loadBalancerArn: 'loadBalancerArn',
loadBalancerSecurityGroups: ['loadBalancerSecurityGroups'],
targetGroupArns: ['targetGroupArns'],
},
logGroups: ['logGroups'],
metricAlarms: ['metricAlarms'],
serviceSecurityGroups: ['serviceSecurityGroups'],
};
Properties
| Name | Type | Description |
|---|---|---|
| auto | IResolvable | Auto | |
| ingress | IResolvable | Ingress | |
| log | string[] | The list of Log Group ARNs associated with the express service. |
| metric | string[] | The list of Metric Alarm ARNs associated with the express service. |
| service | string[] | The list of Security Group ARNs associated with the express service. |
autoScaling?
Type:
IResolvable | Auto
(optional)
ingressPath?
Type:
IResolvable | Ingress
(optional)
logGroups?
Type:
string[]
(optional)
The list of Log Group ARNs associated with the express service.
metricAlarms?
Type:
string[]
(optional)
The list of Metric Alarm ARNs associated with the express service.
serviceSecurityGroups?
Type:
string[]
(optional)
The list of Security Group ARNs associated with the express service.

.NET
Go
Java
Python
TypeScript