Show / Hide Table of Contents

Class CfnAutoScalingGroup.PerformanceFactorReferenceRequestProperty

Specify an instance family to use as the baseline reference for CPU performance.

Inheritance
object
CfnAutoScalingGroup.PerformanceFactorReferenceRequestProperty
Implements
CfnAutoScalingGroup.IPerformanceFactorReferenceRequestProperty
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.AutoScaling
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAutoScalingGroup.PerformanceFactorReferenceRequestProperty : CfnAutoScalingGroup.IPerformanceFactorReferenceRequestProperty
Syntax (vb)
Public Class CfnAutoScalingGroup.PerformanceFactorReferenceRequestProperty Implements CfnAutoScalingGroup.IPerformanceFactorReferenceRequestProperty
Remarks

All instance types that All instance types that match your specified attributes will be compared against the CPU performance of the referenced instance family, regardless of CPU manufacturer or architecture differences.

Currently only one instance family can be specified in the list.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-performancefactorreferencerequest.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.AutoScaling;

             var performanceFactorReferenceRequestProperty = new PerformanceFactorReferenceRequestProperty {
                 InstanceFamily = "instanceFamily"
             };

Synopsis

Constructors

PerformanceFactorReferenceRequestProperty()

Specify an instance family to use as the baseline reference for CPU performance.

Properties

InstanceFamily

The instance family to use as a baseline reference.

Constructors

PerformanceFactorReferenceRequestProperty()

Specify an instance family to use as the baseline reference for CPU performance.

public PerformanceFactorReferenceRequestProperty()
Remarks

All instance types that All instance types that match your specified attributes will be compared against the CPU performance of the referenced instance family, regardless of CPU manufacturer or architecture differences.

Currently only one instance family can be specified in the list.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-performancefactorreferencerequest.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.AutoScaling;

             var performanceFactorReferenceRequestProperty = new PerformanceFactorReferenceRequestProperty {
                 InstanceFamily = "instanceFamily"
             };

Properties

InstanceFamily

The instance family to use as a baseline reference.

public string? InstanceFamily { get; set; }
Property Value

string

Remarks
Make sure that you specify the correct value for the instance family. The instance family is everything before the period (.) in the instance type name. For example, in the instance <code>c6i.large</code> , the instance family is <code>c6i</code> , not <code>c6</code> . For more information, see <a href="https://docs.aws.amazon.com/ec2/latest/instancetypes/instance-type-names.html">Amazon EC2 instance type naming conventions</a> in <em>Amazon EC2 Instance Types</em> .

The following instance types are not supported for performance protection.

    If you performance protection by specifying a supported instance family, the returned instance types will exclude the preceding unsupported instance families.

    If you specify an unsupported instance family as a value for baseline performance, the API returns an empty response.

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-performancefactorreferencerequest.html#cfn-autoscaling-autoscalinggroup-performancefactorreferencerequest-instancefamily

    Implements

    CfnAutoScalingGroup.IPerformanceFactorReferenceRequestProperty
    Back to top Generated by DocFX