Class: Aws::S3::Types::Initiator
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::Initiator
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Container element that identifies who initiated the multipart upload.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#display_name ⇒ String
Name of the Principal.
-
#id ⇒ String
If the principal is an Amazon Web Services account, it provides the Canonical User ID.
Instance Attribute Details
#display_name ⇒ String
Name of the Principal.
<note markdown=“1”> This functionality is not supported for directory buckets.
</note>
8940 8941 8942 8943 8944 8945 |
# File 'lib/aws-sdk-s3/types.rb', line 8940 class Initiator < Struct.new( :id, :display_name) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
If the principal is an Amazon Web Services account, it provides the Canonical User ID. If the principal is an IAM User, it provides a user ARN value.
<note markdown=“1”> **Directory buckets** - If the principal is an Amazon Web Services account, it provides the Amazon Web Services account ID. If the principal is an IAM User, it provides a user ARN value.
</note>
8940 8941 8942 8943 8944 8945 |
# File 'lib/aws-sdk-s3/types.rb', line 8940 class Initiator < Struct.new( :id, :display_name) SENSITIVE = [] include Aws::Structure end |