[−][src]Struct rusoto_servicediscovery::OperationFilter
A complex type that lets you select the operations that you want to list.
Fields
condition: Option<String>
The operator that you want to use to determine whether an operation matches the specified value. Valid values for condition include:
-
EQ
: When you specifyEQ
for the condition, you can specify only one value.EQ
is supported forNAMESPACEID
,SERVICEID
,STATUS
, andTYPE
.EQ
is the default condition and can be omitted. -
IN
: When you specifyIN
for the condition, you can specify a list of one or more values.IN
is supported forSTATUS
andTYPE
. An operation must match one of the specified values to be returned in the response. -
BETWEEN
: Specify a start date and an end date in Unix date/time format and Coordinated Universal Time (UTC). The start date must be the first value.BETWEEN
is supported forUPDATE_DATE
.
name: String
Specify the operations that you want to get:
-
NAMESPACEID: Gets operations related to specified namespaces.
-
SERVICEID: Gets operations related to specified services.
-
STATUS: Gets operations based on the status of the operations:
SUBMITTED
,PENDING
,SUCCEED
, orFAIL
. -
TYPE: Gets specified types of operation.
-
UPDATE_DATE: Gets operations that changed status during a specified date/time range.
values: Vec<String>
Specify values that are applicable to the value that you specify for Name
:
-
NAMESPACEID: Specify one namespace ID.
-
SERVICEID: Specify one service ID.
-
STATUS: Specify one or more statuses:
SUBMITTED
,PENDING
,SUCCEED
, orFAIL
. -
TYPE: Specify one or more of the following types:
CREATENAMESPACE
,DELETENAMESPACE
,UPDATESERVICE
,REGISTERINSTANCE
, orDEREGISTERINSTANCE
. -
UPDATEDATE: Specify a start date and an end date in Unix date/time format and Coordinated Universal Time (UTC). The start date must be the first value.
Trait Implementations
impl PartialEq<OperationFilter> for OperationFilter
[src]
fn eq(&self, other: &OperationFilter) -> bool
[src]
fn ne(&self, other: &OperationFilter) -> bool
[src]
impl Default for OperationFilter
[src]
fn default() -> OperationFilter
[src]
impl Clone for OperationFilter
[src]
fn clone(&self) -> OperationFilter
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for OperationFilter
[src]
impl Serialize for OperationFilter
[src]
Auto Trait Implementations
impl Send for OperationFilter
impl Sync for OperationFilter
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self