RecordSetReference
- class aws_cdk.interfaces.aws_route53.RecordSetReference(*, record_set_name, type)
Bases:
objectA reference to a RecordSet resource.
- Parameters:
record_set_name (
str) – The Name of the RecordSet resource.type (
str) – The Type of the RecordSet resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_route53 as interfaces_route53 record_set_reference = interfaces_route53.RecordSetReference( record_set_name="recordSetName", type="type" )
Attributes
- record_set_name
The Name of the RecordSet resource.
- type
The Type of the RecordSet resource.