Class CfnConfiguration

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-14T18:31:59.947Z") @Stability(Stable) public class CfnConfiguration extends CfnResource implements IInspectable, IConfigurationRef, ITaggableV2
Resource schema for AWS::Omics::Configuration.

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.*;
 CfnConfiguration cfnConfiguration = CfnConfiguration.Builder.create(this, "MyCfnConfiguration")
         .name("name")
         .runConfigurations(RunConfigurationsProperty.builder()
                 .vpcConfig(VpcConfigProperty.builder()
                         .securityGroupIds(List.of("securityGroupIds"))
                         .subnetIds(List.of("subnetIds"))
                         .build())
                 .build())
         // the properties below are optional
         .description("description")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 

See Also:
  • 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

    • CfnConfiguration

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

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

      @Stability(Stable) public CfnConfiguration(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnConfigurationProps props)
      Create a new AWS::Omics::Configuration.

      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • arnForConfiguration

      @Stability(Stable) @NotNull public static String arnForConfiguration(@NotNull IConfigurationRef resource)
      Parameters:
      resource - This parameter is required.
    • isCfnConfiguration

      @Stability(Stable) @NotNull public static Boolean isCfnConfiguration(@NotNull Object x)
      Checks whether the given object is a CfnConfiguration.

      Parameters:
      x - This parameter is required.
    • 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()
      Unique resource identifier for the configuration.
    • getAttrCreationTime

      @Stability(Stable) @NotNull public String getAttrCreationTime()
      Configuration creation timestamp.
    • getAttrStatus

      @Stability(Stable) @NotNull public String getAttrStatus()
      Current configuration status.
    • getAttrUuid

      @Stability(Stable) @NotNull public String getAttrUuid()
      Unique identifier for the configuration.
    • getCdkTagManager

      @Stability(Stable) @NotNull public TagManager getCdkTagManager()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getCdkTagManager in interface ITaggableV2
    • getCfnProperties

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

      @Stability(Stable) @NotNull public ConfigurationReference getConfigurationRef()
      A reference to a Configuration resource.
      Specified by:
      getConfigurationRef in interface IConfigurationRef
    • getName

      @Stability(Stable) @NotNull public String getName()
      User-friendly name for the configuration.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      User-friendly name for the configuration.
    • getRunConfigurations

      @Stability(Stable) @NotNull public Object getRunConfigurations()
    • setRunConfigurations

      @Stability(Stable) public void setRunConfigurations(@NotNull IResolvable value)
    • setRunConfigurations

      @Stability(Stable) public void setRunConfigurations(@NotNull CfnConfiguration.RunConfigurationsProperty value)
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
      Optional description for the configuration.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      Optional description for the configuration.
    • getTags

      @Stability(Stable) @Nullable public Map<String,String> getTags()
      A map of resource tags.
    • setTags

      @Stability(Stable) public void setTags(@Nullable Map<String,String> value)
      A map of resource tags.