Show / Hide Table of Contents

Class CfnEC2Fleet.BaselinePerformanceFactorsRequestProperty

The baseline performance to consider, using an instance family as a baseline reference.

Inheritance
object
CfnEC2Fleet.BaselinePerformanceFactorsRequestProperty
Implements
CfnEC2Fleet.IBaselinePerformanceFactorsRequestProperty
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 CfnEC2Fleet.BaselinePerformanceFactorsRequestProperty : CfnEC2Fleet.IBaselinePerformanceFactorsRequestProperty
Syntax (vb)
Public Class CfnEC2Fleet.BaselinePerformanceFactorsRequestProperty Implements CfnEC2Fleet.IBaselinePerformanceFactorsRequestProperty
Remarks

The instance family establishes the lowest acceptable level of performance. Amazon EC2 uses this baseline to guide instance type selection, but there is no guarantee that the selected instance types will always exceed the baseline for every application.

Currently, this parameter only supports CPU performance as a baseline performance factor. For example, specifying c6i would use the CPU performance of the c6i family as the baseline reference.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-baselineperformancefactorsrequest.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 baselinePerformanceFactorsRequestProperty = new BaselinePerformanceFactorsRequestProperty {
                 Cpu = new CpuPerformanceFactorRequestProperty {
                     References = new [] { new PerformanceFactorReferenceRequestProperty {
                         InstanceFamily = "instanceFamily"
                     } }
                 }
             };

Synopsis

Constructors

BaselinePerformanceFactorsRequestProperty()

The baseline performance to consider, using an instance family as a baseline reference.

Properties

Cpu

The CPU performance to consider, using an instance family as the baseline reference.

Constructors

BaselinePerformanceFactorsRequestProperty()

The baseline performance to consider, using an instance family as a baseline reference.

public BaselinePerformanceFactorsRequestProperty()
Remarks

The instance family establishes the lowest acceptable level of performance. Amazon EC2 uses this baseline to guide instance type selection, but there is no guarantee that the selected instance types will always exceed the baseline for every application.

Currently, this parameter only supports CPU performance as a baseline performance factor. For example, specifying c6i would use the CPU performance of the c6i family as the baseline reference.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-baselineperformancefactorsrequest.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 baselinePerformanceFactorsRequestProperty = new BaselinePerformanceFactorsRequestProperty {
                 Cpu = new CpuPerformanceFactorRequestProperty {
                     References = new [] { new PerformanceFactorReferenceRequestProperty {
                         InstanceFamily = "instanceFamily"
                     } }
                 }
             };

Properties

Cpu

The CPU performance to consider, using an instance family as the baseline reference.

public object? Cpu { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-baselineperformancefactorsrequest.html#cfn-ec2-ec2fleet-baselineperformancefactorsrequest-cpu

Implements

CfnEC2Fleet.IBaselinePerformanceFactorsRequestProperty
Back to top Generated by DocFX