Show / Hide Table of Contents

Interface ICfnAnnotationStoreMixinProps

Properties for CfnAnnotationStorePropsMixin.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Omics
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnAnnotationStoreMixinProps
Syntax (vb)
Public Interface ICfnAnnotationStoreMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-annotationstore.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.CfnPropertyMixins.AWS.Omics;

             var schema;

             var cfnAnnotationStoreMixinProps = new CfnAnnotationStoreMixinProps {
                 Description = "description",
                 Name = "name",
                 Reference = new ReferenceItemProperty {
                     ReferenceArn = "referenceArn"
                 },
                 SseConfig = new SseConfigProperty {
                     KeyArn = "keyArn",
                     Type = "type"
                 },
                 StoreFormat = "storeFormat",
                 StoreOptions = new StoreOptionsProperty {
                     TsvStoreOptions = new TsvStoreOptionsProperty {
                         AnnotationType = "annotationType",
                         FormatToHeader = new Dictionary<string, string> {
                             { "formatToHeaderKey", "formatToHeader" }
                         },
                         Schema = schema
                     }
                 },
                 Tags = new Dictionary<string, string> {
                     { "tagsKey", "tags" }
                 }
             };

Synopsis

Properties

Description

A description for the store.

Name

The name of the Annotation Store.

Reference

The genome reference for the store's annotations.

SseConfig

The store's server-side encryption (SSE) settings.

StoreFormat

The annotation file format of the store.

StoreOptions

File parsing options for the annotation store.

Tags

Tags for the store.

Properties

Description

A description for the store.

string? Description { get; }
Property Value

string

Remarks

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

Name

The name of the Annotation Store.

string? Name { get; }
Property Value

string

Remarks

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

Reference

The genome reference for the store's annotations.

object? Reference { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnAnnotationStorePropsMixin.IReferenceItemProperty

SseConfig

The store's server-side encryption (SSE) settings.

object? SseConfig { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnAnnotationStorePropsMixin.ISseConfigProperty

StoreFormat

The annotation file format of the store.

string? StoreFormat { get; }
Property Value

string

Remarks

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

StoreOptions

File parsing options for the annotation store.

object? StoreOptions { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnAnnotationStorePropsMixin.IStoreOptionsProperty

Tags

Tags for the store.

IDictionary<string, string>? Tags { get; }
Property Value

IDictionary<string, string>

Remarks

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

Back to top Generated by DocFX