Skip to content

aws.servicecatalog.describe_provisioned_product_plan

Example SQL Queries

SELECT * FROM
aws.servicecatalog.describe_provisioned_product_plan
WHERE
"plan_id" = 'VALUE';

Description

Gets information about the resource changes for the specified plan.

Table Definition

Column NameColumn Data Type
plan_id Required Input Column

The plan identifier.

VARCHAR
accept_language Input Column

The language code.

  • jp - Japanese

  • zh - Chinese

VARCHAR
page_size Input Column

The maximum number of items to return with this call.

BIGINT
page_token Input Column

The page token for the next set of results. To retrieve the first set of results, use null.

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
next_page_token

The page token to use to retrieve the next set of results. If there are no additional results, this value is null.

VARCHAR
provisioned_product_plan_details

Information about the plan.

STRUCT(
"created_time" TIMESTAMP_S,
"path_id" VARCHAR,
"product_id" VARCHAR,
"plan_name" VARCHAR,
"plan_id" VARCHAR,
"provision_product_id" VARCHAR,
"provision_product_name" VARCHAR,
"plan_type" VARCHAR,
"provisioning_artifact_id" VARCHAR,
"status" VARCHAR,
"updated_time" TIMESTAMP_S,
"notification_arns" VARCHAR[],
"provisioning_parameters" STRUCT(
"key" VARCHAR,
"value" VARCHAR,
"use_previous_value" BOOLEAN
)[],
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[],
"status_message" VARCHAR
)
Show child fields
provisioned_product_plan_details.created_time

The UTC time stamp of the creation time.

provisioned_product_plan_details.notification_arns[]
provisioned_product_plan_details.path_id

The path identifier of the product. This value is optional if the product has a default path, and required if the product has more than one path. To list the paths for a product, use ListLaunchPaths.

provisioned_product_plan_details.plan_id

The plan identifier.

provisioned_product_plan_details.plan_name

The name of the plan.

provisioned_product_plan_details.plan_type

The plan type.

provisioned_product_plan_details.product_id

The product identifier.

provisioned_product_plan_details.provision_product_id

The product identifier.

provisioned_product_plan_details.provision_product_name

The user-friendly name of the provisioned product.

provisioned_product_plan_details.provisioning_artifact_id

The identifier of the provisioning artifact.

provisioned_product_plan_details.provisioning_parameters[]
Show child fields
provisioned_product_plan_details.provisioning_parameters[].key

The parameter key.

provisioned_product_plan_details.provisioning_parameters[].use_previous_value

If set to true, Value is ignored and the previous parameter value is kept.

provisioned_product_plan_details.provisioning_parameters[].value

The parameter value.

provisioned_product_plan_details.status

The status.

provisioned_product_plan_details.status_message

The status message.

provisioned_product_plan_details.tags[]
Show child fields
provisioned_product_plan_details.tags[].key

The tag key.

provisioned_product_plan_details.tags[].value

The value for this key.

provisioned_product_plan_details.updated_time

The UTC time stamp when the plan was last updated.

resource_changes

Information about the resource changes that will occur when the plan is executed.

STRUCT(
"action" VARCHAR,
"logical_resource_id" VARCHAR,
"physical_resource_id" VARCHAR,
"resource_type" VARCHAR,
"replacement" VARCHAR,
"scope" VARCHAR[],
"details" STRUCT(
"target" STRUCT(
"attribute" VARCHAR,
"name" VARCHAR,
"requires_recreation" VARCHAR
),
"evaluation" VARCHAR,
"causing_entity" VARCHAR
)[]
)[]
Show child fields
resource_changes[]
Show child fields
resource_changes[].action

The change action.

resource_changes[].details[]
Show child fields
resource_changes[].details[].causing_entity

The ID of the entity that caused the change.

resource_changes[].details[].evaluation

For static evaluations, the value of the resource attribute will change and the new value is known. For dynamic evaluations, the value might change, and any new value will be determined when the plan is updated.

resource_changes[].details[].target

Information about the resource attribute to be modified.

Show child fields
resource_changes[].details[].target.attribute

The attribute to be changed.

resource_changes[].details[].target.name

If the attribute is Properties, the value is the name of the property. Otherwise, the value is null.

resource_changes[].details[].target.requires_recreation

If the attribute is Properties, indicates whether a change to this property causes the resource to be re-created.

resource_changes[].logical_resource_id

The ID of the resource, as defined in the CloudFormation template.

resource_changes[].physical_resource_id

The ID of the resource, if it was already created.

resource_changes[].replacement

If the change type is Modify, indicates whether the existing resource is deleted and replaced with a new one.

resource_changes[].resource_type

The type of resource.

resource_changes[].scope[]