Struct aws_sdk_amplify::input::CreateDeploymentInput
source · [−]#[non_exhaustive]pub struct CreateDeploymentInput { /* private fields */ }Expand description
The request structure for the create a new deployment request.
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 branch_name(&self) -> Option<&str>
pub fn branch_name(&self) -> Option<&str>
The name for the branch, for the job.
sourcepub fn file_map(&self) -> Option<&HashMap<String, String>>
pub fn file_map(&self) -> Option<&HashMap<String, String>>
An optional file map that contains the file name as the key and the file content md5 hash as the value. If this argument is provided, the service will generate a unique upload URL per file. Otherwise, the service will only generate a single upload URL for the zipped files.
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