Learn R Programming

paws.storage (version 0.7.0)

omics: Amazon Omics

Description

This is the AWS HealthOmics API Reference. For an introduction to the service, see What is AWS HealthOmics? in the AWS HealthOmics User Guide.

Usage

omics(config = list(), credentials = list(), endpoint = NULL, region = NULL)

Value

A client for the service. You can call the service's operations using syntax like svc$operation(...), where svc is the name you've assigned to the client. The available operations are listed in the Operations section.

Arguments

config

Optional configuration of credentials, endpoint, and/or region.

  • credentials:

    • creds:

      • access_key_id: AWS access key ID

      • secret_access_key: AWS secret access key

      • session_token: AWS temporary session token

    • profile: The name of a profile to use. If not given, then the default profile is used.

    • anonymous: Set anonymous credentials.

  • endpoint: The complete URL to use for the constructed client.

  • region: The AWS Region used in instantiating the client.

  • close_connection: Immediately close all HTTP connections.

  • timeout: The time in seconds till a timeout exception is thrown when attempting to make a connection. The default is 60 seconds.

  • s3_force_path_style: Set this to true to force the request to use path-style addressing, i.e. http://s3.amazonaws.com/BUCKET/KEY.

  • sts_regional_endpoint: Set sts regional endpoint resolver to regional or legacy https://docs.aws.amazon.com/sdkref/latest/guide/feature-sts-regionalized-endpoints.html

credentials

Optional credentials shorthand for the config parameter

  • creds:

    • access_key_id: AWS access key ID

    • secret_access_key: AWS secret access key

    • session_token: AWS temporary session token

  • profile: The name of a profile to use. If not given, then the default profile is used.

  • anonymous: Set anonymous credentials.

endpoint

Optional shorthand for complete URL to use for the constructed client.

region

Optional shorthand for AWS Region used in instantiating the client.

Service syntax

svc <- omics(
  config = list(
    credentials = list(
      creds = list(
        access_key_id = "string",
        secret_access_key = "string",
        session_token = "string"
      ),
      profile = "string",
      anonymous = "logical"
    ),
    endpoint = "string",
    region = "string",
    close_connection = "logical",
    timeout = "numeric",
    s3_force_path_style = "logical",
    sts_regional_endpoint = "string"
  ),
  credentials = list(
    creds = list(
      access_key_id = "string",
      secret_access_key = "string",
      session_token = "string"
    ),
    profile = "string",
    anonymous = "logical"
  ),
  endpoint = "string",
  region = "string"
)

Operations

abort_multipart_read_set_uploadStops a multipart upload
accept_shareAccept a resource share request
batch_delete_read_setDeletes one or more read sets
cancel_annotation_import_jobCancels an annotation import job
cancel_runCancels a run
cancel_variant_import_jobCancels a variant import job
complete_multipart_read_set_uploadConcludes a multipart upload once you have uploaded all the components
create_annotation_storeCreates an annotation store
create_annotation_store_versionCreates a new version of an annotation store
create_multipart_read_set_uploadBegins a multipart read set upload
create_reference_storeCreates a reference store
create_run_groupYou can optionally create a run group to limit the compute resources for the runs that you add to the group
create_sequence_storeCreates a sequence store
create_shareCreates a cross-account shared resource
create_variant_storeCreates a variant store
create_workflowCreates a workflow
delete_annotation_storeDeletes an annotation store
delete_annotation_store_versionsDeletes one or multiple versions of an annotation store
delete_referenceDeletes a genome reference
delete_reference_storeDeletes a genome reference store
delete_runDeletes a workflow run
delete_run_groupDeletes a workflow run group
delete_sequence_storeDeletes a sequence store
delete_shareDeletes a resource share
delete_variant_storeDeletes a variant store
delete_workflowDeletes a workflow
get_annotation_import_jobGets information about an annotation import job
get_annotation_storeGets information about an annotation store
get_annotation_store_versionRetrieves the metadata for an annotation store version
get_read_setGets a file from a read set
get_read_set_activation_jobGets information about a read set activation job
get_read_set_export_jobGets information about a read set export job
get_read_set_import_jobGets information about a read set import job
get_read_set_metadataGets details about a read set
get_referenceGets a reference file
get_reference_import_jobGets information about a reference import job
get_reference_metadataGets information about a genome reference's metadata
get_reference_storeGets information about a reference store
get_runGets information about a workflow run
get_run_groupGets information about a workflow run group
get_run_taskGets information about a workflow run task
get_sequence_storeGets information about a sequence store
get_shareRetrieves the metadata for the specified resource share
get_variant_import_jobGets information about a variant import job
get_variant_storeGets information about a variant store
get_workflowGets information about a workflow
list_annotation_import_jobsRetrieves a list of annotation import jobs
list_annotation_storesRetrieves a list of annotation stores
list_annotation_store_versionsLists the versions of an annotation store
list_multipart_read_set_uploadsLists multipart read set uploads and for in progress uploads
list_read_set_activation_jobsRetrieves a list of read set activation jobs
list_read_set_export_jobsRetrieves a list of read set export jobs
list_read_set_import_jobsRetrieves a list of read set import jobs
list_read_setsRetrieves a list of read sets
list_read_set_upload_partsThis operation will list all parts in a requested multipart upload for a sequence store
list_reference_import_jobsRetrieves a list of reference import jobs
list_referencesRetrieves a list of references
list_reference_storesRetrieves a list of reference stores
list_run_groupsRetrieves a list of run groups
list_runsRetrieves a list of runs
list_run_tasksRetrieves a list of tasks for a run
list_sequence_storesRetrieves a list of sequence stores
list_sharesRetrieves the resource shares associated with an account
list_tags_for_resourceRetrieves a list of tags for a resource
list_variant_import_jobsRetrieves a list of variant import jobs
list_variant_storesRetrieves a list of variant stores
list_workflowsRetrieves a list of workflows
start_annotation_import_jobStarts an annotation import job
start_read_set_activation_jobActivates an archived read set
start_read_set_export_jobExports a read set to Amazon S3
start_read_set_import_jobStarts a read set import job
start_reference_import_jobStarts a reference import job
start_runStarts a workflow run
start_variant_import_jobStarts a variant import job
tag_resourceTags a resource
untag_resourceRemoves tags from a resource
update_annotation_storeUpdates an annotation store
update_annotation_store_versionUpdates the description of an annotation store version
update_run_groupUpdates a run group
update_variant_storeUpdates a variant store
update_workflowUpdates a workflow
upload_read_set_partThis operation uploads a specific part of a read set

Examples

Run this code
if (FALSE) {
svc <- omics()
svc$abort_multipart_read_set_upload(
  Foo = 123
)
}

Run the code above in your browser using DataLab