Show / Hide Table of Contents

Interface ICfnRecoveryGroupProps

Properties for defining a CfnRecoveryGroup.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoveryreadiness-recoverygroup.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 cfnRecoveryGroupProps = new CfnRecoveryGroupProps {
                 Cells = new [] { "cells" },
                 RecoveryGroupName = "recoveryGroupName",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

Cells

A list of the cell Amazon Resource Names (ARNs) in the recovery group.

RecoveryGroupName

The name of the recovery group to create.

Tags

A collection of tags associated with a resource.

Properties

Cells

A list of the cell Amazon Resource Names (ARNs) in the recovery group.

string[]? Cells { get; }
Property Value

string[]

Remarks

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

RecoveryGroupName

The name of the recovery group to create.

string? RecoveryGroupName { get; }
Property Value

string

Remarks

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

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-recoverygroup.html#cfn-route53recoveryreadiness-recoverygroup-tags

Back to top Generated by DocFX