pub struct FlowDefinitionOutputConfig {
pub kms_key_id: Option<String>,
pub s3_output_path: String,
}
Expand description
Contains information about where human output will be stored.
Fields§
§kms_key_id: Option<String>
The Amazon Key Management Service (KMS) key ID for server-side encryption.
s3_output_path: String
The Amazon S3 path where the object containing human output will be made available.
Trait Implementations§
Source§impl Clone for FlowDefinitionOutputConfig
impl Clone for FlowDefinitionOutputConfig
Source§fn clone(&self) -> FlowDefinitionOutputConfig
fn clone(&self) -> FlowDefinitionOutputConfig
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 FlowDefinitionOutputConfig
impl Debug for FlowDefinitionOutputConfig
Source§impl Default for FlowDefinitionOutputConfig
impl Default for FlowDefinitionOutputConfig
Source§fn default() -> FlowDefinitionOutputConfig
fn default() -> FlowDefinitionOutputConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FlowDefinitionOutputConfig
impl<'de> Deserialize<'de> for FlowDefinitionOutputConfig
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 FlowDefinitionOutputConfig
Auto Trait Implementations§
impl Freeze for FlowDefinitionOutputConfig
impl RefUnwindSafe for FlowDefinitionOutputConfig
impl Send for FlowDefinitionOutputConfig
impl Sync for FlowDefinitionOutputConfig
impl Unpin for FlowDefinitionOutputConfig
impl UnwindSafe for FlowDefinitionOutputConfig
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