Method: Aws::CodeDeploy::Types::CreateDeploymentGroupInput#auto_rollback_configuration
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
#auto_rollback_configuration ⇒ Types::AutoRollbackConfiguration
Configuration information for an automatic rollback that is added when a deployment group is created.
967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 967 class CreateDeploymentGroupInput < Struct.new( :application_name, :deployment_group_name, :deployment_config_name, :ec2_tag_filters, :on_premises_instance_tag_filters, :auto_scaling_groups, :service_role_arn, :trigger_configurations, :alarm_configuration, :auto_rollback_configuration, :outdated_instances_strategy, :deployment_style, :blue_green_deployment_configuration, :load_balancer_info, :ec2_tag_set, :ecs_services, :on_premises_tag_set, :tags, :termination_hook_enabled) SENSITIVE = [] include Aws::Structure end |