Show / Hide Table of Contents

Class CfnAnnotationStoreProps

Properties for defining a CfnAnnotationStore.

Inheritance
System.Object
CfnAnnotationStoreProps
Implements
ICfnAnnotationStoreProps
Namespace: Amazon.CDK.AWS.Omics
Assembly: Amazon.CDK.AWS.Omics.dll
Syntax (csharp)
public class CfnAnnotationStoreProps : Object, ICfnAnnotationStoreProps
Syntax (vb)
Public Class CfnAnnotationStoreProps
    Inherits Object
    Implements ICfnAnnotationStoreProps
Remarks

Link: 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.AWS.Omics;

var schema;

var cfnAnnotationStoreProps = new CfnAnnotationStoreProps {
    Name = "name",
    StoreFormat = "storeFormat",

    // the properties below are optional
    Description = "description",
    Reference = new ReferenceItemProperty {
        ReferenceArn = "referenceArn"
    },
    SseConfig = new SseConfigProperty {
        Type = "type",

        // the properties below are optional
        KeyArn = "keyArn"
    },
    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

Constructors

CfnAnnotationStoreProps()

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.

Constructors

CfnAnnotationStoreProps()

public CfnAnnotationStoreProps()

Properties

Description

A description for the store.

public string Description { get; set; }
Property Value

System.String

Remarks

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

Name

The name of the Annotation Store.

public string Name { get; set; }
Property Value

System.String

Remarks

Link: 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.

public object Reference { get; set; }
Property Value

System.Object

Remarks

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

SseConfig

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

public object SseConfig { get; set; }
Property Value

System.Object

Remarks

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

StoreFormat

The annotation file format of the store.

public string StoreFormat { get; set; }
Property Value

System.String

Remarks

Link: 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.

public object StoreOptions { get; set; }
Property Value

System.Object

Remarks

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

Tags

Tags for the store.

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

System.Collections.Generic.IDictionary<System.String, System.String>

Remarks

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

Implements

ICfnAnnotationStoreProps
Back to top Generated by DocFX