pub struct DescribeActivityOutput {
pub activity_arn: String,
pub creation_date: f64,
pub name: String,
}
Fields§
§activity_arn: String
The Amazon Resource Name (ARN) that identifies the activity.
creation_date: f64
The date the activity is created.
name: String
The name of the activity.
A name must not contain:
-
white space
-
brackets
< > { } [ ]
-
wildcard characters
? *
-
special characters
" # % \ ^ | ~ ` $ & , ; : /
-
control characters (
U+0000-001F
,U+007F-009F
)
To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
Trait Implementations§
Source§impl Clone for DescribeActivityOutput
impl Clone for DescribeActivityOutput
Source§fn clone(&self) -> DescribeActivityOutput
fn clone(&self) -> DescribeActivityOutput
Returns a copy 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 Debug for DescribeActivityOutput
impl Debug for DescribeActivityOutput
Source§impl Default for DescribeActivityOutput
impl Default for DescribeActivityOutput
Source§fn default() -> DescribeActivityOutput
fn default() -> DescribeActivityOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeActivityOutput
impl<'de> Deserialize<'de> for DescribeActivityOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeActivityOutput
impl PartialEq for DescribeActivityOutput
impl StructuralPartialEq for DescribeActivityOutput
Auto Trait Implementations§
impl Freeze for DescribeActivityOutput
impl RefUnwindSafe for DescribeActivityOutput
impl Send for DescribeActivityOutput
impl Sync for DescribeActivityOutput
impl Unpin for DescribeActivityOutput
impl UnwindSafe for DescribeActivityOutput
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