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.
383 384 385 386 387 388 |
# File 'lib/aws-sdk-securityagent/types.rb', line 383 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.
383 384 385 386 387 388 |
# File 'lib/aws-sdk-securityagent/types.rb', line 383 class Authentication < Struct.new( :provider_type, :value) SENSITIVE = [] include Aws::Structure end |