def get_license()

in managed-entitlements/src/managed_entitlements_sample.py [0:0]


def get_license(LicenseArn):
    lm_client = get_client(default_region)
    response = lm_client.get_license(
        LicenseArn = LicenseArn,
    )
    print('AWS License Manager - Get License API response:')
    pprint.pprint(response)
    return response