aws.bedrock.AgentcoreAgentRuntimeEndpoint
Manages an AWS Bedrock AgentCore Agent Runtime Endpoint. Agent Runtime Endpoints provide a network-accessible interface for interacting with agent runtimes, enabling external systems to communicate with and invoke agent capabilities.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.bedrock.AgentcoreAgentRuntimeEndpoint("example", {
name: "example-endpoint",
agentRuntimeId: exampleAwsBedrockagentcoreAgentRuntime.agentRuntimeId,
description: "Endpoint for agent runtime communication",
});
import pulumi
import pulumi_aws as aws
example = aws.bedrock.AgentcoreAgentRuntimeEndpoint("example",
name="example-endpoint",
agent_runtime_id=example_aws_bedrockagentcore_agent_runtime["agentRuntimeId"],
description="Endpoint for agent runtime communication")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/bedrock"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := bedrock.NewAgentcoreAgentRuntimeEndpoint(ctx, "example", &bedrock.AgentcoreAgentRuntimeEndpointArgs{
Name: pulumi.String("example-endpoint"),
AgentRuntimeId: pulumi.Any(exampleAwsBedrockagentcoreAgentRuntime.AgentRuntimeId),
Description: pulumi.String("Endpoint for agent runtime communication"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Bedrock.AgentcoreAgentRuntimeEndpoint("example", new()
{
Name = "example-endpoint",
AgentRuntimeId = exampleAwsBedrockagentcoreAgentRuntime.AgentRuntimeId,
Description = "Endpoint for agent runtime communication",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.bedrock.AgentcoreAgentRuntimeEndpoint;
import com.pulumi.aws.bedrock.AgentcoreAgentRuntimeEndpointArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new AgentcoreAgentRuntimeEndpoint("example", AgentcoreAgentRuntimeEndpointArgs.builder()
.name("example-endpoint")
.agentRuntimeId(exampleAwsBedrockagentcoreAgentRuntime.agentRuntimeId())
.description("Endpoint for agent runtime communication")
.build());
}
}
resources:
example:
type: aws:bedrock:AgentcoreAgentRuntimeEndpoint
properties:
name: example-endpoint
agentRuntimeId: ${exampleAwsBedrockagentcoreAgentRuntime.agentRuntimeId}
description: Endpoint for agent runtime communication
Create AgentcoreAgentRuntimeEndpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AgentcoreAgentRuntimeEndpoint(name: string, args: AgentcoreAgentRuntimeEndpointArgs, opts?: CustomResourceOptions);@overload
def AgentcoreAgentRuntimeEndpoint(resource_name: str,
args: AgentcoreAgentRuntimeEndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AgentcoreAgentRuntimeEndpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
agent_runtime_id: Optional[str] = None,
agent_runtime_version: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
region: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
timeouts: Optional[AgentcoreAgentRuntimeEndpointTimeoutsArgs] = None)func NewAgentcoreAgentRuntimeEndpoint(ctx *Context, name string, args AgentcoreAgentRuntimeEndpointArgs, opts ...ResourceOption) (*AgentcoreAgentRuntimeEndpoint, error)public AgentcoreAgentRuntimeEndpoint(string name, AgentcoreAgentRuntimeEndpointArgs args, CustomResourceOptions? opts = null)
public AgentcoreAgentRuntimeEndpoint(String name, AgentcoreAgentRuntimeEndpointArgs args)
public AgentcoreAgentRuntimeEndpoint(String name, AgentcoreAgentRuntimeEndpointArgs args, CustomResourceOptions options)
type: aws:bedrock:AgentcoreAgentRuntimeEndpoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AgentcoreAgentRuntimeEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AgentcoreAgentRuntimeEndpointArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AgentcoreAgentRuntimeEndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AgentcoreAgentRuntimeEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AgentcoreAgentRuntimeEndpointArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var agentcoreAgentRuntimeEndpointResource = new Aws.Bedrock.AgentcoreAgentRuntimeEndpoint("agentcoreAgentRuntimeEndpointResource", new()
{
AgentRuntimeId = "string",
AgentRuntimeVersion = "string",
Description = "string",
Name = "string",
Region = "string",
Tags =
{
{ "string", "string" },
},
Timeouts = new Aws.Bedrock.Inputs.AgentcoreAgentRuntimeEndpointTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := bedrock.NewAgentcoreAgentRuntimeEndpoint(ctx, "agentcoreAgentRuntimeEndpointResource", &bedrock.AgentcoreAgentRuntimeEndpointArgs{
AgentRuntimeId: pulumi.String("string"),
AgentRuntimeVersion: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Region: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Timeouts: &bedrock.AgentcoreAgentRuntimeEndpointTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var agentcoreAgentRuntimeEndpointResource = new AgentcoreAgentRuntimeEndpoint("agentcoreAgentRuntimeEndpointResource", AgentcoreAgentRuntimeEndpointArgs.builder()
.agentRuntimeId("string")
.agentRuntimeVersion("string")
.description("string")
.name("string")
.region("string")
.tags(Map.of("string", "string"))
.timeouts(AgentcoreAgentRuntimeEndpointTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
agentcore_agent_runtime_endpoint_resource = aws.bedrock.AgentcoreAgentRuntimeEndpoint("agentcoreAgentRuntimeEndpointResource",
agent_runtime_id="string",
agent_runtime_version="string",
description="string",
name="string",
region="string",
tags={
"string": "string",
},
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const agentcoreAgentRuntimeEndpointResource = new aws.bedrock.AgentcoreAgentRuntimeEndpoint("agentcoreAgentRuntimeEndpointResource", {
agentRuntimeId: "string",
agentRuntimeVersion: "string",
description: "string",
name: "string",
region: "string",
tags: {
string: "string",
},
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: aws:bedrock:AgentcoreAgentRuntimeEndpoint
properties:
agentRuntimeId: string
agentRuntimeVersion: string
description: string
name: string
region: string
tags:
string: string
timeouts:
create: string
delete: string
update: string
AgentcoreAgentRuntimeEndpoint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AgentcoreAgentRuntimeEndpoint resource accepts the following input properties:
- Agent
Runtime stringId ID of the agent runtime this endpoint belongs to.
The following arguments are optional:
- Agent
Runtime stringVersion - Version of the agent runtime to use for this endpoint.
- Description string
- Description of the agent runtime endpoint.
- Name string
- Name of the agent runtime endpoint.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Dictionary<string, string>
- Key-value map of resource tags. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Agentcore
Agent Runtime Endpoint Timeouts
- Agent
Runtime stringId ID of the agent runtime this endpoint belongs to.
The following arguments are optional:
- Agent
Runtime stringVersion - Version of the agent runtime to use for this endpoint.
- Description string
- Description of the agent runtime endpoint.
- Name string
- Name of the agent runtime endpoint.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map[string]string
- Key-value map of resource tags. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Agentcore
Agent Runtime Endpoint Timeouts Args
- agent
Runtime StringId ID of the agent runtime this endpoint belongs to.
The following arguments are optional:
- agent
Runtime StringVersion - Version of the agent runtime to use for this endpoint.
- description String
- Description of the agent runtime endpoint.
- name String
- Name of the agent runtime endpoint.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String,String>
- Key-value map of resource tags. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Agentcore
Agent Runtime Endpoint Timeouts
- agent
Runtime stringId ID of the agent runtime this endpoint belongs to.
The following arguments are optional:
- agent
Runtime stringVersion - Version of the agent runtime to use for this endpoint.
- description string
- Description of the agent runtime endpoint.
- name string
- Name of the agent runtime endpoint.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- {[key: string]: string}
- Key-value map of resource tags. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Agentcore
Agent Runtime Endpoint Timeouts
- agent_
runtime_ strid ID of the agent runtime this endpoint belongs to.
The following arguments are optional:
- agent_
runtime_ strversion - Version of the agent runtime to use for this endpoint.
- description str
- Description of the agent runtime endpoint.
- name str
- Name of the agent runtime endpoint.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Mapping[str, str]
- Key-value map of resource tags. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Agentcore
Agent Runtime Endpoint Timeouts Args
- agent
Runtime StringId ID of the agent runtime this endpoint belongs to.
The following arguments are optional:
- agent
Runtime StringVersion - Version of the agent runtime to use for this endpoint.
- description String
- Description of the agent runtime endpoint.
- name String
- Name of the agent runtime endpoint.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String>
- Key-value map of resource tags. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the AgentcoreAgentRuntimeEndpoint resource produces the following output properties:
- Agent
Runtime stringArn - ARN of the associated Agent Runtime.
- Agent
Runtime stringEndpoint Arn - ARN of the Agent Runtime Endpoint.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block.
- Agent
Runtime stringArn - ARN of the associated Agent Runtime.
- Agent
Runtime stringEndpoint Arn - ARN of the Agent Runtime Endpoint.
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block.
- agent
Runtime StringArn - ARN of the associated Agent Runtime.
- agent
Runtime StringEndpoint Arn - ARN of the Agent Runtime Endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block.
- agent
Runtime stringArn - ARN of the associated Agent Runtime.
- agent
Runtime stringEndpoint Arn - ARN of the Agent Runtime Endpoint.
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block.
- agent_
runtime_ strarn - ARN of the associated Agent Runtime.
- agent_
runtime_ strendpoint_ arn - ARN of the Agent Runtime Endpoint.
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block.
- agent
Runtime StringArn - ARN of the associated Agent Runtime.
- agent
Runtime StringEndpoint Arn - ARN of the Agent Runtime Endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block.
Look up Existing AgentcoreAgentRuntimeEndpoint Resource
Get an existing AgentcoreAgentRuntimeEndpoint resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AgentcoreAgentRuntimeEndpointState, opts?: CustomResourceOptions): AgentcoreAgentRuntimeEndpoint@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
agent_runtime_arn: Optional[str] = None,
agent_runtime_endpoint_arn: Optional[str] = None,
agent_runtime_id: Optional[str] = None,
agent_runtime_version: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
region: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
timeouts: Optional[AgentcoreAgentRuntimeEndpointTimeoutsArgs] = None) -> AgentcoreAgentRuntimeEndpointfunc GetAgentcoreAgentRuntimeEndpoint(ctx *Context, name string, id IDInput, state *AgentcoreAgentRuntimeEndpointState, opts ...ResourceOption) (*AgentcoreAgentRuntimeEndpoint, error)public static AgentcoreAgentRuntimeEndpoint Get(string name, Input<string> id, AgentcoreAgentRuntimeEndpointState? state, CustomResourceOptions? opts = null)public static AgentcoreAgentRuntimeEndpoint get(String name, Output<String> id, AgentcoreAgentRuntimeEndpointState state, CustomResourceOptions options)resources: _: type: aws:bedrock:AgentcoreAgentRuntimeEndpoint get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Agent
Runtime stringArn - ARN of the associated Agent Runtime.
- Agent
Runtime stringEndpoint Arn - ARN of the Agent Runtime Endpoint.
- Agent
Runtime stringId ID of the agent runtime this endpoint belongs to.
The following arguments are optional:
- Agent
Runtime stringVersion - Version of the agent runtime to use for this endpoint.
- Description string
- Description of the agent runtime endpoint.
- Name string
- Name of the agent runtime endpoint.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Dictionary<string, string>
- Key-value map of resource tags. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block. - Timeouts
Agentcore
Agent Runtime Endpoint Timeouts
- Agent
Runtime stringArn - ARN of the associated Agent Runtime.
- Agent
Runtime stringEndpoint Arn - ARN of the Agent Runtime Endpoint.
- Agent
Runtime stringId ID of the agent runtime this endpoint belongs to.
The following arguments are optional:
- Agent
Runtime stringVersion - Version of the agent runtime to use for this endpoint.
- Description string
- Description of the agent runtime endpoint.
- Name string
- Name of the agent runtime endpoint.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map[string]string
- Key-value map of resource tags. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block. - Timeouts
Agentcore
Agent Runtime Endpoint Timeouts Args
- agent
Runtime StringArn - ARN of the associated Agent Runtime.
- agent
Runtime StringEndpoint Arn - ARN of the Agent Runtime Endpoint.
- agent
Runtime StringId ID of the agent runtime this endpoint belongs to.
The following arguments are optional:
- agent
Runtime StringVersion - Version of the agent runtime to use for this endpoint.
- description String
- Description of the agent runtime endpoint.
- name String
- Name of the agent runtime endpoint.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String,String>
- Key-value map of resource tags. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block. - timeouts
Agentcore
Agent Runtime Endpoint Timeouts
- agent
Runtime stringArn - ARN of the associated Agent Runtime.
- agent
Runtime stringEndpoint Arn - ARN of the Agent Runtime Endpoint.
- agent
Runtime stringId ID of the agent runtime this endpoint belongs to.
The following arguments are optional:
- agent
Runtime stringVersion - Version of the agent runtime to use for this endpoint.
- description string
- Description of the agent runtime endpoint.
- name string
- Name of the agent runtime endpoint.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- {[key: string]: string}
- Key-value map of resource tags. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block. - timeouts
Agentcore
Agent Runtime Endpoint Timeouts
- agent_
runtime_ strarn - ARN of the associated Agent Runtime.
- agent_
runtime_ strendpoint_ arn - ARN of the Agent Runtime Endpoint.
- agent_
runtime_ strid ID of the agent runtime this endpoint belongs to.
The following arguments are optional:
- agent_
runtime_ strversion - Version of the agent runtime to use for this endpoint.
- description str
- Description of the agent runtime endpoint.
- name str
- Name of the agent runtime endpoint.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Mapping[str, str]
- Key-value map of resource tags. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block. - timeouts
Agentcore
Agent Runtime Endpoint Timeouts Args
- agent
Runtime StringArn - ARN of the associated Agent Runtime.
- agent
Runtime StringEndpoint Arn - ARN of the Agent Runtime Endpoint.
- agent
Runtime StringId ID of the agent runtime this endpoint belongs to.
The following arguments are optional:
- agent
Runtime StringVersion - Version of the agent runtime to use for this endpoint.
- description String
- Description of the agent runtime endpoint.
- name String
- Name of the agent runtime endpoint.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String>
- Key-value map of resource tags. If configured with a provider
default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block. - timeouts Property Map
Supporting Types
AgentcoreAgentRuntimeEndpointTimeouts, AgentcoreAgentRuntimeEndpointTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Import
Using pulumi import, import Bedrock AgentCore Agent Runtime Endpoint using the agent_runtime_id and name separated by a comma. For example:
$ pulumi import aws:bedrock/agentcoreAgentRuntimeEndpoint:AgentcoreAgentRuntimeEndpoint example AGENTRUNTIME1234567890,example-endpoint
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.
