Class: Aws::S3Control::Types::ListCallerAccessGrantsEntry

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb

Overview

Part of ListCallerAccessGrantsResult. Each entry includes the permission level (READ, WRITE, or READWRITE) and the grant scope of the access grant. If the grant also includes an application ARN, the grantee can only access the S3 data through this application.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#application_arnString

The Amazon Resource Name (ARN) of an Amazon Web Services IAM Identity Center application associated with your Identity Center instance. If the grant includes an application ARN, the grantee can only access the S3 data through this application.

Returns:

  • (String)


5132
5133
5134
5135
5136
5137
5138
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 5132

class ListCallerAccessGrantsEntry < Struct.new(
  :permission,
  :grant_scope,
  :application_arn)
  SENSITIVE = []
  include Aws::Structure
end

#grant_scopeString

The S3 path of the data to which you have been granted access.

Returns:

  • (String)


5132
5133
5134
5135
5136
5137
5138
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 5132

class ListCallerAccessGrantsEntry < Struct.new(
  :permission,
  :grant_scope,
  :application_arn)
  SENSITIVE = []
  include Aws::Structure
end

#permissionString

The type of permission granted, which can be one of the following values:

  • READ - Grants read-only access to the S3 data.

  • WRITE - Grants write-only access to the S3 data.

  • READWRITE - Grants both read and write access to the S3 data.

Returns:

  • (String)


5132
5133
5134
5135
5136
5137
5138
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 5132

class ListCallerAccessGrantsEntry < Struct.new(
  :permission,
  :grant_scope,
  :application_arn)
  SENSITIVE = []
  include Aws::Structure
end