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
End of support notice: Beginning November 21, 2025, Amazon S3 will stop returning ‘DisplayName`. Update your applications to use canonical IDs (unique identifier for Amazon Web Services accounts), Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full resource naming) as a direct replacement of `DisplayName`.
This change affects the following Amazon Web Services Regions: US
East (N. Virginia) Region, US West (N. California) Region, US West (Oregon) Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region, Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South America (São Paulo) Region.
Container for the owner’s display name and ID.
Constant Summary collapse
- SENSITIVE =
[]
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. This value is only supported in the following Amazon Web Services Regions:
-
US East (N. Virginia)
-
US West (N. California)
-
US West (Oregon)
-
Asia Pacific (Singapore)
-
Asia Pacific (Sydney)
-
Asia Pacific (Tokyo)
-
Europe (Ireland)
-
South America (São Paulo)
<note markdown=“1”> This functionality is not supported for directory buckets.
</note>
14032 14033 14034 14035 14036 14037 |
# File 'lib/aws-sdk-s3/types.rb', line 14032 class Owner < Struct.new( :display_name, :id) SENSITIVE = [] include Aws::Structure end |