Class: Aws::QuickSight::Types::AssetBundleImportJobDataSourceCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::AssetBundleImportJobDataSourceCredentials
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-quicksight/types.rb
Overview
The login credentials to use to import a data source resource.
Constant Summary collapse
- SENSITIVE =
[:credential_pair]
Instance Attribute Summary collapse
-
#credential_pair ⇒ Types::AssetBundleImportJobDataSourceCredentialPair
A username and password credential pair to be used to create the imported data source.
-
#secret_arn ⇒ String
The ARN of the Secrets Manager secret that’s used to create the imported data source.
Instance Attribute Details
#credential_pair ⇒ Types::AssetBundleImportJobDataSourceCredentialPair
A username and password credential pair to be used to create the imported data source. Keep this field blank if you are using a Secrets Manager secret to provide credentials.
1594 1595 1596 1597 1598 1599 |
# File 'lib/aws-sdk-quicksight/types.rb', line 1594 class AssetBundleImportJobDataSourceCredentials < Struct.new( :credential_pair, :secret_arn) SENSITIVE = [:credential_pair] include Aws::Structure end |
#secret_arn ⇒ String
The ARN of the Secrets Manager secret that’s used to create the imported data source. Keep this field blank, unless you are using a secret in place of a credential pair.
1594 1595 1596 1597 1598 1599 |
# File 'lib/aws-sdk-quicksight/types.rb', line 1594 class AssetBundleImportJobDataSourceCredentials < Struct.new( :credential_pair, :secret_arn) SENSITIVE = [:credential_pair] include Aws::Structure end |