Interface CfnSpotFleet.ILoadBalancersConfigProperty
Specifies the Classic Load Balancers and target groups to attach to a Spot Fleet request.
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnSpotFleet.ILoadBalancersConfigProperty
Syntax (vb)
Public Interface CfnSpotFleet.ILoadBalancersConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var loadBalancersConfigProperty = new LoadBalancersConfigProperty {
ClassicLoadBalancersConfig = new ClassicLoadBalancersConfigProperty {
ClassicLoadBalancers = new [] { new ClassicLoadBalancerProperty {
Name = "name"
} }
},
TargetGroupsConfig = new TargetGroupsConfigProperty {
TargetGroups = new [] { new TargetGroupProperty {
Arn = "arn"
} }
}
};
Synopsis
Properties
| ClassicLoadBalancersConfig | The Classic Load Balancers. |
| TargetGroupsConfig | The target groups. |
Properties
ClassicLoadBalancersConfig
The Classic Load Balancers.
object? ClassicLoadBalancersConfig { get; }
Property Value
Remarks
TargetGroupsConfig
The target groups.
object? TargetGroupsConfig { get; }