pub struct DescribeWorkspaceBundlesRequest {
pub bundle_ids: Option<Vec<String>>,
pub next_token: Option<String>,
pub owner: Option<String>,
}Fields§
§bundle_ids: Option<Vec<String>>The identifiers of the bundles. You cannot combine this parameter with any other filter.
next_token: Option<String>The token for the next set of results. (You received this token from a previous call.)
owner: Option<String>The owner of the bundles. You cannot combine this parameter with any other filter.
Specify AMAZON to describe the bundles provided by AWS or null to describe the bundles that belong to your account.
Trait Implementations§
Source§impl Clone for DescribeWorkspaceBundlesRequest
impl Clone for DescribeWorkspaceBundlesRequest
Source§fn clone(&self) -> DescribeWorkspaceBundlesRequest
fn clone(&self) -> DescribeWorkspaceBundlesRequest
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 DescribeWorkspaceBundlesRequest
impl Default for DescribeWorkspaceBundlesRequest
Source§fn default() -> DescribeWorkspaceBundlesRequest
fn default() -> DescribeWorkspaceBundlesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeWorkspaceBundlesRequest
impl PartialEq for DescribeWorkspaceBundlesRequest
Source§fn eq(&self, other: &DescribeWorkspaceBundlesRequest) -> bool
fn eq(&self, other: &DescribeWorkspaceBundlesRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeWorkspaceBundlesRequest
Auto Trait Implementations§
impl Freeze for DescribeWorkspaceBundlesRequest
impl RefUnwindSafe for DescribeWorkspaceBundlesRequest
impl Send for DescribeWorkspaceBundlesRequest
impl Sync for DescribeWorkspaceBundlesRequest
impl Unpin for DescribeWorkspaceBundlesRequest
impl UnwindSafe for DescribeWorkspaceBundlesRequest
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