Class: Aws::SecurityAgent::Types::Authentication
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityAgent::Types::Authentication
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityagent/types.rb
Overview
The authentication configuration for an actor, specifying the provider type and credentials.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#provider_type ⇒ String
The type of authentication provider.
-
#value ⇒ String
The authentication value, such as a secret ARN, Lambda function ARN, or IAM role ARN, depending on the provider type.
Instance Attribute Details
#provider_type ⇒ String
The type of authentication provider. Valid values include SECRETS_MANAGER, AWS_LAMBDA, AWS_IAM_ROLE, and AWS_INTERNAL.
393 394 395 396 397 398 |
# File 'lib/aws-sdk-securityagent/types.rb', line 393 class Authentication < Struct.new( :provider_type, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The authentication value, such as a secret ARN, Lambda function ARN, or IAM role ARN, depending on the provider type.
393 394 395 396 397 398 |
# File 'lib/aws-sdk-securityagent/types.rb', line 393 class Authentication < Struct.new( :provider_type, :value) SENSITIVE = [] include Aws::Structure end |