CfnRunCacheProps

class aws_cdk.aws_omics.CfnRunCacheProps(*, cache_behavior=None, cache_bucket_owner_id=None, cache_s3_location=None, description=None, name=None, tags=None)

Bases: object

Properties for defining a CfnRunCache.

Parameters:
  • cache_behavior (Optional[str]) – The default cache behavior for runs using this cache.

  • cache_bucket_owner_id (Optional[str]) – The AWS account ID of the expected owner of the S3 bucket for the run cache.

  • cache_s3_location (Optional[str]) – The S3 location for storing the cached task outputs.

  • description (Optional[str]) – A description of the run cache.

  • name (Optional[str]) – A name for the run cache.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Tags for the run cache.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-runcache.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_omics as omics

cfn_run_cache_props = omics.CfnRunCacheProps(
    cache_behavior="cacheBehavior",
    cache_bucket_owner_id="cacheBucketOwnerId",
    cache_s3_location="cacheS3Location",
    description="description",
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

cache_behavior

The default cache behavior for runs using this cache.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-runcache.html#cfn-omics-runcache-cachebehavior

cache_bucket_owner_id

The AWS account ID of the expected owner of the S3 bucket for the run cache.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-runcache.html#cfn-omics-runcache-cachebucketownerid

cache_s3_location

The S3 location for storing the cached task outputs.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-runcache.html#cfn-omics-runcache-caches3location

description

A description of the run cache.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-runcache.html#cfn-omics-runcache-description

name

A name for the run cache.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-runcache.html#cfn-omics-runcache-name

tags

Tags for the run cache.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-runcache.html#cfn-omics-runcache-tags