Struct aws_sdk_pipes::operation::create_pipe::CreatePipeInput   
source · #[non_exhaustive]pub struct CreatePipeInput {
    pub name: Option<String>,
    pub description: Option<String>,
    pub desired_state: Option<RequestedPipeState>,
    pub source: Option<String>,
    pub source_parameters: Option<PipeSourceParameters>,
    pub enrichment: Option<String>,
    pub enrichment_parameters: Option<PipeEnrichmentParameters>,
    pub target: Option<String>,
    pub target_parameters: Option<PipeTargetParameters>,
    pub role_arn: Option<String>,
    pub tags: Option<HashMap<String, String>>,
    pub log_configuration: Option<PipeLogConfigurationParameters>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>The name of the pipe.
description: Option<String>A description of the pipe.
desired_state: Option<RequestedPipeState>The state the pipe should be in.
source: Option<String>The ARN of the source resource.
source_parameters: Option<PipeSourceParameters>The parameters required to set up a source for your pipe.
enrichment: Option<String>The ARN of the enrichment resource.
enrichment_parameters: Option<PipeEnrichmentParameters>The parameters required to set up enrichment on your pipe.
target: Option<String>The ARN of the target resource.
target_parameters: Option<PipeTargetParameters>The parameters required to set up a target for your pipe.
For more information about pipe target parameters, including how to use dynamic path parameters, see Target parameters in the Amazon EventBridge User Guide.
role_arn: Option<String>The ARN of the role that allows the pipe to send data to the target.
The list of key-value pairs to associate with the pipe.
log_configuration: Option<PipeLogConfigurationParameters>The logging configuration settings for the pipe.
Implementations§
source§impl CreatePipeInput
 
impl CreatePipeInput
sourcepub fn description(&self) -> Option<&str>
 
pub fn description(&self) -> Option<&str>
A description of the pipe.
sourcepub fn desired_state(&self) -> Option<&RequestedPipeState>
 
pub fn desired_state(&self) -> Option<&RequestedPipeState>
The state the pipe should be in.
sourcepub fn source_parameters(&self) -> Option<&PipeSourceParameters>
 
pub fn source_parameters(&self) -> Option<&PipeSourceParameters>
The parameters required to set up a source for your pipe.
sourcepub fn enrichment(&self) -> Option<&str>
 
pub fn enrichment(&self) -> Option<&str>
The ARN of the enrichment resource.
sourcepub fn enrichment_parameters(&self) -> Option<&PipeEnrichmentParameters>
 
pub fn enrichment_parameters(&self) -> Option<&PipeEnrichmentParameters>
The parameters required to set up enrichment on your pipe.
sourcepub fn target_parameters(&self) -> Option<&PipeTargetParameters>
 
pub fn target_parameters(&self) -> Option<&PipeTargetParameters>
The parameters required to set up a target for your pipe.
For more information about pipe target parameters, including how to use dynamic path parameters, see Target parameters in the Amazon EventBridge User Guide.
sourcepub fn role_arn(&self) -> Option<&str>
 
pub fn role_arn(&self) -> Option<&str>
The ARN of the role that allows the pipe to send data to the target.
The list of key-value pairs to associate with the pipe.
sourcepub fn log_configuration(&self) -> Option<&PipeLogConfigurationParameters>
 
pub fn log_configuration(&self) -> Option<&PipeLogConfigurationParameters>
The logging configuration settings for the pipe.
source§impl CreatePipeInput
 
impl CreatePipeInput
sourcepub fn builder() -> CreatePipeInputBuilder
 
pub fn builder() -> CreatePipeInputBuilder
Creates a new builder-style object to manufacture CreatePipeInput.
Trait Implementations§
source§impl Clone for CreatePipeInput
 
impl Clone for CreatePipeInput
source§fn clone(&self) -> CreatePipeInput
 
fn clone(&self) -> CreatePipeInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreatePipeInput
 
impl Debug for CreatePipeInput
source§impl PartialEq for CreatePipeInput
 
impl PartialEq for CreatePipeInput
source§fn eq(&self, other: &CreatePipeInput) -> bool
 
fn eq(&self, other: &CreatePipeInput) -> bool
self and other values to be equal, and is used
by ==.