Class: Aws::QuickSight::Types::OneDriveParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::OneDriveParameters
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
The connection parameters for an OneDrive data source. Provide these
parameters in the DataSourceParameters object when you create or
update a data source that uses OneDrive.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auth_type ⇒ String
The authentication type for the OneDrive data source.
-
#client_id ⇒ String
The client ID for the OneDrive data source.
-
#tenant_id ⇒ String
The tenant ID for the OneDrive data source.
Instance Attribute Details
#auth_type ⇒ String
The authentication type for the OneDrive data source. Valid values include:
TWO_LEGGED_OAUTH– Server-to-server authentication using client credentials that do not require user interaction.THREE_LEGGED_OAUTH– Interactive OAuth that requires user consent.
31754 31755 31756 31757 31758 31759 31760 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 31754 class OneDriveParameters < Struct.new( :tenant_id, :client_id, :auth_type) SENSITIVE = [] include Aws::Structure end |
#client_id ⇒ String
The client ID for the OneDrive data source.
31754 31755 31756 31757 31758 31759 31760 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 31754 class OneDriveParameters < Struct.new( :tenant_id, :client_id, :auth_type) SENSITIVE = [] include Aws::Structure end |
#tenant_id ⇒ String
The tenant ID for the OneDrive data source.
31754 31755 31756 31757 31758 31759 31760 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 31754 class OneDriveParameters < Struct.new( :tenant_id, :client_id, :auth_type) SENSITIVE = [] include Aws::Structure end |