Class CfnVariantStore
Create a store for variant data.
Inherited Members
Namespace: Amazon.CDK.AWS.Omics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVariantStore : CfnResource, IInspectable, ITaggable
Syntax (vb)
Public Class CfnVariantStore Inherits CfnResource Implements IInspectable, ITaggable
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-variantstore.html
CloudformationResource: AWS::Omics::VariantStore
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 cfnVariantStore = new CfnVariantStore(this, "MyCfnVariantStore", 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
Constructors
CfnVariantStore(Construct, string, ICfnVariantStoreProps) | Create a store for variant data. |
Properties
AttrCreationTime | When the store was created. |
AttrId | The store's ID. |
AttrStatus | The store's status. |
AttrStatusMessage | The store's status message. |
AttrStoreArn | The store's ARN. |
AttrStoreSizeBytes | The store's size in bytes. |
AttrUpdateTime | When the store was updated. |
CFN_RESOURCE_TYPE_NAME | The CloudFormation resource type name for this resource class. |
CfnProperties | Create a store for variant data. |
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 | Tag Manager which manages the tags for this resource. |
TagsRaw | Tags for the store. |
Methods
Inspect(TreeInspector) | Examines the CloudFormation resource and discloses attributes. |
RenderProperties(IDictionary<string, object>) | Create a store for variant data. |
Constructors
CfnVariantStore(Construct, string, ICfnVariantStoreProps)
Create a store for variant data.
public CfnVariantStore(Construct scope, string id, ICfnVariantStoreProps props)
Parameters
- scope Construct
Scope in which this resource is defined.
- id string
Construct identifier for this resource (unique in its scope).
- props ICfnVariantStoreProps
Resource properties.
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-variantstore.html
CloudformationResource: AWS::Omics::VariantStore
ExampleMetadata: fixture=_generated
Properties
AttrCreationTime
When the store was created.
public virtual string AttrCreationTime { get; }
Property Value
Remarks
CloudformationAttribute: CreationTime
AttrId
The store's ID.
public virtual string AttrId { get; }
Property Value
Remarks
CloudformationAttribute: Id
AttrStatus
The store's status.
public virtual string AttrStatus { get; }
Property Value
Remarks
CloudformationAttribute: Status
AttrStatusMessage
The store's status message.
public virtual string AttrStatusMessage { get; }
Property Value
Remarks
CloudformationAttribute: StatusMessage
AttrStoreArn
The store's ARN.
public virtual string AttrStoreArn { get; }
Property Value
Remarks
CloudformationAttribute: StoreArn
AttrStoreSizeBytes
The store's size in bytes.
public virtual IResolvable AttrStoreSizeBytes { get; }
Property Value
Remarks
CloudformationAttribute: StoreSizeBytes
AttrUpdateTime
When the store was updated.
public virtual string AttrUpdateTime { get; }
Property Value
Remarks
CloudformationAttribute: UpdateTime
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-variantstore.html
CloudformationResource: AWS::Omics::VariantStore
ExampleMetadata: fixture=_generated
CfnProperties
Create a store for variant data.
protected override IDictionary<string, object> CfnProperties { get; }
Property Value
Overrides
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-variantstore.html
CloudformationResource: AWS::Omics::VariantStore
ExampleMetadata: fixture=_generated
Description
A description for the store.
public virtual string? Description { get; set; }
Property Value
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-variantstore.html
CloudformationResource: AWS::Omics::VariantStore
ExampleMetadata: fixture=_generated
Name
A name for the store.
public virtual string Name { get; set; }
Property Value
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-variantstore.html
CloudformationResource: AWS::Omics::VariantStore
ExampleMetadata: fixture=_generated
Reference
The genome reference for the store's variants.
public virtual object Reference { get; set; }
Property Value
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-variantstore.html
CloudformationResource: AWS::Omics::VariantStore
ExampleMetadata: fixture=_generated
SseConfig
Server-side encryption (SSE) settings for the store.
public virtual object? SseConfig { get; set; }
Property Value
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-variantstore.html
CloudformationResource: AWS::Omics::VariantStore
ExampleMetadata: fixture=_generated
Tags
Tag Manager which manages the tags for this resource.
public virtual TagManager Tags { get; }
Property Value
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-variantstore.html
CloudformationResource: AWS::Omics::VariantStore
ExampleMetadata: fixture=_generated
TagsRaw
Tags for the store.
public virtual IDictionary<string, string>? TagsRaw { get; set; }
Property Value
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-variantstore.html
CloudformationResource: AWS::Omics::VariantStore
ExampleMetadata: fixture=_generated
Methods
Inspect(TreeInspector)
Examines the CloudFormation resource and discloses attributes.
public virtual void Inspect(TreeInspector inspector)
Parameters
- inspector TreeInspector
tree inspector to collect and process attributes.
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-variantstore.html
CloudformationResource: AWS::Omics::VariantStore
ExampleMetadata: fixture=_generated
RenderProperties(IDictionary<string, object>)
Create a store for variant data.
protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
- props IDictionary<string, object>
Returns
Overrides
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-variantstore.html
CloudformationResource: AWS::Omics::VariantStore
ExampleMetadata: fixture=_generated