openapi: 3.0.0 info: version: '2019-12-20' x-release: v4 title: 'Redshift Data API Service #Action=AcceptReservedNodeExchange #Action=AcceptReservedNodeExchange #X Amz Target=RedshiftData.DescribeTable API' description:
You can use the Amazon Redshift Data API to run queries on Amazon Redshift tables. You can run SQL statements, which are committed if the statement succeeds.
For more information about the Amazon Redshift Data API and CLI usage examples, see Using the Amazon Redshift Data API in the Amazon Redshift Management Guide.
x-logo: url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png backgroundColor: '#FFFFFF' termsOfService: https://aws.amazon.com/service-terms/ contact: name: Mike Ralphson email: mike.ralphson@gmail.com url: https://github.com/mermade/aws2openapi x-twitter: PermittedSoc license: name: Apache 2.0 License url: http://www.apache.org/licenses/ x-providerName: amazonaws.com x-serviceName: redshift-data x-aws-signingName: redshift-data x-origin: - contentType: application/json url: https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/redshift-data-2019-12-20.normal.json converter: url: https://github.com/mermade/aws2openapi version: 1.0.0 x-apisguru-driver: external x-apiClientRegistration: url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct x-apisguru-categories: - cloud x-preferred: true servers: - url: http://redshift-data.{region}.amazonaws.com variables: region: description: The AWS region enum: - us-east-1 - us-east-2 - us-west-1 - us-west-2 - us-gov-west-1 - us-gov-east-1 - ca-central-1 - eu-north-1 - eu-west-1 - eu-west-2 - eu-west-3 - eu-central-1 - eu-south-1 - af-south-1 - ap-northeast-1 - ap-northeast-2 - ap-northeast-3 - ap-southeast-1 - ap-southeast-2 - ap-east-1 - ap-south-1 - sa-east-1 - me-south-1 default: us-east-1 description: The Redshift Data API Service multi-region endpoint - url: https://redshift-data.{region}.amazonaws.com variables: region: description: The AWS region enum: - us-east-1 - us-east-2 - us-west-1 - us-west-2 - us-gov-west-1 - us-gov-east-1 - ca-central-1 - eu-north-1 - eu-west-1 - eu-west-2 - eu-west-3 - eu-central-1 - eu-south-1 - af-south-1 - ap-northeast-1 - ap-northeast-2 - ap-northeast-3 - ap-southeast-1 - ap-southeast-2 - ap-east-1 - ap-south-1 - sa-east-1 - me-south-1 default: us-east-1 description: The Redshift Data API Service multi-region endpoint - url: http://redshift-data.{region}.amazonaws.com.cn variables: region: description: The AWS region enum: - cn-north-1 - cn-northwest-1 default: cn-north-1 description: The Redshift Data API Service endpoint for China (Beijing) and China (Ningxia) - url: https://redshift-data.{region}.amazonaws.com.cn variables: region: description: The AWS region enum: - cn-north-1 - cn-northwest-1 default: cn-north-1 description: The Redshift Data API Service endpoint for China (Beijing) and China (Ningxia) security: - hmac: [] tags: - name: '#X Amz Target=RedshiftData.DescribeTable' paths: /#X-Amz-Target=RedshiftData.DescribeTable: parameters: - $ref: '#/components/parameters/X-Amz-Content-Sha256' - $ref: '#/components/parameters/X-Amz-Date' - $ref: '#/components/parameters/X-Amz-Algorithm' - $ref: '#/components/parameters/X-Amz-Credential' - $ref: '#/components/parameters/X-Amz-Security-Token' - $ref: '#/components/parameters/X-Amz-Signature' - $ref: '#/components/parameters/X-Amz-SignedHeaders' post: operationId: DescribeTable description: 'Describes the detailed information about a table from metadata in the cluster. The information includes its columns. A token is returned to page through the column list. Depending on the authorization method, use one of the following combinations of request parameters:
Secrets Manager - when connecting to a cluster, provide the secret-arn of a secret stored in Secrets Manager which has username and password. The specified secret contains credentials to connect to the database you specify. When you are connecting to a cluster, you also supply the database name, If you provide a cluster identifier (dbClusterIdentifier), it must match the cluster identifier stored in the secret. When you are connecting to a serverless workgroup, you also supply the database name.
Temporary credentials - when connecting to your data warehouse, choose one of the following options:
When connecting to a serverless workgroup, specify the workgroup name and database name. The database user name is derived from the IAM identity. For example, arn:iam::123456789012:user:foo has the database user name IAM:foo. Also, permission to call the redshift-serverless:GetCredentials operation is required.
When connecting to a cluster as an IAM identity, specify the cluster identifier and the database name. The database user name is derived from the IAM identity. For example, arn:iam::123456789012:user:foo has the database user name IAM:foo. Also, permission to call the redshift:GetClusterCredentialsWithIAM operation is required.
When connecting to a cluster as a database user, specify the cluster identifier, the database name, and the database user name. Also, permission to call the redshift:GetClusterCredentials operation is required.
For more information about the Amazon Redshift Data API and CLI usage examples, see Using the Amazon Redshift Data API in the Amazon Redshift Management Guide.
' responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/DescribeTableResponse' '480': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' '481': description: InternalServerException content: application/json: schema: $ref: '#/components/schemas/InternalServerException' '482': description: DatabaseConnectionException content: application/json: schema: $ref: '#/components/schemas/DatabaseConnectionException' requestBody: required: true content: application/json: schema: $ref: '#/components/schemas/DescribeTableRequest' parameters: - name: MaxResults in: query schema: type: string description: Pagination limit required: false - name: NextToken in: query schema: type: string description: Pagination token required: false - name: X-Amz-Target in: header required: true schema: type: string enum: - RedshiftData.DescribeTable summary: Amazon Redshift Data - Describe Table x-microcks-operation: delay: 0 dispatcher: FALLBACK tags: - '#X Amz Target=RedshiftData.DescribeTable' components: schemas: ColumnMetadata: type: object properties: columnDefault: allOf: - $ref: '#/components/schemas/String' - description: 'The default value of the column. ' isCaseSensitive: allOf: - $ref: '#/components/schemas/bool' - description: 'A value that indicates whether the column is case-sensitive. ' isCurrency: allOf: - $ref: '#/components/schemas/bool' - description: A value that indicates whether the column contains currency values. isSigned: allOf: - $ref: '#/components/schemas/bool' - description: A value that indicates whether an integer column is signed. label: allOf: - $ref: '#/components/schemas/String' - description: 'The label for the column. ' length: allOf: - $ref: '#/components/schemas/Integer' - description: The length of the column. name: allOf: - $ref: '#/components/schemas/String' - description: 'The name of the column. ' nullable: allOf: - $ref: '#/components/schemas/Integer' - description: 'A value that indicates whether the column is nullable. ' precision: allOf: - $ref: '#/components/schemas/Integer' - description: 'The precision value of a decimal number column. ' scale: allOf: - $ref: '#/components/schemas/Integer' - description: 'The scale value of a decimal number column. ' schemaName: allOf: - $ref: '#/components/schemas/String' - description: The name of the schema that contains the table that includes the column. tableName: allOf: - $ref: '#/components/schemas/String' - description: 'The name of the table that includes the column. ' typeName: allOf: - $ref: '#/components/schemas/String' - description: 'The database-specific data type of the column. ' description: 'The properties (metadata) of a column. ' WorkgroupNameString: type: string pattern: ^(([a-z0-9-]+)|(arn:(aws(-[a-z]+)*):redshift-serverless:[a-z]{2}(-gov)?-[a-z]+-\d{1}:\d{12}:workgroup/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}))$ minLength: 3 maxLength: 128 Integer: type: integer String: type: string DatabaseConnectionException: {} DescribeTableRequest: type: object required: - Database title: DescribeTableRequest properties: ClusterIdentifier: allOf: - $ref: '#/components/schemas/Location' - description: 'The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials. ' ConnectedDatabase: allOf: - $ref: '#/components/schemas/String' - description: 'A database name. The connected database is specified when you connect with your authentication credentials. ' Database: allOf: - $ref: '#/components/schemas/String' - description: The name of the database that contains the tables to be described. IfConnectedDatabase is not specified, this is also the database to connect to with your authentication credentials.
DbUser:
allOf:
- $ref: '#/components/schemas/String'
- description: 'The database user name. This parameter is required when connecting to a cluster as a database user and authenticating using temporary credentials. '
MaxResults:
allOf:
- $ref: '#/components/schemas/PageSize'
- description: 'The maximum number of tables to return in the response. If more tables exist than fit in one response, then NextToken is returned to page through the results. '
NextToken:
allOf:
- $ref: '#/components/schemas/String'
- description: 'A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned NextToken value in the next NextToken parameter and retrying the command. If the NextToken field is empty, all response records have been retrieved for the request. '
Schema:
allOf:
- $ref: '#/components/schemas/String'
- description: 'The schema that contains the table. If no schema is specified, then matching tables for all schemas are returned. '
SecretArn:
allOf:
- $ref: '#/components/schemas/SecretArn'
- description: 'The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using Secrets Manager. '
Table:
allOf:
- $ref: '#/components/schemas/String'
- description: The table name. If no table is specified, then all tables for all matching schemas are returned. If no table and no schema is specified, then all tables for all schemas in the database are returned
WorkgroupName:
allOf:
- $ref: '#/components/schemas/WorkgroupNameString'
- description: The serverless workgroup name or Amazon Resource Name (ARN). This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
ColumnList:
type: array
items:
$ref: '#/components/schemas/ColumnMetadata'
Location:
type: string
PageSize:
type: integer
minimum: 0
maximum: 1000
SecretArn:
type: string
DescribeTableResponse:
type: object
properties:
ColumnList:
allOf:
- $ref: '#/components/schemas/ColumnList'
- description: 'A list of columns in the table. '
NextToken:
allOf:
- $ref: '#/components/schemas/String'
- description: 'A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned NextToken value in the next NextToken parameter and retrying the command. If the NextToken field is empty, all response records have been retrieved for the request. '
TableName:
allOf:
- $ref: '#/components/schemas/String'
- description: 'The table name. '
ValidationException: {}
bool:
type: boolean
InternalServerException: {}
parameters:
X-Amz-Credential:
name: X-Amz-Credential
in: header
schema:
type: string
required: false
X-Amz-Security-Token:
name: X-Amz-Security-Token
in: header
schema:
type: string
required: false
X-Amz-Date:
name: X-Amz-Date
in: header
schema:
type: string
required: false
X-Amz-Algorithm:
name: X-Amz-Algorithm
in: header
schema:
type: string
required: false
X-Amz-SignedHeaders:
name: X-Amz-SignedHeaders
in: header
schema:
type: string
required: false
X-Amz-Content-Sha256:
name: X-Amz-Content-Sha256
in: header
schema:
type: string
required: false
X-Amz-Signature:
name: X-Amz-Signature
in: header
schema:
type: string
required: false
securitySchemes:
hmac:
type: apiKey
name: Authorization
in: header
description: Amazon Signature authorization v4
x-amazon-apigateway-authtype: awsSigv4
externalDocs:
description: Amazon Web Services documentation
url: https://docs.aws.amazon.com/redshift-data/
x-hasEquivalentPaths: true