pub struct S3Destination {
pub bucket: Option<String>,
pub key: Option<String>,
pub metadata_key: Option<String>,
}
Expand description
Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a recommendations export file, and its associated metadata file.
Fields§
§bucket: Option<String>
The name of the Amazon S3 bucket used as the destination of an export file.
key: Option<String>
The Amazon S3 bucket key of an export file.
The key uniquely identifies the object, or export file, in the S3 bucket.
metadata_key: Option<String>
The Amazon S3 bucket key of a metadata file.
The key uniquely identifies the object, or metadata file, in the S3 bucket.
Trait Implementations§
Source§impl Clone for S3Destination
impl Clone for S3Destination
Source§fn clone(&self) -> S3Destination
fn clone(&self) -> S3Destination
Returns a duplicate 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 S3Destination
impl Debug for S3Destination
Source§impl Default for S3Destination
impl Default for S3Destination
Source§fn default() -> S3Destination
fn default() -> S3Destination
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for S3Destination
impl<'de> Deserialize<'de> for S3Destination
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
Source§impl PartialEq for S3Destination
impl PartialEq for S3Destination
impl StructuralPartialEq for S3Destination
Auto Trait Implementations§
impl Freeze for S3Destination
impl RefUnwindSafe for S3Destination
impl Send for S3Destination
impl Sync for S3Destination
impl Unpin for S3Destination
impl UnwindSafe for S3Destination
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