Struct aws_sdk_appfabric::operation::update_ingestion_destination::UpdateIngestionDestinationInput
source · #[non_exhaustive]pub struct UpdateIngestionDestinationInput {
pub app_bundle_identifier: Option<String>,
pub ingestion_identifier: Option<String>,
pub ingestion_destination_identifier: Option<String>,
pub destination_configuration: Option<DestinationConfiguration>,
}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.app_bundle_identifier: Option<String>The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.
ingestion_identifier: Option<String>The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request.
ingestion_destination_identifier: Option<String>The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion destination to use for the request.
destination_configuration: Option<DestinationConfiguration>Contains information about the destination of ingested data.
Implementations§
source§impl UpdateIngestionDestinationInput
impl UpdateIngestionDestinationInput
sourcepub fn app_bundle_identifier(&self) -> Option<&str>
pub fn app_bundle_identifier(&self) -> Option<&str>
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.
sourcepub fn ingestion_identifier(&self) -> Option<&str>
pub fn ingestion_identifier(&self) -> Option<&str>
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request.
sourcepub fn ingestion_destination_identifier(&self) -> Option<&str>
pub fn ingestion_destination_identifier(&self) -> Option<&str>
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion destination to use for the request.
sourcepub fn destination_configuration(&self) -> Option<&DestinationConfiguration>
pub fn destination_configuration(&self) -> Option<&DestinationConfiguration>
Contains information about the destination of ingested data.
source§impl UpdateIngestionDestinationInput
impl UpdateIngestionDestinationInput
sourcepub fn builder() -> UpdateIngestionDestinationInputBuilder
pub fn builder() -> UpdateIngestionDestinationInputBuilder
Creates a new builder-style object to manufacture UpdateIngestionDestinationInput.
Trait Implementations§
source§impl Clone for UpdateIngestionDestinationInput
impl Clone for UpdateIngestionDestinationInput
source§fn clone(&self) -> UpdateIngestionDestinationInput
fn clone(&self) -> UpdateIngestionDestinationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq<UpdateIngestionDestinationInput> for UpdateIngestionDestinationInput
impl PartialEq<UpdateIngestionDestinationInput> for UpdateIngestionDestinationInput
source§fn eq(&self, other: &UpdateIngestionDestinationInput) -> bool
fn eq(&self, other: &UpdateIngestionDestinationInput) -> bool
self and other values to be equal, and is used
by ==.