Show / Hide Table of Contents

Class CfnSpotFleet.TargetGroupsConfigProperty

Describes the target groups to attach to a Spot Fleet.

Inheritance
object
CfnSpotFleet.TargetGroupsConfigProperty
Implements
CfnSpotFleet.ITargetGroupsConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSpotFleet.TargetGroupsConfigProperty : CfnSpotFleet.ITargetGroupsConfigProperty
Syntax (vb)
Public Class CfnSpotFleet.TargetGroupsConfigProperty Implements CfnSpotFleet.ITargetGroupsConfigProperty
Remarks

Spot Fleet registers the running Spot Instances with these target groups.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-targetgroupsconfig.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 targetGroupsConfigProperty = new TargetGroupsConfigProperty {
                 TargetGroups = new [] { new TargetGroupProperty {
                     Arn = "arn"
                 } }
             };

Synopsis

Constructors

TargetGroupsConfigProperty()

Describes the target groups to attach to a Spot Fleet.

Properties

TargetGroups

One or more target groups.

Constructors

TargetGroupsConfigProperty()

Describes the target groups to attach to a Spot Fleet.

public TargetGroupsConfigProperty()
Remarks

Spot Fleet registers the running Spot Instances with these target groups.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-targetgroupsconfig.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 targetGroupsConfigProperty = new TargetGroupsConfigProperty {
                 TargetGroups = new [] { new TargetGroupProperty {
                     Arn = "arn"
                 } }
             };

Properties

TargetGroups

One or more target groups.

public object TargetGroups { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnSpotFleet.ITargetGroupProperty)[]

Implements

CfnSpotFleet.ITargetGroupsConfigProperty
Back to top Generated by DocFX