Class: Aws::AmplifyBackend::Types::UpdateBackendStorageResourceConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyBackend::Types::UpdateBackendStorageResourceConfig
- Defined in:
- gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb
Overview
Note:
When making an API call, you may pass UpdateBackendStorageResourceConfig data as a hash:
{
permissions: { # required
authenticated: ["READ"], # required, accepts READ, CREATE_AND_UPDATE, DELETE
un_authenticated: ["READ"], # accepts READ, CREATE_AND_UPDATE, DELETE
},
service_name: "S3", # required, accepts S3
}
The resource configuration for updating backend storage.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#permissions ⇒ Types::BackendStoragePermissions
The authorization configuration for the storage S3 bucket.
-
#service_name ⇒ String
The name of the storage service.
Instance Attribute Details
#permissions ⇒ Types::BackendStoragePermissions
The authorization configuration for the storage S3 bucket.
4780 4781 4782 4783 4784 4785 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 4780 class UpdateBackendStorageResourceConfig < Struct.new( :permissions, :service_name) SENSITIVE = [] include Aws::Structure end |
#service_name ⇒ String
The name of the storage service.
4780 4781 4782 4783 4784 4785 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 4780 class UpdateBackendStorageResourceConfig < Struct.new( :permissions, :service_name) SENSITIVE = [] include Aws::Structure end |