Class: Aws::AppSync::Types::AuthorizationConfig

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

Overview

The authorization configuration in case the HTTP endpoint requires authorization.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#authorization_typeString

The authorization type that the HTTP endpoint requires.

  • AWS_IAM: The authorization type is Signature Version 4 (SigV4).

^

Returns:

  • (String)


489
490
491
492
493
494
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 489

class AuthorizationConfig < Struct.new(
  :authorization_type,
  :aws_iam_config)
  SENSITIVE = []
  include Aws::Structure
end

#aws_iam_configTypes::AwsIamConfig

The Identity and Access Management (IAM) settings.

Returns:



489
490
491
492
493
494
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 489

class AuthorizationConfig < Struct.new(
  :authorization_type,
  :aws_iam_config)
  SENSITIVE = []
  include Aws::Structure
end