Interface CreateMarketplaceModelEndpointRequest.Builder

    • Method Detail

      • modelSourceIdentifier

        CreateMarketplaceModelEndpointRequest.Builder modelSourceIdentifier​(String modelSourceIdentifier)

        The ARN of the model from Amazon Bedrock Marketplace that you want to deploy to the endpoint.

        Parameters:
        modelSourceIdentifier - The ARN of the model from Amazon Bedrock Marketplace that you want to deploy to the endpoint.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • endpointConfig

        CreateMarketplaceModelEndpointRequest.Builder endpointConfig​(EndpointConfig endpointConfig)

        The configuration for the endpoint, including the number and type of instances to use.

        Parameters:
        endpointConfig - The configuration for the endpoint, including the number and type of instances to use.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • acceptEula

        CreateMarketplaceModelEndpointRequest.Builder acceptEula​(Boolean acceptEula)

        Indicates whether you accept the end-user license agreement (EULA) for the model. Set to true to accept the EULA.

        Parameters:
        acceptEula - Indicates whether you accept the end-user license agreement (EULA) for the model. Set to true to accept the EULA.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • endpointName

        CreateMarketplaceModelEndpointRequest.Builder endpointName​(String endpointName)

        The name of the endpoint. This name must be unique within your Amazon Web Services account and region.

        Parameters:
        endpointName - The name of the endpoint. This name must be unique within your Amazon Web Services account and region.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • clientRequestToken

        CreateMarketplaceModelEndpointRequest.Builder clientRequestToken​(String clientRequestToken)

        A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This token is listed as not required because Amazon Web Services SDKs automatically generate it for you and set this parameter. If you're not using the Amazon Web Services SDK or the CLI, you must provide this token or the action will fail.

        Parameters:
        clientRequestToken - A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This token is listed as not required because Amazon Web Services SDKs automatically generate it for you and set this parameter. If you're not using the Amazon Web Services SDK or the CLI, you must provide this token or the action will fail.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        CreateMarketplaceModelEndpointRequest.Builder tags​(Collection<Tag> tags)

        An array of key-value pairs to apply to the underlying Amazon SageMaker endpoint. You can use these tags to organize and identify your Amazon Web Services resources.

        Parameters:
        tags - An array of key-value pairs to apply to the underlying Amazon SageMaker endpoint. You can use these tags to organize and identify your Amazon Web Services resources.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        CreateMarketplaceModelEndpointRequest.Builder tags​(Tag... tags)

        An array of key-value pairs to apply to the underlying Amazon SageMaker endpoint. You can use these tags to organize and identify your Amazon Web Services resources.

        Parameters:
        tags - An array of key-value pairs to apply to the underlying Amazon SageMaker endpoint. You can use these tags to organize and identify your Amazon Web Services resources.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        CreateMarketplaceModelEndpointRequest.Builder tags​(Consumer<Tag.Builder>... tags)

        An array of key-value pairs to apply to the underlying Amazon SageMaker endpoint. You can use these tags to organize and identify your Amazon Web Services resources.

        This is a convenience method that creates an instance of the Tag.Builder avoiding the need to create one manually via Tag.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #tags(List).

        Parameters:
        tags - a consumer that will call methods on Tag.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #tags(java.util.Collection)