Interface CfnRunCacheProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRunCacheProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:14.588Z")
@Stability(Stable)
public interface CfnRunCacheProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnRunCache.
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.*;
CfnRunCacheProps cfnRunCacheProps = CfnRunCacheProps.builder()
.cacheBehavior("cacheBehavior")
.cacheBucketOwnerId("cacheBucketOwnerId")
.cacheS3Location("cacheS3Location")
.description("description")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRunCachePropsstatic final classAn implementation forCfnRunCacheProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnRunCacheProps.Builderbuilder()default StringThe default cache behavior for runs using this cache.default StringThe AWS account ID of the expected owner of the S3 bucket for the run cache.default StringThe S3 location for storing the cached task outputs.default StringA description of the run cache.default StringgetName()A name for the run cache.getTags()Tags for the run cache.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCacheBehavior
The default cache behavior for runs using this cache.- See Also:
-
getCacheBucketOwnerId
The AWS account ID of the expected owner of the S3 bucket for the run cache.- See Also:
-
getCacheS3Location
The S3 location for storing the cached task outputs.- See Also:
-
getDescription
A description of the run cache.- See Also:
-
getName
A name for the run cache.- See Also:
-
getTags
Tags for the run cache.- See Also:
-
builder
- Returns:
- a
CfnRunCacheProps.BuilderofCfnRunCacheProps
-