Struct aws_sdk_cloudformation::model::change_set_hook::Builder
source · [−]pub struct Builder { /* private fields */ }Expand description
A builder for ChangeSetHook.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn invocation_point(self, input: HookInvocationPoint) -> Self
pub fn invocation_point(self, input: HookInvocationPoint) -> Self
Specifies the points in provisioning logic where a hook is invoked.
sourcepub fn set_invocation_point(self, input: Option<HookInvocationPoint>) -> Self
pub fn set_invocation_point(self, input: Option<HookInvocationPoint>) -> Self
Specifies the points in provisioning logic where a hook is invoked.
sourcepub fn failure_mode(self, input: HookFailureMode) -> Self
pub fn failure_mode(self, input: HookFailureMode) -> Self
Specify the hook failure mode for non-compliant resources in the followings ways.
-
FAILStops provisioning resources. -
WARNAllows provisioning to continue with a warning message.
sourcepub fn set_failure_mode(self, input: Option<HookFailureMode>) -> Self
pub fn set_failure_mode(self, input: Option<HookFailureMode>) -> Self
Specify the hook failure mode for non-compliant resources in the followings ways.
-
FAILStops provisioning resources. -
WARNAllows provisioning to continue with a warning message.
sourcepub fn type_name(self, input: impl Into<String>) -> Self
pub fn type_name(self, input: impl Into<String>) -> Self
The unique name for your hook. Specifies a three-part namespace for your hook, with a recommended pattern of Organization::Service::Hook.
The following organization namespaces are reserved and can't be used in your hook type names:
-
Alexa -
AMZN -
Amazon -
ASK -
AWS -
Custom -
Dev
sourcepub fn set_type_name(self, input: Option<String>) -> Self
pub fn set_type_name(self, input: Option<String>) -> Self
The unique name for your hook. Specifies a three-part namespace for your hook, with a recommended pattern of Organization::Service::Hook.
The following organization namespaces are reserved and can't be used in your hook type names:
-
Alexa -
AMZN -
Amazon -
ASK -
AWS -
Custom -
Dev
sourcepub fn type_version_id(self, input: impl Into<String>) -> Self
pub fn type_version_id(self, input: impl Into<String>) -> Self
The version ID of the type specified.
sourcepub fn set_type_version_id(self, input: Option<String>) -> Self
pub fn set_type_version_id(self, input: Option<String>) -> Self
The version ID of the type specified.
sourcepub fn type_configuration_version_id(self, input: impl Into<String>) -> Self
pub fn type_configuration_version_id(self, input: impl Into<String>) -> Self
The version ID of the type configuration.
sourcepub fn set_type_configuration_version_id(self, input: Option<String>) -> Self
pub fn set_type_configuration_version_id(self, input: Option<String>) -> Self
The version ID of the type configuration.
sourcepub fn target_details(self, input: ChangeSetHookTargetDetails) -> Self
pub fn target_details(self, input: ChangeSetHookTargetDetails) -> Self
Specifies details about the target that the hook will run against.
sourcepub fn set_target_details(
self,
input: Option<ChangeSetHookTargetDetails>
) -> Self
pub fn set_target_details(
self,
input: Option<ChangeSetHookTargetDetails>
) -> Self
Specifies details about the target that the hook will run against.
sourcepub fn build(self) -> ChangeSetHook
pub fn build(self) -> ChangeSetHook
Consumes the builder and constructs a ChangeSetHook.