#[non_exhaustive]pub struct GetConfigurationOutput {
pub content: Option<Blob>,
pub configuration_version: Option<String>,
pub content_type: Option<String>,
/* 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.content: Option<Blob>
The content of the configuration or the configuration data.
The Content
attribute only contains data if the system finds new or updated configuration data. If there is no new or updated data and ClientConfigurationVersion
matches the version of the current configuration, AppConfig returns a 204 No Content
HTTP response code and the Content
value will be empty.
configuration_version: Option<String>
The configuration version.
content_type: Option<String>
A standard MIME type describing the format of the configuration content. For more information, see Content-Type.
Implementations§
source§impl GetConfigurationOutput
impl GetConfigurationOutput
sourcepub fn content(&self) -> Option<&Blob>
pub fn content(&self) -> Option<&Blob>
The content of the configuration or the configuration data.
The Content
attribute only contains data if the system finds new or updated configuration data. If there is no new or updated data and ClientConfigurationVersion
matches the version of the current configuration, AppConfig returns a 204 No Content
HTTP response code and the Content
value will be empty.
sourcepub fn configuration_version(&self) -> Option<&str>
pub fn configuration_version(&self) -> Option<&str>
The configuration version.
sourcepub fn content_type(&self) -> Option<&str>
pub fn content_type(&self) -> Option<&str>
A standard MIME type describing the format of the configuration content. For more information, see Content-Type.
source§impl GetConfigurationOutput
impl GetConfigurationOutput
sourcepub fn builder() -> GetConfigurationOutputBuilder
pub fn builder() -> GetConfigurationOutputBuilder
Creates a new builder-style object to manufacture GetConfigurationOutput
.
Trait Implementations§
source§impl Clone for GetConfigurationOutput
impl Clone for GetConfigurationOutput
source§fn clone(&self) -> GetConfigurationOutput
fn clone(&self) -> GetConfigurationOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetConfigurationOutput
impl Debug for GetConfigurationOutput
source§impl PartialEq for GetConfigurationOutput
impl PartialEq for GetConfigurationOutput
source§fn eq(&self, other: &GetConfigurationOutput) -> bool
fn eq(&self, other: &GetConfigurationOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetConfigurationOutput
impl RequestId for GetConfigurationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.