Show / Hide Table of Contents

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.

string? Description { get; }
Property Value

string

Remarks

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

Name

A name for the store.

string Name { get; }
Property Value

string

Remarks

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

Reference

The genome reference for the store's variants.

object Reference { get; }
Property Value

object

Remarks

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

SseConfig

Server-side encryption (SSE) settings for the store.

object? SseConfig { get; }
Property Value

object

Remarks

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

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-variantstore.html#cfn-omics-variantstore-tags

Back to top Generated by DocFX