Struct aws_sdk_quicksight::types::BigQueryParameters
source · #[non_exhaustive]pub struct BigQueryParameters {
pub project_id: String,
pub data_set_region: Option<String>,
}
Expand description
The parameters that are required to connect to a Google BigQuery data source.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.project_id: String
The Google Cloud Platform project ID where your datasource was created.
data_set_region: Option<String>
The storage location where you create a Google BigQuery data source.
Implementations§
source§impl BigQueryParameters
impl BigQueryParameters
sourcepub fn project_id(&self) -> &str
pub fn project_id(&self) -> &str
The Google Cloud Platform project ID where your datasource was created.
sourcepub fn data_set_region(&self) -> Option<&str>
pub fn data_set_region(&self) -> Option<&str>
The storage location where you create a Google BigQuery data source.
source§impl BigQueryParameters
impl BigQueryParameters
sourcepub fn builder() -> BigQueryParametersBuilder
pub fn builder() -> BigQueryParametersBuilder
Creates a new builder-style object to manufacture BigQueryParameters
.
Trait Implementations§
source§impl Clone for BigQueryParameters
impl Clone for BigQueryParameters
source§fn clone(&self) -> BigQueryParameters
fn clone(&self) -> BigQueryParameters
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for BigQueryParameters
impl Debug for BigQueryParameters
source§impl PartialEq for BigQueryParameters
impl PartialEq for BigQueryParameters
source§fn eq(&self, other: &BigQueryParameters) -> bool
fn eq(&self, other: &BigQueryParameters) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BigQueryParameters
Auto Trait Implementations§
impl RefUnwindSafe for BigQueryParameters
impl Send for BigQueryParameters
impl Sync for BigQueryParameters
impl Unpin for BigQueryParameters
impl UnwindSafe for BigQueryParameters
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.