Interface ICfnVariantStoreProps
Properties for defining a CfnVariantStore
.
Namespace: Amazon.CDK.AWS.Omics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnVariantStoreProps
Syntax (vb)
Public Interface ICfnVariantStoreProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-variantstore.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 cfnVariantStoreProps = new CfnVariantStoreProps {
Name = "name",
Reference = new ReferenceItemProperty {
ReferenceArn = "referenceArn"
},
// the properties below are optional
Description = "description",
SseConfig = new SseConfigProperty {
Type = "type",
// the properties below are optional
KeyArn = "keyArn"
},
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
}
};
Synopsis
Properties
Description | A description for the store. |
Name | A name for the store. |
Reference | The genome reference for the store's variants. |
SseConfig | Server-side encryption (SSE) settings for the store. |
Tags | Tags for the store. |
Properties
Description
A description for the store.
virtual string Description { get; }
Property Value
System.String
Remarks
Name
A name for the store.
string Name { get; }
Property Value
System.String
Remarks
Reference
The genome reference for the store's variants.
object Reference { get; }
Property Value
System.Object
Remarks
SseConfig
Server-side encryption (SSE) settings for the store.
virtual object SseConfig { 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>