Show / Hide Table of Contents

Class CfnSequenceStoreProps

Properties for defining a CfnSequenceStore.

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-sequencestore.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 cfnSequenceStoreProps = new CfnSequenceStoreProps {
    Name = "name",

    // 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

Constructors

CfnSequenceStoreProps()

Properties

Description

A description for the store.

Name

A name for the store.

SseConfig

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

Tags

Tags for the store.

Constructors

CfnSequenceStoreProps()

public CfnSequenceStoreProps()

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-sequencestore.html#cfn-omics-sequencestore-description

Name

A name for the store.

public string Name { get; set; }
Property Value

System.String

Remarks

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

SseConfig

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

public object SseConfig { get; set; }
Property Value

System.Object

Remarks

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

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

Implements

ICfnSequenceStoreProps
Back to top Generated by DocFX