Show / Hide Table of Contents

Enum ComputePlatform

The compute platform of the profiling group.

Namespace: Amazon.CDK.AWS.CodeGuruProfiler
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum ComputePlatform
Syntax (vb)
Public Enum ComputePlatform
Remarks

ExampleMetadata: infused

Examples
var profilingGroup = new ProfilingGroup(this, "MyProfilingGroup", new ProfilingGroupProps {
                ComputePlatform = ComputePlatform.AWS_LAMBDA
            });

Synopsis

Fields

AWS_LAMBDA

Use AWS_LAMBDA if your application runs on AWS Lambda.

DEFAULT

Use Default if your application runs on a compute platform that is not AWS Lambda, such an Amazon EC2 instance, an on-premises server, or a different platform.

Fields

Name Description
AWS_LAMBDA

Use AWS_LAMBDA if your application runs on AWS Lambda.

DEFAULT

Use Default if your application runs on a compute platform that is not AWS Lambda, such an Amazon EC2 instance, an on-premises server, or a different platform.

Back to top Generated by DocFX