#[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 ==
.