Show / Hide Table of Contents

Class CfnRecoveryGroupProps

Properties for defining a CfnRecoveryGroup.

Inheritance
object
CfnRecoveryGroupProps
Implements
ICfnRecoveryGroupProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Route53RecoveryReadiness
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRecoveryGroupProps : ICfnRecoveryGroupProps
Syntax (vb)
Public Class CfnRecoveryGroupProps Implements 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

Constructors

CfnRecoveryGroupProps()

Properties for defining a CfnRecoveryGroup.

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.

Constructors

CfnRecoveryGroupProps()

Properties for defining a CfnRecoveryGroup.

public CfnRecoveryGroupProps()
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"
                 } }
             };

Properties

Cells

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

public string[]? Cells { get; set; }
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.

public string? RecoveryGroupName { get; set; }
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.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

Implements

ICfnRecoveryGroupProps
Back to top Generated by DocFX