Interface ICfnAnnotationStoreProps
Properties for defining a CfnAnnotationStore
.
Namespace: Amazon.CDK.AWS.Omics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnAnnotationStoreProps
Syntax (vb)
Public Interface ICfnAnnotationStoreProps
Remarks
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
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.
virtual string Description { get; }
Property Value
System.String
Remarks
Name
The name of the Annotation Store.
string Name { get; }
Property Value
System.String
Remarks
Reference
The genome reference for the store's annotations.
virtual object Reference { get; }
Property Value
System.Object
Remarks
SseConfig
The store's server-side encryption (SSE) settings.
virtual object SseConfig { get; }
Property Value
System.Object
Remarks
StoreFormat
The annotation file format of the store.
string StoreFormat { get; }
Property Value
System.String
Remarks
StoreOptions
File parsing options for the annotation store.
virtual object StoreOptions { get; }
Property Value
System.Object
Remarks
Tags
Tags for the store.
virtual IDictionary<string, string> Tags { get; }
Property Value
System.Collections.Generic.IDictionary<System.String, System.String>