Note:

You are viewing the documentation for an older major version of the AWS CLI (version 1).

AWS CLI version 2, the latest major version of AWS CLI, is now stable and recommended for general use. To view this page for the AWS CLI version 2, click here. For more information see the AWS CLI version 2 installation instructions and migration guide.

[ aws . cleanrooms ]

start-protected-query

Description

Creates a protected query that is started by Clean Rooms.

See also: AWS API Documentation

Synopsis

  start-protected-query
--type <value>
--membership-identifier <value>
--sql-parameters <value>
[--result-configuration <value>]
[--cli-input-json <value>]
[--generate-cli-skeleton <value>]
[--debug]
[--endpoint-url <value>]
[--no-verify-ssl]
[--no-paginate]
[--output <value>]
[--query <value>]
[--profile <value>]
[--region <value>]
[--version <value>]
[--color <value>]
[--no-sign-request]
[--ca-bundle <value>]
[--cli-read-timeout <value>]
[--cli-connect-timeout <value>]

Options

--type (string)

The type of the protected query to be started.

Possible values:

  • SQL

--membership-identifier (string)

A unique identifier for the membership to run this query against. Currently accepts a membership ID.

--sql-parameters (structure)

The protected SQL query parameters.

queryString -> (string)

The query string to be submitted.

analysisTemplateArn -> (string)

The Amazon Resource Name (ARN) associated with the analysis template within a collaboration.

parameters -> (map)

The protected query SQL parameters.

key -> (string)

value -> (string)

Shorthand Syntax:

queryString=string,analysisTemplateArn=string,parameters={KeyName1=string,KeyName2=string}

JSON Syntax:

{
  "queryString": "string",
  "analysisTemplateArn": "string",
  "parameters": {"string": "string"
    ...}
}

--result-configuration (structure)

The details needed to write the query results.

outputConfiguration -> (tagged union structure)

Configuration for protected query results.

Note

This is a Tagged Union structure. Only one of the following top level keys can be set: s3.

s3 -> (structure)

Required configuration for a protected query with an S3 output type.

resultFormat -> (string)

Intended file format of the result.

bucket -> (string)

The S3 bucket to unload the protected query results.

keyPrefix -> (string)

The S3 prefix to unload the protected query results.

Shorthand Syntax:

outputConfiguration={s3={resultFormat=string,bucket=string,keyPrefix=string}}

JSON Syntax:

{
  "outputConfiguration": {
    "s3": {
      "resultFormat": "CSV"|"PARQUET",
      "bucket": "string",
      "keyPrefix": "string"
    }
  }
}

--cli-input-json (string) Performs service operation based on the JSON string provided. The JSON string follows the format provided by --generate-cli-skeleton. If other arguments are provided on the command line, the CLI values will override the JSON-provided values. It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally.

--generate-cli-skeleton (string) Prints a JSON skeleton to standard output without sending an API request. If provided with no value or the value input, prints a sample input JSON that can be used as an argument for --cli-input-json. If provided with the value output, it validates the command inputs and returns a sample output JSON for that command.

Global Options

--debug (boolean)

Turn on debug logging.

--endpoint-url (string)

Override command's default URL with the given URL.

--no-verify-ssl (boolean)

By default, the AWS CLI uses SSL when communicating with AWS services. For each SSL connection, the AWS CLI will verify SSL certificates. This option overrides the default behavior of verifying SSL certificates.

--no-paginate (boolean)

Disable automatic pagination.

--output (string)

The formatting style for command output.

  • json
  • text
  • table

--query (string)

A JMESPath query to use in filtering the response data.

--profile (string)

Use a specific profile from your credential file.

--region (string)

The region to use. Overrides config/env settings.

--version (string)

Display the version of this tool.

--color (string)

Turn on/off color output.

  • on
  • off
  • auto

--no-sign-request (boolean)

Do not sign requests. Credentials will not be loaded if this argument is provided.

--ca-bundle (string)

The CA certificate bundle to use when verifying SSL certificates. Overrides config/env settings.

--cli-read-timeout (int)

The maximum socket read time in seconds. If the value is set to 0, the socket read will be blocking and not timeout. The default value is 60 seconds.

--cli-connect-timeout (int)

The maximum socket connect time in seconds. If the value is set to 0, the socket connect will be blocking and not timeout. The default value is 60 seconds.

Output

protectedQuery -> (structure)

The protected query.

id -> (string)

The identifier for a protected query instance.

membershipId -> (string)

The identifier for the membership.

membershipArn -> (string)

The ARN of the membership.

createTime -> (timestamp)

The time at which the protected query was created.

sqlParameters -> (structure)

The protected query SQL parameters.

queryString -> (string)

The query string to be submitted.

analysisTemplateArn -> (string)

The Amazon Resource Name (ARN) associated with the analysis template within a collaboration.

parameters -> (map)

The protected query SQL parameters.

key -> (string)

value -> (string)

status -> (string)

The status of the query.

resultConfiguration -> (structure)

Contains any details needed to write the query results.

outputConfiguration -> (tagged union structure)

Configuration for protected query results.

Note

This is a Tagged Union structure. Only one of the following top level keys can be set: s3.

s3 -> (structure)

Required configuration for a protected query with an S3 output type.

resultFormat -> (string)

Intended file format of the result.

bucket -> (string)

The S3 bucket to unload the protected query results.

keyPrefix -> (string)

The S3 prefix to unload the protected query results.

statistics -> (structure)

Statistics about protected query execution.

totalDurationInMillis -> (long)

The duration of the Protected Query, from creation until query completion.

result -> (structure)

The result of the protected query.

output -> (tagged union structure)

The output of the protected query.

Note

This is a Tagged Union structure. Only one of the following top level keys can be set: s3, memberList.

s3 -> (structure)

If present, the output for a protected query with an S3 output type.

location -> (string)

The S3 location of the result.

memberList -> (list)

The list of member Amazon Web Services account(s) that received the results of the query.

(structure)

Details about the member who received the query result.

accountId -> (string)

The Amazon Web Services account ID of the member in the collaboration who can receive results for the query.

error -> (structure)

An error thrown by the protected query.

message -> (string)

A description of why the query failed.

code -> (string)

An error code for the error.

differentialPrivacy -> (structure)

The sensitivity parameters of the differential privacy results of the protected query.

sensitivityParameters -> (list)

Provides the sensitivity parameters that you can use to better understand the total amount of noise in query results.

(structure)

Provides the sensitivity parameters.

aggregationType -> (string)

The type of aggregation function that was run.

aggregationExpression -> (string)

The aggregation expression that was run.

userContributionLimit -> (integer)

The maximum number of rows contributed by a user in a SQL query.

minColumnValue -> (float)

The lower bound of the aggregation expression.

maxColumnValue -> (float)

The upper bound of the aggregation expression.