Class: Aws::S3Control::Types::ListCallerAccessGrantsEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::ListCallerAccessGrantsEntry
- 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
-
#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.
4985 4986 4987 4988 4989 4990 4991 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 4985 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.
4985 4986 4987 4988 4989 4990 4991 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 4985 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.
4985 4986 4987 4988 4989 4990 4991 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 4985 class ListCallerAccessGrantsEntry < Struct.new( :permission, :grant_scope, :application_arn) SENSITIVE = [] include Aws::Structure end |