Class CfnRunGroup

java.lang.Object
software.amazon.jsii.JsiiObject
All Implemented Interfaces:
IConstruct, IDependable, IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:00.539Z") @Stability(Stable) public class CfnRunGroup extends CfnResource implements IInspectable
A CloudFormation AWS::Omics::RunGroup.

Creates a run group.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.omics.*;
 CfnRunGroup cfnRunGroup = CfnRunGroup.Builder.create(this, "MyCfnRunGroup")
         .maxCpus(123)
         .maxDuration(123)
         .maxRuns(123)
         .name("name")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnRunGroup

      protected CfnRunGroup(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnRunGroup

      protected CfnRunGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnRunGroup

      @Stability(Stable) public CfnRunGroup(@NotNull Construct scope, @NotNull String id, @Nullable CfnRunGroupProps props)
      Create a new AWS::Omics::RunGroup.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
      props -
      • resource properties.
    • CfnRunGroup

      @Stability(Stable) public CfnRunGroup(@NotNull Construct scope, @NotNull String id)
      Create a new AWS::Omics::RunGroup.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector -
      • tree inspector to collect and process attributes.
      This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The run group's ARN.
    • getAttrCreationTime

      @Stability(Stable) @NotNull public String getAttrCreationTime()
      When the run group was created.
    • getAttrId

      @Stability(Stable) @NotNull public String getAttrId()
      The run group's ID.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getTags

      @Stability(Stable) @NotNull public TagManager getTags()
      Tags for the group.
    • getMaxCpus

      @Stability(Stable) @Nullable public Number getMaxCpus()
      The group's maximum CPU count setting.
    • setMaxCpus

      @Stability(Stable) public void setMaxCpus(@Nullable Number value)
      The group's maximum CPU count setting.
    • getMaxDuration

      @Stability(Stable) @Nullable public Number getMaxDuration()
      The group's maximum duration setting in minutes.
    • setMaxDuration

      @Stability(Stable) public void setMaxDuration(@Nullable Number value)
      The group's maximum duration setting in minutes.
    • getMaxRuns

      @Stability(Stable) @Nullable public Number getMaxRuns()
      The group's maximum concurrent run setting.
    • setMaxRuns

      @Stability(Stable) public void setMaxRuns(@Nullable Number value)
      The group's maximum concurrent run setting.
    • getName

      @Stability(Stable) @Nullable public String getName()
      The group's name.
    • setName

      @Stability(Stable) public void setName(@Nullable String value)
      The group's name.