Class: Aws::S3::Types::Owner

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 Owner data as a hash:

{
  display_name: "DisplayName",
  id: "ID",
}

Container for the owner’s display name and ID.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#display_nameString

Container for the display name of the owner.

Returns:

  • (String)


10944
10945
10946
10947
10948
10949
# File 'lib/aws-sdk-s3/types.rb', line 10944

class Owner < Struct.new(
  :display_name,
  :id)
  SENSITIVE = []
  include Aws::Structure
end

#idString

Container for the ID of the owner.

Returns:

  • (String)


10944
10945
10946
10947
10948
10949
# File 'lib/aws-sdk-s3/types.rb', line 10944

class Owner < Struct.new(
  :display_name,
  :id)
  SENSITIVE = []
  include Aws::Structure
end