Skip to main content

registered_subscription_providers

Creates, updates, deletes, gets or lists a registered_subscription_providers resource.

Overview

Nameregistered_subscription_providers
TypeResource
Idaws.license_manager_linux_subscriptions.registered_subscription_providers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
last_successful_data_retrieval_timestringThe timestamp from the last time License Manager retrieved subscription details from your registered third-party Linux subscription provider.
secret_arnstringThe Amazon Resource Name (ARN) of the third-party access secret stored in Secrets Manager for the BYOL registration resource specified in the request. (pattern: <code>^arn:[a-z0-9-.]{1,63}:secretsmanager:[a-z0-9-.]{0,63}:[a-z0-9-.]{0,63}㊙️[^/]{1,1023}$</code>)
subscription_provider_arnstringThe Amazon Resource Name (ARN) for the BYOL registration resource specified in the request. (pattern: <code>^arn:[a-z0-9-.]{1,63}:[a-z0-9-.]{1,63}:[a-z0-9-.]{1,63}:[a-z0-9-.]{1,63}:[a-z0-9-.]{1,510}/[a-z0-9-.]{1,510}$</code>)
subscription_provider_sourcestringThe subscription provider for the BYOL registration resource specified in the request. (RedHat)
subscription_provider_statusstringThe status of the Linux subscription provider access token from the last successful subscription data request. (ACTIVE, INVALID, PENDING)
subscription_provider_status_messagestringThe detailed message from your subscription provider token status.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_registered_subscription_providerselectregionGet details for a Bring Your Own License (BYOL) subscription that's registered to your account.
list_registered_subscription_providersselectregionList Bring Your Own License (BYOL) subscription registration resources for your account.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Get details for a Bring Your Own License (BYOL) subscription that's registered to your account.

SELECT
last_successful_data_retrieval_time,
secret_arn,
subscription_provider_arn,
subscription_provider_source,
subscription_provider_status,
subscription_provider_status_message
FROM aws.license_manager_linux_subscriptions.registered_subscription_providers
WHERE region = '{{ region }}' -- required
;