ResourceSetReference
- class aws_cdk.aws_route53recoveryreadiness.ResourceSetReference(*, resource_set_arn, resource_set_name)
Bases:
object
A reference to a ResourceSet resource.
- Parameters:
resource_set_arn (
str
) – The ARN of the ResourceSet resource.resource_set_name (
str
) – The ResourceSetName of the ResourceSet 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 import aws_route53recoveryreadiness as route53recoveryreadiness resource_set_reference = route53recoveryreadiness.ResourceSetReference( resource_set_arn="resourceSetArn", resource_set_name="resourceSetName" )
Attributes
- resource_set_arn
The ARN of the ResourceSet resource.
- resource_set_name
The ResourceSetName of the ResourceSet resource.