Class: Aws::CleanRoomsML::Types::InputChannel
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRoomsML::Types::InputChannel
- Defined in:
- gems/aws-sdk-cleanroomsml/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
-
#data_source ⇒ Types::InputChannelDataSource
The data source that is used to create the ML input channel.
-
#role_arn ⇒ String
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.
Instance Attribute Details
#data_source ⇒ Types::InputChannelDataSource
The data source that is used to create the ML input channel.
3421 3422 3423 3424 3425 3426 |
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 3421 class InputChannel < Struct.new( :data_source, :role_arn) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
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.
3421 3422 3423 3424 3425 3426 |
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 3421 class InputChannel < Struct.new( :data_source, :role_arn) SENSITIVE = [] include Aws::Structure end |