#[non_exhaustive]pub struct GetApplicationOutput {Show 14 fields
pub name: Option<String>,
pub arn: Option<String>,
pub owner_account_id: Option<String>,
pub created_by_account_id: Option<String>,
pub application_id: Option<String>,
pub environment_id: Option<String>,
pub vpc_id: Option<String>,
pub proxy_type: Option<ProxyType>,
pub api_gateway_proxy: Option<ApiGatewayProxyConfig>,
pub state: Option<ApplicationState>,
pub tags: Option<HashMap<String, String>>,
pub error: Option<ErrorResponse>,
pub last_updated_time: Option<DateTime>,
pub created_time: Option<DateTime>,
/* private fields */
}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.name: Option<String>The name of the application.
arn: Option<String>The Amazon Resource Name (ARN) of the application.
owner_account_id: Option<String>The Amazon Web Services account ID of the application owner (which is always the same as the environment owner account ID).
created_by_account_id: Option<String>The Amazon Web Services account ID of the application creator.
application_id: Option<String>The unique identifier of the application.
environment_id: Option<String>The unique identifier of the environment.
vpc_id: Option<String>The ID of the virtual private cloud (VPC).
proxy_type: Option<ProxyType>The proxy type of the proxy created within the application.
api_gateway_proxy: Option<ApiGatewayProxyConfig>The endpoint URL of the API Gateway proxy.
state: Option<ApplicationState>The current state of the application.
The tags assigned to the application. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.
error: Option<ErrorResponse>Any error associated with the application resource.
last_updated_time: Option<DateTime>A timestamp that indicates when the application was last updated.
created_time: Option<DateTime>A timestamp that indicates when the application is created.
Implementations§
source§impl GetApplicationOutput
impl GetApplicationOutput
sourcepub fn owner_account_id(&self) -> Option<&str>
pub fn owner_account_id(&self) -> Option<&str>
The Amazon Web Services account ID of the application owner (which is always the same as the environment owner account ID).
sourcepub fn created_by_account_id(&self) -> Option<&str>
pub fn created_by_account_id(&self) -> Option<&str>
The Amazon Web Services account ID of the application creator.
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
The unique identifier of the application.
sourcepub fn environment_id(&self) -> Option<&str>
pub fn environment_id(&self) -> Option<&str>
The unique identifier of the environment.
sourcepub fn proxy_type(&self) -> Option<&ProxyType>
pub fn proxy_type(&self) -> Option<&ProxyType>
The proxy type of the proxy created within the application.
sourcepub fn api_gateway_proxy(&self) -> Option<&ApiGatewayProxyConfig>
pub fn api_gateway_proxy(&self) -> Option<&ApiGatewayProxyConfig>
The endpoint URL of the API Gateway proxy.
sourcepub fn state(&self) -> Option<&ApplicationState>
pub fn state(&self) -> Option<&ApplicationState>
The current state of the application.
The tags assigned to the application. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.
sourcepub fn error(&self) -> Option<&ErrorResponse>
pub fn error(&self) -> Option<&ErrorResponse>
Any error associated with the application resource.
sourcepub fn last_updated_time(&self) -> Option<&DateTime>
pub fn last_updated_time(&self) -> Option<&DateTime>
A timestamp that indicates when the application was last updated.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
A timestamp that indicates when the application is created.
source§impl GetApplicationOutput
impl GetApplicationOutput
sourcepub fn builder() -> GetApplicationOutputBuilder
pub fn builder() -> GetApplicationOutputBuilder
Creates a new builder-style object to manufacture GetApplicationOutput.
Trait Implementations§
source§impl Clone for GetApplicationOutput
impl Clone for GetApplicationOutput
source§fn clone(&self) -> GetApplicationOutput
fn clone(&self) -> GetApplicationOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetApplicationOutput
impl Debug for GetApplicationOutput
source§impl PartialEq for GetApplicationOutput
impl PartialEq for GetApplicationOutput
source§impl RequestId for GetApplicationOutput
impl RequestId for GetApplicationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for GetApplicationOutput
Auto Trait Implementations§
impl Freeze for GetApplicationOutput
impl RefUnwindSafe for GetApplicationOutput
impl Send for GetApplicationOutput
impl Sync for GetApplicationOutput
impl Unpin for GetApplicationOutput
impl UnwindSafe for GetApplicationOutput
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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