Struct aws_sdk_m2::input::CreateDeploymentInput
source · [−]#[non_exhaustive]pub struct CreateDeploymentInput { /* private fields */ }Implementations
sourceimpl CreateDeploymentInput
impl CreateDeploymentInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateDeployment, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateDeployment, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateDeployment>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateDeploymentInput.
sourceimpl CreateDeploymentInput
impl CreateDeploymentInput
sourcepub fn environment_id(&self) -> Option<&str>
pub fn environment_id(&self) -> Option<&str>
The identifier of the environment where this application will be deployed.
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
The application identifier.
sourcepub fn application_version(&self) -> Option<i32>
pub fn application_version(&self) -> Option<i32>
The version of the application to deploy.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Unique, case-sensitive identifier you provide to ensure the idempotency of the request to create a deployment. The service generates the clientToken when the API call is triggered. The token expires after one hour, so if you retry the API within this timeframe with the same clientToken, you will get the same response. The service also handles deleting the clientToken after it expires.
Trait Implementations
sourceimpl Clone for CreateDeploymentInput
impl Clone for CreateDeploymentInput
sourcefn clone(&self) -> CreateDeploymentInput
fn clone(&self) -> CreateDeploymentInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for CreateDeploymentInput
impl Debug for CreateDeploymentInput
sourceimpl PartialEq<CreateDeploymentInput> for CreateDeploymentInput
impl PartialEq<CreateDeploymentInput> for CreateDeploymentInput
sourcefn eq(&self, other: &CreateDeploymentInput) -> bool
fn eq(&self, other: &CreateDeploymentInput) -> bool
impl StructuralPartialEq for CreateDeploymentInput
Auto Trait Implementations
impl RefUnwindSafe for CreateDeploymentInput
impl Send for CreateDeploymentInput
impl Sync for CreateDeploymentInput
impl Unpin for CreateDeploymentInput
impl UnwindSafe for CreateDeploymentInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more