#[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§fn eq(&self, other: &GetApplicationOutput) -> bool
fn eq(&self, other: &GetApplicationOutput) -> bool
self
and other
values to be equal, and is used
by ==
.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.