#[non_exhaustive]pub struct ProviderIntermediateDataAccessConfiguration {
pub aws_account_ids: Option<Vec<String>>,
pub required_bucket_actions: Option<Vec<String>>,
}
Expand description
The required configuration fields to give intermediate access to a provider service.
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.aws_account_ids: Option<Vec<String>>
The Amazon Web Services account that provider can use to read or write data into the customer's intermediate S3 bucket.
required_bucket_actions: Option<Vec<String>>
The S3 bucket actions that the provider requires permission for.
Implementations§
source§impl ProviderIntermediateDataAccessConfiguration
impl ProviderIntermediateDataAccessConfiguration
sourcepub fn aws_account_ids(&self) -> &[String]
pub fn aws_account_ids(&self) -> &[String]
The Amazon Web Services account that provider can use to read or write data into the customer's intermediate S3 bucket.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .aws_account_ids.is_none()
.
sourcepub fn required_bucket_actions(&self) -> &[String]
pub fn required_bucket_actions(&self) -> &[String]
The S3 bucket actions that the provider requires permission for.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .required_bucket_actions.is_none()
.
source§impl ProviderIntermediateDataAccessConfiguration
impl ProviderIntermediateDataAccessConfiguration
sourcepub fn builder() -> ProviderIntermediateDataAccessConfigurationBuilder
pub fn builder() -> ProviderIntermediateDataAccessConfigurationBuilder
Creates a new builder-style object to manufacture ProviderIntermediateDataAccessConfiguration
.
Trait Implementations§
source§impl Clone for ProviderIntermediateDataAccessConfiguration
impl Clone for ProviderIntermediateDataAccessConfiguration
source§fn clone(&self) -> ProviderIntermediateDataAccessConfiguration
fn clone(&self) -> ProviderIntermediateDataAccessConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ProviderIntermediateDataAccessConfiguration
impl PartialEq for ProviderIntermediateDataAccessConfiguration
source§fn eq(&self, other: &ProviderIntermediateDataAccessConfiguration) -> bool
fn eq(&self, other: &ProviderIntermediateDataAccessConfiguration) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ProviderIntermediateDataAccessConfiguration
Auto Trait Implementations§
impl Freeze for ProviderIntermediateDataAccessConfiguration
impl RefUnwindSafe for ProviderIntermediateDataAccessConfiguration
impl Send for ProviderIntermediateDataAccessConfiguration
impl Sync for ProviderIntermediateDataAccessConfiguration
impl Unpin for ProviderIntermediateDataAccessConfiguration
impl UnwindSafe for ProviderIntermediateDataAccessConfiguration
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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