[][src]Struct rusoto_quicksight::UpdateDataSourceRequest

pub struct UpdateDataSourceRequest {
    pub aws_account_id: String,
    pub credentials: Option<DataSourceCredentials>,
    pub data_source_id: String,
    pub data_source_parameters: Option<DataSourceParameters>,
    pub name: String,
    pub ssl_properties: Option<SslProperties>,
    pub vpc_connection_properties: Option<VpcConnectionProperties>,
}

Fields

aws_account_id: String

The AWS account ID.

credentials: Option<DataSourceCredentials>

The credentials that QuickSight that uses to connect to your underlying source. Currently, only credentials based on user name and password are supported.

data_source_id: String

The ID of the data source. This ID is unique per AWS Region for each AWS account.

data_source_parameters: Option<DataSourceParameters>

The parameters that QuickSight uses to connect to your underlying source.

name: String

A display name for the data source.

ssl_properties: Option<SslProperties>

Secure Socket Layer (SSL) properties that apply when QuickSight connects to your underlying source.

vpc_connection_properties: Option<VpcConnectionProperties>

Use this parameter only when you want QuickSight to use a VPC connection when connecting to your underlying source.

Trait Implementations

impl Clone for UpdateDataSourceRequest[src]

impl Debug for UpdateDataSourceRequest[src]

impl Default for UpdateDataSourceRequest[src]

impl PartialEq<UpdateDataSourceRequest> for UpdateDataSourceRequest[src]

impl Serialize for UpdateDataSourceRequest[src]

impl StructuralPartialEq for UpdateDataSourceRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.