interface CfnRunCacheProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Omics.CfnRunCacheProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsomics#CfnRunCacheProps |
Java | software.amazon.awscdk.services.omics.CfnRunCacheProps |
Python | aws_cdk.aws_omics.CfnRunCacheProps |
TypeScript | aws-cdk-lib » aws_omics » CfnRunCacheProps |
Properties for defining a CfnRunCache.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-runcache.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_omics as omics } from 'aws-cdk-lib';
const cfnRunCacheProps: omics.CfnRunCacheProps = {
cacheBehavior: 'cacheBehavior',
cacheBucketOwnerId: 'cacheBucketOwnerId',
cacheS3Location: 'cacheS3Location',
description: 'description',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| cache | string | The default cache behavior for runs using this cache. |
| cache | string | The AWS account ID of the expected owner of the S3 bucket for the run cache. |
| cache | string | The S3 location for storing the cached task outputs. |
| description? | string | A description of the run cache. |
| name? | string | A name for the run cache. |
| tags? | Cfn[] | Tags for the run cache. |
cacheBehavior?
Type:
string
(optional)
The default cache behavior for runs using this cache.
cacheBucketOwnerId?
Type:
string
(optional)
The AWS account ID of the expected owner of the S3 bucket for the run cache.
cacheS3Location?
Type:
string
(optional)
The S3 location for storing the cached task outputs.
description?
Type:
string
(optional)
A description of the run cache.
name?
Type:
string
(optional)
A name for the run cache.
tags?
Type:
Cfn[]
(optional)
Tags for the run cache.

.NET
Go
Java
Python
TypeScript