Class: Aws::AppSync::Types::HttpDataSourceConfig

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

Overview

Describes an HTTP data source configuration.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#authorization_configTypes::AuthorizationConfig

The authorization configuration in case the HTTP endpoint requires authorization.



2990
2991
2992
2993
2994
2995
# File 'lib/aws-sdk-appsync/types.rb', line 2990

class HttpDataSourceConfig < Struct.new(
  :endpoint,
  :authorization_config)
  SENSITIVE = []
  include Aws::Structure
end

#endpointString

The HTTP URL endpoint. You can specify either the domain name or IP, and port combination, and the URL scheme must be HTTP or HTTPS. If you don’t specify the port, AppSync uses the default port 80 for the HTTP endpoint and port 443 for HTTPS endpoints.

Returns:

  • (String)


2990
2991
2992
2993
2994
2995
# File 'lib/aws-sdk-appsync/types.rb', line 2990

class HttpDataSourceConfig < Struct.new(
  :endpoint,
  :authorization_config)
  SENSITIVE = []
  include Aws::Structure
end