Class: Aws::CleanRoomsML::Types::InputChannel

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cleanroomsml/types.rb

Overview

Provides information about the data source that is used to create an ML input channel.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#data_sourceTypes::InputChannelDataSource

The data source that is used to create the ML input channel.



3421
3422
3423
3424
3425
3426
# File 'lib/aws-sdk-cleanroomsml/types.rb', line 3421

class InputChannel < Struct.new(
  :data_source,
  :role_arn)
  SENSITIVE = []
  include Aws::Structure
end

#role_arnString

The ARN of the IAM role that Clean Rooms ML can assume to read the data referred to in the ‘dataSource` field the input channel.

Passing a role across AWS accounts is not allowed. If you pass a role that isn’t in your account, you get an ‘AccessDeniedException` error.

Returns:

  • (String)


3421
3422
3423
3424
3425
3426
# File 'lib/aws-sdk-cleanroomsml/types.rb', line 3421

class InputChannel < Struct.new(
  :data_source,
  :role_arn)
  SENSITIVE = []
  include Aws::Structure
end