Interface CfnConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:31:59.948Z")
@Stability(Stable)
public interface CfnConfigurationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnConfiguration.
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.*;
CfnConfigurationProps cfnConfigurationProps = CfnConfigurationProps.builder()
.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfigurationPropsstatic final classAn implementation forCfnConfigurationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringOptional description for the configuration.getName()User-friendly name for the configuration.Returns union: eitherIResolvableorCfnConfiguration.RunConfigurationsPropertygetTags()A map of resource tags.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
User-friendly name for the configuration.- See Also:
-
getRunConfigurations
Returns union: eitherIResolvableorCfnConfiguration.RunConfigurationsProperty- See Also:
-
getDescription
Optional description for the configuration.- See Also:
-
getTags
A map of resource tags.- See Also:
-
builder
- Returns:
- a
CfnConfigurationProps.BuilderofCfnConfigurationProps
-