StaticIpReference
- class aws_cdk.aws_lightsail.StaticIpReference(*, static_ip_arn, static_ip_name)
Bases:
object
A reference to a StaticIp resource.
- Parameters:
static_ip_arn (
str
) – The ARN of the StaticIp resource.static_ip_name (
str
) – The StaticIpName of the StaticIp 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_lightsail as lightsail static_ip_reference = lightsail.StaticIpReference( static_ip_arn="staticIpArn", static_ip_name="staticIpName" )
Attributes
- static_ip_arn
The ARN of the StaticIp resource.
- static_ip_name
The StaticIpName of the StaticIp resource.