Struct aws_sdk_redshiftdata::Client
source · pub struct Client { /* private fields */ }
Expand description
Client for Redshift Data API Service
Client for invoking operations on Redshift Data API Service. Each operation on Redshift Data API Service is a method on this
this struct. .send()
MUST be invoked on the generated operations to dispatch the request to the service.
Examples
Constructing a client and invoking an operation
// create a shared configuration. This can be used & shared between multiple service clients.
let shared_config = aws_config::load_from_env().await;
let client = aws_sdk_redshiftdata::Client::new(&shared_config);
// invoke an operation
/* let rsp = client
.<operation_name>().
.<param>("some value")
.send().await; */
Constructing a client with custom configuration
use aws_config::retry::RetryConfig;
let shared_config = aws_config::load_from_env().await;
let config = aws_sdk_redshiftdata::config::Builder::from(&shared_config)
.retry_config(RetryConfig::disabled())
.build();
let client = aws_sdk_redshiftdata::Client::from_conf(config);
Implementations§
source§impl Client
impl Client
sourcepub fn with_config(
client: Client<DynConnector, DynMiddleware<DynConnector>>,
conf: Config
) -> Self
pub fn with_config(
client: Client<DynConnector, DynMiddleware<DynConnector>>,
conf: Config
) -> Self
Creates a client with the given service configuration.
source§impl Client
impl Client
sourcepub fn batch_execute_statement(&self) -> BatchExecuteStatement
pub fn batch_execute_statement(&self) -> BatchExecuteStatement
Constructs a fluent builder for the BatchExecuteStatement
operation.
- The fluent builder is configurable:
sqls(Vec<String>)
/set_sqls(Option<Vec<String>>)
:One or more SQL statements to run. The SQL statements are run as a single transaction. They run serially in the order of the array. Subsequent SQL statements don’t start until the previous statement in the array completes. If any SQL statement fails, then because they are run as one transaction, all work is rolled back.
cluster_identifier(impl Into<String>)
/set_cluster_identifier(Option<String>)
:The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
secret_arn(impl Into<String>)
/set_secret_arn(Option<String>)
:The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using Secrets Manager.
db_user(impl Into<String>)
/set_db_user(Option<String>)
:The database user name. This parameter is required when connecting to a cluster and authenticating using temporary credentials.
database(impl Into<String>)
/set_database(Option<String>)
:The name of the database. This parameter is required when authenticating using either Secrets Manager or temporary credentials.
with_event(bool)
/set_with_event(Option<bool>)
:A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statements run.
statement_name(impl Into<String>)
/set_statement_name(Option<String>)
:The name of the SQL statements. You can name the SQL statements when you create them to identify the query.
workgroup_name(impl Into<String>)
/set_workgroup_name(Option<String>)
:The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
client_token(impl Into<String>)
/set_client_token(Option<String>)
:A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
- On success, responds with
BatchExecuteStatementOutput
with field(s):id(Option<String>)
:The identifier of the SQL statement whose results are to be fetched. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. This identifier is returned by
BatchExecuteStatment
.created_at(Option<DateTime>)
:The date and time (UTC) the statement was created.
cluster_identifier(Option<String>)
:The cluster identifier. This element is not returned when connecting to a serverless workgroup.
db_user(Option<String>)
:The database user name.
database(Option<String>)
:The name of the database.
secret_arn(Option<String>)
:The name or ARN of the secret that enables access to the database.
workgroup_name(Option<String>)
:The serverless workgroup name. This element is not returned when connecting to a provisioned cluster.
- On failure, responds with
SdkError<BatchExecuteStatementError>
sourcepub fn cancel_statement(&self) -> CancelStatement
pub fn cancel_statement(&self) -> CancelStatement
Constructs a fluent builder for the CancelStatement
operation.
- The fluent builder is configurable:
id(impl Into<String>)
/set_id(Option<String>)
:The identifier of the SQL statement to cancel. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. This identifier is returned by
BatchExecuteStatment
,ExecuteStatment
, andListStatements
.
- On success, responds with
CancelStatementOutput
with field(s):status(Option<bool>)
:A value that indicates whether the cancel statement succeeded (true).
- On failure, responds with
SdkError<CancelStatementError>
sourcepub fn describe_statement(&self) -> DescribeStatement
pub fn describe_statement(&self) -> DescribeStatement
Constructs a fluent builder for the DescribeStatement
operation.
- The fluent builder is configurable:
id(impl Into<String>)
/set_id(Option<String>)
:The identifier of the SQL statement to describe. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. A suffix indicates the number of the SQL statement. For example,
d9b6c0c9-0747-4bf4-b142-e8883122f766:2
has a suffix of:2
that indicates the second SQL statement of a batch query. This identifier is returned byBatchExecuteStatment
,ExecuteStatement
, andListStatements
.
- On success, responds with
DescribeStatementOutput
with field(s):id(Option<String>)
:The identifier of the SQL statement described. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API.
secret_arn(Option<String>)
:The name or Amazon Resource Name (ARN) of the secret that enables access to the database.
db_user(Option<String>)
:The database user name.
database(Option<String>)
:The name of the database.
cluster_identifier(Option<String>)
:The cluster identifier.
duration(i64)
:The amount of time in nanoseconds that the statement ran.
error(Option<String>)
:The error message from the cluster if the SQL statement encountered an error while running.
status(Option<StatusString>)
:The status of the SQL statement being described. Status values are defined as follows:
-
ABORTED - The query run was stopped by the user.
-
ALL - A status value that includes all query statuses. This value can be used to filter results.
-
FAILED - The query run failed.
-
FINISHED - The query has finished running.
-
PICKED - The query has been chosen to be run.
-
STARTED - The query run has started.
-
SUBMITTED - The query was submitted, but not yet processed.
-
created_at(Option<DateTime>)
:The date and time (UTC) when the SQL statement was submitted to run.
updated_at(Option<DateTime>)
:The date and time (UTC) that the metadata for the SQL statement was last updated. An example is the time the status last changed.
redshift_pid(i64)
:The process identifier from Amazon Redshift.
has_result_set(Option<bool>)
:A value that indicates whether the statement has a result set. The result set can be empty. The value is true for an empty result set. The value is true if any substatement returns a result set.
query_string(Option<String>)
:The SQL statement text.
result_rows(i64)
:Either the number of rows returned from the SQL statement or the number of rows affected. If result size is greater than zero, the result rows can be the number of rows affected by SQL statements such as INSERT, UPDATE, DELETE, COPY, and others. A
-1
indicates the value is null.result_size(i64)
:The size in bytes of the returned results. A
-1
indicates the value is null.redshift_query_id(i64)
:The identifier of the query generated by Amazon Redshift. These identifiers are also available in the
query
column of theSTL_QUERY
system view.query_parameters(Option<Vec<SqlParameter>>)
:The parameters for the SQL statement.
sub_statements(Option<Vec<SubStatementData>>)
:The SQL statements from a multiple statement run.
workgroup_name(Option<String>)
:The serverless workgroup name.
- On failure, responds with
SdkError<DescribeStatementError>
sourcepub fn describe_table(&self) -> DescribeTable
pub fn describe_table(&self) -> DescribeTable
Constructs a fluent builder for the DescribeTable
operation.
This operation supports pagination; See into_paginator()
.
- The fluent builder is configurable:
cluster_identifier(impl Into<String>)
/set_cluster_identifier(Option<String>)
:The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
secret_arn(impl Into<String>)
/set_secret_arn(Option<String>)
:The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using Secrets Manager.
db_user(impl Into<String>)
/set_db_user(Option<String>)
:The database user name. This parameter is required when connecting to a cluster and authenticating using temporary credentials.
database(impl Into<String>)
/set_database(Option<String>)
:The name of the database that contains the tables to be described. If
ConnectedDatabase
is not specified, this is also the database to connect to with your authentication credentials.connected_database(impl Into<String>)
/set_connected_database(Option<String>)
:A database name. The connected database is specified when you connect with your authentication credentials.
schema(impl Into<String>)
/set_schema(Option<String>)
:The schema that contains the table. If no schema is specified, then matching tables for all schemas are returned.
table(impl Into<String>)
/set_table(Option<String>)
: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
next_token(impl Into<String>)
/set_next_token(Option<String>)
: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.
max_results(i32)
/set_max_results(i32)
: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.workgroup_name(impl Into<String>)
/set_workgroup_name(Option<String>)
:The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
- On success, responds with
DescribeTableOutput
with field(s):table_name(Option<String>)
:The table name.
column_list(Option<Vec<ColumnMetadata>>)
:A list of columns in the table.
next_token(Option<String>)
: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.
- On failure, responds with
SdkError<DescribeTableError>
sourcepub fn execute_statement(&self) -> ExecuteStatement
pub fn execute_statement(&self) -> ExecuteStatement
Constructs a fluent builder for the ExecuteStatement
operation.
- The fluent builder is configurable:
sql(impl Into<String>)
/set_sql(Option<String>)
:The SQL statement text to run.
cluster_identifier(impl Into<String>)
/set_cluster_identifier(Option<String>)
:The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
secret_arn(impl Into<String>)
/set_secret_arn(Option<String>)
:The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using Secrets Manager.
db_user(impl Into<String>)
/set_db_user(Option<String>)
:The database user name. This parameter is required when connecting to a cluster and authenticating using temporary credentials.
database(impl Into<String>)
/set_database(Option<String>)
:The name of the database. This parameter is required when authenticating using either Secrets Manager or temporary credentials.
with_event(bool)
/set_with_event(Option<bool>)
:A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
statement_name(impl Into<String>)
/set_statement_name(Option<String>)
:The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
parameters(Vec<SqlParameter>)
/set_parameters(Option<Vec<SqlParameter>>)
:The parameters for the SQL statement.
workgroup_name(impl Into<String>)
/set_workgroup_name(Option<String>)
:The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
client_token(impl Into<String>)
/set_client_token(Option<String>)
:A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
- On success, responds with
ExecuteStatementOutput
with field(s):id(Option<String>)
:The identifier of the SQL statement whose results are to be fetched. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API.
created_at(Option<DateTime>)
:The date and time (UTC) the statement was created.
cluster_identifier(Option<String>)
:The cluster identifier. This element is not returned when connecting to a serverless workgroup.
db_user(Option<String>)
:The database user name.
database(Option<String>)
:The name of the database.
secret_arn(Option<String>)
:The name or ARN of the secret that enables access to the database.
workgroup_name(Option<String>)
:The serverless workgroup name. This element is not returned when connecting to a provisioned cluster.
- On failure, responds with
SdkError<ExecuteStatementError>
sourcepub fn get_statement_result(&self) -> GetStatementResult
pub fn get_statement_result(&self) -> GetStatementResult
Constructs a fluent builder for the GetStatementResult
operation.
This operation supports pagination; See into_paginator()
.
- The fluent builder is configurable:
id(impl Into<String>)
/set_id(Option<String>)
:The identifier of the SQL statement whose results are to be fetched. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. A suffix indicates then number of the SQL statement. For example,
d9b6c0c9-0747-4bf4-b142-e8883122f766:2
has a suffix of:2
that indicates the second SQL statement of a batch query. This identifier is returned byBatchExecuteStatment
,ExecuteStatment
, andListStatements
.next_token(impl Into<String>)
/set_next_token(Option<String>)
: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.
- On success, responds with
GetStatementResultOutput
with field(s):records(Option<Vec<Vec<Field>>>)
:The results of the SQL statement.
column_metadata(Option<Vec<ColumnMetadata>>)
:The properties (metadata) of a column.
total_num_rows(i64)
:The total number of rows in the result set returned from a query. You can use this number to estimate the number of calls to the
GetStatementResult
operation needed to page through the results.next_token(Option<String>)
: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.
- On failure, responds with
SdkError<GetStatementResultError>
sourcepub fn list_databases(&self) -> ListDatabases
pub fn list_databases(&self) -> ListDatabases
Constructs a fluent builder for the ListDatabases
operation.
This operation supports pagination; See into_paginator()
.
- The fluent builder is configurable:
cluster_identifier(impl Into<String>)
/set_cluster_identifier(Option<String>)
:The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
database(impl Into<String>)
/set_database(Option<String>)
:The name of the database. This parameter is required when authenticating using either Secrets Manager or temporary credentials.
secret_arn(impl Into<String>)
/set_secret_arn(Option<String>)
:The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using Secrets Manager.
db_user(impl Into<String>)
/set_db_user(Option<String>)
:The database user name. This parameter is required when connecting to a cluster and authenticating using temporary credentials.
next_token(impl Into<String>)
/set_next_token(Option<String>)
: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.
max_results(i32)
/set_max_results(i32)
:The maximum number of databases to return in the response. If more databases exist than fit in one response, then
NextToken
is returned to page through the results.workgroup_name(impl Into<String>)
/set_workgroup_name(Option<String>)
:The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
- On success, responds with
ListDatabasesOutput
with field(s):databases(Option<Vec<String>>)
:The names of databases.
next_token(Option<String>)
: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.
- On failure, responds with
SdkError<ListDatabasesError>
sourcepub fn list_schemas(&self) -> ListSchemas
pub fn list_schemas(&self) -> ListSchemas
Constructs a fluent builder for the ListSchemas
operation.
This operation supports pagination; See into_paginator()
.
- The fluent builder is configurable:
cluster_identifier(impl Into<String>)
/set_cluster_identifier(Option<String>)
:The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
secret_arn(impl Into<String>)
/set_secret_arn(Option<String>)
:The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using Secrets Manager.
db_user(impl Into<String>)
/set_db_user(Option<String>)
:The database user name. This parameter is required when connecting to a cluster and authenticating using temporary credentials.
database(impl Into<String>)
/set_database(Option<String>)
:The name of the database that contains the schemas to list. If
ConnectedDatabase
is not specified, this is also the database to connect to with your authentication credentials.connected_database(impl Into<String>)
/set_connected_database(Option<String>)
:A database name. The connected database is specified when you connect with your authentication credentials.
schema_pattern(impl Into<String>)
/set_schema_pattern(Option<String>)
:A pattern to filter results by schema name. Within a schema pattern, “%” means match any substring of 0 or more characters and “_” means match any one character. Only schema name entries matching the search pattern are returned.
next_token(impl Into<String>)
/set_next_token(Option<String>)
: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.
max_results(i32)
/set_max_results(i32)
:The maximum number of schemas to return in the response. If more schemas exist than fit in one response, then
NextToken
is returned to page through the results.workgroup_name(impl Into<String>)
/set_workgroup_name(Option<String>)
:The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
- On success, responds with
ListSchemasOutput
with field(s):schemas(Option<Vec<String>>)
:The schemas that match the request pattern.
next_token(Option<String>)
: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.
- On failure, responds with
SdkError<ListSchemasError>
sourcepub fn list_statements(&self) -> ListStatements
pub fn list_statements(&self) -> ListStatements
Constructs a fluent builder for the ListStatements
operation.
This operation supports pagination; See into_paginator()
.
- The fluent builder is configurable:
next_token(impl Into<String>)
/set_next_token(Option<String>)
: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.
max_results(i32)
/set_max_results(i32)
:The maximum number of SQL statements to return in the response. If more SQL statements exist than fit in one response, then
NextToken
is returned to page through the results.statement_name(impl Into<String>)
/set_statement_name(Option<String>)
:The name of the SQL statement specified as input to
BatchExecuteStatement
orExecuteStatement
to identify the query. You can list multiple statements by providing a prefix that matches the beginning of the statement name. For example, to list myStatement1, myStatement2, myStatement3, and so on, then provide the a value ofmyStatement
. Data API does a case-sensitive match of SQL statement names to the prefix value you provide.status(StatusString)
/set_status(Option<StatusString>)
:The status of the SQL statement to list. Status values are defined as follows:
-
ABORTED - The query run was stopped by the user.
-
ALL - A status value that includes all query statuses. This value can be used to filter results.
-
FAILED - The query run failed.
-
FINISHED - The query has finished running.
-
PICKED - The query has been chosen to be run.
-
STARTED - The query run has started.
-
SUBMITTED - The query was submitted, but not yet processed.
-
role_level(bool)
/set_role_level(Option<bool>)
:A value that filters which statements to return in the response. If true, all statements run by the caller’s IAM role are returned. If false, only statements run by the caller’s IAM role in the current IAM session are returned. The default is true.
- On success, responds with
ListStatementsOutput
with field(s):statements(Option<Vec<StatementData>>)
:The SQL statements.
next_token(Option<String>)
: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.
- On failure, responds with
SdkError<ListStatementsError>
sourcepub fn list_tables(&self) -> ListTables
pub fn list_tables(&self) -> ListTables
Constructs a fluent builder for the ListTables
operation.
This operation supports pagination; See into_paginator()
.
- The fluent builder is configurable:
cluster_identifier(impl Into<String>)
/set_cluster_identifier(Option<String>)
:The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
secret_arn(impl Into<String>)
/set_secret_arn(Option<String>)
:The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using Secrets Manager.
db_user(impl Into<String>)
/set_db_user(Option<String>)
:The database user name. This parameter is required when connecting to a cluster and authenticating using temporary credentials.
database(impl Into<String>)
/set_database(Option<String>)
:The name of the database that contains the tables to list. If
ConnectedDatabase
is not specified, this is also the database to connect to with your authentication credentials.connected_database(impl Into<String>)
/set_connected_database(Option<String>)
:A database name. The connected database is specified when you connect with your authentication credentials.
schema_pattern(impl Into<String>)
/set_schema_pattern(Option<String>)
:A pattern to filter results by schema name. Within a schema pattern, “%” means match any substring of 0 or more characters and “_” means match any one character. Only schema name entries matching the search pattern are returned. If
SchemaPattern
is not specified, then all tables that matchTablePattern
are returned. If neitherSchemaPattern
orTablePattern
are specified, then all tables are returned.table_pattern(impl Into<String>)
/set_table_pattern(Option<String>)
:A pattern to filter results by table name. Within a table pattern, “%” means match any substring of 0 or more characters and “_” means match any one character. Only table name entries matching the search pattern are returned. If
TablePattern
is not specified, then all tables that matchSchemaPattern
are returned. If neitherSchemaPattern
orTablePattern
are specified, then all tables are returned.next_token(impl Into<String>)
/set_next_token(Option<String>)
: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.
max_results(i32)
/set_max_results(i32)
: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.workgroup_name(impl Into<String>)
/set_workgroup_name(Option<String>)
:The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
- On success, responds with
ListTablesOutput
with field(s):tables(Option<Vec<TableMember>>)
:The tables that match the request pattern.
next_token(Option<String>)
: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.
- On failure, responds with
SdkError<ListTablesError>
source§impl Client
impl Client
sourcepub fn new(sdk_config: &SdkConfig) -> Self
pub fn new(sdk_config: &SdkConfig) -> Self
Creates a new client from an SDK Config.
Panics
- This method will panic if the
sdk_config
is missing an async sleep implementation. If you experience this panic, set thesleep_impl
on the Config passed into this function to fix it. - This method will panic if the
sdk_config
is missing an HTTP connector. If you experience this panic, set thehttp_connector
on the Config passed into this function to fix it.
sourcepub fn from_conf(conf: Config) -> Self
pub fn from_conf(conf: Config) -> Self
Creates a new client from the service Config
.
Panics
- This method will panic if the
conf
is missing an async sleep implementation. If you experience this panic, set thesleep_impl
on the Config passed into this function to fix it. - This method will panic if the
conf
is missing an HTTP connector. If you experience this panic, set thehttp_connector
on the Config passed into this function to fix it.