Class: Aws::Snowball::Client

Inherits:
Seahorse::Client::Base show all
Includes:
ClientStubs
Defined in:
gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb

Overview

An API client for Snowball. To construct a client, you need to configure a :region and :credentials.

client = Aws::Snowball::Client.new(
  region: region_name,
  credentials: credentials,
  # ...
)

For details on configuring region and credentials see the developer guide.

See #initialize for a full list of supported configuration options.

Instance Attribute Summary

Attributes inherited from Seahorse::Client::Base

#config, #handlers

API Operations collapse

Instance Method Summary collapse

Methods included from ClientStubs

#api_requests, #stub_data, #stub_responses

Methods inherited from Seahorse::Client::Base

add_plugin, api, clear_plugins, define, new, #operation_names, plugins, remove_plugin, set_api, set_plugins

Methods included from Seahorse::Client::HandlerBuilder

#handle, #handle_request, #handle_response

Constructor Details

#initialize(options) ⇒ Client

Returns a new instance of Client.

Parameters:

  • options (Hash)

Options Hash (options):

  • :credentials (required, Aws::CredentialProvider)

    Your AWS credentials. This can be an instance of any one of the following classes:

    • Aws::Credentials - Used for configuring static, non-refreshing credentials.

    • Aws::SharedCredentials - Used for loading static credentials from a shared file, such as ~/.aws/config.

    • Aws::AssumeRoleCredentials - Used when you need to assume a role.

    • Aws::AssumeRoleWebIdentityCredentials - Used when you need to assume a role after providing credentials via the web.

    • Aws::SSOCredentials - Used for loading credentials from AWS SSO using an access token generated from aws login.

    • Aws::ProcessCredentials - Used for loading credentials from a process that outputs to stdout.

    • Aws::InstanceProfileCredentials - Used for loading credentials from an EC2 IMDS on an EC2 instance.

    • Aws::ECSCredentials - Used for loading credentials from instances running in ECS.

    • Aws::CognitoIdentityCredentials - Used for loading credentials from the Cognito Identity service.

    When :credentials are not configured directly, the following locations will be searched for credentials:

    • Aws.config[:credentials]
    • The :access_key_id, :secret_access_key, and :session_token options.
    • ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
    • ~/.aws/credentials
    • ~/.aws/config
    • EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive. Construct and pass an instance of Aws::InstanceProfileCredentails or Aws::ECSCredentials to enable retries and extended timeouts. Instance profile credential fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED'] to true.
  • :region (required, String)

    The AWS region to connect to. The configured :region is used to determine the service :endpoint. When not passed, a default :region is searched for in the following locations:

    • Aws.config[:region]
    • ENV['AWS_REGION']
    • ENV['AMAZON_REGION']
    • ENV['AWS_DEFAULT_REGION']
    • ~/.aws/credentials
    • ~/.aws/config
  • :access_key_id (String)
  • :active_endpoint_cache (Boolean) — default: false

    When set to true, a thread polling for endpoints will be running in the background every 60 secs (default). Defaults to false.

  • :adaptive_retry_wait_to_fill (Boolean) — default: true

    Used only in adaptive retry mode. When true, the request will sleep until there is sufficent client side capacity to retry the request. When false, the request will raise a RetryCapacityNotAvailableError and will not retry instead of sleeping.

  • :client_side_monitoring (Boolean) — default: false

    When true, client-side metrics will be collected for all API requests from this client.

  • :client_side_monitoring_client_id (String) — default: ""

    Allows you to provide an identifier for this client which will be attached to all generated client side metrics. Defaults to an empty string.

  • :client_side_monitoring_host (String) — default: "127.0.0.1"

    Allows you to specify the DNS hostname or IPv4 or IPv6 address that the client side monitoring agent is running on, where client metrics will be published via UDP.

  • :client_side_monitoring_port (Integer) — default: 31000

    Required for publishing client metrics. The port that the client side monitoring agent is running on, where client metrics will be published via UDP.

  • :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher) — default: Aws::ClientSideMonitoring::Publisher

    Allows you to provide a custom client-side monitoring publisher class. By default, will use the Client Side Monitoring Agent Publisher.

  • :convert_params (Boolean) — default: true

    When true, an attempt is made to coerce request parameters into the required types.

  • :correct_clock_skew (Boolean) — default: true

    Used only in standard and adaptive retry modes. Specifies whether to apply a clock skew correction and retry requests with skewed client clocks.

  • :defaults_mode (String) — default: "legacy"

    See DefaultsModeConfiguration for a list of the accepted modes and the configuration defaults that are included.

  • :disable_host_prefix_injection (Boolean) — default: false

    Set to true to disable SDK automatically adding host prefix to default service endpoint when available.

  • :disable_request_compression (Boolean) — default: false

    When set to 'true' the request body will not be compressed for supported operations.

  • :endpoint (String)

    The client endpoint is normally constructed from the :region option. You should only configure an :endpoint when connecting to test or custom endpoints. This should be a valid HTTP(S) URI.

  • :endpoint_cache_max_entries (Integer) — default: 1000

    Used for the maximum size limit of the LRU cache storing endpoints data for endpoint discovery enabled operations. Defaults to 1000.

  • :endpoint_cache_max_threads (Integer) — default: 10

    Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.

  • :endpoint_cache_poll_interval (Integer) — default: 60

    When :endpoint_discovery and :active_endpoint_cache is enabled, Use this option to config the time interval in seconds for making requests fetching endpoints information. Defaults to 60 sec.

  • :endpoint_discovery (Boolean) — default: false

    When set to true, endpoint discovery will be enabled for operations when available.

  • :ignore_configured_endpoint_urls (Boolean)

    Setting to true disables use of endpoint URLs provided via environment variables and the shared configuration file.

  • :log_formatter (Aws::Log::Formatter) — default: Aws::Log::Formatter.default

    The log formatter.

  • :log_level (Symbol) — default: :info

    The log level to send messages to the :logger at.

  • :logger (Logger)

    The Logger instance to send log messages to. If this option is not set, logging will be disabled.

  • :max_attempts (Integer) — default: 3

    An integer representing the maximum number attempts that will be made for a single request, including the initial attempt. For example, setting this value to 5 will result in a request being retried up to 4 times. Used in standard and adaptive retry modes.

  • :profile (String) — default: "default"

    Used when loading credentials from the shared credentials file at HOME/.aws/credentials. When not specified, 'default' is used.

  • :request_min_compression_size_bytes (Integer) — default: 10240

    The minimum size in bytes that triggers compression for request bodies. The value must be non-negative integer value between 0 and 10485780 bytes inclusive.

  • :retry_backoff (Proc)

    A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay. This option is only used in the legacy retry mode.

  • :retry_base_delay (Float) — default: 0.3

    The base delay in seconds used by the default backoff function. This option is only used in the legacy retry mode.

  • :retry_jitter (Symbol) — default: :none

    A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number. This option is only used in the legacy retry mode.

    @see https://www.awsarchitectureblog.com/2015/03/backoff.html

  • :retry_limit (Integer) — default: 3

    The maximum number of times to retry failed requests. Only ~ 500 level server errors and certain ~ 400 level client errors are retried. Generally, these are throttling errors, data checksum errors, networking errors, timeout errors, auth errors, endpoint discovery, and errors from expired credentials. This option is only used in the legacy retry mode.

  • :retry_max_delay (Integer) — default: 0

    The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function. This option is only used in the legacy retry mode.

  • :retry_mode (String) — default: "legacy"

    Specifies which retry algorithm to use. Values are:

    • legacy - The pre-existing retry behavior. This is default value if no retry mode is provided.

    • standard - A standardized set of retry rules across the AWS SDKs. This includes support for retry quotas, which limit the number of unsuccessful retries a client can make.

    • adaptive - An experimental retry mode that includes all the functionality of standard mode along with automatic client side throttling. This is a provisional mode that may change behavior in the future.

  • :sdk_ua_app_id (String)

    A unique and opaque application ID that is appended to the User-Agent header as app/. It should have a maximum length of 50.

  • :secret_access_key (String)
  • :session_token (String)
  • :simple_json (Boolean) — default: false

    Disables request parameter conversion, validation, and formatting. Also disable response data type conversions. This option is useful when you want to ensure the highest level of performance by avoiding overhead of walking request parameters and response data structures.

    When :simple_json is enabled, the request parameters hash must be formatted exactly as the DynamoDB API expects.

  • :stub_responses (Boolean) — default: false

    Causes the client to return stubbed responses. By default fake responses are generated and returned. You can specify the response data to return or errors to raise by calling ClientStubs#stub_responses. See ClientStubs for more information.

    Please note When response stubbing is enabled, no HTTP requests are made, and retries are disabled.

  • :token_provider (Aws::TokenProvider)

    A Bearer Token Provider. This can be an instance of any one of the following classes:

    • Aws::StaticTokenProvider - Used for configuring static, non-refreshing tokens.

    • Aws::SSOTokenProvider - Used for loading tokens from AWS SSO using an access token generated from aws login.

    When :token_provider is not configured directly, the Aws::TokenProviderChain will be used to search for tokens configured for your profile in shared configuration files.

  • :use_dualstack_endpoint (Boolean)

    When set to true, dualstack enabled endpoints (with .aws TLD) will be used if available.

  • :use_fips_endpoint (Boolean)

    When set to true, fips compatible endpoints will be used if available. When a fips region is used, the region is normalized and this config is set to true.

  • :validate_params (Boolean) — default: true

    When true, request parameters are validated before sending the request.

  • :endpoint_provider (Aws::Snowball::EndpointProvider)

    The endpoint provider used to resolve endpoints. Any object that responds to #resolve_endpoint(parameters) where parameters is a Struct similar to Aws::Snowball::EndpointParameters

  • :http_proxy (URI::HTTP, String)

    A proxy to send requests through. Formatted like 'http://proxy.com:123'.

  • :http_open_timeout (Float) — default: 15

    The number of seconds to wait when opening a HTTP session before raising a Timeout::Error.

  • :http_read_timeout (Float) — default: 60

    The default number of seconds to wait for response data. This value can safely be set per-request on the session.

  • :http_idle_timeout (Float) — default: 5

    The number of seconds a connection is allowed to sit idle before it is considered stale. Stale connections are closed and removed from the pool before making a request.

  • :http_continue_timeout (Float) — default: 1

    The number of seconds to wait for a 100-continue response before sending the request body. This option has no effect unless the request has "Expect" header set to "100-continue". Defaults to nil which disables this behaviour. This value can safely be set per request on the session.

  • :ssl_timeout (Float) — default: nil

    Sets the SSL timeout in seconds.

  • :http_wire_trace (Boolean) — default: false

    When true, HTTP debug output will be sent to the :logger.

  • :ssl_verify_peer (Boolean) — default: true

    When true, SSL peer certificates are verified when establishing a connection.

  • :ssl_ca_bundle (String)

    Full path to the SSL certificate authority bundle file that should be used when verifying peer certificates. If you do not pass :ssl_ca_bundle or :ssl_ca_directory the the system default will be used if available.

  • :ssl_ca_directory (String)

    Full path of the directory that contains the unbundled SSL certificate authority files for verifying peer certificates. If you do not pass :ssl_ca_bundle or :ssl_ca_directory the the system default will be used if available.



395
396
397
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 395

def initialize(*args)
  super
end

Instance Method Details

#cancel_cluster(params = {}) ⇒ Struct

Cancels a cluster job. You can only cancel a cluster job while it's in the AwaitingQuorum status. You'll have at least an hour after creating a cluster job to cancel it.

Examples:

Example: To cancel a cluster job


# This operation cancels a cluster job. You can only cancel a cluster job while it's in the AwaitingQuorum status.

resp = client.cancel_cluster({
  cluster_id: "CID123e4567-e89b-12d3-a456-426655440000", 
})

Request syntax with placeholder values


resp = client.cancel_cluster({
  cluster_id: "ClusterId", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :cluster_id (required, String)

    The 39-character ID for the cluster that you want to cancel, for example CID123e4567-e89b-12d3-a456-426655440000.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



430
431
432
433
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 430

def cancel_cluster(params = {}, options = {})
  req = build_request(:cancel_cluster, params)
  req.send_request(options)
end

#cancel_job(params = {}) ⇒ Struct

Cancels the specified job. You can only cancel a job before its JobState value changes to PreparingAppliance. Requesting the ListJobs or DescribeJob action returns a job's JobState as part of the response element data returned.

Examples:

Example: To cancel a job for a Snowball device


# This operation cancels a job. You can only cancel a job before its JobState value changes to PreparingAppliance.

resp = client.cancel_job({
  job_id: "JID123e4567-e89b-12d3-a456-426655440000", 
})

Request syntax with placeholder values


resp = client.cancel_job({
  job_id: "JobId", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :job_id (required, String)

    The 39-character job ID for the job that you want to cancel, for example JID123e4567-e89b-12d3-a456-426655440000.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



465
466
467
468
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 465

def cancel_job(params = {}, options = {})
  req = build_request(:cancel_job, params)
  req.send_request(options)
end

#create_address(params = {}) ⇒ Types::CreateAddressResult

Creates an address for a Snow device to be shipped to. In most regions, addresses are validated at the time of creation. The address you provide must be located within the serviceable area of your region. If the address is invalid or unsupported, then an exception is thrown. If providing an address as a JSON file through the cli-input-json option, include the full file path. For example, --cli-input-json file://create-address.json.

Examples:

Example: To create an address for a job


# This operation creates an address for a job. Addresses are validated at the time of creation. The address you provide
# must be located within the serviceable area of your region. If the address is invalid or unsupported, then an exception
# is thrown.

resp = client.create_address({
  address: {
    city: "Seattle", 
    company: "My Company's Name", 
    country: "USA", 
    name: "My Name", 
    phone_number: "425-555-5555", 
    postal_code: "98101", 
    state_or_province: "WA", 
    street_1: "123 Main Street", 
  }, 
})

resp.to_h outputs the following:
{
  address_id: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", 
}

Request syntax with placeholder values


resp = client.create_address({
  address: { # required
    address_id: "AddressId",
    name: "String",
    company: "String",
    street_1: "String",
    street_2: "String",
    street_3: "String",
    city: "String",
    state_or_province: "String",
    prefecture_or_district: "String",
    landmark: "String",
    country: "String",
    postal_code: "String",
    phone_number: "String",
    is_restricted: false,
    type: "CUST_PICKUP", # accepts CUST_PICKUP, AWS_SHIP
  },
})

Response structure


resp.address_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :address (required, Types::Address)

    The address that you want the Snow device shipped to.

Returns:

See Also:



540
541
542
543
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 540

def create_address(params = {}, options = {})
  req = build_request(:create_address, params)
  req.send_request(options)
end

#create_cluster(params = {}) ⇒ Types::CreateClusterResult

Creates an empty cluster. Each cluster supports five nodes. You use the CreateJob action separately to create the jobs for each of these nodes. The cluster does not ship until these five node jobs have been created.

Examples:

Example: To create a cluster


# Creates an empty cluster. Each cluster supports five nodes. You use the CreateJob action separately to create the jobs
# for each of these nodes. The cluster does not ship until these five node jobs have been created.

resp = client.create_cluster({
  address_id: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", 
  description: "MyCluster", 
  job_type: "LOCAL_USE", 
  kms_key_arn: "arn:aws:kms:us-east-1:123456789012:key/abcd1234-12ab-34cd-56ef-123456123456", 
  notification: {
    job_states_to_notify: [
    ], 
    notify_all: false, 
  }, 
  resources: {
    s3_resources: [
      {
        bucket_arn: "arn:aws:s3:::MyBucket", 
        key_range: {
        }, 
      }, 
    ], 
  }, 
  role_arn: "arn:aws:iam::123456789012:role/snowball-import-S3-role", 
  shipping_option: "SECOND_DAY", 
  snowball_type: "EDGE", 
})

resp.to_h outputs the following:
{
  cluster_id: "CID123e4567-e89b-12d3-a456-426655440000", 
}

Request syntax with placeholder values


resp = client.create_cluster({
  job_type: "IMPORT", # required, accepts IMPORT, EXPORT, LOCAL_USE
  resources: {
    s3_resources: [
      {
        bucket_arn: "ResourceARN",
        key_range: {
          begin_marker: "String",
          end_marker: "String",
        },
        target_on_device_services: [
          {
            service_name: "NFS_ON_DEVICE_SERVICE", # accepts NFS_ON_DEVICE_SERVICE, S3_ON_DEVICE_SERVICE
            transfer_option: "IMPORT", # accepts IMPORT, EXPORT, LOCAL_USE
          },
        ],
      },
    ],
    lambda_resources: [
      {
        lambda_arn: "ResourceARN",
        event_triggers: [
          {
            event_resource_arn: "ResourceARN",
          },
        ],
      },
    ],
    ec2_ami_resources: [
      {
        ami_id: "AmiId", # required
        snowball_ami_id: "String",
      },
    ],
  },
  on_device_service_configuration: {
    nfs_on_device_service: {
      storage_limit: 1,
      storage_unit: "TB", # accepts TB
    },
    tgw_on_device_service: {
      storage_limit: 1,
      storage_unit: "TB", # accepts TB
    },
    eks_on_device_service: {
      kubernetes_version: "String",
      eks_anywhere_version: "String",
    },
    s3_on_device_service: {
      storage_limit: 1.0,
      storage_unit: "TB", # accepts TB
      service_size: 1,
      fault_tolerance: 1,
    },
  },
  description: "String",
  address_id: "AddressId", # required
  kms_key_arn: "KmsKeyARN",
  role_arn: "RoleARN",
  snowball_type: "STANDARD", # required, accepts STANDARD, EDGE, EDGE_C, EDGE_CG, EDGE_S, SNC1_HDD, SNC1_SSD, V3_5C, V3_5S, RACK_5U_C
  shipping_option: "SECOND_DAY", # required, accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
  notification: {
    sns_topic_arn: "SnsTopicARN",
    job_states_to_notify: ["New"], # accepts New, PreparingAppliance, PreparingShipment, InTransitToCustomer, WithCustomer, InTransitToAWS, WithAWSSortingFacility, WithAWS, InProgress, Complete, Cancelled, Listing, Pending
    notify_all: false,
    device_pickup_sns_topic_arn: "SnsTopicARN",
  },
  forwarding_address_id: "AddressId",
  tax_documents: {
    ind: {
      gstin: "GSTIN",
    },
  },
  remote_management: "INSTALLED_ONLY", # accepts INSTALLED_ONLY, INSTALLED_AUTOSTART, NOT_INSTALLED
  initial_cluster_size: 1,
  force_create_jobs: false,
  long_term_pricing_ids: ["LongTermPricingId"],
  snowball_capacity_preference: "T50", # accepts T50, T80, T100, T42, T98, T8, T14, T32, NoPreference, T240, T13
})

Response structure


resp.cluster_id #=> String
resp.job_list_entries #=> Array
resp.job_list_entries[0].job_id #=> String
resp.job_list_entries[0].job_state #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
resp.job_list_entries[0].is_master #=> Boolean
resp.job_list_entries[0].job_type #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
resp.job_list_entries[0].snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C", "V3_5S", "RACK_5U_C"
resp.job_list_entries[0].creation_date #=> Time
resp.job_list_entries[0].description #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :job_type (required, String)

    The type of job for this cluster. Currently, the only job type supported for clusters is LOCAL_USE.

    For more information, see "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide or "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide.

  • :resources (Types::JobResource)

    The resources associated with the cluster job. These resources include Amazon S3 buckets and optional Lambda functions written in the Python language.

  • :on_device_service_configuration (Types::OnDeviceServiceConfiguration)

    Specifies the service or services on the Snow Family device that your transferred data will be exported from or imported into. Amazon Web Services Snow Family device clusters support Amazon S3 and NFS (Network File System).

  • :description (String)

    An optional description of this specific cluster, for example Environmental Data Cluster-01.

  • :address_id (required, String)

    The ID for the address that you want the cluster shipped to.

  • :kms_key_arn (String)

    The KmsKeyARN value that you want to associate with this cluster. KmsKeyARN values are created by using the CreateKey API action in Key Management Service (KMS).

  • :role_arn (String)

    The RoleARN that you want to associate with this cluster. RoleArn values are created by using the CreateRole API action in Identity and Access Management (IAM).

  • :snowball_type (required, String)

    The type of Snow Family devices to use for this cluster.

    For cluster jobs, Amazon Web Services Snow Family currently supports only the EDGE device type.

    For more information, see "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide or "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide.

  • :shipping_option (required, String)

    The shipping speed for each node in this cluster. This speed doesn't dictate how soon you'll get each Snowball Edge device, rather it represents how quickly each device moves to its destination while in transit. Regional shipping speeds are as follows:

    • In Australia, you have access to express shipping. Typically, Snow devices shipped express are delivered in about a day.

    • In the European Union (EU), you have access to express shipping. Typically, Snow devices shipped express are delivered in about a day. In addition, most countries in the EU have access to standard shipping, which typically takes less than a week, one way.

    • In India, Snow devices are delivered in one to seven days.

    • In the United States of America (US), you have access to one-day shipping and two-day shipping. ^

    • In Australia, you have access to express shipping. Typically, devices shipped express are delivered in about a day.

    • In the European Union (EU), you have access to express shipping. Typically, Snow devices shipped express are delivered in about a day. In addition, most countries in the EU have access to standard shipping, which typically takes less than a week, one way.

    • In India, Snow devices are delivered in one to seven days.

    • In the US, you have access to one-day shipping and two-day shipping.

  • :notification (Types::Notification)

    The Amazon Simple Notification Service (Amazon SNS) notification settings for this cluster.

  • :forwarding_address_id (String)

    The forwarding address ID for a cluster. This field is not supported in most regions.

  • :tax_documents (Types::TaxDocuments)

    The tax documents required in your Amazon Web Services Region.

  • :remote_management (String)

    Allows you to securely operate and manage Snow devices in a cluster remotely from outside of your internal network. When set to INSTALLED_AUTOSTART, remote management will automatically be available when the device arrives at your location. Otherwise, you need to use the Snowball Client to manage the device.

  • :initial_cluster_size (Integer)

    If provided, each job will be automatically created and associated with the new cluster. If not provided, will be treated as 0.

  • :force_create_jobs (Boolean)

    Force to create cluster when user attempts to overprovision or underprovision a cluster. A cluster is overprovisioned or underprovisioned if the initial size of the cluster is more (overprovisioned) or less (underprovisioned) than what needed to meet capacity requirement specified with OnDeviceServiceConfiguration.

  • :long_term_pricing_ids (Array<String>)

    Lists long-term pricing id that will be used to associate with jobs automatically created for the new cluster.

  • :snowball_capacity_preference (String)

    If your job is being created in one of the US regions, you have the option of specifying what size Snow device you'd like for this job. In all other regions, Snowballs come with 80 TB in storage capacity.

    For more information, see "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide or "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide.

Returns:

See Also:



824
825
826
827
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 824

def create_cluster(params = {}, options = {})
  req = build_request(:create_cluster, params)
  req.send_request(options)
end

#create_job(params = {}) ⇒ Types::CreateJobResult

Creates a job to import or export data between Amazon S3 and your on-premises data center. Your Amazon Web Services account must have the right trust policies and permissions in place to create a job for a Snow device. If you're creating a job for a node in a cluster, you only need to provide the clusterId value; the other job attributes are inherited from the cluster.

Only the Snowball; Edge device type is supported when ordering clustered jobs.

The device capacity is optional.

Availability of device types differ by Amazon Web Services Region. For more information about Region availability, see Amazon Web Services Regional Services.

Snow Family devices and their capacities.

  • Device type: SNC1_SSD

    • Capacity: T14

    • Description: Snowcone

  • Device type: SNC1_HDD

    • Capacity: T8

    • Description: Snowcone

  • Device type: EDGE_S

    • Capacity: T98

    • Description: Snowball Edge Storage Optimized for data transfer only

  • Device type: EDGE_CG

    • Capacity: T42

    • Description: Snowball Edge Compute Optimized with GPU

  • Device type: EDGE_C

    • Capacity: T42

    • Description: Snowball Edge Compute Optimized without GPU

  • Device type: EDGE

    • Capacity: T100

    • Description: Snowball Edge Storage Optimized with EC2 Compute

    This device is replaced with T98.

  • Device type: STANDARD

    • Capacity: T50

    • Description: Original Snowball device

      This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region

  • Device type: STANDARD

    • Capacity: T80

    • Description: Original Snowball device

      This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region.

  • Snow Family device type: RACK_5U_C

    • Capacity: T13

    • Description: Snowblade.

  • Device type: V3_5S

    • Capacity: T240

    • Description: Snowball Edge Storage Optimized 210TB

Examples:

Example: To create a job


# Creates a job to import or export data between Amazon S3 and your on-premises data center. Your AWS account must have
# the right trust policies and permissions in place to create a job for Snowball. If you're creating a job for a node in a
# cluster, you only need to provide the clusterId value; the other job attributes are inherited from the cluster.

resp = client.create_job({
  address_id: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", 
  description: "My Job", 
  job_type: "IMPORT", 
  kms_key_arn: "arn:aws:kms:us-east-1:123456789012:key/abcd1234-12ab-34cd-56ef-123456123456", 
  notification: {
    job_states_to_notify: [
    ], 
    notify_all: false, 
  }, 
  resources: {
    s3_resources: [
      {
        bucket_arn: "arn:aws:s3:::MyBucket", 
        key_range: {
        }, 
      }, 
    ], 
  }, 
  role_arn: "arn:aws:iam::123456789012:role/snowball-import-S3-role", 
  shipping_option: "SECOND_DAY", 
  snowball_capacity_preference: "T80", 
  snowball_type: "STANDARD", 
})

resp.to_h outputs the following:
{
  job_id: "JID123e4567-e89b-12d3-a456-426655440000", 
}

Request syntax with placeholder values


resp = client.create_job({
  job_type: "IMPORT", # accepts IMPORT, EXPORT, LOCAL_USE
  resources: {
    s3_resources: [
      {
        bucket_arn: "ResourceARN",
        key_range: {
          begin_marker: "String",
          end_marker: "String",
        },
        target_on_device_services: [
          {
            service_name: "NFS_ON_DEVICE_SERVICE", # accepts NFS_ON_DEVICE_SERVICE, S3_ON_DEVICE_SERVICE
            transfer_option: "IMPORT", # accepts IMPORT, EXPORT, LOCAL_USE
          },
        ],
      },
    ],
    lambda_resources: [
      {
        lambda_arn: "ResourceARN",
        event_triggers: [
          {
            event_resource_arn: "ResourceARN",
          },
        ],
      },
    ],
    ec2_ami_resources: [
      {
        ami_id: "AmiId", # required
        snowball_ami_id: "String",
      },
    ],
  },
  on_device_service_configuration: {
    nfs_on_device_service: {
      storage_limit: 1,
      storage_unit: "TB", # accepts TB
    },
    tgw_on_device_service: {
      storage_limit: 1,
      storage_unit: "TB", # accepts TB
    },
    eks_on_device_service: {
      kubernetes_version: "String",
      eks_anywhere_version: "String",
    },
    s3_on_device_service: {
      storage_limit: 1.0,
      storage_unit: "TB", # accepts TB
      service_size: 1,
      fault_tolerance: 1,
    },
  },
  description: "String",
  address_id: "AddressId",
  kms_key_arn: "KmsKeyARN",
  role_arn: "RoleARN",
  snowball_capacity_preference: "T50", # accepts T50, T80, T100, T42, T98, T8, T14, T32, NoPreference, T240, T13
  shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
  notification: {
    sns_topic_arn: "SnsTopicARN",
    job_states_to_notify: ["New"], # accepts New, PreparingAppliance, PreparingShipment, InTransitToCustomer, WithCustomer, InTransitToAWS, WithAWSSortingFacility, WithAWS, InProgress, Complete, Cancelled, Listing, Pending
    notify_all: false,
    device_pickup_sns_topic_arn: "SnsTopicARN",
  },
  cluster_id: "ClusterId",
  snowball_type: "STANDARD", # accepts STANDARD, EDGE, EDGE_C, EDGE_CG, EDGE_S, SNC1_HDD, SNC1_SSD, V3_5C, V3_5S, RACK_5U_C
  forwarding_address_id: "AddressId",
  tax_documents: {
    ind: {
      gstin: "GSTIN",
    },
  },
  device_configuration: {
    snowcone_device_configuration: {
      wireless_connection: {
        is_wifi_enabled: false,
      },
    },
  },
  remote_management: "INSTALLED_ONLY", # accepts INSTALLED_ONLY, INSTALLED_AUTOSTART, NOT_INSTALLED
  long_term_pricing_id: "LongTermPricingId",
  impact_level: "IL2", # accepts IL2, IL4, IL5, IL6, IL99
  pickup_details: {
    name: "String",
    phone_number: "PhoneNumber",
    email: "Email",
    identification_number: "String",
    identification_expiration_date: Time.now,
    identification_issuing_org: "String",
    device_pickup_id: "DevicePickupId",
  },
})

Response structure


resp.job_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :job_type (String)

    Defines the type of job that you're creating.

  • :resources (Types::JobResource)

    Defines the Amazon S3 buckets associated with this job.

    With IMPORT jobs, you specify the bucket or buckets that your transferred data will be imported into.

    With EXPORT jobs, you specify the bucket or buckets that your transferred data will be exported from. Optionally, you can also specify a KeyRange value. If you choose to export a range, you define the length of the range by providing either an inclusive BeginMarker value, an inclusive EndMarker value, or both. Ranges are UTF-8 binary sorted.

  • :on_device_service_configuration (Types::OnDeviceServiceConfiguration)

    Specifies the service or services on the Snow Family device that your transferred data will be exported from or imported into. Amazon Web Services Snow Family supports Amazon S3 and NFS (Network File System) and the Amazon Web Services Storage Gateway service Tape Gateway type.

  • :description (String)

    Defines an optional description of this specific job, for example Important Photos 2016-08-11.

  • :address_id (String)

    The ID for the address that you want the Snow device shipped to.

  • :kms_key_arn (String)

    The KmsKeyARN that you want to associate with this job. KmsKeyARNs are created using the CreateKey Key Management Service (KMS) API action.

  • :role_arn (String)

    The RoleARN that you want to associate with this job. RoleArns are created using the CreateRole Identity and Access Management (IAM) API action.

  • :snowball_capacity_preference (String)

    If your job is being created in one of the US regions, you have the option of specifying what size Snow device you'd like for this job. In all other regions, Snowballs come with 80 TB in storage capacity.

    For more information, see "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide or "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide.

  • :shipping_option (String)

    The shipping speed for this job. This speed doesn't dictate how soon you'll get the Snow device, rather it represents how quickly the Snow device moves to its destination while in transit. Regional shipping speeds are as follows:

    • In Australia, you have access to express shipping. Typically, Snow devices shipped express are delivered in about a day.

    • In the European Union (EU), you have access to express shipping. Typically, Snow devices shipped express are delivered in about a day. In addition, most countries in the EU have access to standard shipping, which typically takes less than a week, one way.

    • In India, Snow devices are delivered in one to seven days.

    • In the US, you have access to one-day shipping and two-day shipping.

  • :notification (Types::Notification)

    Defines the Amazon Simple Notification Service (Amazon SNS) notification settings for this job.

  • :cluster_id (String)

    The ID of a cluster. If you're creating a job for a node in a cluster, you need to provide only this clusterId value. The other job attributes are inherited from the cluster.

  • :snowball_type (String)

    The type of Snow Family devices to use for this job.

    For cluster jobs, Amazon Web Services Snow Family currently supports only the EDGE device type.

    The type of Amazon Web Services Snow device to use for this job. Currently, the only supported device type for cluster jobs is EDGE.

    For more information, see Snowball Edge Device Options in the Snowball Edge Developer Guide.

    For more information, see "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide or "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide.

  • :forwarding_address_id (String)

    The forwarding address ID for a job. This field is not supported in most Regions.

  • :tax_documents (Types::TaxDocuments)

    The tax documents required in your Amazon Web Services Region.

  • :device_configuration (Types::DeviceConfiguration)

    Defines the device configuration for an Snowcone job.

    For more information, see "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide or "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide.

  • :remote_management (String)

    Allows you to securely operate and manage Snowcone devices remotely from outside of your internal network. When set to INSTALLED_AUTOSTART, remote management will automatically be available when the device arrives at your location. Otherwise, you need to use the Snowball Edge client to manage the device. When set to NOT_INSTALLED, remote management will not be available on the device.

  • :long_term_pricing_id (String)

    The ID of the long-term pricing type for the device.

  • :impact_level (String)

    The highest impact level of data that will be stored or processed on the device, provided at job creation.

  • :pickup_details (Types::PickupDetails)

    Information identifying the person picking up the device.

Returns:

See Also:



1237
1238
1239
1240
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1237

def create_job(params = {}, options = {})
  req = build_request(:create_job, params)
  req.send_request(options)
end

#create_long_term_pricing(params = {}) ⇒ Types::CreateLongTermPricingResult

Creates a job with the long-term usage option for a device. The long-term usage is a 1-year or 3-year long-term pricing type for the device. You are billed upfront, and Amazon Web Services provides discounts for long-term pricing.

Examples:

Request syntax with placeholder values


resp = client.create_long_term_pricing({
  long_term_pricing_type: "OneYear", # required, accepts OneYear, ThreeYear, OneMonth
  is_long_term_pricing_auto_renew: false,
  snowball_type: "STANDARD", # required, accepts STANDARD, EDGE, EDGE_C, EDGE_CG, EDGE_S, SNC1_HDD, SNC1_SSD, V3_5C, V3_5S, RACK_5U_C
})

Response structure


resp.long_term_pricing_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :long_term_pricing_type (required, String)

    The type of long-term pricing option you want for the device, either 1-year or 3-year long-term pricing.

  • :is_long_term_pricing_auto_renew (Boolean)

    Specifies whether the current long-term pricing type for the device should be renewed.

  • :snowball_type (required, String)

    The type of Snow Family devices to use for the long-term pricing job.

Returns:

See Also:



1278
1279
1280
1281
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1278

def create_long_term_pricing(params = {}, options = {})
  req = build_request(:create_long_term_pricing, params)
  req.send_request(options)
end

#create_return_shipping_label(params = {}) ⇒ Types::CreateReturnShippingLabelResult

Creates a shipping label that will be used to return the Snow device to Amazon Web Services.

Examples:

Request syntax with placeholder values


resp = client.create_return_shipping_label({
  job_id: "JobId", # required
  shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
})

Response structure


resp.status #=> String, one of "InProgress", "TimedOut", "Succeeded", "Failed"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :job_id (required, String)

    The ID for a job that you want to create the return shipping label for; for example, JID123e4567-e89b-12d3-a456-426655440000.

  • :shipping_option (String)

    The shipping speed for a particular job. This speed doesn't dictate how soon the device is returned to Amazon Web Services. This speed represents how quickly it moves to its destination while in transit. Regional shipping speeds are as follows:

Returns:

See Also:



1315
1316
1317
1318
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1315

def create_return_shipping_label(params = {}, options = {})
  req = build_request(:create_return_shipping_label, params)
  req.send_request(options)
end

#describe_address(params = {}) ⇒ Types::DescribeAddressResult

Takes an AddressId and returns specific details about that address in the form of an Address object.

Examples:

Example: To describe an address for a job


# This operation describes an address for a job.

resp = client.describe_address({
  address_id: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", 
})

resp.to_h outputs the following:
{
  address: {
    address_id: "ADID5643ec50-3eec-4eb3-9be6-9374c10eb51b", 
    city: "Seattle", 
    company: "My Company", 
    country: "US", 
    name: "My Name", 
    phone_number: "425-555-5555", 
    postal_code: "98101", 
    state_or_province: "WA", 
    street_1: "123 Main Street", 
  }, 
}

Request syntax with placeholder values


resp = client.describe_address({
  address_id: "AddressId", # required
})

Response structure


resp.address.address_id #=> String
resp.address.name #=> String
resp.address.company #=> String
resp.address.street_1 #=> String
resp.address.street_2 #=> String
resp.address.street_3 #=> String
resp.address.city #=> String
resp.address.state_or_province #=> String
resp.address.prefecture_or_district #=> String
resp.address.landmark #=> String
resp.address.country #=> String
resp.address.postal_code #=> String
resp.address.phone_number #=> String
resp.address.is_restricted #=> Boolean
resp.address.type #=> String, one of "CUST_PICKUP", "AWS_SHIP"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :address_id (required, String)

    The automatically generated ID for a specific address.

Returns:

See Also:



1382
1383
1384
1385
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1382

def describe_address(params = {}, options = {})
  req = build_request(:describe_address, params)
  req.send_request(options)
end

#describe_addresses(params = {}) ⇒ Types::DescribeAddressesResult

Returns a specified number of ADDRESS objects. Calling this API in one of the US regions will return addresses from the list of all addresses associated with this account in all US regions.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Example: To describe all the addresses you've created for AWS Snowball


# This operation describes all the addresses that you've created for AWS Snowball. Calling this API in one of the US
# regions will return addresses from the list of all addresses associated with this account in all US regions.

resp = client.describe_addresses({
})

resp.to_h outputs the following:
{
  addresses: [
    {
      address_id: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", 
      city: "Seattle", 
      company: "My Company", 
      country: "US", 
      name: "My Name", 
      phone_number: "425-555-5555", 
      postal_code: "98101", 
      state_or_province: "WA", 
      street_1: "123 Main Street", 
    }, 
  ], 
}

Request syntax with placeholder values


resp = client.describe_addresses({
  max_results: 1,
  next_token: "String",
})

Response structure


resp.addresses #=> Array
resp.addresses[0].address_id #=> String
resp.addresses[0].name #=> String
resp.addresses[0].company #=> String
resp.addresses[0].street_1 #=> String
resp.addresses[0].street_2 #=> String
resp.addresses[0].street_3 #=> String
resp.addresses[0].city #=> String
resp.addresses[0].state_or_province #=> String
resp.addresses[0].prefecture_or_district #=> String
resp.addresses[0].landmark #=> String
resp.addresses[0].country #=> String
resp.addresses[0].postal_code #=> String
resp.addresses[0].phone_number #=> String
resp.addresses[0].is_restricted #=> Boolean
resp.addresses[0].type #=> String, one of "CUST_PICKUP", "AWS_SHIP"
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :max_results (Integer)

    The number of ADDRESS objects to return.

  • :next_token (String)

    HTTP requests are stateless. To identify what object comes "next" in the list of ADDRESS objects, you have the option of specifying a value for NextToken as the starting point for your list of returned addresses.

Returns:

See Also:



1464
1465
1466
1467
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1464

def describe_addresses(params = {}, options = {})
  req = build_request(:describe_addresses, params)
  req.send_request(options)
end

#describe_cluster(params = {}) ⇒ Types::DescribeClusterResult

Returns information about a specific cluster including shipping information, cluster status, and other important metadata.

Examples:

Example: To describe a cluster


# Returns information about a specific cluster including shipping information, cluster status, and other important
# metadata.

resp = client.describe_cluster({
  cluster_id: "CID123e4567-e89b-12d3-a456-426655440000", 
})

resp.to_h outputs the following:
{
  cluster_metadata: {
    address_id: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", 
    cluster_id: "CID123e4567-e89b-12d3-a456-426655440000", 
    cluster_state: "Pending", 
    creation_date: Time.parse("1480475517.0"), 
    description: "MyCluster", 
    job_type: "LOCAL_USE", 
    kms_key_arn: "arn:aws:kms:us-east-1:123456789012:key/abcd1234-12ab-34cd-56ef-123456123456", 
    notification: {
      job_states_to_notify: [
      ], 
      notify_all: false, 
    }, 
    resources: {
      s3_resources: [
        {
          bucket_arn: "arn:aws:s3:::MyBucket", 
          key_range: {
          }, 
        }, 
      ], 
    }, 
    role_arn: "arn:aws:iam::123456789012:role/snowball-import-S3-role", 
    shipping_option: "SECOND_DAY", 
  }, 
}

Request syntax with placeholder values


resp = client.describe_cluster({
  cluster_id: "ClusterId", # required
})

Response structure


resp..cluster_id #=> String
resp..description #=> String
resp..kms_key_arn #=> String
resp..role_arn #=> String
resp..cluster_state #=> String, one of "AwaitingQuorum", "Pending", "InUse", "Complete", "Cancelled"
resp..job_type #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
resp..snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C", "V3_5S", "RACK_5U_C"
resp..creation_date #=> Time
resp..resources.s3_resources #=> Array
resp..resources.s3_resources[0].bucket_arn #=> String
resp..resources.s3_resources[0].key_range.begin_marker #=> String
resp..resources.s3_resources[0].key_range.end_marker #=> String
resp..resources.s3_resources[0].target_on_device_services #=> Array
resp..resources.s3_resources[0].target_on_device_services[0].service_name #=> String, one of "NFS_ON_DEVICE_SERVICE", "S3_ON_DEVICE_SERVICE"
resp..resources.s3_resources[0].target_on_device_services[0].transfer_option #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
resp..resources.lambda_resources #=> Array
resp..resources.lambda_resources[0].lambda_arn #=> String
resp..resources.lambda_resources[0].event_triggers #=> Array
resp..resources.lambda_resources[0].event_triggers[0].event_resource_arn #=> String
resp..resources.ec2_ami_resources #=> Array
resp..resources.ec2_ami_resources[0].ami_id #=> String
resp..resources.ec2_ami_resources[0].snowball_ami_id #=> String
resp..address_id #=> String
resp..shipping_option #=> String, one of "SECOND_DAY", "NEXT_DAY", "EXPRESS", "STANDARD"
resp..notification.sns_topic_arn #=> String
resp..notification.job_states_to_notify #=> Array
resp..notification.job_states_to_notify[0] #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
resp..notification.notify_all #=> Boolean
resp..notification.device_pickup_sns_topic_arn #=> String
resp..forwarding_address_id #=> String
resp..tax_documents.ind.gstin #=> String
resp..on_device_service_configuration.nfs_on_device_service.storage_limit #=> Integer
resp..on_device_service_configuration.nfs_on_device_service.storage_unit #=> String, one of "TB"
resp..on_device_service_configuration.tgw_on_device_service.storage_limit #=> Integer
resp..on_device_service_configuration.tgw_on_device_service.storage_unit #=> String, one of "TB"
resp..on_device_service_configuration.eks_on_device_service.kubernetes_version #=> String
resp..on_device_service_configuration.eks_on_device_service.eks_anywhere_version #=> String
resp..on_device_service_configuration.s3_on_device_service.storage_limit #=> Float
resp..on_device_service_configuration.s3_on_device_service.storage_unit #=> String, one of "TB"
resp..on_device_service_configuration.s3_on_device_service.service_size #=> Integer
resp..on_device_service_configuration.s3_on_device_service.fault_tolerance #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :cluster_id (required, String)

    The automatically generated ID for a cluster.

Returns:

See Also:



1572
1573
1574
1575
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1572

def describe_cluster(params = {}, options = {})
  req = build_request(:describe_cluster, params)
  req.send_request(options)
end

#describe_job(params = {}) ⇒ Types::DescribeJobResult

Returns information about a specific job including shipping information, job status, and other important metadata.

Examples:

Example: To describe a job you've created for AWS Snowball


# This operation describes a job you've created for AWS Snowball.

resp = client.describe_job({
  job_id: "JID123e4567-e89b-12d3-a456-426655440000", 
})

resp.to_h outputs the following:
{
  job_metadata: {
    address_id: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", 
    creation_date: Time.parse("1475626164"), 
    description: "My Job", 
    job_id: "JID123e4567-e89b-12d3-a456-426655440000", 
    job_state: "New", 
    job_type: "IMPORT", 
    kms_key_arn: "arn:aws:kms:us-east-1:123456789012:key/abcd1234-12ab-34cd-56ef-123456123456", 
    notification: {
      job_states_to_notify: [
      ], 
      notify_all: false, 
    }, 
    resources: {
      s3_resources: [
        {
          bucket_arn: "arn:aws:s3:::MyBucket", 
          key_range: {
          }, 
        }, 
      ], 
    }, 
    role_arn: "arn:aws:iam::123456789012:role/snowball-import-S3-role", 
    shipping_details: {
      shipping_option: "SECOND_DAY", 
    }, 
    snowball_capacity_preference: "T80", 
    snowball_type: "STANDARD", 
  }, 
}

Request syntax with placeholder values


resp = client.describe_job({
  job_id: "JobId", # required
})

Response structure


resp..job_id #=> String
resp..job_state #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
resp..job_type #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
resp..snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C", "V3_5S", "RACK_5U_C"
resp..creation_date #=> Time
resp..resources.s3_resources #=> Array
resp..resources.s3_resources[0].bucket_arn #=> String
resp..resources.s3_resources[0].key_range.begin_marker #=> String
resp..resources.s3_resources[0].key_range.end_marker #=> String
resp..resources.s3_resources[0].target_on_device_services #=> Array
resp..resources.s3_resources[0].target_on_device_services[0].service_name #=> String, one of "NFS_ON_DEVICE_SERVICE", "S3_ON_DEVICE_SERVICE"
resp..resources.s3_resources[0].target_on_device_services[0].transfer_option #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
resp..resources.lambda_resources #=> Array
resp..resources.lambda_resources[0].lambda_arn #=> String
resp..resources.lambda_resources[0].event_triggers #=> Array
resp..resources.lambda_resources[0].event_triggers[0].event_resource_arn #=> String
resp..resources.ec2_ami_resources #=> Array
resp..resources.ec2_ami_resources[0].ami_id #=> String
resp..resources.ec2_ami_resources[0].snowball_ami_id #=> String
resp..description #=> String
resp..kms_key_arn #=> String
resp..role_arn #=> String
resp..address_id #=> String
resp..shipping_details.shipping_option #=> String, one of "SECOND_DAY", "NEXT_DAY", "EXPRESS", "STANDARD"
resp..shipping_details.inbound_shipment.status #=> String
resp..shipping_details.inbound_shipment.tracking_number #=> String
resp..shipping_details.outbound_shipment.status #=> String
resp..shipping_details.outbound_shipment.tracking_number #=> String
resp..snowball_capacity_preference #=> String, one of "T50", "T80", "T100", "T42", "T98", "T8", "T14", "T32", "NoPreference", "T240", "T13"
resp..notification.sns_topic_arn #=> String
resp..notification.job_states_to_notify #=> Array
resp..notification.job_states_to_notify[0] #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
resp..notification.notify_all #=> Boolean
resp..notification.device_pickup_sns_topic_arn #=> String
resp..data_transfer_progress.bytes_transferred #=> Integer
resp..data_transfer_progress.objects_transferred #=> Integer
resp..data_transfer_progress.total_bytes #=> Integer
resp..data_transfer_progress.total_objects #=> Integer
resp..job_log_info.job_completion_report_uri #=> String
resp..job_log_info.job_success_log_uri #=> String
resp..job_log_info.job_failure_log_uri #=> String
resp..cluster_id #=> String
resp..forwarding_address_id #=> String
resp..tax_documents.ind.gstin #=> String
resp..device_configuration.snowcone_device_configuration.wireless_connection.is_wifi_enabled #=> Boolean
resp..remote_management #=> String, one of "INSTALLED_ONLY", "INSTALLED_AUTOSTART", "NOT_INSTALLED"
resp..long_term_pricing_id #=> String
resp..on_device_service_configuration.nfs_on_device_service.storage_limit #=> Integer
resp..on_device_service_configuration.nfs_on_device_service.storage_unit #=> String, one of "TB"
resp..on_device_service_configuration.tgw_on_device_service.storage_limit #=> Integer
resp..on_device_service_configuration.tgw_on_device_service.storage_unit #=> String, one of "TB"
resp..on_device_service_configuration.eks_on_device_service.kubernetes_version #=> String
resp..on_device_service_configuration.eks_on_device_service.eks_anywhere_version #=> String
resp..on_device_service_configuration.s3_on_device_service.storage_limit #=> Float
resp..on_device_service_configuration.s3_on_device_service.storage_unit #=> String, one of "TB"
resp..on_device_service_configuration.s3_on_device_service.service_size #=> Integer
resp..on_device_service_configuration.s3_on_device_service.fault_tolerance #=> Integer
resp..impact_level #=> String, one of "IL2", "IL4", "IL5", "IL6", "IL99"
resp..pickup_details.name #=> String
resp..pickup_details.phone_number #=> String
resp..pickup_details.email #=> String
resp..pickup_details.identification_number #=> String
resp..pickup_details.identification_expiration_date #=> Time
resp..pickup_details.identification_issuing_org #=> String
resp..pickup_details.device_pickup_id #=> String
resp..snowball_id #=> String
resp. #=> Array
resp.[0].job_id #=> String
resp.[0].job_state #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
resp.[0].job_type #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
resp.[0].snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C", "V3_5S", "RACK_5U_C"
resp.[0].creation_date #=> Time
resp.[0].resources.s3_resources #=> Array
resp.[0].resources.s3_resources[0].bucket_arn #=> String
resp.[0].resources.s3_resources[0].key_range.begin_marker #=> String
resp.[0].resources.s3_resources[0].key_range.end_marker #=> String
resp.[0].resources.s3_resources[0].target_on_device_services #=> Array
resp.[0].resources.s3_resources[0].target_on_device_services[0].service_name #=> String, one of "NFS_ON_DEVICE_SERVICE", "S3_ON_DEVICE_SERVICE"
resp.[0].resources.s3_resources[0].target_on_device_services[0].transfer_option #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
resp.[0].resources.lambda_resources #=> Array
resp.[0].resources.lambda_resources[0].lambda_arn #=> String
resp.[0].resources.lambda_resources[0].event_triggers #=> Array
resp.[0].resources.lambda_resources[0].event_triggers[0].event_resource_arn #=> String
resp.[0].resources.ec2_ami_resources #=> Array
resp.[0].resources.ec2_ami_resources[0].ami_id #=> String
resp.[0].resources.ec2_ami_resources[0].snowball_ami_id #=> String
resp.[0].description #=> String
resp.[0].kms_key_arn #=> String
resp.[0].role_arn #=> String
resp.[0].address_id #=> String
resp.[0].shipping_details.shipping_option #=> String, one of "SECOND_DAY", "NEXT_DAY", "EXPRESS", "STANDARD"
resp.[0].shipping_details.inbound_shipment.status #=> String
resp.[0].shipping_details.inbound_shipment.tracking_number #=> String
resp.[0].shipping_details.outbound_shipment.status #=> String
resp.[0].shipping_details.outbound_shipment.tracking_number #=> String
resp.[0].snowball_capacity_preference #=> String, one of "T50", "T80", "T100", "T42", "T98", "T8", "T14", "T32", "NoPreference", "T240", "T13"
resp.[0].notification.sns_topic_arn #=> String
resp.[0].notification.job_states_to_notify #=> Array
resp.[0].notification.job_states_to_notify[0] #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
resp.[0].notification.notify_all #=> Boolean
resp.[0].notification.device_pickup_sns_topic_arn #=> String
resp.[0].data_transfer_progress.bytes_transferred #=> Integer
resp.[0].data_transfer_progress.objects_transferred #=> Integer
resp.[0].data_transfer_progress.total_bytes #=> Integer
resp.[0].data_transfer_progress.total_objects #=> Integer
resp.[0].job_log_info.job_completion_report_uri #=> String
resp.[0].job_log_info.job_success_log_uri #=> String
resp.[0].job_log_info.job_failure_log_uri #=> String
resp.[0].cluster_id #=> String
resp.[0].forwarding_address_id #=> String
resp.[0].tax_documents.ind.gstin #=> String
resp.[0].device_configuration.snowcone_device_configuration.wireless_connection.is_wifi_enabled #=> Boolean
resp.[0].remote_management #=> String, one of "INSTALLED_ONLY", "INSTALLED_AUTOSTART", "NOT_INSTALLED"
resp.[0].long_term_pricing_id #=> String
resp.[0].on_device_service_configuration.nfs_on_device_service.storage_limit #=> Integer
resp.[0].on_device_service_configuration.nfs_on_device_service.storage_unit #=> String, one of "TB"
resp.[0].on_device_service_configuration.tgw_on_device_service.storage_limit #=> Integer
resp.[0].on_device_service_configuration.tgw_on_device_service.storage_unit #=> String, one of "TB"
resp.[0].on_device_service_configuration.eks_on_device_service.kubernetes_version #=> String
resp.[0].on_device_service_configuration.eks_on_device_service.eks_anywhere_version #=> String
resp.[0].on_device_service_configuration.s3_on_device_service.storage_limit #=> Float
resp.[0].on_device_service_configuration.s3_on_device_service.storage_unit #=> String, one of "TB"
resp.[0].on_device_service_configuration.s3_on_device_service.service_size #=> Integer
resp.[0].on_device_service_configuration.s3_on_device_service.fault_tolerance #=> Integer
resp.[0].impact_level #=> String, one of "IL2", "IL4", "IL5", "IL6", "IL99"
resp.[0].pickup_details.name #=> String
resp.[0].pickup_details.phone_number #=> String
resp.[0].pickup_details.email #=> String
resp.[0].pickup_details.identification_number #=> String
resp.[0].pickup_details.identification_expiration_date #=> Time
resp.[0].pickup_details.identification_issuing_org #=> String
resp.[0].pickup_details.device_pickup_id #=> String
resp.[0].snowball_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :job_id (required, String)

    The automatically generated ID for a job, for example JID123e4567-e89b-12d3-a456-426655440000.

Returns:

See Also:



1777
1778
1779
1780
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1777

def describe_job(params = {}, options = {})
  req = build_request(:describe_job, params)
  req.send_request(options)
end

#describe_return_shipping_label(params = {}) ⇒ Types::DescribeReturnShippingLabelResult

Information on the shipping label of a Snow device that is being returned to Amazon Web Services.

Examples:

Request syntax with placeholder values


resp = client.describe_return_shipping_label({
  job_id: "JobId", # required
})

Response structure


resp.status #=> String, one of "InProgress", "TimedOut", "Succeeded", "Failed"
resp.expiration_date #=> Time
resp.return_shipping_label_uri #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :job_id (required, String)

    The automatically generated ID for a job, for example JID123e4567-e89b-12d3-a456-426655440000.

Returns:

See Also:



1811
1812
1813
1814
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1811

def describe_return_shipping_label(params = {}, options = {})
  req = build_request(:describe_return_shipping_label, params)
  req.send_request(options)
end

#get_job_manifest(params = {}) ⇒ Types::GetJobManifestResult

Returns a link to an Amazon S3 presigned URL for the manifest file associated with the specified JobId value. You can access the manifest file for up to 60 minutes after this request has been made. To access the manifest file after 60 minutes have passed, you'll have to make another call to the GetJobManifest action.

The manifest is an encrypted file that you can download after your job enters the WithCustomer status. This is the only valid status for calling this API as the manifest and UnlockCode code value are used for securing your device and should only be used when you have the device. The manifest is decrypted by using the UnlockCode code value, when you pass both values to the Snow device through the Snowball client when the client is started for the first time.

As a best practice, we recommend that you don't save a copy of an UnlockCode value in the same location as the manifest file for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snow device associated with that job.

The credentials of a given job, including its manifest file and unlock code, expire 360 days after the job is created.

Examples:

Example: To get the manifest for a job you've created for AWS Snowball


# Returns a link to an Amazon S3 presigned URL for the manifest file associated with the specified JobId value. You can
# access the manifest file for up to 60 minutes after this request has been made. To access the manifest file after 60
# minutes have passed, you'll have to make another call to the GetJobManifest action.
# The manifest is an encrypted file that you can download after your job enters the WithCustomer status. The manifest is
# decrypted by using the UnlockCode code value, when you pass both values to the Snowball through the Snowball client when
# the client is started for the first time.
# As a best practice, we recommend that you don't save a copy of an UnlockCode value in the same location as the manifest
# file for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snowball
# associated with that job.
# The credentials of a given job, including its manifest file and unlock code, expire 90 days after the job is created.

resp = client.get_job_manifest({
  job_id: "JID123e4567-e89b-12d3-a456-426655440000", 
})

resp.to_h outputs the following:
{
  manifest_uri: "https://awsie-frosty-manifests-prod.s3.amazonaws.com/JID123e4567-e89b-12d3-a456-426655440000_manifest.bin?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20161224T005115Z&X-Amz-SignedHeaders=...", 
}

Request syntax with placeholder values


resp = client.get_job_manifest({
  job_id: "JobId", # required
})

Response structure


resp.manifest_uri #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :job_id (required, String)

    The ID for a job that you want to get the manifest file for, for example JID123e4567-e89b-12d3-a456-426655440000.

Returns:

See Also:



1883
1884
1885
1886
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1883

def get_job_manifest(params = {}, options = {})
  req = build_request(:get_job_manifest, params)
  req.send_request(options)
end

#get_job_unlock_code(params = {}) ⇒ Types::GetJobUnlockCodeResult

Returns the UnlockCode code value for the specified job. A particular UnlockCode value can be accessed for up to 360 days after the associated job has been created.

The UnlockCode value is a 29-character code with 25 alphanumeric characters and 4 hyphens. This code is used to decrypt the manifest file when it is passed along with the manifest to the Snow device through the Snowball client when the client is started for the first time. The only valid status for calling this API is WithCustomer as the manifest and Unlock code values are used for securing your device and should only be used when you have the device.

As a best practice, we recommend that you don't save a copy of the UnlockCode in the same location as the manifest file for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snow device associated with that job.

Examples:

Example: To get the unlock code for a job you've created for AWS Snowball


# Returns the UnlockCode code value for the specified job. A particular UnlockCode value can be accessed for up to 90 days
# after the associated job has been created.
# The UnlockCode value is a 29-character code with 25 alphanumeric characters and 4 hyphens. This code is used to decrypt
# the manifest file when it is passed along with the manifest to the Snowball through the Snowball client when the client
# is started for the first time.
# As a best practice, we recommend that you don't save a copy of the UnlockCode in the same location as the manifest file
# for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snowball associated
# with that job.

resp = client.get_job_unlock_code({
  job_id: "JID123e4567-e89b-12d3-a456-426655440000", 
})

resp.to_h outputs the following:
{
  unlock_code: "12345-abcde-56789-fghij-01234", 
}

Request syntax with placeholder values


resp = client.get_job_unlock_code({
  job_id: "JobId", # required
})

Response structure


resp.unlock_code #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :job_id (required, String)

    The ID for the job that you want to get the UnlockCode value for, for example JID123e4567-e89b-12d3-a456-426655440000.

Returns:

See Also:



1948
1949
1950
1951
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1948

def get_job_unlock_code(params = {}, options = {})
  req = build_request(:get_job_unlock_code, params)
  req.send_request(options)
end

#get_snowball_usage(params = {}) ⇒ Types::GetSnowballUsageResult

Returns information about the Snow Family service limit for your account, and also the number of Snow devices your account has in use.

The default service limit for the number of Snow devices that you can have at one time is 1. If you want to increase your service limit, contact Amazon Web Services Support.

Examples:

Example: To see your Snowball service limit and the number of Snowballs you have in use


# Returns information about the Snowball service limit for your account, and also the number of Snowballs your account has
# in use.
# The default service limit for the number of Snowballs that you can have at one time is 1. If you want to increase your
# service limit, contact AWS Support.

resp = client.get_snowball_usage({
})

resp.to_h outputs the following:
{
  snowball_limit: 1, 
  snowballs_in_use: 0, 
}

Response structure


resp.snowball_limit #=> Integer
resp.snowballs_in_use #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Returns:

See Also:



1991
1992
1993
1994
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1991

def get_snowball_usage(params = {}, options = {})
  req = build_request(:get_snowball_usage, params)
  req.send_request(options)
end

#get_software_updates(params = {}) ⇒ Types::GetSoftwareUpdatesResult

Returns an Amazon S3 presigned URL for an update file associated with a specified JobId.

Examples:

Request syntax with placeholder values


resp = client.get_software_updates({
  job_id: "JobId", # required
})

Response structure


resp.updates_uri #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :job_id (required, String)

    The ID for a job that you want to get the software update file for, for example JID123e4567-e89b-12d3-a456-426655440000.

Returns:

See Also:



2021
2022
2023
2024
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2021

def get_software_updates(params = {}, options = {})
  req = build_request(:get_software_updates, params)
  req.send_request(options)
end

#list_cluster_jobs(params = {}) ⇒ Types::ListClusterJobsResult

Returns an array of JobListEntry objects of the specified length. Each JobListEntry object is for a job in the specified cluster and contains a job's state, a job's ID, and other information.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Example: To get a list of jobs in a cluster that you've created for AWS Snowball


# Returns an array of JobListEntry objects of the specified length. Each JobListEntry object is for a job in the specified
# cluster and contains a job's state, a job's ID, and other information.

resp = client.list_cluster_jobs({
  cluster_id: "CID123e4567-e89b-12d3-a456-426655440000", 
})

resp.to_h outputs the following:
{
  job_list_entries: [
    {
      creation_date: Time.parse("1480475524.0"), 
      description: "MyClustrer-node-001", 
      is_master: false, 
      job_id: "JID123e4567-e89b-12d3-a456-426655440000", 
      job_state: "New", 
      job_type: "LOCAL_USE", 
      snowball_type: "EDGE", 
    }, 
    {
      creation_date: Time.parse("1480475525.0"), 
      description: "MyClustrer-node-002", 
      is_master: false, 
      job_id: "JID123e4567-e89b-12d3-a456-426655440001", 
      job_state: "New", 
      job_type: "LOCAL_USE", 
      snowball_type: "EDGE", 
    }, 
    {
      creation_date: Time.parse("1480475525.0"), 
      description: "MyClustrer-node-003", 
      is_master: false, 
      job_id: "JID123e4567-e89b-12d3-a456-426655440002", 
      job_state: "New", 
      job_type: "LOCAL_USE", 
      snowball_type: "EDGE", 
    }, 
    {
      creation_date: Time.parse("1480475525.0"), 
      description: "MyClustrer-node-004", 
      is_master: false, 
      job_id: "JID123e4567-e89b-12d3-a456-426655440003", 
      job_state: "New", 
      job_type: "LOCAL_USE", 
      snowball_type: "EDGE", 
    }, 
    {
      creation_date: Time.parse("1480475525.0"), 
      description: "MyClustrer-node-005", 
      is_master: false, 
      job_id: "JID123e4567-e89b-12d3-a456-426655440004", 
      job_state: "New", 
      job_type: "LOCAL_USE", 
      snowball_type: "EDGE", 
    }, 
  ], 
}

Request syntax with placeholder values


resp = client.list_cluster_jobs({
  cluster_id: "ClusterId", # required
  max_results: 1,
  next_token: "String",
})

Response structure


resp.job_list_entries #=> Array
resp.job_list_entries[0].job_id #=> String
resp.job_list_entries[0].job_state #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
resp.job_list_entries[0].is_master #=> Boolean
resp.job_list_entries[0].job_type #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
resp.job_list_entries[0].snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C", "V3_5S", "RACK_5U_C"
resp.job_list_entries[0].creation_date #=> Time
resp.job_list_entries[0].description #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :cluster_id (required, String)

    The 39-character ID for the cluster that you want to list, for example CID123e4567-e89b-12d3-a456-426655440000.

  • :max_results (Integer)

    The number of JobListEntry objects to return.

  • :next_token (String)

    HTTP requests are stateless. To identify what object comes "next" in the list of JobListEntry objects, you have the option of specifying NextToken as the starting point for your returned list.

Returns:

See Also:



2134
2135
2136
2137
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2134

def list_cluster_jobs(params = {}, options = {})
  req = build_request(:list_cluster_jobs, params)
  req.send_request(options)
end

#list_clusters(params = {}) ⇒ Types::ListClustersResult

Returns an array of ClusterListEntry objects of the specified length. Each ClusterListEntry object contains a cluster's state, a cluster's ID, and other important status information.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Example: To get a list of clusters that you've created for AWS Snowball


# Returns an array of ClusterListEntry objects of the specified length. Each ClusterListEntry object contains a cluster's
# state, a cluster's ID, and other important status information.

resp = client.list_clusters({
})

resp.to_h outputs the following:
{
  cluster_list_entries: [
    {
      cluster_id: "CID123e4567-e89b-12d3-a456-426655440000", 
      cluster_state: "Pending", 
      creation_date: Time.parse("1480475517.0"), 
      description: "MyCluster", 
    }, 
  ], 
}

Request syntax with placeholder values


resp = client.list_clusters({
  max_results: 1,
  next_token: "String",
})

Response structure


resp.cluster_list_entries #=> Array
resp.cluster_list_entries[0].cluster_id #=> String
resp.cluster_list_entries[0].cluster_state #=> String, one of "AwaitingQuorum", "Pending", "InUse", "Complete", "Cancelled"
resp.cluster_list_entries[0].creation_date #=> Time
resp.cluster_list_entries[0].description #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :max_results (Integer)

    The number of ClusterListEntry objects to return.

  • :next_token (String)

    HTTP requests are stateless. To identify what object comes "next" in the list of ClusterListEntry objects, you have the option of specifying NextToken as the starting point for your returned list.

Returns:

See Also:



2199
2200
2201
2202
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2199

def list_clusters(params = {}, options = {})
  req = build_request(:list_clusters, params)
  req.send_request(options)
end

#list_compatible_images(params = {}) ⇒ Types::ListCompatibleImagesResult

This action returns a list of the different Amazon EC2-compatible Amazon Machine Images (AMIs) that are owned by your Amazon Web Services accountthat would be supported for use on a Snow device. Currently, supported AMIs are based on the Amazon Linux-2, Ubuntu 20.04 LTS - Focal, or Ubuntu 22.04 LTS - Jammy images, available on the Amazon Web Services Marketplace. Ubuntu 16.04 LTS - Xenial (HVM) images are no longer supported in the Market, but still supported for use on devices through Amazon EC2 VM Import/Export and running locally in AMIs.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_compatible_images({
  max_results: 1,
  next_token: "String",
})

Response structure


resp.compatible_images #=> Array
resp.compatible_images[0].ami_id #=> String
resp.compatible_images[0].name #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :max_results (Integer)

    The maximum number of results for the list of compatible images. Currently, a Snowball Edge device can store 10 AMIs.

  • :next_token (String)

    HTTP requests are stateless. To identify what object comes "next" in the list of compatible images, you can specify a value for NextToken as the starting point for your list of returned images.

Returns:

See Also:



2248
2249
2250
2251
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2248

def list_compatible_images(params = {}, options = {})
  req = build_request(:list_compatible_images, params)
  req.send_request(options)
end

#list_jobs(params = {}) ⇒ Types::ListJobsResult

Returns an array of JobListEntry objects of the specified length. Each JobListEntry object contains a job's state, a job's ID, and a value that indicates whether the job is a job part, in the case of export jobs. Calling this API action in one of the US regions will return jobs from the list of all jobs associated with this account in all US regions.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Example: To get a list of jobs that you've created for AWS Snowball


# Returns an array of JobListEntry objects of the specified length. Each JobListEntry object contains a job's state, a
# job's ID, and a value that indicates whether the job is a job part, in the case of export jobs. Calling this API action
# in one of the US regions will return jobs from the list of all jobs associated with this account in all US regions.

resp = client.list_jobs({
})

resp.to_h outputs the following:
{
  job_list_entries: [
    {
      creation_date: Time.parse("1460678186.0"), 
      description: "MyJob", 
      is_master: false, 
      job_id: "JID123e4567-e89b-12d3-a456-426655440000", 
      job_state: "New", 
      job_type: "IMPORT", 
      snowball_type: "STANDARD", 
    }, 
  ], 
}

Request syntax with placeholder values


resp = client.list_jobs({
  max_results: 1,
  next_token: "String",
})

Response structure


resp.job_list_entries #=> Array
resp.job_list_entries[0].job_id #=> String
resp.job_list_entries[0].job_state #=> String, one of "New", "PreparingAppliance", "PreparingShipment", "InTransitToCustomer", "WithCustomer", "InTransitToAWS", "WithAWSSortingFacility", "WithAWS", "InProgress", "Complete", "Cancelled", "Listing", "Pending"
resp.job_list_entries[0].is_master #=> Boolean
resp.job_list_entries[0].job_type #=> String, one of "IMPORT", "EXPORT", "LOCAL_USE"
resp.job_list_entries[0].snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C", "V3_5S", "RACK_5U_C"
resp.job_list_entries[0].creation_date #=> Time
resp.job_list_entries[0].description #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :max_results (Integer)

    The number of JobListEntry objects to return.

  • :next_token (String)

    HTTP requests are stateless. To identify what object comes "next" in the list of JobListEntry objects, you have the option of specifying NextToken as the starting point for your returned list.

Returns:

See Also:



2323
2324
2325
2326
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2323

def list_jobs(params = {}, options = {})
  req = build_request(:list_jobs, params)
  req.send_request(options)
end

#list_long_term_pricing(params = {}) ⇒ Types::ListLongTermPricingResult

Lists all long-term pricing types.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_long_term_pricing({
  max_results: 1,
  next_token: "String",
})

Response structure


resp.long_term_pricing_entries #=> Array
resp.long_term_pricing_entries[0].long_term_pricing_id #=> String
resp.long_term_pricing_entries[0].long_term_pricing_end_date #=> Time
resp.long_term_pricing_entries[0].long_term_pricing_start_date #=> Time
resp.long_term_pricing_entries[0].long_term_pricing_type #=> String, one of "OneYear", "ThreeYear", "OneMonth"
resp.long_term_pricing_entries[0].current_active_job #=> String
resp.long_term_pricing_entries[0].replacement_job #=> String
resp.long_term_pricing_entries[0].is_long_term_pricing_auto_renew #=> Boolean
resp.long_term_pricing_entries[0].long_term_pricing_status #=> String
resp.long_term_pricing_entries[0].snowball_type #=> String, one of "STANDARD", "EDGE", "EDGE_C", "EDGE_CG", "EDGE_S", "SNC1_HDD", "SNC1_SSD", "V3_5C", "V3_5S", "RACK_5U_C"
resp.long_term_pricing_entries[0].job_ids #=> Array
resp.long_term_pricing_entries[0].job_ids[0] #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :max_results (Integer)

    The maximum number of ListLongTermPricing objects to return.

  • :next_token (String)

    Because HTTP requests are stateless, this is the starting point for your next list of ListLongTermPricing to return.

Returns:

See Also:



2371
2372
2373
2374
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2371

def list_long_term_pricing(params = {}, options = {})
  req = build_request(:list_long_term_pricing, params)
  req.send_request(options)
end

#list_pickup_locations(params = {}) ⇒ Types::ListPickupLocationsResult

A list of locations from which the customer can choose to pickup a device.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Example: To get a list of locations from which the customer can choose to pickup a device.


# Returns a specified number of Address objects. Each Address is a pickup location address for Snow Family devices.

resp = client.list_pickup_locations({
})

resp.to_h outputs the following:
{
  addresses: [
    {
      address_id: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", 
      city: "Seattle", 
      company: "My Company", 
      country: "US", 
      name: "My Name", 
      phone_number: "425-555-5555", 
      postal_code: "98101", 
      state_or_province: "WA", 
      street_1: "123 Main Street", 
    }, 
  ], 
}

Request syntax with placeholder values


resp = client.list_pickup_locations({
  max_results: 1,
  next_token: "String",
})

Response structure


resp.addresses #=> Array
resp.addresses[0].address_id #=> String
resp.addresses[0].name #=> String
resp.addresses[0].company #=> String
resp.addresses[0].street_1 #=> String
resp.addresses[0].street_2 #=> String
resp.addresses[0].street_3 #=> String
resp.addresses[0].city #=> String
resp.addresses[0].state_or_province #=> String
resp.addresses[0].prefecture_or_district #=> String
resp.addresses[0].landmark #=> String
resp.addresses[0].country #=> String
resp.addresses[0].postal_code #=> String
resp.addresses[0].phone_number #=> String
resp.addresses[0].is_restricted #=> Boolean
resp.addresses[0].type #=> String, one of "CUST_PICKUP", "AWS_SHIP"
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :max_results (Integer)

    The maximum number of locations to list per page.

  • :next_token (String)

    HTTP requests are stateless. To identify what object comes "next" in the list of ListPickupLocationsRequest objects, you have the option of specifying NextToken as the starting point for your returned list.

Returns:

See Also:



2451
2452
2453
2454
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2451

def list_pickup_locations(params = {}, options = {})
  req = build_request(:list_pickup_locations, params)
  req.send_request(options)
end

#list_service_versions(params = {}) ⇒ Types::ListServiceVersionsResult

Lists all supported versions for Snow on-device services. Returns an array of ServiceVersion object containing the supported versions for a particular service.

Examples:

Request syntax with placeholder values


resp = client.list_service_versions({
  service_name: "KUBERNETES", # required, accepts KUBERNETES, EKS_ANYWHERE
  dependent_services: [
    {
      service_name: "KUBERNETES", # accepts KUBERNETES, EKS_ANYWHERE
      service_version: {
        version: "String",
      },
    },
  ],
  max_results: 1,
  next_token: "String",
})

Response structure


resp.service_versions #=> Array
resp.service_versions[0].version #=> String
resp.service_name #=> String, one of "KUBERNETES", "EKS_ANYWHERE"
resp.dependent_services #=> Array
resp.dependent_services[0].service_name #=> String, one of "KUBERNETES", "EKS_ANYWHERE"
resp.dependent_services[0].service_version.version #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :service_name (required, String)

    The name of the service for which you're requesting supported versions.

  • :dependent_services (Array<Types::DependentService>)

    A list of names and versions of dependant services of the requested service.

  • :max_results (Integer)

    The maximum number of ListServiceVersions objects to return.

  • :next_token (String)

    Because HTTP requests are stateless, this is the starting point for the next list of returned ListServiceVersionsRequest versions.

Returns:

See Also:



2512
2513
2514
2515
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2512

def list_service_versions(params = {}, options = {})
  req = build_request(:list_service_versions, params)
  req.send_request(options)
end

#update_cluster(params = {}) ⇒ Struct

While a cluster's ClusterState value is in the AwaitingQuorum state, you can update some of the information associated with a cluster. Once the cluster changes to a different job state, usually 60 minutes after the cluster being created, this action is no longer available.

Examples:

Example: To update a cluster


# This action allows you to update certain parameters for a cluster. Once the cluster changes to a different state,
# usually within 60 minutes of it being created, this action is no longer available.

resp = client.update_cluster({
  address_id: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", 
  cluster_id: "CID123e4567-e89b-12d3-a456-426655440000", 
  description: "updated-cluster-name", 
})

Request syntax with placeholder values


resp = client.update_cluster({
  cluster_id: "ClusterId", # required
  role_arn: "RoleARN",
  description: "String",
  resources: {
    s3_resources: [
      {
        bucket_arn: "ResourceARN",
        key_range: {
          begin_marker: "String",
          end_marker: "String",
        },
        target_on_device_services: [
          {
            service_name: "NFS_ON_DEVICE_SERVICE", # accepts NFS_ON_DEVICE_SERVICE, S3_ON_DEVICE_SERVICE
            transfer_option: "IMPORT", # accepts IMPORT, EXPORT, LOCAL_USE
          },
        ],
      },
    ],
    lambda_resources: [
      {
        lambda_arn: "ResourceARN",
        event_triggers: [
          {
            event_resource_arn: "ResourceARN",
          },
        ],
      },
    ],
    ec2_ami_resources: [
      {
        ami_id: "AmiId", # required
        snowball_ami_id: "String",
      },
    ],
  },
  on_device_service_configuration: {
    nfs_on_device_service: {
      storage_limit: 1,
      storage_unit: "TB", # accepts TB
    },
    tgw_on_device_service: {
      storage_limit: 1,
      storage_unit: "TB", # accepts TB
    },
    eks_on_device_service: {
      kubernetes_version: "String",
      eks_anywhere_version: "String",
    },
    s3_on_device_service: {
      storage_limit: 1.0,
      storage_unit: "TB", # accepts TB
      service_size: 1,
      fault_tolerance: 1,
    },
  },
  address_id: "AddressId",
  shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
  notification: {
    sns_topic_arn: "SnsTopicARN",
    job_states_to_notify: ["New"], # accepts New, PreparingAppliance, PreparingShipment, InTransitToCustomer, WithCustomer, InTransitToAWS, WithAWSSortingFacility, WithAWS, InProgress, Complete, Cancelled, Listing, Pending
    notify_all: false,
    device_pickup_sns_topic_arn: "SnsTopicARN",
  },
  forwarding_address_id: "AddressId",
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :cluster_id (required, String)

    The cluster ID of the cluster that you want to update, for example CID123e4567-e89b-12d3-a456-426655440000.

  • :role_arn (String)

    The new role Amazon Resource Name (ARN) that you want to associate with this cluster. To create a role ARN, use the CreateRole API action in Identity and Access Management (IAM).

  • :description (String)

    The updated description of this cluster.

  • :resources (Types::JobResource)

    The updated arrays of JobResource objects that can include updated S3Resource objects or LambdaResource objects.

  • :on_device_service_configuration (Types::OnDeviceServiceConfiguration)

    Specifies the service or services on the Snow Family device that your transferred data will be exported from or imported into. Amazon Web Services Snow Family device clusters support Amazon S3 and NFS (Network File System).

  • :address_id (String)

    The ID of the updated Address object.

  • :shipping_option (String)

    The updated shipping option value of this cluster's ShippingDetails object.

  • :notification (Types::Notification)

    The new or updated Notification object.

  • :forwarding_address_id (String)

    The updated ID for the forwarding address for a cluster. This field is not supported in most regions.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



2651
2652
2653
2654
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2651

def update_cluster(params = {}, options = {})
  req = build_request(:update_cluster, params)
  req.send_request(options)
end

#update_job(params = {}) ⇒ Struct

While a job's JobState value is New, you can update some of the information associated with a job. Once the job changes to a different job state, usually within 60 minutes of the job being created, this action is no longer available.

Examples:

Example: To update a job


# This action allows you to update certain parameters for a job. Once the job changes to a different job state, usually
# within 60 minutes of the job being created, this action is no longer available.

resp = client.update_job({
  address_id: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b", 
  description: "updated-job-name", 
  job_id: "JID123e4567-e89b-12d3-a456-426655440000", 
  shipping_option: "NEXT_DAY", 
  snowball_capacity_preference: "T100", 
})

Request syntax with placeholder values


resp = client.update_job({
  job_id: "JobId", # required
  role_arn: "RoleARN",
  notification: {
    sns_topic_arn: "SnsTopicARN",
    job_states_to_notify: ["New"], # accepts New, PreparingAppliance, PreparingShipment, InTransitToCustomer, WithCustomer, InTransitToAWS, WithAWSSortingFacility, WithAWS, InProgress, Complete, Cancelled, Listing, Pending
    notify_all: false,
    device_pickup_sns_topic_arn: "SnsTopicARN",
  },
  resources: {
    s3_resources: [
      {
        bucket_arn: "ResourceARN",
        key_range: {
          begin_marker: "String",
          end_marker: "String",
        },
        target_on_device_services: [
          {
            service_name: "NFS_ON_DEVICE_SERVICE", # accepts NFS_ON_DEVICE_SERVICE, S3_ON_DEVICE_SERVICE
            transfer_option: "IMPORT", # accepts IMPORT, EXPORT, LOCAL_USE
          },
        ],
      },
    ],
    lambda_resources: [
      {
        lambda_arn: "ResourceARN",
        event_triggers: [
          {
            event_resource_arn: "ResourceARN",
          },
        ],
      },
    ],
    ec2_ami_resources: [
      {
        ami_id: "AmiId", # required
        snowball_ami_id: "String",
      },
    ],
  },
  on_device_service_configuration: {
    nfs_on_device_service: {
      storage_limit: 1,
      storage_unit: "TB", # accepts TB
    },
    tgw_on_device_service: {
      storage_limit: 1,
      storage_unit: "TB", # accepts TB
    },
    eks_on_device_service: {
      kubernetes_version: "String",
      eks_anywhere_version: "String",
    },
    s3_on_device_service: {
      storage_limit: 1.0,
      storage_unit: "TB", # accepts TB
      service_size: 1,
      fault_tolerance: 1,
    },
  },
  address_id: "AddressId",
  shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
  description: "String",
  snowball_capacity_preference: "T50", # accepts T50, T80, T100, T42, T98, T8, T14, T32, NoPreference, T240, T13
  forwarding_address_id: "AddressId",
  pickup_details: {
    name: "String",
    phone_number: "PhoneNumber",
    email: "Email",
    identification_number: "String",
    identification_expiration_date: Time.now,
    identification_issuing_org: "String",
    device_pickup_id: "DevicePickupId",
  },
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :job_id (required, String)

    The job ID of the job that you want to update, for example JID123e4567-e89b-12d3-a456-426655440000.

  • :role_arn (String)

    The new role Amazon Resource Name (ARN) that you want to associate with this job. To create a role ARN, use the CreateRoleIdentity and Access Management (IAM) API action.

  • :notification (Types::Notification)

    The new or updated Notification object.

  • :resources (Types::JobResource)

    The updated JobResource object, or the updated JobResource object.

  • :on_device_service_configuration (Types::OnDeviceServiceConfiguration)

    Specifies the service or services on the Snow Family device that your transferred data will be exported from or imported into. Amazon Web Services Snow Family supports Amazon S3 and NFS (Network File System) and the Amazon Web Services Storage Gateway service Tape Gateway type.

  • :address_id (String)

    The ID of the updated Address object.

  • :shipping_option (String)

    The updated shipping option value of this job's ShippingDetails object.

  • :description (String)

    The updated description of this job's JobMetadata object.

  • :snowball_capacity_preference (String)

    The updated SnowballCapacityPreference of this job's JobMetadata object. The 50 TB Snowballs are only available in the US regions.

    For more information, see "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide or "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide.

  • :forwarding_address_id (String)

    The updated ID for the forwarding address for a job. This field is not supported in most regions.

  • :pickup_details (Types::PickupDetails)

    Information identifying the person picking up the device.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



2813
2814
2815
2816
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2813

def update_job(params = {}, options = {})
  req = build_request(:update_job, params)
  req.send_request(options)
end

#update_job_shipment_state(params = {}) ⇒ Struct

Updates the state when a shipment state changes to a different state.

Examples:

Request syntax with placeholder values


resp = client.update_job_shipment_state({
  job_id: "JobId", # required
  shipment_state: "RECEIVED", # required, accepts RECEIVED, RETURNED
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :job_id (required, String)

    The job ID of the job whose shipment date you want to update, for example JID123e4567-e89b-12d3-a456-426655440000.

  • :shipment_state (required, String)

    The state of a device when it is being shipped.

    Set to RECEIVED when the device arrives at your location.

    Set to RETURNED when you have returned the device to Amazon Web Services.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



2845
2846
2847
2848
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2845

def update_job_shipment_state(params = {}, options = {})
  req = build_request(:update_job_shipment_state, params)
  req.send_request(options)
end

#update_long_term_pricing(params = {}) ⇒ Struct

Updates the long-term pricing type.

Examples:

Request syntax with placeholder values


resp = client.update_long_term_pricing({
  long_term_pricing_id: "LongTermPricingId", # required
  replacement_job: "JobId",
  is_long_term_pricing_auto_renew: false,
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :long_term_pricing_id (required, String)

    The ID of the long-term pricing type for the device.

  • :replacement_job (String)

    Specifies that a device that is ordered with long-term pricing should be replaced with a new device.

  • :is_long_term_pricing_auto_renew (Boolean)

    If set to true, specifies that the current long-term pricing type for the device should be automatically renewed before the long-term pricing contract expires.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



2878
2879
2880
2881
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2878

def update_long_term_pricing(params = {}, options = {})
  req = build_request(:update_long_term_pricing, params)
  req.send_request(options)
end