StartQueryExecutionInput

public struct StartQueryExecutionInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A unique case-sensitive string used to ensure the request to create the query is idempotent (executes only once). If another StartQueryExecution request is received, the same response is returned and another query is not created. If a parameter has changed, for example, the QueryString, an error is returned. This token is listed as not required because AWS SDKs (for example the AWS SDK for Java) auto-generate the token for users. If you are not using the AWS SDK or the AWS CLI, you must provide this token or the action will fail.

    Declaration

    Swift

    public let clientRequestToken: String?
  • The database within which the query executes.

    Declaration

    Swift

    public let queryExecutionContext: QueryExecutionContext?
  • The SQL query statements to be executed.

    Declaration

    Swift

    public let queryString: String
  • Specifies information about where and how to save the results of the query execution. If the query runs in a workgroup, then workgroup’s settings may override query settings. This affects the query results location. The workgroup settings override is specified in EnforceWorkGroupConfiguration (true/false) in the WorkGroupConfiguration. See WorkGroupConfiguration$EnforceWorkGroupConfiguration.

    Declaration

    Swift

    public let resultConfiguration: ResultConfiguration?
  • The name of the workgroup in which the query is being started.

    Declaration

    Swift

    public let workGroup: String?
  • Undocumented

    Declaration

    Swift

    public init(clientRequestToken: String? = StartQueryExecutionInput.idempotencyToken(), queryExecutionContext: QueryExecutionContext? = nil, queryString: String, resultConfiguration: ResultConfiguration? = nil, workGroup: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws