Class: Aws::ElasticsearchService::Types::CognitoOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::CognitoOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Options to specify the Cognito user and identity pools for Kibana authentication. For more information, see [Amazon Cognito Authentication for Kibana].
[1]: docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-cognito-auth.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Specifies the option to enable Cognito for Kibana authentication.
-
#identity_pool_id ⇒ String
Specifies the Cognito identity pool ID for Kibana authentication.
-
#role_arn ⇒ String
Specifies the role ARN that provides Elasticsearch permissions for accessing Cognito resources.
-
#user_pool_id ⇒ String
Specifies the Cognito user pool ID for Kibana authentication.
Instance Attribute Details
#enabled ⇒ Boolean
Specifies the option to enable Cognito for Kibana authentication.
692 693 694 695 696 697 698 699 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 692 class CognitoOptions < Struct.new( :enabled, :user_pool_id, :identity_pool_id, :role_arn) SENSITIVE = [] include Aws::Structure end |
#identity_pool_id ⇒ String
Specifies the Cognito identity pool ID for Kibana authentication.
692 693 694 695 696 697 698 699 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 692 class CognitoOptions < Struct.new( :enabled, :user_pool_id, :identity_pool_id, :role_arn) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
Specifies the role ARN that provides Elasticsearch permissions for accessing Cognito resources.
692 693 694 695 696 697 698 699 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 692 class CognitoOptions < Struct.new( :enabled, :user_pool_id, :identity_pool_id, :role_arn) SENSITIVE = [] include Aws::Structure end |
#user_pool_id ⇒ String
Specifies the Cognito user pool ID for Kibana authentication.
692 693 694 695 696 697 698 699 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 692 class CognitoOptions < Struct.new( :enabled, :user_pool_id, :identity_pool_id, :role_arn) SENSITIVE = [] include Aws::Structure end |