Class: Aws::IoTManagedIntegrations::Types::OAuthConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iotmanagedintegrations/types.rb

Overview

Configuration details for OAuth authentication with a third-party service.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#auth_urlString

The authorization URL for the OAuth service, where users are directed to authenticate and authorize access.

Returns:

  • (String)


3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
# File 'lib/aws-sdk-iotmanagedintegrations/types.rb', line 3742

class OAuthConfig < Struct.new(
  :auth_url,
  :token_url,
  :scope,
  :token_endpoint_authentication_scheme,
  :o_auth_complete_redirect_url,
  :proactive_refresh_token_renewal)
  SENSITIVE = []
  include Aws::Structure
end

#o_auth_complete_redirect_urlString

The URL where users are redirected after completing the OAuth authorization process.

Returns:

  • (String)


3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
# File 'lib/aws-sdk-iotmanagedintegrations/types.rb', line 3742

class OAuthConfig < Struct.new(
  :auth_url,
  :token_url,
  :scope,
  :token_endpoint_authentication_scheme,
  :o_auth_complete_redirect_url,
  :proactive_refresh_token_renewal)
  SENSITIVE = []
  include Aws::Structure
end

#proactive_refresh_token_renewalTypes::ProactiveRefreshTokenRenewal

Configuration for proactively refreshing OAuth tokens before they expire.



3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
# File 'lib/aws-sdk-iotmanagedintegrations/types.rb', line 3742

class OAuthConfig < Struct.new(
  :auth_url,
  :token_url,
  :scope,
  :token_endpoint_authentication_scheme,
  :o_auth_complete_redirect_url,
  :proactive_refresh_token_renewal)
  SENSITIVE = []
  include Aws::Structure
end

#scopeString

The OAuth scopes requested during authorization, which define the permissions granted to the application.

Returns:

  • (String)


3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
# File 'lib/aws-sdk-iotmanagedintegrations/types.rb', line 3742

class OAuthConfig < Struct.new(
  :auth_url,
  :token_url,
  :scope,
  :token_endpoint_authentication_scheme,
  :o_auth_complete_redirect_url,
  :proactive_refresh_token_renewal)
  SENSITIVE = []
  include Aws::Structure
end

#token_endpoint_authentication_schemeString

The authentication scheme used when requesting tokens from the token endpoint.

Returns:

  • (String)


3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
# File 'lib/aws-sdk-iotmanagedintegrations/types.rb', line 3742

class OAuthConfig < Struct.new(
  :auth_url,
  :token_url,
  :scope,
  :token_endpoint_authentication_scheme,
  :o_auth_complete_redirect_url,
  :proactive_refresh_token_renewal)
  SENSITIVE = []
  include Aws::Structure
end

#token_urlString

The token URL for the OAuth service, where authorization codes are exchanged for access tokens.

Returns:

  • (String)


3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
# File 'lib/aws-sdk-iotmanagedintegrations/types.rb', line 3742

class OAuthConfig < Struct.new(
  :auth_url,
  :token_url,
  :scope,
  :token_endpoint_authentication_scheme,
  :o_auth_complete_redirect_url,
  :proactive_refresh_token_renewal)
  SENSITIVE = []
  include Aws::Structure
end