Struct aws_sdk_appfabric::operation::create_ingestion_destination::CreateIngestionDestinationInput
source · #[non_exhaustive]pub struct CreateIngestionDestinationInput {
pub app_bundle_identifier: Option<String>,
pub ingestion_identifier: Option<String>,
pub processing_configuration: Option<ProcessingConfiguration>,
pub destination_configuration: Option<DestinationConfiguration>,
pub client_token: Option<String>,
pub tags: Option<Vec<Tag>>,
}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.
processing_configuration: Option<ProcessingConfiguration>Contains information about how ingested data is processed.
destination_configuration: Option<DestinationConfiguration>Contains information about the destination of ingested data.
client_token: Option<String>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value.
If you don't provide this value, then Amazon Web Services generates a random one for you.
If you retry the operation with the same ClientToken, but with different parameters, the retry fails with an IdempotentParameterMismatch error.
A map of the key-value pairs of the tag or tags to assign to the resource.
Implementations§
source§impl CreateIngestionDestinationInput
impl CreateIngestionDestinationInput
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 processing_configuration(&self) -> Option<&ProcessingConfiguration>
pub fn processing_configuration(&self) -> Option<&ProcessingConfiguration>
Contains information about how ingested data is processed.
sourcepub fn destination_configuration(&self) -> Option<&DestinationConfiguration>
pub fn destination_configuration(&self) -> Option<&DestinationConfiguration>
Contains information about the destination of ingested data.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value.
If you don't provide this value, then Amazon Web Services generates a random one for you.
If you retry the operation with the same ClientToken, but with different parameters, the retry fails with an IdempotentParameterMismatch error.
A map of the key-value pairs of the tag or tags to assign to the resource.
source§impl CreateIngestionDestinationInput
impl CreateIngestionDestinationInput
sourcepub fn builder() -> CreateIngestionDestinationInputBuilder
pub fn builder() -> CreateIngestionDestinationInputBuilder
Creates a new builder-style object to manufacture CreateIngestionDestinationInput.
Trait Implementations§
source§impl Clone for CreateIngestionDestinationInput
impl Clone for CreateIngestionDestinationInput
source§fn clone(&self) -> CreateIngestionDestinationInput
fn clone(&self) -> CreateIngestionDestinationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq<CreateIngestionDestinationInput> for CreateIngestionDestinationInput
impl PartialEq<CreateIngestionDestinationInput> for CreateIngestionDestinationInput
source§fn eq(&self, other: &CreateIngestionDestinationInput) -> bool
fn eq(&self, other: &CreateIngestionDestinationInput) -> bool
self and other values to be equal, and is used
by ==.