Struct aws_sdk_quicksight::types::DataSourceCredentials
source · #[non_exhaustive]pub struct DataSourceCredentials {
pub credential_pair: Option<CredentialPair>,
pub copy_source_arn: Option<String>,
pub secret_arn: Option<String>,
}
Expand description
Data source credentials. This is a variant type structure. For this structure to be valid, only one of the attributes can be non-null.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.credential_pair: Option<CredentialPair>
Credential pair. For more information, see CredentialPair
.
copy_source_arn: Option<String>
The Amazon Resource Name (ARN) of a data source that has the credential pair that you want to use. When CopySourceArn
is not null, the credential pair from the data source in the ARN is used as the credentials for the DataSourceCredentials
structure.
secret_arn: Option<String>
The Amazon Resource Name (ARN) of the secret associated with the data source in Amazon Secrets Manager.
Implementations§
source§impl DataSourceCredentials
impl DataSourceCredentials
sourcepub fn credential_pair(&self) -> Option<&CredentialPair>
pub fn credential_pair(&self) -> Option<&CredentialPair>
Credential pair. For more information, see CredentialPair
.
sourcepub fn copy_source_arn(&self) -> Option<&str>
pub fn copy_source_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of a data source that has the credential pair that you want to use. When CopySourceArn
is not null, the credential pair from the data source in the ARN is used as the credentials for the DataSourceCredentials
structure.
sourcepub fn secret_arn(&self) -> Option<&str>
pub fn secret_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the secret associated with the data source in Amazon Secrets Manager.
source§impl DataSourceCredentials
impl DataSourceCredentials
sourcepub fn builder() -> DataSourceCredentialsBuilder
pub fn builder() -> DataSourceCredentialsBuilder
Creates a new builder-style object to manufacture DataSourceCredentials
.
Trait Implementations§
source§impl Clone for DataSourceCredentials
impl Clone for DataSourceCredentials
source§fn clone(&self) -> DataSourceCredentials
fn clone(&self) -> DataSourceCredentials
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DataSourceCredentials
impl Debug for DataSourceCredentials
source§impl PartialEq for DataSourceCredentials
impl PartialEq for DataSourceCredentials
source§fn eq(&self, other: &DataSourceCredentials) -> bool
fn eq(&self, other: &DataSourceCredentials) -> bool
self
and other
values to be equal, and is used
by ==
.