Show / Hide Table of Contents

Interface CfnLaunchTemplatePropsMixin.IBaselinePerformanceFactorsProperty

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

Namespace: Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnLaunchTemplatePropsMixin.IBaselinePerformanceFactorsProperty
Syntax (vb)
Public Interface CfnLaunchTemplatePropsMixin.IBaselinePerformanceFactorsProperty
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-launchtemplate-baselineperformancefactors.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.Mixins.Preview.AWS.EC2.Mixins;

             var baselinePerformanceFactorsProperty = new BaselinePerformanceFactorsProperty {
                 Cpu = new CpuProperty {
                     References = new [] { new ReferenceProperty {
                         InstanceFamily = "instanceFamily"
                     } }
                 }
             };

Synopsis

Properties

Cpu

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

Properties

Cpu

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

object? Cpu { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnLaunchTemplatePropsMixin.ICpuProperty

Back to top Generated by DocFX