Skip to content

Get Marketplace Model Endpoint

bedrock_get_marketplace_model_endpoint R Documentation

Retrieves details about a specific endpoint for a model from Amazon Bedrock Marketplace

Description

Retrieves details about a specific endpoint for a model from Amazon Bedrock Marketplace.

Usage

bedrock_get_marketplace_model_endpoint(endpointArn)

Arguments

endpointArn

[required] The Amazon Resource Name (ARN) of the endpoint you want to get information about.

Value

A list with the following syntax:

list(
  marketplaceModelEndpoint = list(
    endpointArn = "string",
    modelSourceIdentifier = "string",
    status = "REGISTERED"|"INCOMPATIBLE_ENDPOINT",
    statusMessage = "string",
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    updatedAt = as.POSIXct(
      "2015-01-01"
    ),
    endpointConfig = list(
      sageMaker = list(
        initialInstanceCount = 123,
        instanceType = "string",
        executionRole = "string",
        kmsEncryptionKey = "string",
        vpc = list(
          subnetIds = list(
            "string"
          ),
          securityGroupIds = list(
            "string"
          )
        )
      )
    ),
    endpointStatus = "string",
    endpointStatusMessage = "string"
  )
)

Request syntax

svc$get_marketplace_model_endpoint(
  endpointArn = "string"
)