Show / Hide Table of Contents

Class CfnRunCacheProps

Properties for defining a CfnRunCache.

Inheritance
object
CfnRunCacheProps
Implements
ICfnRunCacheProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Omics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRunCacheProps : ICfnRunCacheProps
Syntax (vb)
Public Class CfnRunCacheProps Implements ICfnRunCacheProps
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Omics;

             var cfnRunCacheProps = new CfnRunCacheProps {
                 CacheBehavior = "cacheBehavior",
                 CacheBucketOwnerId = "cacheBucketOwnerId",
                 CacheS3Location = "cacheS3Location",
                 Description = "description",
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnRunCacheProps()

Properties for defining a CfnRunCache.

Properties

CacheBehavior

The default cache behavior for runs using this cache.

CacheBucketOwnerId

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

CacheS3Location

The S3 location for storing the cached task outputs.

Description

A description of the run cache.

Name

A name for the run cache.

Tags

Tags for the run cache.

Constructors

CfnRunCacheProps()

Properties for defining a CfnRunCache.

public CfnRunCacheProps()
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Omics;

             var cfnRunCacheProps = new CfnRunCacheProps {
                 CacheBehavior = "cacheBehavior",
                 CacheBucketOwnerId = "cacheBucketOwnerId",
                 CacheS3Location = "cacheS3Location",
                 Description = "description",
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

CacheBehavior

The default cache behavior for runs using this cache.

public string? CacheBehavior { get; set; }
Property Value

string

Remarks

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

CacheBucketOwnerId

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

public string? CacheBucketOwnerId { get; set; }
Property Value

string

Remarks

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

CacheS3Location

The S3 location for storing the cached task outputs.

public string? CacheS3Location { get; set; }
Property Value

string

Remarks

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.

public string? Description { get; set; }
Property Value

string

Remarks

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.

public string? Name { get; set; }
Property Value

string

Remarks

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

Tags

Tags for the run cache.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

Implements

ICfnRunCacheProps
Back to top Generated by DocFX