Interface CfnConfigurationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:15.508Z")
@Stability(Stable)
public interface CfnConfigurationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnConfigurationPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.omics.*;
CfnConfigurationMixinProps cfnConfigurationMixinProps = CfnConfigurationMixinProps.builder()
.description("description")
.name("name")
.runConfigurations(RunConfigurationsProperty.builder()
.vpcConfig(VpcConfigProperty.builder()
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.build())
.build())
.tags(Map.of(
"tagsKey", "tags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfigurationMixinPropsstatic final classAn implementation forCfnConfigurationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringOptional description for the configuration.default StringgetName()User-friendly name for the configuration.default ObjectReturns union: eitherIResolvableorCfnConfigurationPropsMixin.RunConfigurationsPropertygetTags()A map of resource tags.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
Optional description for the configuration.- See Also:
-
getName
User-friendly name for the configuration.- See Also:
-
getRunConfigurations
Returns union: eitherIResolvableorCfnConfigurationPropsMixin.RunConfigurationsProperty- See Also:
-
getTags
A map of resource tags.- See Also:
-
builder
- Returns:
- a
CfnConfigurationMixinProps.BuilderofCfnConfigurationMixinProps
-