GoogleAnalyticsConnectorProfileCredentials
public struct GoogleAnalyticsConnectorProfileCredentials : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The credentials used to access protected Google Analytics resources.
Declaration
Swift
public let accessToken: String?
-
The identifier for the desired client.
Declaration
Swift
public let clientId: String
-
The client secret used by the oauth client to authenticate to the authorization server.
Declaration
Swift
public let clientSecret: String
-
The oauth requirement needed to request security tokens from the connector endpoint.
Declaration
Swift
public let oAuthRequest: ConnectorOAuthRequest?
-
The credentials used to acquire new access tokens. This is required only for OAuth2 access tokens, and is not required for OAuth1 access tokens.
Declaration
Swift
public let refreshToken: String?
-
Undocumented
Declaration
Swift
public init(accessToken: String? = nil, clientId: String, clientSecret: String, oAuthRequest: ConnectorOAuthRequest? = nil, refreshToken: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws