Class: Aws::APIGateway::Types::MethodSnapshot

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

Overview

Represents a summary of a Method resource, given a particular date and time.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#api_key_requiredBoolean

Specifies whether the method requires a valid ApiKey.

Returns:

  • (Boolean)


5354
5355
5356
5357
5358
5359
# File 'lib/aws-sdk-apigateway/types.rb', line 5354

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

#authorization_typeString

The method’s authorization type. Valid values are ‘NONE` for open access, `AWS_IAM` for using AWS IAM permissions, `CUSTOM` for using a custom authorizer, or `COGNITO_USER_POOLS` for using a Cognito user pool.

Returns:

  • (String)


5354
5355
5356
5357
5358
5359
# File 'lib/aws-sdk-apigateway/types.rb', line 5354

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