Show / Hide Table of Contents

Interface CfnResourceSetPropsMixin.IResourceProperty

The resource element of a resource set.

Namespace: Amazon.CDK.Mixins.Preview.AWS.Route53RecoveryReadiness.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnResourceSetPropsMixin.IResourceProperty
Syntax (vb)
Public Interface CfnResourceSetPropsMixin.IResourceProperty
Remarks

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

             var resourceProperty = new ResourceProperty {
                 ComponentId = "componentId",
                 DnsTargetResource = new DNSTargetResourceProperty {
                     DomainName = "domainName",
                     HostedZoneArn = "hostedZoneArn",
                     RecordSetId = "recordSetId",
                     RecordType = "recordType",
                     TargetResource = new TargetResourceProperty {
                         NlbResource = new NLBResourceProperty {
                             Arn = "arn"
                         },
                         R53Resource = new R53ResourceRecordProperty {
                             DomainName = "domainName",
                             RecordSetId = "recordSetId"
                         }
                     }
                 },
                 ReadinessScopes = new [] { "readinessScopes" },
                 ResourceArn = "resourceArn"
             };

Synopsis

Properties

ComponentId

The component identifier of the resource, generated when DNS target resource is used.

DnsTargetResource

A component for DNS/routing control readiness checks.

ReadinessScopes

The recovery group Amazon Resource Name (ARN) or the cell ARN that the readiness checks for this resource set are scoped to.

ResourceArn

The Amazon Resource Name (ARN) of the AWS resource.

Properties

ComponentId

The component identifier of the resource, generated when DNS target resource is used.

string? ComponentId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53recoveryreadiness-resourceset-resource.html#cfn-route53recoveryreadiness-resourceset-resource-componentid

DnsTargetResource

A component for DNS/routing control readiness checks.

object? DnsTargetResource { get; }
Property Value

object

Remarks

This is a required setting when ResourceSet ResourceSetType is set to AWS::Route53RecoveryReadiness::DNSTargetResource . Do not set it for any other ResourceSetType setting.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53recoveryreadiness-resourceset-resource.html#cfn-route53recoveryreadiness-resourceset-resource-dnstargetresource

Type union: either IResolvable or CfnResourceSetPropsMixin.IDNSTargetResourceProperty

ReadinessScopes

The recovery group Amazon Resource Name (ARN) or the cell ARN that the readiness checks for this resource set are scoped to.

string[]? ReadinessScopes { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53recoveryreadiness-resourceset-resource.html#cfn-route53recoveryreadiness-resourceset-resource-readinessscopes

ResourceArn

The Amazon Resource Name (ARN) of the AWS resource.

string? ResourceArn { get; }
Property Value

string

Remarks

This is a required setting for all ResourceSet ResourceSetType settings except AWS::Route53RecoveryReadiness::DNSTargetResource . Do not set this when ResourceSetType is set to AWS::Route53RecoveryReadiness::DNSTargetResource .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53recoveryreadiness-resourceset-resource.html#cfn-route53recoveryreadiness-resourceset-resource-resourcearn

Back to top Generated by DocFX