Interface CfnService.VpcLatticeConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnService.VpcLatticeConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnService

@Stability(Stable) public static interface CfnService.VpcLatticeConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The VPC Lattice configuration for your service that holds the information for the target group(s) Amazon ECS tasks will be registered to.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ecs.*;
 VpcLatticeConfigurationProperty vpcLatticeConfigurationProperty = VpcLatticeConfigurationProperty.builder()
         .portName("portName")
         .roleArn("roleArn")
         .targetGroupArn("targetGroupArn")
         .build();
 

See Also: