Class: Aws::S3Control::Types::ListCallerAccessGrantsEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::ListCallerAccessGrantsEntry
- 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
-
#application_arn ⇒ String
The Amazon Resource Name (ARN) of an Amazon Web Services IAM Identity Center application associated with your Identity Center instance.
-
#grant_scope ⇒ String
The S3 path of the data to which you have been granted access.
-
#permission ⇒ String
The type of permission granted, which can be one of the following values:.
Instance Attribute Details
#application_arn ⇒ String
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.
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_scope ⇒ String
The S3 path of the data to which you have been granted access.
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 |
#permission ⇒ String
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.
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 |