Struct aws_sdk_apigateway::output::CreateApiKeyOutput
source · #[non_exhaustive]pub struct CreateApiKeyOutput { /* private fields */ }Expand description
A resource that can be distributed to callers for executing Method resources that require an API key. API keys can be mapped to any Stage on any RestApi, which indicates that the callers with the API key can make requests to that stage.
Implementations§
source§impl CreateApiKeyOutput
impl CreateApiKeyOutput
sourcepub fn customer_id(&self) -> Option<&str>
pub fn customer_id(&self) -> Option<&str>
An AWS Marketplace customer identifier , when integrating with the AWS SaaS Marketplace.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the API Key.
sourcepub fn created_date(&self) -> Option<&DateTime>
pub fn created_date(&self) -> Option<&DateTime>
The timestamp when the API Key was created.
sourcepub fn last_updated_date(&self) -> Option<&DateTime>
pub fn last_updated_date(&self) -> Option<&DateTime>
The timestamp when the API Key was last updated.
sourcepub fn stage_keys(&self) -> Option<&[String]>
pub fn stage_keys(&self) -> Option<&[String]>
A list of Stage resources that are associated with the ApiKey resource.
The collection of tags. Each tag element is associated with a given resource.
source§impl CreateApiKeyOutput
impl CreateApiKeyOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateApiKeyOutput.
Trait Implementations§
source§impl Clone for CreateApiKeyOutput
impl Clone for CreateApiKeyOutput
source§fn clone(&self) -> CreateApiKeyOutput
fn clone(&self) -> CreateApiKeyOutput
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 CreateApiKeyOutput
impl Debug for CreateApiKeyOutput
source§impl PartialEq<CreateApiKeyOutput> for CreateApiKeyOutput
impl PartialEq<CreateApiKeyOutput> for CreateApiKeyOutput
source§fn eq(&self, other: &CreateApiKeyOutput) -> bool
fn eq(&self, other: &CreateApiKeyOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.