Class: Aws::QuickSight::Types::AssetBundleImportJobDataSourceCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::AssetBundleImportJobDataSourceCredentials
- Defined in:
- gems/aws-sdk-quicksight/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.
1599 1600 1601 1602 1603 1604 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 1599 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.
1599 1600 1601 1602 1603 1604 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 1599 class AssetBundleImportJobDataSourceCredentials < Struct.new( :credential_pair, :secret_arn) SENSITIVE = [:credential_pair] include Aws::Structure end |