Skip to content

Get Ml Input Channel

cleanroomsml_get_ml_input_channel R Documentation

Returns information about an ML input channel

Description

Returns information about an ML input channel.

Usage

cleanroomsml_get_ml_input_channel(mlInputChannelArn,
  membershipIdentifier)

Arguments

mlInputChannelArn

[required] The Amazon Resource Name (ARN) of the ML input channel that you want to get.

membershipIdentifier

[required] The membership ID of the membership that contains the ML input channel that you want to get.

Value

A list with the following syntax:

list(
  createTime = as.POSIXct(
    "2015-01-01"
  ),
  updateTime = as.POSIXct(
    "2015-01-01"
  ),
  membershipIdentifier = "string",
  collaborationIdentifier = "string",
  inputChannel = list(
    dataSource = list(
      protectedQueryInputParameters = list(
        sqlParameters = list(
          queryString = "string",
          analysisTemplateArn = "string",
          parameters = list(
            "string"
          )
        ),
        computeConfiguration = list(
          worker = list(
            type = "CR.1X"|"CR.4X",
            number = 123
          )
        )
      )
    ),
    roleArn = "string"
  ),
  protectedQueryIdentifier = "string",
  mlInputChannelArn = "string",
  name = "string",
  configuredModelAlgorithmAssociations = list(
    "string"
  ),
  status = "CREATE_PENDING"|"CREATE_IN_PROGRESS"|"CREATE_FAILED"|"ACTIVE"|"DELETE_PENDING"|"DELETE_IN_PROGRESS"|"DELETE_FAILED"|"INACTIVE",
  statusDetails = list(
    statusCode = "string",
    message = "string"
  ),
  retentionInDays = 123,
  numberOfRecords = 123,
  numberOfFiles = 123.0,
  sizeInGb = 123.0,
  description = "string",
  kmsKeyArn = "string",
  tags = list(
    "string"
  )
)

Request syntax

svc$get_ml_input_channel(
  mlInputChannelArn = "string",
  membershipIdentifier = "string"
)