#[non_exhaustive]pub struct CreateIngestionInput {
pub app_bundle_identifier: Option<String>,
pub app: Option<String>,
pub tenant_id: Option<String>,
pub ingestion_type: Option<IngestionType>,
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.
app: Option<String>The name of the application.
Valid values are:
-
SLACK -
ASANA -
JIRA -
M365 -
M365AUDITLOGS -
ZOOM -
ZENDESK -
OKTA -
GOOGLE -
DROPBOX -
SMARTSHEET -
CISCO
tenant_id: Option<String>The ID of the application tenant.
ingestion_type: Option<IngestionType>The ingestion type.
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 CreateIngestionInput
impl CreateIngestionInput
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 app(&self) -> Option<&str>
pub fn app(&self) -> Option<&str>
The name of the application.
Valid values are:
-
SLACK -
ASANA -
JIRA -
M365 -
M365AUDITLOGS -
ZOOM -
ZENDESK -
OKTA -
GOOGLE -
DROPBOX -
SMARTSHEET -
CISCO
sourcepub fn ingestion_type(&self) -> Option<&IngestionType>
pub fn ingestion_type(&self) -> Option<&IngestionType>
The ingestion type.
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 CreateIngestionInput
impl CreateIngestionInput
sourcepub fn builder() -> CreateIngestionInputBuilder
pub fn builder() -> CreateIngestionInputBuilder
Creates a new builder-style object to manufacture CreateIngestionInput.
Trait Implementations§
source§impl Clone for CreateIngestionInput
impl Clone for CreateIngestionInput
source§fn clone(&self) -> CreateIngestionInput
fn clone(&self) -> CreateIngestionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateIngestionInput
impl Debug for CreateIngestionInput
source§impl PartialEq<CreateIngestionInput> for CreateIngestionInput
impl PartialEq<CreateIngestionInput> for CreateIngestionInput
source§fn eq(&self, other: &CreateIngestionInput) -> bool
fn eq(&self, other: &CreateIngestionInput) -> bool
self and other values to be equal, and is used
by ==.