pub struct CreateSpotDatafeedSubscriptionRequest {
pub bucket: String,
pub dry_run: Option<bool>,
pub prefix: Option<String>,
}Expand description
Contains the parameters for CreateSpotDatafeedSubscription.
Fields§
§bucket: StringThe Amazon S3 bucket in which to store the Spot Instance data feed.
dry_run: Option<bool>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
prefix: Option<String>A prefix for the data feed file names.
Trait Implementations§
Source§impl Clone for CreateSpotDatafeedSubscriptionRequest
impl Clone for CreateSpotDatafeedSubscriptionRequest
Source§fn clone(&self) -> CreateSpotDatafeedSubscriptionRequest
fn clone(&self) -> CreateSpotDatafeedSubscriptionRequest
Returns a duplicate 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 CreateSpotDatafeedSubscriptionRequest
impl Default for CreateSpotDatafeedSubscriptionRequest
Source§fn default() -> CreateSpotDatafeedSubscriptionRequest
fn default() -> CreateSpotDatafeedSubscriptionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateSpotDatafeedSubscriptionRequest
impl PartialEq for CreateSpotDatafeedSubscriptionRequest
Source§fn eq(&self, other: &CreateSpotDatafeedSubscriptionRequest) -> bool
fn eq(&self, other: &CreateSpotDatafeedSubscriptionRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateSpotDatafeedSubscriptionRequest
Auto Trait Implementations§
impl Freeze for CreateSpotDatafeedSubscriptionRequest
impl RefUnwindSafe for CreateSpotDatafeedSubscriptionRequest
impl Send for CreateSpotDatafeedSubscriptionRequest
impl Sync for CreateSpotDatafeedSubscriptionRequest
impl Unpin for CreateSpotDatafeedSubscriptionRequest
impl UnwindSafe for CreateSpotDatafeedSubscriptionRequest
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