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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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)


4979
4980
4981
4982
4983
4984
4985
# File 'lib/aws-sdk-s3control/types.rb', line 4979

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)


4979
4980
4981
4982
4983
4984
4985
# File 'lib/aws-sdk-s3control/types.rb', line 4979

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)


4979
4980
4981
4982
4983
4984
4985
# File 'lib/aws-sdk-s3control/types.rb', line 4979

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