Class CfnResourceSet.TargetResourceProperty
The target resource that the Route 53 record points to.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Route53RecoveryReadiness
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnResourceSet.TargetResourceProperty : CfnResourceSet.ITargetResourceProperty
Syntax (vb)
Public Class CfnResourceSet.TargetResourceProperty Implements CfnResourceSet.ITargetResourceProperty
Remarks
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 targetResourceProperty = new TargetResourceProperty {
NlbResource = new NLBResourceProperty {
Arn = "arn"
},
R53Resource = new R53ResourceRecordProperty {
DomainName = "domainName",
RecordSetId = "recordSetId"
}
};
Synopsis
Constructors
| TargetResourceProperty() | The target resource that the Route 53 record points to. |
Properties
| NlbResource | The Network Load Balancer resource that a DNS target resource points to. |
| R53Resource | The Route 53 resource that a DNS target resource record points to. |
Constructors
TargetResourceProperty()
The target resource that the Route 53 record points to.
public TargetResourceProperty()
Remarks
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 targetResourceProperty = new TargetResourceProperty {
NlbResource = new NLBResourceProperty {
Arn = "arn"
},
R53Resource = new R53ResourceRecordProperty {
DomainName = "domainName",
RecordSetId = "recordSetId"
}
};
Properties
NlbResource
The Network Load Balancer resource that a DNS target resource points to.
public object? NlbResource { get; set; }
Property Value
Remarks
R53Resource
The Route 53 resource that a DNS target resource record points to.
public object? R53Resource { get; set; }