AddEndpointOptions

class aws_cdk.aws_bedrock_agentcore_alpha.AddEndpointOptions(*, description=None, version=None)

Bases: object

(experimental) Options for adding an endpoint to the runtime.

Parameters:
  • description (Optional[str]) – (experimental) Description for the endpoint, Must be between 1 and 1200 characters. Default: - No description

  • version (Optional[str]) – (experimental) Override the runtime version for this endpoint. Default: 1

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_bedrock_agentcore_alpha as bedrock_agentcore_alpha

add_endpoint_options = bedrock_agentcore_alpha.AddEndpointOptions(
    description="description",
    version="version"
)

Attributes

description

(experimental) Description for the endpoint, Must be between 1 and 1200 characters.

Default:
  • No description

Stability:

experimental

version

(experimental) Override the runtime version for this endpoint.

Default:

1

Stability:

experimental