Class: Aws::APIGateway::Types::MethodSnapshot
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::MethodSnapshot
- Defined in:
- gems/aws-sdk-apigateway/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
-
#api_key_required ⇒ Boolean
Specifies whether the method requires a valid ApiKey.
-
#authorization_type ⇒ String
The method's authorization type.
Instance Attribute Details
#api_key_required ⇒ Boolean
Specifies whether the method requires a valid ApiKey.
3930 3931 3932 3933 3934 3935 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 3930 class MethodSnapshot < Struct.new( :authorization_type, :api_key_required) SENSITIVE = [] include Aws::Structure end |
#authorization_type ⇒ String
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.
3930 3931 3932 3933 3934 3935 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 3930 class MethodSnapshot < Struct.new( :authorization_type, :api_key_required) SENSITIVE = [] include Aws::Structure end |