#[non_exhaustive]pub struct ApplicationSummary { /* private fields */ }
Expand description
Summary of details about the application.
Implementations§
source§impl ApplicationSummary
impl ApplicationSummary
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
The application Amazon Resource Name (ARN).
The name of the author publishing the app.
Minimum length=1. Maximum length=127.
Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";
sourcepub fn creation_time(&self) -> Option<&str>
pub fn creation_time(&self) -> Option<&str>
The date and time this resource was created.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the application.
Minimum length=1. Maximum length=256
sourcepub fn home_page_url(&self) -> Option<&str>
pub fn home_page_url(&self) -> Option<&str>
A URL with more information about the application, for example the location of your GitHub repository for the application.
sourcepub fn labels(&self) -> Option<&[String]>
pub fn labels(&self) -> Option<&[String]>
Labels to improve discovery of apps in search results.
Minimum length=1. Maximum length=127. Maximum number of labels: 10
Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the application.
Minimum length=1. Maximum length=140
Pattern: "[a-zA-Z0-9\\-]+";
sourcepub fn spdx_license_id(&self) -> Option<&str>
pub fn spdx_license_id(&self) -> Option<&str>
A valid identifier from https://spdx.org/licenses/.
source§impl ApplicationSummary
impl ApplicationSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ApplicationSummary
.
Trait Implementations§
source§impl Clone for ApplicationSummary
impl Clone for ApplicationSummary
source§fn clone(&self) -> ApplicationSummary
fn clone(&self) -> ApplicationSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ApplicationSummary
impl Debug for ApplicationSummary
source§impl PartialEq<ApplicationSummary> for ApplicationSummary
impl PartialEq<ApplicationSummary> for ApplicationSummary
source§fn eq(&self, other: &ApplicationSummary) -> bool
fn eq(&self, other: &ApplicationSummary) -> bool
self
and other
values to be equal, and is used
by ==
.