pub struct DescribeLocationS3Response {
pub creation_time: Option<f64>,
pub location_arn: Option<String>,
pub location_uri: Option<String>,
pub s3_config: Option<S3Config>,
pub s3_storage_class: Option<String>,
}
Expand description
DescribeLocationS3Response
Fields§
§creation_time: Option<f64>
The time that the Amazon S3 bucket location was created.
location_arn: Option<String>
The Amazon Resource Name (ARN) of the Amazon S3 bucket location.
location_uri: Option<String>
The URL of the Amazon S3 location that was described.
s3_config: Option<S3Config>
§s3_storage_class: Option<String>
The Amazon S3 storage class that you chose 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.
Trait Implementations§
Source§impl Clone for DescribeLocationS3Response
impl Clone for DescribeLocationS3Response
Source§fn clone(&self) -> DescribeLocationS3Response
fn clone(&self) -> DescribeLocationS3Response
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DescribeLocationS3Response
impl Debug for DescribeLocationS3Response
Source§impl Default for DescribeLocationS3Response
impl Default for DescribeLocationS3Response
Source§fn default() -> DescribeLocationS3Response
fn default() -> DescribeLocationS3Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeLocationS3Response
impl<'de> Deserialize<'de> for DescribeLocationS3Response
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for DescribeLocationS3Response
Auto Trait Implementations§
impl Freeze for DescribeLocationS3Response
impl RefUnwindSafe for DescribeLocationS3Response
impl Send for DescribeLocationS3Response
impl Sync for DescribeLocationS3Response
impl Unpin for DescribeLocationS3Response
impl UnwindSafe for DescribeLocationS3Response
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more