AWS Fundamentals Logo
AWS Fundamentals
AWS::BedrockAgentCore::Dataset

BedrockAgentCore Dataset

Definition of AWS::BedrockAgentCore::Dataset Resource Type

Properties

6 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
DatasetName
string
RequiredCreate-only
SchemaType
string
RequiredCreate-only
Description
string
KmsKeyArn
string
Create-only
Source
DataSourceType
Create-onlyWrite-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
CreatedAtstringThe timestamp when the dataset was created.
DatasetArnstringThe Amazon Resource Name (ARN) of the dataset.
DatasetIdstringThe unique identifier of the dataset.
ExampleCountintegerThe number of examples in the dataset DRAFT.
StatusstringThe current status of the dataset.
UpdatedAtstringThe timestamp when the dataset was last updated.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::BedrockAgentCore::Dataset

Resources:
  MyResource:
    Type: AWS::BedrockAgentCore::Dataset
    Properties:
      DatasetName: "my-datasetname"
      SchemaType: "AGENTCORE_EVALUATION_PREDEFINED_V1"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

bedrock-agentcore:CreateDatasetbedrock-agentcore:GetDatasetbedrock-agentcore:TagResourcekms:DescribeKeykms:Decryptkms:GenerateDataKeys3:GetObjects3:GetBucketLocation

read

bedrock-agentcore:GetDatasetbedrock-agentcore:ListTagsForResourcekms:Decryptkms:DescribeKey

update

bedrock-agentcore:UpdateDatasetbedrock-agentcore:GetDatasetbedrock-agentcore:TagResourcebedrock-agentcore:UntagResourcebedrock-agentcore:ListTagsForResourcekms:Decryptkms:DescribeKeykms:GenerateDataKey

delete

bedrock-agentcore:DeleteDatasetbedrock-agentcore:GetDatasetkms:Decryptkms:DescribeKey

list

bedrock-agentcore:ListDatasets

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceBedrockAgentCore
Properties12
Required2
TaggingSupported
Primary IDDatasetArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

DatasetNameSchemaTypeKmsKeyArnSource

External Links