pub struct CreateLocationS3Request {
pub s3_bucket_arn: String,
pub s3_config: S3Config,
pub s3_storage_class: Option<String>,
pub subdirectory: Option<String>,
pub tags: Option<Vec<TagListEntry>>,
}
Expand description
CreateLocationS3Request
Fields§
§s3_bucket_arn: String
The Amazon Resource Name (ARN) of the Amazon S3 bucket.
s3_config: S3Config
§s3_storage_class: Option<String>
The Amazon S3 storage class that you want to store your files in when this location is used as a task destination. For more information about S3 storage classes, see Amazon S3 Storage Classes in the Amazon Simple Storage Service Developer Guide. Some storage classes have behaviors that can affect your S3 storage cost. For detailed information, see using-storage-classes.
subdirectory: Option<String>
A subdirectory in the Amazon S3 bucket. This subdirectory in Amazon S3 is used to read data from the S3 source location or write data to the S3 destination.
The key-value pair that represents the tag that you want to add to the location. The value can be an empty string. We recommend using tags to name your resources.
Trait Implementations§
Source§impl Clone for CreateLocationS3Request
impl Clone for CreateLocationS3Request
Source§fn clone(&self) -> CreateLocationS3Request
fn clone(&self) -> CreateLocationS3Request
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more