Class: Aws::S3::Types::ObjectIdentifier

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

Overview

Note:

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

{
  key: "ObjectKey", # required
  version_id: "ObjectVersionId",
}

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

Key name of the object to delete.

Returns:

  • (String)


6026
6027
6028
6029
6030
# File 'lib/aws-sdk-s3/types.rb', line 6026

class ObjectIdentifier < Struct.new(
  :key,
  :version_id)
  include Aws::Structure
end

#version_idString

VersionId for the specific version of the object to delete.

Returns:

  • (String)


6026
6027
6028
6029
6030
# File 'lib/aws-sdk-s3/types.rb', line 6026

class ObjectIdentifier < Struct.new(
  :key,
  :version_id)
  include Aws::Structure
end