pub struct ApplicationSummary {
pub application_id: String,
pub author: String,
pub creation_time: Option<String>,
pub description: String,
pub home_page_url: Option<String>,
pub labels: Option<Vec<String>>,
pub name: String,
pub spdx_license_id: Option<String>,
}
Expand description
Summary of details about the application.
Fields§
§application_id: String
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])?$";
creation_time: Option<String>
The date and time this resource was created.
description: String
The description of the application.
Minimum length=1. Maximum length=256
home_page_url: Option<String>
A URL with more information about the application, for example the location of your GitHub repository for the application.
labels: Option<Vec<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+\\-_:\\/@]+$";
name: String
The name of the application.
Minimum length=1. Maximum length=140
Pattern: "[a-zA-Z0-9\\-]+";
spdx_license_id: Option<String>
A valid identifier from https://spdx.org/licenses/.
Trait Implementations§
Source§impl Clone for ApplicationSummary
impl Clone for ApplicationSummary
Source§fn clone(&self) -> ApplicationSummary
fn clone(&self) -> ApplicationSummary
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ApplicationSummary
impl Debug for ApplicationSummary
Source§impl Default for ApplicationSummary
impl Default for ApplicationSummary
Source§fn default() -> ApplicationSummary
fn default() -> ApplicationSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationSummary
impl<'de> Deserialize<'de> for ApplicationSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ApplicationSummary
impl PartialEq for ApplicationSummary
impl StructuralPartialEq for ApplicationSummary
Auto Trait Implementations§
impl Freeze for ApplicationSummary
impl RefUnwindSafe for ApplicationSummary
impl Send for ApplicationSummary
impl Sync for ApplicationSummary
impl Unpin for ApplicationSummary
impl UnwindSafe for ApplicationSummary
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
Mutably borrows from an owned value. Read more