pub struct DescribeConfigurationRevisionResponse {
pub arn: Option<String>,
pub creation_time: Option<f64>,
pub description: Option<String>,
pub revision: Option<i64>,
pub server_properties: Option<Bytes>,
}
Fields§
§arn: Option<String>
<p>The Amazon Resource Name (ARN) of the configuration.</p>
creation_time: Option<f64>
<p>The time when the configuration was created.</p>
description: Option<String>
<p>The description of the configuration.</p>
revision: Option<i64>
<p>The revision number.</p>
server_properties: Option<Bytes>
<p>Contents of the <filename>server.properties</filename> file. When using the API, you must ensure that the contents of the file are base64 encoded.
When using the AWS Management Console, the SDK, or the AWS CLI, the contents of <filename>server.properties</filename> can be in plaintext.</p>
Trait Implementations§
Source§impl Clone for DescribeConfigurationRevisionResponse
impl Clone for DescribeConfigurationRevisionResponse
Source§fn clone(&self) -> DescribeConfigurationRevisionResponse
fn clone(&self) -> DescribeConfigurationRevisionResponse
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 Default for DescribeConfigurationRevisionResponse
impl Default for DescribeConfigurationRevisionResponse
Source§fn default() -> DescribeConfigurationRevisionResponse
fn default() -> DescribeConfigurationRevisionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeConfigurationRevisionResponse
impl<'de> Deserialize<'de> for DescribeConfigurationRevisionResponse
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 DescribeConfigurationRevisionResponse
impl PartialEq for DescribeConfigurationRevisionResponse
Source§fn eq(&self, other: &DescribeConfigurationRevisionResponse) -> bool
fn eq(&self, other: &DescribeConfigurationRevisionResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeConfigurationRevisionResponse
Auto Trait Implementations§
impl !Freeze for DescribeConfigurationRevisionResponse
impl RefUnwindSafe for DescribeConfigurationRevisionResponse
impl Send for DescribeConfigurationRevisionResponse
impl Sync for DescribeConfigurationRevisionResponse
impl Unpin for DescribeConfigurationRevisionResponse
impl UnwindSafe for DescribeConfigurationRevisionResponse
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