Skip to content

Register Marketplace Model Endpoint

bedrock_register_marketplace_model_endpoint R Documentation

Registers an existing Amazon SageMaker endpoint with Amazon Bedrock Marketplace, allowing it to be used with Amazon Bedrock APIs

Description

Registers an existing Amazon SageMaker endpoint with Amazon Bedrock Marketplace, allowing it to be used with Amazon Bedrock APIs.

Usage

bedrock_register_marketplace_model_endpoint(endpointIdentifier,
  modelSourceIdentifier)

Arguments

endpointIdentifier

[required] The ARN of the Amazon SageMaker endpoint you want to register with Amazon Bedrock Marketplace.

modelSourceIdentifier

[required] The ARN of the model from Amazon Bedrock Marketplace that is deployed on the endpoint.

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$register_marketplace_model_endpoint(
  endpointIdentifier = "string",
  modelSourceIdentifier = "string"
)