15 lines
349 B
Swift
15 lines
349 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Foundation
|
|
struct PluginConstants {
|
|
static let awsS3StoragePluginKey = "awsS3StoragePlugin"
|
|
static let bucket = "bucket"
|
|
static let region = "region"
|
|
static let defaultAccessLevel = "defaultAccessLevel"
|
|
}
|