Class: Aws::EC2::Types::S3Storage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass S3Storage data as a hash:

{
  aws_access_key_id: "String",
  bucket: "String",
  prefix: "String",
  upload_policy: "data",
  upload_policy_signature: "String",
}

Describes the storage parameters for S3 and S3 buckets for an instance store-backed AMI.

Instance Attribute Summary collapse

Instance Attribute Details

#aws_access_key_idString

The access key ID of the owner of the bucket. Before you specify a value for your access key ID, review and follow the guidance in [Best Practices for Managing AWS Access Keys].

[1]: docs.aws.amazon.com/general/latest/gr/aws-access-keys-best-practices.html

Returns:

  • (String)


32546
32547
32548
32549
32550
32551
32552
32553
# File 'lib/aws-sdk-ec2/types.rb', line 32546

class S3Storage < Struct.new(
  :aws_access_key_id,
  :bucket,
  :prefix,
  :upload_policy,
  :upload_policy_signature)
  include Aws::Structure
end

#bucketString

The bucket in which to store the AMI. You can specify a bucket that you already own or a new bucket that Amazon EC2 creates on your behalf. If you specify a bucket that belongs to someone else, Amazon EC2 returns an error.

Returns:

  • (String)


32546
32547
32548
32549
32550
32551
32552
32553
# File 'lib/aws-sdk-ec2/types.rb', line 32546

class S3Storage < Struct.new(
  :aws_access_key_id,
  :bucket,
  :prefix,
  :upload_policy,
  :upload_policy_signature)
  include Aws::Structure
end

#prefixString

The beginning of the file name of the AMI.

Returns:

  • (String)


32546
32547
32548
32549
32550
32551
32552
32553
# File 'lib/aws-sdk-ec2/types.rb', line 32546

class S3Storage < Struct.new(
  :aws_access_key_id,
  :bucket,
  :prefix,
  :upload_policy,
  :upload_policy_signature)
  include Aws::Structure
end

#upload_policyString

An Amazon S3 upload policy that gives Amazon EC2 permission to upload items into Amazon S3 on your behalf.

Returns:

  • (String)


32546
32547
32548
32549
32550
32551
32552
32553
# File 'lib/aws-sdk-ec2/types.rb', line 32546

class S3Storage < Struct.new(
  :aws_access_key_id,
  :bucket,
  :prefix,
  :upload_policy,
  :upload_policy_signature)
  include Aws::Structure
end

#upload_policy_signatureString

The signature of the JSON document.

Returns:

  • (String)


32546
32547
32548
32549
32550
32551
32552
32553
# File 'lib/aws-sdk-ec2/types.rb', line 32546

class S3Storage < Struct.new(
  :aws_access_key_id,
  :bucket,
  :prefix,
  :upload_policy,
  :upload_policy_signature)
  include Aws::Structure
end