Skip to main content
For emulate on Amazon Braket, see Device emulation (emulate) in the execution user guide.

AwsBackendPreferences

AWS-specific backend preferences for quantum computing tasks using Amazon Braket. This class contains configuration options specific to Amazon Braket, including the AWS role ARN, S3 bucket details, and the folder path within the S3 bucket. It extends the base BackendPreferences class to provide additional properties required for interaction with Amazon Braket. Attributes:

backend_service_provider

backend_service_provider: ProviderTypeVendor.AMAZON_BRAKET = pydantic.Field(default=(ProviderVendor.AMAZON_BRAKET))

aws_access_key_id

aws_access_key_id: str | None = pydantic.Field(default=None, description='Key id assigned to user with credentials to access Braket service')

aws_secret_access_key

aws_secret_access_key: str | None = pydantic.Field(default=None, description='Secret access key assigned to user with credentials to access Braket service')

s3_bucket_name

s3_bucket_name: str | None = pydantic.Field(default=None, description='S3 Bucket Name')

s3_folder

s3_folder: str | None = pydantic.Field(default=None, description='S3 Folder Path Within The S3 Bucket')

emulate

emulate: bool = pydantic.Field(default=False, description='Emulate backend')