Show / Hide Table of Contents

Class CfnRunGroupMixinProps

Properties for CfnRunGroupPropsMixin.

Inheritance
object
CfnRunGroupMixinProps
Implements
ICfnRunGroupMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Omics
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnRunGroupMixinProps : ICfnRunGroupMixinProps
Syntax (vb)
Public Class CfnRunGroupMixinProps Implements ICfnRunGroupMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-rungroup.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.CfnPropertyMixins.AWS.Omics;

             var cfnRunGroupMixinProps = new CfnRunGroupMixinProps {
                 MaxCpus = 123,
                 MaxDuration = 123,
                 MaxGpus = 123,
                 MaxRuns = 123,
                 Name = "name",
                 Tags = new Dictionary<string, string> {
                     { "tagsKey", "tags" }
                 }
             };

Synopsis

Constructors

CfnRunGroupMixinProps()

Properties for CfnRunGroupPropsMixin.

Properties

MaxCpus

The group's maximum CPU count setting.

MaxDuration

The group's maximum duration setting in minutes.

MaxGpus

The maximum GPUs that can be used by a run group.

MaxRuns

The group's maximum concurrent run setting.

Name

The group's name.

Tags

Tags for the group.

Constructors

CfnRunGroupMixinProps()

Properties for CfnRunGroupPropsMixin.

public CfnRunGroupMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-rungroup.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.CfnPropertyMixins.AWS.Omics;

             var cfnRunGroupMixinProps = new CfnRunGroupMixinProps {
                 MaxCpus = 123,
                 MaxDuration = 123,
                 MaxGpus = 123,
                 MaxRuns = 123,
                 Name = "name",
                 Tags = new Dictionary<string, string> {
                     { "tagsKey", "tags" }
                 }
             };

Properties

MaxCpus

The group's maximum CPU count setting.

public double? MaxCpus { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-rungroup.html#cfn-omics-rungroup-maxcpus

MaxDuration

The group's maximum duration setting in minutes.

public double? MaxDuration { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-rungroup.html#cfn-omics-rungroup-maxduration

MaxGpus

The maximum GPUs that can be used by a run group.

public double? MaxGpus { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-rungroup.html#cfn-omics-rungroup-maxgpus

MaxRuns

The group's maximum concurrent run setting.

public double? MaxRuns { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-rungroup.html#cfn-omics-rungroup-maxruns

Name

The group's name.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-rungroup.html#cfn-omics-rungroup-name

Tags

Tags for the group.

public IDictionary<string, string>? Tags { get; set; }
Property Value

IDictionary<string, string>

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-rungroup.html#cfn-omics-rungroup-tags

Implements

ICfnRunGroupMixinProps
Back to top Generated by DocFX