Skip to content

aws.pinpoint_sms_voice_v2.describe_registration_versions

Example SQL Queries

SELECT * FROM
aws.pinpoint_sms_voice_v2.describe_registration_versions
WHERE
"registration_id" = 'VALUE';

Description

Retrieves the specified registration version.

Table Definition

Column NameColumn Data Type
registration_id Required Input Column

The unique identifier for the registration.

VARCHAR
filters Input Column

An array of RegistrationVersionFilter objects to filter the results.

STRUCT(
"name" VARCHAR,
"values" VARCHAR[]
)[]
Show child fields
filters[]
Show child fields
filters[].name

The name of the attribute to filter on.

filters[].values[]
version_numbers Input Column

An array of registration version numbers.

BIGINT[]
Show child fields
version_numbers[]
_aws_profile Input Column

The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role.

STRUCT(
"type" VARCHAR,
"name" VARCHAR,
"account_id" VARCHAR,
"via_profile_name" VARCHAR,
"assumed_role_arn" VARCHAR,
"organization" STRUCT(
"account_name" VARCHAR,
"id" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[],
"master_account" STRUCT(
"id" VARCHAR,
"email" VARCHAR
),
"parents" STRUCT(
"type" VARCHAR,
"id" VARCHAR,
"name" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[]
)[]
)
)
Show child fields
_aws_profile.account_id

The AWS account id

_aws_profile.assumed_role_arn

The ARN of the assumed role

_aws_profile.name

The unique name of the profile.

_aws_profile.organization

Information about this profile's membership in the AWS organization.

Show child fields
_aws_profile.organization.account_name

The name of account speciifed by the organization

_aws_profile.organization.id

The organization id

_aws_profile.organization.master_account
Show child fields
_aws_profile.organization.master_account.email

The organization master account email address

_aws_profile.organization.master_account.id

The organization master account id

_aws_profile.organization.parents[]
Show child fields
_aws_profile.organization.parents[].id

The id of the parent

_aws_profile.organization.parents[].name

The name of the parent

_aws_profile.organization.parents[].tags[]
Show child fields
_aws_profile.organization.parents[].tags[].key
_aws_profile.organization.parents[].tags[].value
_aws_profile.organization.parents[].type

The type of parent can be an organization unit or a root

_aws_profile.organization.tags[]
Show child fields
_aws_profile.organization.tags[].key
_aws_profile.organization.tags[].value
_aws_profile.type

The type of profile, either 'credentials' or 'assumed_role'

_aws_profile.via_profile_name

This IAM role for this profile is assumed by first utilizing another profile with this name to obtain credentials.

registration_arn

The Amazon Resource Name (ARN) for the registration.

VARCHAR
registration_versions

An array of RegistrationVersions objects.

STRUCT(
"version_number" BIGINT,
"registration_version_status" VARCHAR,
"registration_version_status_history" STRUCT(
"draft_timestamp" TIMESTAMP_S,
"submitted_timestamp" TIMESTAMP_S,
"reviewing_timestamp" TIMESTAMP_S,
"approved_timestamp" TIMESTAMP_S,
"discarded_timestamp" TIMESTAMP_S,
"denied_timestamp" TIMESTAMP_S,
"revoked_timestamp" TIMESTAMP_S,
"archived_timestamp" TIMESTAMP_S
),
"denied_reasons" STRUCT(
"reason" VARCHAR,
"short_description" VARCHAR,
"long_description" VARCHAR,
"documentation_title" VARCHAR,
"documentation_link" VARCHAR
)[]
)[]
Show child fields
registration_versions[]
Show child fields
registration_versions[].denied_reasons[]
Show child fields
registration_versions[].denied_reasons[].documentation_link

The link to the document.

registration_versions[].denied_reasons[].documentation_title

The title of the document.

registration_versions[].denied_reasons[].long_description

A long description of the rejection reason.

registration_versions[].denied_reasons[].reason

The reason a registration was rejected.

registration_versions[].denied_reasons[].short_description

A short description of the rejection reason.

registration_versions[].registration_version_status

The status of the registration.

  • DRAFT: The initial status of a registration version after it’s created.

  • SUBMITTED: Your registration has been submitted.

  • REVIEWING: Your registration has been accepted and is being reviewed.

  • APPROVED: Your registration has been approved.

  • DISCARDED: You've abandon this version of their registration to start over with a new version.

  • DENIED: You must fix your registration and resubmit it.

  • REVOKED: Your previously approved registration has been revoked.

  • ARCHIVED: Your previously approved registration version moves into this status when a more recently submitted version is approved.

registration_versions[].registration_version_status_history

The RegistrationVersionStatusHistory object contains the time stamps for when the reservations status changes.

Show child fields
registration_versions[].registration_version_status_history.approved_timestamp

The time when the registration was in the approved state, in UNIX epoch time format.

registration_versions[].registration_version_status_history.archived_timestamp

The time when the registration was in the archived state, in UNIX epoch time format.

registration_versions[].registration_version_status_history.denied_timestamp

The time when the registration was in the denied state, in UNIX epoch time format.

registration_versions[].registration_version_status_history.discarded_timestamp

The time when the registration was in the discarded state, in UNIX epoch time format.

registration_versions[].registration_version_status_history.draft_timestamp

The time when the registration was in the draft state, in UNIX epoch time format.

registration_versions[].registration_version_status_history.reviewing_timestamp

The time when the registration was in the reviewing state, in UNIX epoch time format.

registration_versions[].registration_version_status_history.revoked_timestamp

The time when the registration was in the revoked state, in UNIX epoch time format.

registration_versions[].registration_version_status_history.submitted_timestamp

The time when the registration was in the submitted state, in UNIX epoch time format.

registration_versions[].version_number

The version number of the registration.