Class: Aws::OpenSearchService::Types::IAMFederationOptionsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::IAMFederationOptionsInput
- Defined in:
- gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb
Overview
The IAM federation authentication configuration for an Amazon OpenSearch Service domain.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
True to enable IAM federation authentication for a domain.
-
#roles_key ⇒ String
Element of the IAM federation assertion to use for backend roles.
-
#subject_key ⇒ String
Element of the IAM federation assertion to use for the user name.
Instance Attribute Details
#enabled ⇒ Boolean
True to enable IAM federation authentication for a domain.
4503 4504 4505 4506 4507 4508 4509 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 4503 class IAMFederationOptionsInput < Struct.new( :enabled, :subject_key, :roles_key) SENSITIVE = [] include Aws::Structure end |
#roles_key ⇒ String
Element of the IAM federation assertion to use for backend roles.
Default is roles
.
4503 4504 4505 4506 4507 4508 4509 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 4503 class IAMFederationOptionsInput < Struct.new( :enabled, :subject_key, :roles_key) SENSITIVE = [] include Aws::Structure end |
#subject_key ⇒ String
Element of the IAM federation assertion to use for the user name.
Default is sub
.
4503 4504 4505 4506 4507 4508 4509 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 4503 class IAMFederationOptionsInput < Struct.new( :enabled, :subject_key, :roles_key) SENSITIVE = [] include Aws::Structure end |