Show / Hide Table of Contents

Interface ICfnCellProps

Properties for defining a CfnCell.

Namespace: Amazon.CDK.AWS.Route53RecoveryReadiness
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnCellProps
Syntax (vb)
Public Interface ICfnCellProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoveryreadiness-cell.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.Route53RecoveryReadiness;

             var cfnCellProps = new CfnCellProps {
                 CellName = "cellName",
                 Cells = new [] { "cells" },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

CellName

The name of the cell to create.

Cells

A list of cell Amazon Resource Names (ARNs) contained within this cell, for use in nested cells.

Tags

A collection of tags associated with a resource.

Properties

CellName

The name of the cell to create.

string? CellName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoveryreadiness-cell.html#cfn-route53recoveryreadiness-cell-cellname

Cells

A list of cell Amazon Resource Names (ARNs) contained within this cell, for use in nested cells.

string[]? Cells { get; }
Property Value

string[]

Remarks

For example, Availability Zones within specific AWS Regions .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoveryreadiness-cell.html#cfn-route53recoveryreadiness-cell-cells

Tags

A collection of tags associated with a resource.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoveryreadiness-cell.html#cfn-route53recoveryreadiness-cell-tags

Back to top Generated by DocFX