Struct aws_sdk_ssm::input::UpdateOpsItemInput
source · [−]#[non_exhaustive]pub struct UpdateOpsItemInput { /* private fields */ }
Implementations
sourceimpl UpdateOpsItemInput
impl UpdateOpsItemInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateOpsItem, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateOpsItem, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateOpsItem
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateOpsItemInput
.
sourceimpl UpdateOpsItemInput
impl UpdateOpsItemInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Update the information about the OpsItem. Provide enough information so that users reading this OpsItem for the first time understand the issue.
sourcepub fn operational_data(&self) -> Option<&HashMap<String, OpsItemDataValue>>
pub fn operational_data(&self) -> Option<&HashMap<String, OpsItemDataValue>>
Add new keys or edit existing key-value pairs of the OperationalData map in the OpsItem object.
Operational data is custom data that provides useful reference details about the OpsItem. For example, you can specify log files, error strings, license keys, troubleshooting tips, or other relevant data. You enter operational data as key-value pairs. The key has a maximum length of 128 characters. The value has a maximum size of 20 KB.
Operational data keys can't begin with the following: amazon
, aws
, amzn
, ssm
, /amazon
, /aws
, /amzn
, /ssm
.
You can choose to make the data searchable by other users in the account or you can restrict search access. Searchable data means that all users with access to the OpsItem Overview page (as provided by the DescribeOpsItems
API operation) can view and search on the specified data. Operational data that isn't searchable is only viewable by users who have access to the OpsItem (as provided by the GetOpsItem
API operation).
Use the /aws/resources
key in OperationalData to specify a related resource in the request. Use the /aws/automations
key in OperationalData to associate an Automation runbook with the OpsItem. To view Amazon Web Services CLI example commands that use these keys, see Creating OpsItems manually in the Amazon Web Services Systems Manager User Guide.
sourcepub fn operational_data_to_delete(&self) -> Option<&[String]>
pub fn operational_data_to_delete(&self) -> Option<&[String]>
Keys that you want to remove from the OperationalData map.
sourcepub fn notifications(&self) -> Option<&[OpsItemNotification]>
pub fn notifications(&self) -> Option<&[OpsItemNotification]>
The Amazon Resource Name (ARN) of an SNS topic where notifications are sent when this OpsItem is edited or changed.
sourcepub fn priority(&self) -> Option<i32>
pub fn priority(&self) -> Option<i32>
The importance of this OpsItem in relation to other OpsItems in the system.
One or more OpsItems that share something in common with the current OpsItems. For example, related OpsItems can include OpsItems with similar error messages, impacted resources, or statuses for the impacted resource.
sourcepub fn status(&self) -> Option<&OpsItemStatus>
pub fn status(&self) -> Option<&OpsItemStatus>
The OpsItem status. Status can be Open
, In Progress
, or Resolved
. For more information, see Editing OpsItem details in the Amazon Web Services Systems Manager User Guide.
sourcepub fn ops_item_id(&self) -> Option<&str>
pub fn ops_item_id(&self) -> Option<&str>
The ID of the OpsItem.
sourcepub fn title(&self) -> Option<&str>
pub fn title(&self) -> Option<&str>
A short heading that describes the nature of the OpsItem and the impacted resource.
sourcepub fn actual_start_time(&self) -> Option<&DateTime>
pub fn actual_start_time(&self) -> Option<&DateTime>
The time a runbook workflow started. Currently reported only for the OpsItem type /aws/changerequest
.
sourcepub fn actual_end_time(&self) -> Option<&DateTime>
pub fn actual_end_time(&self) -> Option<&DateTime>
The time a runbook workflow ended. Currently reported only for the OpsItem type /aws/changerequest
.
sourcepub fn planned_start_time(&self) -> Option<&DateTime>
pub fn planned_start_time(&self) -> Option<&DateTime>
The time specified in a change request for a runbook workflow to start. Currently supported only for the OpsItem type /aws/changerequest
.
sourcepub fn planned_end_time(&self) -> Option<&DateTime>
pub fn planned_end_time(&self) -> Option<&DateTime>
The time specified in a change request for a runbook workflow to end. Currently supported only for the OpsItem type /aws/changerequest
.
Trait Implementations
sourceimpl Clone for UpdateOpsItemInput
impl Clone for UpdateOpsItemInput
sourcefn clone(&self) -> UpdateOpsItemInput
fn clone(&self) -> UpdateOpsItemInput
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 more
sourceimpl Debug for UpdateOpsItemInput
impl Debug for UpdateOpsItemInput
sourceimpl PartialEq<UpdateOpsItemInput> for UpdateOpsItemInput
impl PartialEq<UpdateOpsItemInput> for UpdateOpsItemInput
sourcefn eq(&self, other: &UpdateOpsItemInput) -> bool
fn eq(&self, other: &UpdateOpsItemInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &UpdateOpsItemInput) -> bool
fn ne(&self, other: &UpdateOpsItemInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for UpdateOpsItemInput
Auto Trait Implementations
impl RefUnwindSafe for UpdateOpsItemInput
impl Send for UpdateOpsItemInput
impl Sync for UpdateOpsItemInput
impl Unpin for UpdateOpsItemInput
impl UnwindSafe for UpdateOpsItemInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more