Skip to content

List Collaboration Configured Model Algorithm Associations

cleanroomsml_list_collaboration_configured_model_algorithm_associations R Documentation

Returns a list of the configured model algorithm associations in a collaboration

Description

Returns a list of the configured model algorithm associations in a collaboration.

Usage

cleanroomsml_list_collaboration_configured_model_algorithm_associations(
  nextToken, maxResults, collaborationIdentifier)

Arguments

nextToken

The token value retrieved from a previous call to access the next page of results.

maxResults

The maximum size of the results that is returned per call.

collaborationIdentifier

[required] The collaboration ID of the collaboration that contains the configured model algorithm associations that you are interested in.

Value

A list with the following syntax:

list(
  nextToken = "string",
  collaborationConfiguredModelAlgorithmAssociations = list(
    list(
      createTime = as.POSIXct(
        "2015-01-01"
      ),
      updateTime = as.POSIXct(
        "2015-01-01"
      ),
      configuredModelAlgorithmAssociationArn = "string",
      name = "string",
      description = "string",
      membershipIdentifier = "string",
      collaborationIdentifier = "string",
      configuredModelAlgorithmArn = "string",
      creatorAccountId = "string"
    )
  )
)

Request syntax

svc$list_collaboration_configured_model_algorithm_associations(
  nextToken = "string",
  maxResults = 123,
  collaborationIdentifier = "string"
)