Struct aws_sdk_evidently::types::ProjectAppConfigResource
source · #[non_exhaustive]pub struct ProjectAppConfigResource {
pub application_id: String,
pub environment_id: String,
pub configuration_profile_id: String,
}Expand description
This is a structure that defines the configuration of how your application integrates with AppConfig to run client-side evaluation.
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.application_id: StringThe ID of the AppConfig application to use for client-side evaluation.
environment_id: StringThe ID of the AppConfig environment to use for client-side evaluation. This must be an environment that is within the application that you specify for applicationId.
configuration_profile_id: StringThe ID of the AppConfig profile to use for client-side evaluation.
Implementations§
source§impl ProjectAppConfigResource
impl ProjectAppConfigResource
sourcepub fn application_id(&self) -> &str
pub fn application_id(&self) -> &str
The ID of the AppConfig application to use for client-side evaluation.
sourcepub fn environment_id(&self) -> &str
pub fn environment_id(&self) -> &str
The ID of the AppConfig environment to use for client-side evaluation. This must be an environment that is within the application that you specify for applicationId.
sourcepub fn configuration_profile_id(&self) -> &str
pub fn configuration_profile_id(&self) -> &str
The ID of the AppConfig profile to use for client-side evaluation.
source§impl ProjectAppConfigResource
impl ProjectAppConfigResource
sourcepub fn builder() -> ProjectAppConfigResourceBuilder
pub fn builder() -> ProjectAppConfigResourceBuilder
Creates a new builder-style object to manufacture ProjectAppConfigResource.
Trait Implementations§
source§impl Clone for ProjectAppConfigResource
impl Clone for ProjectAppConfigResource
source§fn clone(&self) -> ProjectAppConfigResource
fn clone(&self) -> ProjectAppConfigResource
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ProjectAppConfigResource
impl Debug for ProjectAppConfigResource
source§impl PartialEq for ProjectAppConfigResource
impl PartialEq for ProjectAppConfigResource
source§fn eq(&self, other: &ProjectAppConfigResource) -> bool
fn eq(&self, other: &ProjectAppConfigResource) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ProjectAppConfigResource
Auto Trait Implementations§
impl Freeze for ProjectAppConfigResource
impl RefUnwindSafe for ProjectAppConfigResource
impl Send for ProjectAppConfigResource
impl Sync for ProjectAppConfigResource
impl Unpin for ProjectAppConfigResource
impl UnwindSafe for ProjectAppConfigResource
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> 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