Struct aws_sdk_cloudtrail::operation::start_query::StartQueryInput
source · #[non_exhaustive]pub struct StartQueryInput {
pub query_statement: Option<String>,
pub delivery_s3_uri: Option<String>,
pub query_alias: Option<String>,
pub query_parameters: Option<Vec<String>>,
}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.query_statement: Option<String>The SQL code of your query.
delivery_s3_uri: Option<String>The URI for the S3 bucket where CloudTrail delivers the query results.
query_alias: Option<String>The alias that identifies a query template.
query_parameters: Option<Vec<String>>The query parameters for the specified QueryAlias.
Implementations§
source§impl StartQueryInput
impl StartQueryInput
sourcepub fn query_statement(&self) -> Option<&str>
pub fn query_statement(&self) -> Option<&str>
The SQL code of your query.
sourcepub fn delivery_s3_uri(&self) -> Option<&str>
pub fn delivery_s3_uri(&self) -> Option<&str>
The URI for the S3 bucket where CloudTrail delivers the query results.
sourcepub fn query_alias(&self) -> Option<&str>
pub fn query_alias(&self) -> Option<&str>
The alias that identifies a query template.
sourcepub fn query_parameters(&self) -> &[String]
pub fn query_parameters(&self) -> &[String]
The query parameters for the specified QueryAlias.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .query_parameters.is_none().
source§impl StartQueryInput
impl StartQueryInput
sourcepub fn builder() -> StartQueryInputBuilder
pub fn builder() -> StartQueryInputBuilder
Creates a new builder-style object to manufacture StartQueryInput.
Trait Implementations§
source§impl Clone for StartQueryInput
impl Clone for StartQueryInput
source§fn clone(&self) -> StartQueryInput
fn clone(&self) -> StartQueryInput
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 StartQueryInput
impl Debug for StartQueryInput
source§impl PartialEq for StartQueryInput
impl PartialEq for StartQueryInput
source§fn eq(&self, other: &StartQueryInput) -> bool
fn eq(&self, other: &StartQueryInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StartQueryInput
Auto Trait Implementations§
impl Freeze for StartQueryInput
impl RefUnwindSafe for StartQueryInput
impl Send for StartQueryInput
impl Sync for StartQueryInput
impl Unpin for StartQueryInput
impl UnwindSafe for StartQueryInput
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.