Class: Aws::LexModelsV2::Types::Principal

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb

Overview

The IAM principal that you allowing or denying access to an Amazon Lex action. You must provide a service or an arn, but not both in the same statement. For more information, see AWS JSON policy elements: Principal .

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

The Amazon Resource Name (ARN) of the principal.

Returns:

  • (String)


11424
11425
11426
11427
11428
11429
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 11424

class Principal < Struct.new(
  :service,
  :arn)
  SENSITIVE = []
  include Aws::Structure
end

#serviceString

The name of the Amazon Web Services service that should allowed or denied access to an Amazon Lex action.

Returns:

  • (String)


11424
11425
11426
11427
11428
11429
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 11424

class Principal < Struct.new(
  :service,
  :arn)
  SENSITIVE = []
  include Aws::Structure
end