Class: Aws::AmplifyBackend::Types::BackendStoragePermissions

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

Overview

Describes the read, write, and delete permissions users have against your storage S3 bucket.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#authenticatedArray<String>

Lists all authenticated user read, write, and delete permissions for your S3 bucket.

Returns:

  • (Array<String>)


467
468
469
470
471
472
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 467

class BackendStoragePermissions < Struct.new(
  :authenticated,
  :un_authenticated)
  SENSITIVE = []
  include Aws::Structure
end

#un_authenticatedArray<String>

Lists all unauthenticated user read, write, and delete permissions for your S3 bucket.

Returns:

  • (Array<String>)


467
468
469
470
471
472
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 467

class BackendStoragePermissions < Struct.new(
  :authenticated,
  :un_authenticated)
  SENSITIVE = []
  include Aws::Structure
end