Class: Aws::ConnectHealth::Types::FHIRServer

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connecthealth/lib/aws-sdk-connecthealth/types.rb

Overview

FHIR server configuration for input data source

Constant Summary collapse

SENSITIVE =
[:oauth_token]

Instance Attribute Summary collapse

Instance Attribute Details

#fhir_endpointString

FHIR server endpoint URL for accessing patient data.

Returns:

  • (String)


465
466
467
468
469
470
# File 'gems/aws-sdk-connecthealth/lib/aws-sdk-connecthealth/types.rb', line 465

class FHIRServer < Struct.new(
  :fhir_endpoint,
  :oauth_token)
  SENSITIVE = [:oauth_token]
  include Aws::Structure
end

#oauth_tokenString

OAuth token for authenticating with the FHIR server.

Returns:

  • (String)


465
466
467
468
469
470
# File 'gems/aws-sdk-connecthealth/lib/aws-sdk-connecthealth/types.rb', line 465

class FHIRServer < Struct.new(
  :fhir_endpoint,
  :oauth_token)
  SENSITIVE = [:oauth_token]
  include Aws::Structure
end