Lightsail / Client / get_static_ip

get_static_ip#

Lightsail.Client.get_static_ip(**kwargs)#

Returns information about an Amazon Lightsail static IP.

See also: AWS API Documentation

Request Syntax

response = client.get_static_ip(
    staticIpName='string'
)
Parameters:

staticIpName (string) –

[REQUIRED]

The name of the static IP in Lightsail.

Return type:

dict

Returns:

Response Syntax

{
    'staticIp': {
        'name': 'string',
        'arn': 'string',
        'supportCode': 'string',
        'createdAt': datetime(2015, 1, 1),
        'location': {
            'availabilityZone': 'string',
            'regionName': 'us-east-1'|'us-east-2'|'us-west-1'|'us-west-2'|'eu-west-1'|'eu-west-2'|'eu-west-3'|'eu-central-1'|'ca-central-1'|'ap-south-1'|'ap-southeast-1'|'ap-southeast-2'|'ap-northeast-1'|'ap-northeast-2'|'eu-north-1'
        },
        'resourceType': 'ContainerService'|'Instance'|'StaticIp'|'KeyPair'|'InstanceSnapshot'|'Domain'|'PeeredVpc'|'LoadBalancer'|'LoadBalancerTlsCertificate'|'Disk'|'DiskSnapshot'|'RelationalDatabase'|'RelationalDatabaseSnapshot'|'ExportSnapshotRecord'|'CloudFormationStackRecord'|'Alarm'|'ContactMethod'|'Distribution'|'Certificate'|'Bucket',
        'ipAddress': 'string',
        'attachedTo': 'string',
        'isAttached': True|False
    }
}

Response Structure

  • (dict) –

    • staticIp (dict) –

      An array of key-value pairs containing information about the requested static IP.

      • name (string) –

        The name of the static IP ( StaticIP-Ohio-EXAMPLE).

      • arn (string) –

        The Amazon Resource Name (ARN) of the static IP ( arn:aws:lightsail:us-east-2:123456789101:StaticIp/9cbb4a9e-f8e3-4dfe-b57e-12345EXAMPLE).

      • supportCode (string) –

        The support code. Include this code in your email to support when you have questions about an instance or another resource in Lightsail. This code enables our support team to look up your Lightsail information more easily.

      • createdAt (datetime) –

        The timestamp when the static IP was created ( 1479735304.222).

      • location (dict) –

        The region and Availability Zone where the static IP was created.

        • availabilityZone (string) –

          The Availability Zone. Follows the format us-east-2a (case-sensitive).

        • regionName (string) –

          The Amazon Web Services Region name.

      • resourceType (string) –

        The resource type (usually StaticIp).

      • ipAddress (string) –

        The static IP address.

      • attachedTo (string) –

        The instance where the static IP is attached ( Amazon_Linux-1GB-Ohio-1).

      • isAttached (boolean) –

        A Boolean value indicating whether the static IP is attached.

Exceptions

  • Lightsail.Client.exceptions.ServiceException

  • Lightsail.Client.exceptions.InvalidInputException

  • Lightsail.Client.exceptions.NotFoundException

  • Lightsail.Client.exceptions.OperationFailureException

  • Lightsail.Client.exceptions.AccessDeniedException

  • Lightsail.Client.exceptions.AccountSetupInProgressException

  • Lightsail.Client.exceptions.UnauthenticatedException