Skip to main content

DeleteIntegrationOutput

Struct DeleteIntegrationOutput 

Source
#[non_exhaustive]
pub struct DeleteIntegrationOutput { pub source_arn: String, pub target_arn: String, pub integration_name: String, pub description: Option<String>, pub integration_arn: String, pub kms_key_id: Option<String>, pub additional_encryption_context: Option<HashMap<String, String>>, pub tags: Option<Vec<Tag>>, pub status: IntegrationStatus, pub create_time: DateTime, pub errors: Option<Vec<IntegrationError>>, pub data_filter: Option<String>, /* private fields */ }

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§source_arn: String

The ARN of the source for the integration.

§target_arn: String

The ARN of the target for the integration.

§integration_name: String

A unique name for an integration in Glue.

§description: Option<String>

A description of the integration.

§integration_arn: String

The Amazon Resource Name (ARN) for the integration.

§kms_key_id: Option<String>

The ARN of a KMS key used for encrypting the channel.

§additional_encryption_context: Option<HashMap<String, String>>

An optional set of non-secret key–value pairs that contains additional contextual information for encryption.

§tags: Option<Vec<Tag>>

Metadata assigned to the resource consisting of a list of key-value pairs.

§status: IntegrationStatus

The status of the integration being deleted.

The possible statuses are:

  • CREATING: The integration is being created.

  • ACTIVE: The integration creation succeeds.

  • MODIFYING: The integration is being modified.

  • FAILED: The integration creation fails.

  • DELETING: The integration is deleted.

  • SYNCING: The integration is synchronizing.

  • NEEDS_ATTENTION: The integration needs attention, such as synchronization.

§create_time: DateTime

The time when the integration was created, in UTC.

§errors: Option<Vec<IntegrationError>>

A list of errors associated with the integration.

§data_filter: Option<String>

Selects source tables for the integration using Maxwell filter syntax.

Implementations§

Source§

impl DeleteIntegrationOutput

Source

pub fn source_arn(&self) -> &str

The ARN of the source for the integration.

Source

pub fn target_arn(&self) -> &str

The ARN of the target for the integration.

Source

pub fn integration_name(&self) -> &str

A unique name for an integration in Glue.

Source

pub fn description(&self) -> Option<&str>

A description of the integration.

Source

pub fn integration_arn(&self) -> &str

The Amazon Resource Name (ARN) for the integration.

Source

pub fn kms_key_id(&self) -> Option<&str>

The ARN of a KMS key used for encrypting the channel.

Source

pub fn additional_encryption_context(&self) -> Option<&HashMap<String, String>>

An optional set of non-secret key–value pairs that contains additional contextual information for encryption.

Source

pub fn tags(&self) -> &[Tag]

Metadata assigned to the resource consisting of a list of key-value pairs.

If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().

Source

pub fn status(&self) -> &IntegrationStatus

The status of the integration being deleted.

The possible statuses are:

  • CREATING: The integration is being created.

  • ACTIVE: The integration creation succeeds.

  • MODIFYING: The integration is being modified.

  • FAILED: The integration creation fails.

  • DELETING: The integration is deleted.

  • SYNCING: The integration is synchronizing.

  • NEEDS_ATTENTION: The integration needs attention, such as synchronization.

Source

pub fn create_time(&self) -> &DateTime

The time when the integration was created, in UTC.

Source

pub fn errors(&self) -> &[IntegrationError]

A list of errors associated with the integration.

If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .errors.is_none().

Source

pub fn data_filter(&self) -> Option<&str>

Selects source tables for the integration using Maxwell filter syntax.

Source§

impl DeleteIntegrationOutput

Source

pub fn builder() -> DeleteIntegrationOutputBuilder

Creates a new builder-style object to manufacture DeleteIntegrationOutput.

Trait Implementations§

Source§

impl Clone for DeleteIntegrationOutput

Source§

fn clone(&self) -> DeleteIntegrationOutput

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for DeleteIntegrationOutput

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for DeleteIntegrationOutput

Source§

fn eq(&self, other: &DeleteIntegrationOutput) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl RequestId for DeleteIntegrationOutput

Source§

fn request_id(&self) -> Option<&str>

Returns the request ID, or None if the service could not be reached.
Source§

impl StructuralPartialEq for DeleteIntegrationOutput

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

Source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more