Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-loadbalancersconfig.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-loadbalancersconfig.html#cfn-ec2-spotfleet-loadbalancersconfig-classicloadbalancersconfig

Type union: either IResolvable or CfnSpotFleet.IClassicLoadBalancersConfigProperty

TargetGroupsConfig

The target groups.

object? TargetGroupsConfig { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-loadbalancersconfig.html#cfn-ec2-spotfleet-loadbalancersconfig-targetgroupsconfig

Type union: either IResolvable or CfnSpotFleet.ITargetGroupsConfigProperty

Back to top Generated by DocFX