Struct aws_sdk_cloudfront::operation::get_continuous_deployment_policy::GetContinuousDeploymentPolicyOutput   
source · #[non_exhaustive]pub struct GetContinuousDeploymentPolicyOutput {
    pub continuous_deployment_policy: Option<ContinuousDeploymentPolicy>,
    pub e_tag: Option<String>,
    /* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.continuous_deployment_policy: Option<ContinuousDeploymentPolicy>A continuous deployment policy.
e_tag: Option<String>The version identifier for the current version of the continuous deployment policy.
Implementations§
source§impl GetContinuousDeploymentPolicyOutput
 
impl GetContinuousDeploymentPolicyOutput
sourcepub fn continuous_deployment_policy(
    &self
) -> Option<&ContinuousDeploymentPolicy>
 
pub fn continuous_deployment_policy( &self ) -> Option<&ContinuousDeploymentPolicy>
A continuous deployment policy.
source§impl GetContinuousDeploymentPolicyOutput
 
impl GetContinuousDeploymentPolicyOutput
sourcepub fn builder() -> GetContinuousDeploymentPolicyOutputBuilder
 
pub fn builder() -> GetContinuousDeploymentPolicyOutputBuilder
Creates a new builder-style object to manufacture GetContinuousDeploymentPolicyOutput.
Trait Implementations§
source§impl Clone for GetContinuousDeploymentPolicyOutput
 
impl Clone for GetContinuousDeploymentPolicyOutput
source§fn clone(&self) -> GetContinuousDeploymentPolicyOutput
 
fn clone(&self) -> GetContinuousDeploymentPolicyOutput
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 PartialEq<GetContinuousDeploymentPolicyOutput> for GetContinuousDeploymentPolicyOutput
 
impl PartialEq<GetContinuousDeploymentPolicyOutput> for GetContinuousDeploymentPolicyOutput
source§fn eq(&self, other: &GetContinuousDeploymentPolicyOutput) -> bool
 
fn eq(&self, other: &GetContinuousDeploymentPolicyOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for GetContinuousDeploymentPolicyOutput
 
impl RequestId for GetContinuousDeploymentPolicyOutput
source§fn request_id(&self) -> Option<&str>
 
fn request_id(&self) -> Option<&str>
Returns the request ID, or 
None if the service could not be reached.impl StructuralPartialEq for GetContinuousDeploymentPolicyOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetContinuousDeploymentPolicyOutput
impl Send for GetContinuousDeploymentPolicyOutput
impl Sync for GetContinuousDeploymentPolicyOutput
impl Unpin for GetContinuousDeploymentPolicyOutput
impl UnwindSafe for GetContinuousDeploymentPolicyOutput
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