public static interface CfnSpotFleet.LoadBalancersConfigProperty
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.ec2.*; LoadBalancersConfigProperty loadBalancersConfigProperty = LoadBalancersConfigProperty.builder() .classicLoadBalancersConfig(ClassicLoadBalancersConfigProperty.builder() .classicLoadBalancers(List.of(ClassicLoadBalancerProperty.builder() .name("name") .build())) .build()) .targetGroupsConfig(TargetGroupsConfigProperty.builder() .targetGroups(List.of(TargetGroupProperty.builder() .arn("arn") .build())) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnSpotFleet.LoadBalancersConfigProperty.Builder
A builder for
CfnSpotFleet.LoadBalancersConfigProperty |
static class |
CfnSpotFleet.LoadBalancersConfigProperty.Jsii$Proxy
An implementation for
CfnSpotFleet.LoadBalancersConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnSpotFleet.LoadBalancersConfigProperty.Builder |
builder() |
default java.lang.Object |
getClassicLoadBalancersConfig()
The Classic Load Balancers.
|
default java.lang.Object |
getTargetGroupsConfig()
The target groups.
|
default java.lang.Object getClassicLoadBalancersConfig()
default java.lang.Object getTargetGroupsConfig()
static CfnSpotFleet.LoadBalancersConfigProperty.Builder builder()