Class: Aws::S3::Types::Owner
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::Owner
- 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.
Instance Attribute Summary collapse
-
#display_name ⇒ String
Container for the display name of the owner.
-
#id ⇒ String
Container for the ID of the owner.
Instance Attribute Details
#display_name ⇒ String
Container for the display name of the owner.
8238 8239 8240 8241 8242 |
# File 'lib/aws-sdk-s3/types.rb', line 8238 class Owner < Struct.new( :display_name, :id) include Aws::Structure end |
#id ⇒ String
Container for the ID of the owner.
8238 8239 8240 8241 8242 |
# File 'lib/aws-sdk-s3/types.rb', line 8238 class Owner < Struct.new( :display_name, :id) include Aws::Structure end |