DataSource
public struct DataSource : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
A set of alternate data source parameters that you want to share for the credentials stored with this data source. The credentials are applied in tandem with the data source parameters when you copy a data source by using a create or update request. The API operation compares the DataSourceParameters structure that’s in the request with the structures in the AlternateDataSourceParameters allowlist. If the structures are an exact match, the request is allowed to use the credentials from this existing data source. If the AlternateDataSourceParameters list is null, the Credentials originally used with this DataSourceParameters are automatically allowed.
Declaration
Swift
public let alternateDataSourceParameters: [DataSourceParameters]?
-
The Amazon Resource Name (ARN) of the data source.
Declaration
Swift
public let arn: String?
-
The time that this data source was created.
Declaration
Swift
public let createdTime: TimeStamp?
-
The ID of the data source. This ID is unique per AWS Region for each AWS account.
Declaration
Swift
public let dataSourceId: String?
-
The parameters that Amazon QuickSight uses to connect to your underlying source. This is a variant type structure. For this structure to be valid, only one of the attributes can be non-null.
Declaration
Swift
public let dataSourceParameters: DataSourceParameters?
-
Error information from the last update or the creation of the data source.
Declaration
Swift
public let errorInfo: DataSourceErrorInfo?
-
The last time that this data source was updated.
Declaration
Swift
public let lastUpdatedTime: TimeStamp?
-
A display name for the data source.
Declaration
Swift
public let name: String?
-
Secure Socket Layer (SSL) properties that apply when QuickSight connects to your underlying source.
Declaration
Swift
public let sslProperties: SslProperties?
-
The HTTP status of the request.
Declaration
Swift
public let status: ResourceStatus?
-
The type of the data source. This type indicates which database engine the data source connects to.
Declaration
Swift
public let type: DataSourceType?
-
The VPC connection information. You need to use this parameter only when you want QuickSight to use a VPC connection when connecting to your underlying source.
Declaration
Swift
public let vpcConnectionProperties: VpcConnectionProperties?
-
init(alternateDataSourceParameters:arn:createdTime:dataSourceId:dataSourceParameters:errorInfo:lastUpdatedTime:name:sslProperties:status:type:vpcConnectionProperties:)
Undocumented
Declaration
Swift
public init(alternateDataSourceParameters: [DataSourceParameters]? = nil, arn: String? = nil, createdTime: TimeStamp? = nil, dataSourceId: String? = nil, dataSourceParameters: DataSourceParameters? = nil, errorInfo: DataSourceErrorInfo? = nil, lastUpdatedTime: TimeStamp? = nil, name: String? = nil, sslProperties: SslProperties? = nil, status: ResourceStatus? = nil, type: DataSourceType? = nil, vpcConnectionProperties: VpcConnectionProperties? = nil)