Skip to content

aws.proton.get_service_template_version

Example SQL Queries

SELECT * FROM
aws.proton.get_service_template_version
WHERE
"major_version" = 'VALUE'
AND "minor_version" = 'VALUE'
AND "template_name" = 'VALUE';

Description

Get detailed data for a major or minor version of a service template.

Table Definition

Column NameColumn Data Type
major_version Required Input Column

To get service template major version detail data, include major Version.

VARCHAR
minor_version Required Input Column

To get service template minor version detail data, include minorVersion.

VARCHAR
template_name Required Input Column

The name of the service template a version of which you want to get detailed data for.

VARCHAR
_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.

_aws_region Input Column

The AWS region to use.

VARCHAR
service_template_version

The detailed data of the requested service template version.

STRUCT(
"arn" VARCHAR,
"compatible_environment_templates" STRUCT(
"major_version" VARCHAR,
"template_name" VARCHAR
)[],
"created_at" TIMESTAMP_S,
"description" VARCHAR,
"last_modified_at" TIMESTAMP_S,
"major_version" VARCHAR,
"minor_version" VARCHAR,
"recommended_minor_version" VARCHAR,
"schema" VARCHAR,
"status" VARCHAR,
"status_message" VARCHAR,
"supported_component_sources" VARCHAR[],
"template_name" VARCHAR
)
Show child fields
service_template_version.arn

The Amazon Resource Name (ARN) of the version of a service template.

service_template_version.compatible_environment_templates[]
Show child fields
service_template_version.compatible_environment_templates[].major_version

The major version of the compatible environment template.

service_template_version.compatible_environment_templates[].template_name

The compatible environment template name.

service_template_version.created_at

The time when the version of a service template was created.

service_template_version.description

A description of the version of a service template.

service_template_version.last_modified_at

The time when the version of a service template was last modified.

service_template_version.major_version

The latest major version that's associated with the version of a service template.

service_template_version.minor_version

The minor version of a service template.

service_template_version.recommended_minor_version

The recommended minor version of the service template.

service_template_version.schema

The schema of the version of a service template.

service_template_version.status

The service template version status.

service_template_version.status_message

A service template version status message.

service_template_version.supported_component_sources[]
service_template_version.template_name

The name of the version of a service template.