1. Packages
  2. AWS Native
  3. API Docs
  4. bedrock
  5. Agent

AWS Native is in preview. AWS Classic is fully supported.

AWS Native v0.105.0 published on Thursday, May 2, 2024 by Pulumi

aws-native.bedrock.Agent

Explore with Pulumi AI

aws-native logo

AWS Native is in preview. AWS Classic is fully supported.

AWS Native v0.105.0 published on Thursday, May 2, 2024 by Pulumi

    Definition of AWS::Bedrock::Agent Resource Type

    Create Agent Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Agent(name: string, args?: AgentArgs, opts?: CustomResourceOptions);
    @overload
    def Agent(resource_name: str,
              args: Optional[AgentArgs] = None,
              opts: Optional[ResourceOptions] = None)
    
    @overload
    def Agent(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              action_groups: Optional[Sequence[AgentActionGroupArgs]] = None,
              agent_name: Optional[str] = None,
              agent_resource_role_arn: Optional[str] = None,
              auto_prepare: Optional[bool] = None,
              customer_encryption_key_arn: Optional[str] = None,
              description: Optional[str] = None,
              foundation_model: Optional[str] = None,
              idle_session_ttl_in_seconds: Optional[float] = None,
              instruction: Optional[str] = None,
              knowledge_bases: Optional[Sequence[AgentKnowledgeBaseArgs]] = None,
              prompt_override_configuration: Optional[AgentPromptOverrideConfigurationArgs] = None,
              skip_resource_in_use_check_on_delete: Optional[bool] = None,
              tags: Optional[Mapping[str, str]] = None,
              test_alias_tags: Optional[Mapping[str, str]] = None)
    func NewAgent(ctx *Context, name string, args *AgentArgs, opts ...ResourceOption) (*Agent, error)
    public Agent(string name, AgentArgs? args = null, CustomResourceOptions? opts = null)
    public Agent(String name, AgentArgs args)
    public Agent(String name, AgentArgs args, CustomResourceOptions options)
    
    type: aws-native:bedrock:Agent
    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 AgentArgs
    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 AgentArgs
    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 AgentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AgentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AgentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    const agentResource = new aws_native.bedrock.Agent("agentResource", {
        actionGroups: [{
            actionGroupName: "string",
            actionGroupExecutor: {
                lambda: "string",
            },
            actionGroupState: aws_native.bedrock.AgentActionGroupState.Enabled,
            apiSchema: {
                s3: {
                    s3BucketName: "string",
                    s3ObjectKey: "string",
                },
            },
            description: "string",
            parentActionGroupSignature: aws_native.bedrock.AgentActionGroupSignature.AmazonUserInput,
            skipResourceInUseCheckOnDelete: false,
        }],
        agentName: "string",
        agentResourceRoleArn: "string",
        autoPrepare: false,
        customerEncryptionKeyArn: "string",
        description: "string",
        foundationModel: "string",
        idleSessionTtlInSeconds: 0,
        instruction: "string",
        knowledgeBases: [{
            description: "string",
            knowledgeBaseId: "string",
            knowledgeBaseState: aws_native.bedrock.AgentKnowledgeBaseState.Enabled,
        }],
        promptOverrideConfiguration: {
            promptConfigurations: [{
                basePromptTemplate: "string",
                inferenceConfiguration: {
                    maximumLength: 0,
                    stopSequences: ["string"],
                    temperature: 0,
                    topK: 0,
                    topP: 0,
                },
                parserMode: aws_native.bedrock.AgentCreationMode.Default,
                promptCreationMode: aws_native.bedrock.AgentCreationMode.Default,
                promptState: aws_native.bedrock.AgentPromptState.Enabled,
                promptType: aws_native.bedrock.AgentPromptType.PreProcessing,
            }],
            overrideLambda: "string",
        },
        skipResourceInUseCheckOnDelete: false,
        tags: {
            string: "string",
        },
        testAliasTags: {
            string: "string",
        },
    });
    
    Coming soon!
    

    Agent Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Agent resource accepts the following input properties:

    ActionGroups List<Pulumi.AwsNative.Bedrock.Inputs.AgentActionGroup>
    List of ActionGroups
    AgentName string
    Name for a resource.
    AgentResourceRoleArn string
    ARN of a IAM role.
    AutoPrepare bool
    Specifies whether to automatically prepare after creating or updating the agent.
    CustomerEncryptionKeyArn string
    A KMS key ARN
    Description string
    Description of the Resource.
    FoundationModel string
    ARN or name of a Bedrock model.
    IdleSessionTtlInSeconds double
    Max Session Time.
    Instruction string
    Instruction for the agent.
    KnowledgeBases List<Pulumi.AwsNative.Bedrock.Inputs.AgentKnowledgeBase>
    List of Agent Knowledge Bases
    PromptOverrideConfiguration Pulumi.AwsNative.Bedrock.Inputs.AgentPromptOverrideConfiguration
    SkipResourceInUseCheckOnDelete bool
    Specifies whether to allow deleting agent while it is in use.
    Tags Dictionary<string, string>
    TestAliasTags Dictionary<string, string>
    ActionGroups []AgentActionGroupArgs
    List of ActionGroups
    AgentName string
    Name for a resource.
    AgentResourceRoleArn string
    ARN of a IAM role.
    AutoPrepare bool
    Specifies whether to automatically prepare after creating or updating the agent.
    CustomerEncryptionKeyArn string
    A KMS key ARN
    Description string
    Description of the Resource.
    FoundationModel string
    ARN or name of a Bedrock model.
    IdleSessionTtlInSeconds float64
    Max Session Time.
    Instruction string
    Instruction for the agent.
    KnowledgeBases []AgentKnowledgeBaseArgs
    List of Agent Knowledge Bases
    PromptOverrideConfiguration AgentPromptOverrideConfigurationArgs
    SkipResourceInUseCheckOnDelete bool
    Specifies whether to allow deleting agent while it is in use.
    Tags map[string]string
    TestAliasTags map[string]string
    actionGroups List<AgentActionGroup>
    List of ActionGroups
    agentName String
    Name for a resource.
    agentResourceRoleArn String
    ARN of a IAM role.
    autoPrepare Boolean
    Specifies whether to automatically prepare after creating or updating the agent.
    customerEncryptionKeyArn String
    A KMS key ARN
    description String
    Description of the Resource.
    foundationModel String
    ARN or name of a Bedrock model.
    idleSessionTtlInSeconds Double
    Max Session Time.
    instruction String
    Instruction for the agent.
    knowledgeBases List<AgentKnowledgeBase>
    List of Agent Knowledge Bases
    promptOverrideConfiguration AgentPromptOverrideConfiguration
    skipResourceInUseCheckOnDelete Boolean
    Specifies whether to allow deleting agent while it is in use.
    tags Map<String,String>
    testAliasTags Map<String,String>
    actionGroups AgentActionGroup[]
    List of ActionGroups
    agentName string
    Name for a resource.
    agentResourceRoleArn string
    ARN of a IAM role.
    autoPrepare boolean
    Specifies whether to automatically prepare after creating or updating the agent.
    customerEncryptionKeyArn string
    A KMS key ARN
    description string
    Description of the Resource.
    foundationModel string
    ARN or name of a Bedrock model.
    idleSessionTtlInSeconds number
    Max Session Time.
    instruction string
    Instruction for the agent.
    knowledgeBases AgentKnowledgeBase[]
    List of Agent Knowledge Bases
    promptOverrideConfiguration AgentPromptOverrideConfiguration
    skipResourceInUseCheckOnDelete boolean
    Specifies whether to allow deleting agent while it is in use.
    tags {[key: string]: string}
    testAliasTags {[key: string]: string}
    action_groups Sequence[AgentActionGroupArgs]
    List of ActionGroups
    agent_name str
    Name for a resource.
    agent_resource_role_arn str
    ARN of a IAM role.
    auto_prepare bool
    Specifies whether to automatically prepare after creating or updating the agent.
    customer_encryption_key_arn str
    A KMS key ARN
    description str
    Description of the Resource.
    foundation_model str
    ARN or name of a Bedrock model.
    idle_session_ttl_in_seconds float
    Max Session Time.
    instruction str
    Instruction for the agent.
    knowledge_bases Sequence[AgentKnowledgeBaseArgs]
    List of Agent Knowledge Bases
    prompt_override_configuration AgentPromptOverrideConfigurationArgs
    skip_resource_in_use_check_on_delete bool
    Specifies whether to allow deleting agent while it is in use.
    tags Mapping[str, str]
    test_alias_tags Mapping[str, str]
    actionGroups List<Property Map>
    List of ActionGroups
    agentName String
    Name for a resource.
    agentResourceRoleArn String
    ARN of a IAM role.
    autoPrepare Boolean
    Specifies whether to automatically prepare after creating or updating the agent.
    customerEncryptionKeyArn String
    A KMS key ARN
    description String
    Description of the Resource.
    foundationModel String
    ARN or name of a Bedrock model.
    idleSessionTtlInSeconds Number
    Max Session Time.
    instruction String
    Instruction for the agent.
    knowledgeBases List<Property Map>
    List of Agent Knowledge Bases
    promptOverrideConfiguration Property Map
    skipResourceInUseCheckOnDelete Boolean
    Specifies whether to allow deleting agent while it is in use.
    tags Map<String>
    testAliasTags Map<String>

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Agent resource produces the following output properties:

    AgentArn string
    Arn representation of the Agent.
    AgentId string
    Identifier for a resource.
    AgentStatus Pulumi.AwsNative.Bedrock.AgentStatus
    AgentVersion string
    Draft Agent Version.
    CreatedAt string
    Time Stamp.
    FailureReasons List<string>
    Failure Reasons for Error.
    Id string
    The provider-assigned unique ID for this managed resource.
    PreparedAt string
    Time Stamp.
    RecommendedActions List<string>
    The recommended actions users can take to resolve an error in failureReasons.
    UpdatedAt string
    Time Stamp.
    AgentArn string
    Arn representation of the Agent.
    AgentId string
    Identifier for a resource.
    AgentStatus AgentStatus
    AgentVersion string
    Draft Agent Version.
    CreatedAt string
    Time Stamp.
    FailureReasons []string
    Failure Reasons for Error.
    Id string
    The provider-assigned unique ID for this managed resource.
    PreparedAt string
    Time Stamp.
    RecommendedActions []string
    The recommended actions users can take to resolve an error in failureReasons.
    UpdatedAt string
    Time Stamp.
    agentArn String
    Arn representation of the Agent.
    agentId String
    Identifier for a resource.
    agentStatus AgentStatus
    agentVersion String
    Draft Agent Version.
    createdAt String
    Time Stamp.
    failureReasons List<String>
    Failure Reasons for Error.
    id String
    The provider-assigned unique ID for this managed resource.
    preparedAt String
    Time Stamp.
    recommendedActions List<String>
    The recommended actions users can take to resolve an error in failureReasons.
    updatedAt String
    Time Stamp.
    agentArn string
    Arn representation of the Agent.
    agentId string
    Identifier for a resource.
    agentStatus AgentStatus
    agentVersion string
    Draft Agent Version.
    createdAt string
    Time Stamp.
    failureReasons string[]
    Failure Reasons for Error.
    id string
    The provider-assigned unique ID for this managed resource.
    preparedAt string
    Time Stamp.
    recommendedActions string[]
    The recommended actions users can take to resolve an error in failureReasons.
    updatedAt string
    Time Stamp.
    agent_arn str
    Arn representation of the Agent.
    agent_id str
    Identifier for a resource.
    agent_status AgentStatus
    agent_version str
    Draft Agent Version.
    created_at str
    Time Stamp.
    failure_reasons Sequence[str]
    Failure Reasons for Error.
    id str
    The provider-assigned unique ID for this managed resource.
    prepared_at str
    Time Stamp.
    recommended_actions Sequence[str]
    The recommended actions users can take to resolve an error in failureReasons.
    updated_at str
    Time Stamp.
    agentArn String
    Arn representation of the Agent.
    agentId String
    Identifier for a resource.
    agentStatus "CREATING" | "PREPARING" | "PREPARED" | "NOT_PREPARED" | "DELETING" | "FAILED" | "VERSIONING" | "UPDATING"
    agentVersion String
    Draft Agent Version.
    createdAt String
    Time Stamp.
    failureReasons List<String>
    Failure Reasons for Error.
    id String
    The provider-assigned unique ID for this managed resource.
    preparedAt String
    Time Stamp.
    recommendedActions List<String>
    The recommended actions users can take to resolve an error in failureReasons.
    updatedAt String
    Time Stamp.

    Supporting Types

    AgentActionGroup, AgentActionGroupArgs

    actionGroupName String
    Name of the action group
    actionGroupExecutor Property Map
    actionGroupState "ENABLED" | "DISABLED"
    apiSchema Property Map | Property Map
    description String
    Description of action group
    parentActionGroupSignature "AMAZON.UserInput"
    skipResourceInUseCheckOnDelete Boolean
    Specifies whether to allow deleting action group while it is in use.

    AgentActionGroupExecutor, AgentActionGroupExecutorArgs

    Lambda string
    ARN of a Lambda.
    Lambda string
    ARN of a Lambda.
    lambda String
    ARN of a Lambda.
    lambda string
    ARN of a Lambda.
    lambda_ str
    ARN of a Lambda.
    lambda String
    ARN of a Lambda.

    AgentActionGroupSignature, AgentActionGroupSignatureArgs

    AmazonUserInput
    AMAZON.UserInput
    AgentActionGroupSignatureAmazonUserInput
    AMAZON.UserInput
    AmazonUserInput
    AMAZON.UserInput
    AmazonUserInput
    AMAZON.UserInput
    AMAZON_USER_INPUT
    AMAZON.UserInput
    "AMAZON.UserInput"
    AMAZON.UserInput

    AgentActionGroupState, AgentActionGroupStateArgs

    Enabled
    ENABLED
    Disabled
    DISABLED
    AgentActionGroupStateEnabled
    ENABLED
    AgentActionGroupStateDisabled
    DISABLED
    Enabled
    ENABLED
    Disabled
    DISABLED
    Enabled
    ENABLED
    Disabled
    DISABLED
    ENABLED
    ENABLED
    DISABLED
    DISABLED
    "ENABLED"
    ENABLED
    "DISABLED"
    DISABLED

    AgentApiSchema0Properties, AgentApiSchema0PropertiesArgs

    AgentApiSchema1Properties, AgentApiSchema1PropertiesArgs

    Payload string
    String OpenAPI Payload
    Payload string
    String OpenAPI Payload
    payload String
    String OpenAPI Payload
    payload string
    String OpenAPI Payload
    payload str
    String OpenAPI Payload
    payload String
    String OpenAPI Payload

    AgentCreationMode, AgentCreationModeArgs

    Default
    DEFAULT
    Overridden
    OVERRIDDEN
    AgentCreationModeDefault
    DEFAULT
    AgentCreationModeOverridden
    OVERRIDDEN
    Default
    DEFAULT
    Overridden
    OVERRIDDEN
    Default
    DEFAULT
    Overridden
    OVERRIDDEN
    DEFAULT
    DEFAULT
    OVERRIDDEN
    OVERRIDDEN
    "DEFAULT"
    DEFAULT
    "OVERRIDDEN"
    OVERRIDDEN

    AgentInferenceConfiguration, AgentInferenceConfigurationArgs

    MaximumLength double
    Maximum length of output
    StopSequences List<string>
    List of stop sequences
    Temperature double
    Controls randomness, higher values increase diversity
    TopK double
    Sample from the k most likely next tokens
    TopP double
    Cumulative probability cutoff for token selection
    MaximumLength float64
    Maximum length of output
    StopSequences []string
    List of stop sequences
    Temperature float64
    Controls randomness, higher values increase diversity
    TopK float64
    Sample from the k most likely next tokens
    TopP float64
    Cumulative probability cutoff for token selection
    maximumLength Double
    Maximum length of output
    stopSequences List<String>
    List of stop sequences
    temperature Double
    Controls randomness, higher values increase diversity
    topK Double
    Sample from the k most likely next tokens
    topP Double
    Cumulative probability cutoff for token selection
    maximumLength number
    Maximum length of output
    stopSequences string[]
    List of stop sequences
    temperature number
    Controls randomness, higher values increase diversity
    topK number
    Sample from the k most likely next tokens
    topP number
    Cumulative probability cutoff for token selection
    maximum_length float
    Maximum length of output
    stop_sequences Sequence[str]
    List of stop sequences
    temperature float
    Controls randomness, higher values increase diversity
    top_k float
    Sample from the k most likely next tokens
    top_p float
    Cumulative probability cutoff for token selection
    maximumLength Number
    Maximum length of output
    stopSequences List<String>
    List of stop sequences
    temperature Number
    Controls randomness, higher values increase diversity
    topK Number
    Sample from the k most likely next tokens
    topP Number
    Cumulative probability cutoff for token selection

    AgentKnowledgeBase, AgentKnowledgeBaseArgs

    Description string
    Description of the Resource.
    KnowledgeBaseId string
    Identifier for a resource.
    KnowledgeBaseState Pulumi.AwsNative.Bedrock.AgentKnowledgeBaseState
    Description string
    Description of the Resource.
    KnowledgeBaseId string
    Identifier for a resource.
    KnowledgeBaseState AgentKnowledgeBaseState
    description String
    Description of the Resource.
    knowledgeBaseId String
    Identifier for a resource.
    knowledgeBaseState AgentKnowledgeBaseState
    description string
    Description of the Resource.
    knowledgeBaseId string
    Identifier for a resource.
    knowledgeBaseState AgentKnowledgeBaseState
    description str
    Description of the Resource.
    knowledge_base_id str
    Identifier for a resource.
    knowledge_base_state AgentKnowledgeBaseState
    description String
    Description of the Resource.
    knowledgeBaseId String
    Identifier for a resource.
    knowledgeBaseState "ENABLED" | "DISABLED"

    AgentKnowledgeBaseState, AgentKnowledgeBaseStateArgs

    Enabled
    ENABLED
    Disabled
    DISABLED
    AgentKnowledgeBaseStateEnabled
    ENABLED
    AgentKnowledgeBaseStateDisabled
    DISABLED
    Enabled
    ENABLED
    Disabled
    DISABLED
    Enabled
    ENABLED
    Disabled
    DISABLED
    ENABLED
    ENABLED
    DISABLED
    DISABLED
    "ENABLED"
    ENABLED
    "DISABLED"
    DISABLED

    AgentPromptConfiguration, AgentPromptConfigurationArgs

    AgentPromptOverrideConfiguration, AgentPromptOverrideConfigurationArgs

    PromptConfigurations []AgentPromptConfiguration
    List of BasePromptConfiguration
    OverrideLambda string
    ARN of a Lambda.
    promptConfigurations List<AgentPromptConfiguration>
    List of BasePromptConfiguration
    overrideLambda String
    ARN of a Lambda.
    promptConfigurations AgentPromptConfiguration[]
    List of BasePromptConfiguration
    overrideLambda string
    ARN of a Lambda.
    prompt_configurations Sequence[AgentPromptConfiguration]
    List of BasePromptConfiguration
    override_lambda str
    ARN of a Lambda.
    promptConfigurations List<Property Map>
    List of BasePromptConfiguration
    overrideLambda String
    ARN of a Lambda.

    AgentPromptState, AgentPromptStateArgs

    Enabled
    ENABLED
    Disabled
    DISABLED
    AgentPromptStateEnabled
    ENABLED
    AgentPromptStateDisabled
    DISABLED
    Enabled
    ENABLED
    Disabled
    DISABLED
    Enabled
    ENABLED
    Disabled
    DISABLED
    ENABLED
    ENABLED
    DISABLED
    DISABLED
    "ENABLED"
    ENABLED
    "DISABLED"
    DISABLED

    AgentPromptType, AgentPromptTypeArgs

    PreProcessing
    PRE_PROCESSING
    Orchestration
    ORCHESTRATION
    PostProcessing
    POST_PROCESSING
    KnowledgeBaseResponseGeneration
    KNOWLEDGE_BASE_RESPONSE_GENERATION
    AgentPromptTypePreProcessing
    PRE_PROCESSING
    AgentPromptTypeOrchestration
    ORCHESTRATION
    AgentPromptTypePostProcessing
    POST_PROCESSING
    AgentPromptTypeKnowledgeBaseResponseGeneration
    KNOWLEDGE_BASE_RESPONSE_GENERATION
    PreProcessing
    PRE_PROCESSING
    Orchestration
    ORCHESTRATION
    PostProcessing
    POST_PROCESSING
    KnowledgeBaseResponseGeneration
    KNOWLEDGE_BASE_RESPONSE_GENERATION
    PreProcessing
    PRE_PROCESSING
    Orchestration
    ORCHESTRATION
    PostProcessing
    POST_PROCESSING
    KnowledgeBaseResponseGeneration
    KNOWLEDGE_BASE_RESPONSE_GENERATION
    PRE_PROCESSING
    PRE_PROCESSING
    ORCHESTRATION
    ORCHESTRATION
    POST_PROCESSING
    POST_PROCESSING
    KNOWLEDGE_BASE_RESPONSE_GENERATION
    KNOWLEDGE_BASE_RESPONSE_GENERATION
    "PRE_PROCESSING"
    PRE_PROCESSING
    "ORCHESTRATION"
    ORCHESTRATION
    "POST_PROCESSING"
    POST_PROCESSING
    "KNOWLEDGE_BASE_RESPONSE_GENERATION"
    KNOWLEDGE_BASE_RESPONSE_GENERATION

    AgentS3Identifier, AgentS3IdentifierArgs

    S3BucketName string
    A bucket in S3.
    S3ObjectKey string
    A object key in S3.
    S3BucketName string
    A bucket in S3.
    S3ObjectKey string
    A object key in S3.
    s3BucketName String
    A bucket in S3.
    s3ObjectKey String
    A object key in S3.
    s3BucketName string
    A bucket in S3.
    s3ObjectKey string
    A object key in S3.
    s3_bucket_name str
    A bucket in S3.
    s3_object_key str
    A object key in S3.
    s3BucketName String
    A bucket in S3.
    s3ObjectKey String
    A object key in S3.

    AgentStatus, AgentStatusArgs

    Creating
    CREATING
    Preparing
    PREPARING
    Prepared
    PREPARED
    NotPrepared
    NOT_PREPARED
    Deleting
    DELETING
    Failed
    FAILED
    Versioning
    VERSIONING
    Updating
    UPDATING
    AgentStatusCreating
    CREATING
    AgentStatusPreparing
    PREPARING
    AgentStatusPrepared
    PREPARED
    AgentStatusNotPrepared
    NOT_PREPARED
    AgentStatusDeleting
    DELETING
    AgentStatusFailed
    FAILED
    AgentStatusVersioning
    VERSIONING
    AgentStatusUpdating
    UPDATING
    Creating
    CREATING
    Preparing
    PREPARING
    Prepared
    PREPARED
    NotPrepared
    NOT_PREPARED
    Deleting
    DELETING
    Failed
    FAILED
    Versioning
    VERSIONING
    Updating
    UPDATING
    Creating
    CREATING
    Preparing
    PREPARING
    Prepared
    PREPARED
    NotPrepared
    NOT_PREPARED
    Deleting
    DELETING
    Failed
    FAILED
    Versioning
    VERSIONING
    Updating
    UPDATING
    CREATING
    CREATING
    PREPARING
    PREPARING
    PREPARED
    PREPARED
    NOT_PREPARED
    NOT_PREPARED
    DELETING
    DELETING
    FAILED
    FAILED
    VERSIONING
    VERSIONING
    UPDATING
    UPDATING
    "CREATING"
    CREATING
    "PREPARING"
    PREPARING
    "PREPARED"
    PREPARED
    "NOT_PREPARED"
    NOT_PREPARED
    "DELETING"
    DELETING
    "FAILED"
    FAILED
    "VERSIONING"
    VERSIONING
    "UPDATING"
    UPDATING

    Package Details

    Repository
    AWS Native pulumi/pulumi-aws-native
    License
    Apache-2.0
    aws-native logo

    AWS Native is in preview. AWS Classic is fully supported.

    AWS Native v0.105.0 published on Thursday, May 2, 2024 by Pulumi