Class: Aws::SecurityAgent::Types::Authentication

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#provider_typeString

The type of authentication provider. Valid values include SECRETS_MANAGER, AWS_LAMBDA, AWS_IAM_ROLE, and AWS_INTERNAL.

Returns:

  • (String)


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

#valueString

The authentication value, such as a secret ARN, Lambda function ARN, or IAM role ARN, depending on the provider type.

Returns:

  • (String)


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