[−][src]Struct rusoto_autoscaling::PutLifecycleHookType
Fields
auto_scaling_group_name: String
The name of the Auto Scaling group.
default_result: Option<String>
Defines the action the Auto Scaling group should take when the lifecycle hook timeout elapses or if an unexpected failure occurs. This parameter can be either CONTINUE
or ABANDON
. The default value is ABANDON
.
heartbeat_timeout: Option<i64>
The maximum time, in seconds, that can elapse before the lifecycle hook times out. The range is from 30
to 7200
seconds. The default value is 3600
seconds (1 hour).
If the lifecycle hook times out, Amazon EC2 Auto Scaling performs the action that you specified in the DefaultResult
parameter. You can prevent the lifecycle hook from timing out by calling RecordLifecycleActionHeartbeat.
lifecycle_hook_name: String
The name of the lifecycle hook.
lifecycle_transition: Option<String>
The instance state to which you want to attach the lifecycle hook. The valid values are:
-
autoscaling:EC2_INSTANCE_LAUNCHING
-
autoscaling:EC2_INSTANCE_TERMINATING
Conditional: This parameter is required for new lifecycle hooks, but optional when updating existing hooks.
notification_metadata: Option<String>
Additional information that you want to include any time Amazon EC2 Auto Scaling sends a message to the notification target.
notification_target_arn: Option<String>
The ARN of the notification target that Amazon EC2 Auto Scaling uses to notify you when an instance is in the transition state for the lifecycle hook. This target can be either an SQS queue or an SNS topic.
If you specify an empty string, this overrides the current ARN.
This operation uses the JSON format when sending notifications to an Amazon SQS queue, and an email key-value pair format when sending notifications to an Amazon SNS topic.
When you specify a notification target, Amazon EC2 Auto Scaling sends it a test message. Test messages contain the following additional key-value pair: "Event": "autoscaling:TEST_NOTIFICATION"
.
role_arn: Option<String>
The ARN of the IAM role that allows the Auto Scaling group to publish to the specified notification target, for example, an Amazon SNS topic or an Amazon SQS queue.
Conditional: This parameter is required for new lifecycle hooks, but optional when updating existing hooks.
Trait Implementations
impl PartialEq<PutLifecycleHookType> for PutLifecycleHookType
[src]
fn eq(&self, other: &PutLifecycleHookType) -> bool
[src]
fn ne(&self, other: &PutLifecycleHookType) -> bool
[src]
impl Default for PutLifecycleHookType
[src]
fn default() -> PutLifecycleHookType
[src]
impl Clone for PutLifecycleHookType
[src]
fn clone(&self) -> PutLifecycleHookType
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for PutLifecycleHookType
[src]
Auto Trait Implementations
impl Send for PutLifecycleHookType
impl Sync for PutLifecycleHookType
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