Class: Aws::ApiGatewayV2::Types::Authorization
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApiGatewayV2::Types::Authorization
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigatewayv2/types.rb
Overview
Represents an authorization configuration for a portal.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cognito_config ⇒ Types::CognitoConfig
The Amazon Cognito configuration.
-
#none ⇒ Types::None
Provide no authorization for your portal.
Instance Attribute Details
#cognito_config ⇒ Types::CognitoConfig
The Amazon Cognito configuration.
257 258 259 260 261 262 |
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 257 class Authorization < Struct.new( :cognito_config, :none) SENSITIVE = [] include Aws::Structure end |
#none ⇒ Types::None
Provide no authorization for your portal. This makes your portal publicly accesible on the web.
257 258 259 260 261 262 |
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 257 class Authorization < Struct.new( :cognito_config, :none) SENSITIVE = [] include Aws::Structure end |