autoscaling - ActiveState ActiveGo 1.8
...

Package autoscaling

import "github.com/aws/aws-sdk-go/service/autoscaling"
Overview
Index
Examples
Subdirectories

Overview ▾

Package autoscaling provides the client and types for making API requests to Auto Scaling.

Auto Scaling is designed to automatically launch or terminate EC2 instances based on user-defined policies, schedules, and health checks. Use this service in conjunction with the Amazon CloudWatch and Elastic Load Balancing services.

See https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01 for more information on this service.

See autoscaling package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/autoscaling/

Using the Client

To use the client for Auto Scaling you will first need to create a new instance of it.

When creating a client for an AWS service you'll first need to have a Session already created. The Session provides configuration that can be shared between multiple service clients. Additional configuration can be applied to the Session and service's client when they are constructed. The aws package's Config type contains several fields such as Region for the AWS Region the client should make API requests too. The optional Config value can be provided as the variadic argument for Sessions and client creation.

Once the service's client is created you can use it to make API requests the AWS service. These clients are safe to use concurrently.

// Create a session to share configuration, and load external configuration.
sess := session.Must(session.NewSession())

// Create the service's client with the session.
svc := autoscaling.New(sess)

See the SDK's documentation for more information on how to use service clients. https://docs.aws.amazon.com/sdk-for-go/api/

See aws package's Config type for more information on configuration options. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config

See the Auto Scaling client AutoScaling for more information on creating the service's client. https://docs.aws.amazon.com/sdk-for-go/api/service/autoscaling/#New

Once the client is created you can make an API request to the service. Each API method takes a input parameter, and returns the service response and an error.

The API method will document which error codes the service can be returned by the operation if the service models the API operation's errors. These errors will also be available as const strings prefixed with "ErrCode".

result, err := svc.AttachInstances(params)
if err != nil {
    // Cast err to awserr.Error to handle specific error codes.
    aerr, ok := err.(awserr.Error)
    if ok && aerr.Code() == <error code to check for> {
        // Specific error code handling
    }
    return err
}

fmt.Println("AttachInstances result:")
fmt.Println(result)

Using the Client with Context

The service's client also provides methods to make API requests with a Context value. This allows you to control the timeout, and cancellation of pending requests. These methods also take request Option as variadic parameter to apply additional configuration to the API request.

ctx := context.Background()

result, err := svc.AttachInstancesWithContext(ctx, params)

See the request package documentation for more information on using Context pattern with the SDK. https://docs.aws.amazon.com/sdk-for-go/api/aws/request/

Index ▾

Constants
type Activity
    func (s Activity) GoString() string
    func (s *Activity) SetActivityId(v string) *Activity
    func (s *Activity) SetAutoScalingGroupName(v string) *Activity
    func (s *Activity) SetCause(v string) *Activity
    func (s *Activity) SetDescription(v string) *Activity
    func (s *Activity) SetDetails(v string) *Activity
    func (s *Activity) SetEndTime(v time.Time) *Activity
    func (s *Activity) SetProgress(v int64) *Activity
    func (s *Activity) SetStartTime(v time.Time) *Activity
    func (s *Activity) SetStatusCode(v string) *Activity
    func (s *Activity) SetStatusMessage(v string) *Activity
    func (s Activity) String() string
type AdjustmentType
    func (s AdjustmentType) GoString() string
    func (s *AdjustmentType) SetAdjustmentType(v string) *AdjustmentType
    func (s AdjustmentType) String() string
type Alarm
    func (s Alarm) GoString() string
    func (s *Alarm) SetAlarmARN(v string) *Alarm
    func (s *Alarm) SetAlarmName(v string) *Alarm
    func (s Alarm) String() string
type AttachInstancesInput
    func (s AttachInstancesInput) GoString() string
    func (s *AttachInstancesInput) SetAutoScalingGroupName(v string) *AttachInstancesInput
    func (s *AttachInstancesInput) SetInstanceIds(v []*string) *AttachInstancesInput
    func (s AttachInstancesInput) String() string
    func (s *AttachInstancesInput) Validate() error
type AttachInstancesOutput
    func (s AttachInstancesOutput) GoString() string
    func (s AttachInstancesOutput) String() string
type AttachLoadBalancerTargetGroupsInput
    func (s AttachLoadBalancerTargetGroupsInput) GoString() string
    func (s *AttachLoadBalancerTargetGroupsInput) SetAutoScalingGroupName(v string) *AttachLoadBalancerTargetGroupsInput
    func (s *AttachLoadBalancerTargetGroupsInput) SetTargetGroupARNs(v []*string) *AttachLoadBalancerTargetGroupsInput
    func (s AttachLoadBalancerTargetGroupsInput) String() string
    func (s *AttachLoadBalancerTargetGroupsInput) Validate() error
type AttachLoadBalancerTargetGroupsOutput
    func (s AttachLoadBalancerTargetGroupsOutput) GoString() string
    func (s AttachLoadBalancerTargetGroupsOutput) String() string
type AttachLoadBalancersInput
    func (s AttachLoadBalancersInput) GoString() string
    func (s *AttachLoadBalancersInput) SetAutoScalingGroupName(v string) *AttachLoadBalancersInput
    func (s *AttachLoadBalancersInput) SetLoadBalancerNames(v []*string) *AttachLoadBalancersInput
    func (s AttachLoadBalancersInput) String() string
    func (s *AttachLoadBalancersInput) Validate() error
type AttachLoadBalancersOutput
    func (s AttachLoadBalancersOutput) GoString() string
    func (s AttachLoadBalancersOutput) String() string
type AutoScaling
    func New(p client.ConfigProvider, cfgs ...*aws.Config) *AutoScaling
    func (c *AutoScaling) AttachInstances(input *AttachInstancesInput) (*AttachInstancesOutput, error)
    func (c *AutoScaling) AttachInstancesRequest(input *AttachInstancesInput) (req *request.Request, output *AttachInstancesOutput)
    func (c *AutoScaling) AttachInstancesWithContext(ctx aws.Context, input *AttachInstancesInput, opts ...request.Option) (*AttachInstancesOutput, error)
    func (c *AutoScaling) AttachLoadBalancerTargetGroups(input *AttachLoadBalancerTargetGroupsInput) (*AttachLoadBalancerTargetGroupsOutput, error)
    func (c *AutoScaling) AttachLoadBalancerTargetGroupsRequest(input *AttachLoadBalancerTargetGroupsInput) (req *request.Request, output *AttachLoadBalancerTargetGroupsOutput)
    func (c *AutoScaling) AttachLoadBalancerTargetGroupsWithContext(ctx aws.Context, input *AttachLoadBalancerTargetGroupsInput, opts ...request.Option) (*AttachLoadBalancerTargetGroupsOutput, error)
    func (c *AutoScaling) AttachLoadBalancers(input *AttachLoadBalancersInput) (*AttachLoadBalancersOutput, error)
    func (c *AutoScaling) AttachLoadBalancersRequest(input *AttachLoadBalancersInput) (req *request.Request, output *AttachLoadBalancersOutput)
    func (c *AutoScaling) AttachLoadBalancersWithContext(ctx aws.Context, input *AttachLoadBalancersInput, opts ...request.Option) (*AttachLoadBalancersOutput, error)
    func (c *AutoScaling) CompleteLifecycleAction(input *CompleteLifecycleActionInput) (*CompleteLifecycleActionOutput, error)
    func (c *AutoScaling) CompleteLifecycleActionRequest(input *CompleteLifecycleActionInput) (req *request.Request, output *CompleteLifecycleActionOutput)
    func (c *AutoScaling) CompleteLifecycleActionWithContext(ctx aws.Context, input *CompleteLifecycleActionInput, opts ...request.Option) (*CompleteLifecycleActionOutput, error)
    func (c *AutoScaling) CreateAutoScalingGroup(input *CreateAutoScalingGroupInput) (*CreateAutoScalingGroupOutput, error)
    func (c *AutoScaling) CreateAutoScalingGroupRequest(input *CreateAutoScalingGroupInput) (req *request.Request, output *CreateAutoScalingGroupOutput)
    func (c *AutoScaling) CreateAutoScalingGroupWithContext(ctx aws.Context, input *CreateAutoScalingGroupInput, opts ...request.Option) (*CreateAutoScalingGroupOutput, error)
    func (c *AutoScaling) CreateLaunchConfiguration(input *CreateLaunchConfigurationInput) (*CreateLaunchConfigurationOutput, error)
    func (c *AutoScaling) CreateLaunchConfigurationRequest(input *CreateLaunchConfigurationInput) (req *request.Request, output *CreateLaunchConfigurationOutput)
    func (c *AutoScaling) CreateLaunchConfigurationWithContext(ctx aws.Context, input *CreateLaunchConfigurationInput, opts ...request.Option) (*CreateLaunchConfigurationOutput, error)
    func (c *AutoScaling) CreateOrUpdateTags(input *CreateOrUpdateTagsInput) (*CreateOrUpdateTagsOutput, error)
    func (c *AutoScaling) CreateOrUpdateTagsRequest(input *CreateOrUpdateTagsInput) (req *request.Request, output *CreateOrUpdateTagsOutput)
    func (c *AutoScaling) CreateOrUpdateTagsWithContext(ctx aws.Context, input *CreateOrUpdateTagsInput, opts ...request.Option) (*CreateOrUpdateTagsOutput, error)
    func (c *AutoScaling) DeleteAutoScalingGroup(input *DeleteAutoScalingGroupInput) (*DeleteAutoScalingGroupOutput, error)
    func (c *AutoScaling) DeleteAutoScalingGroupRequest(input *DeleteAutoScalingGroupInput) (req *request.Request, output *DeleteAutoScalingGroupOutput)
    func (c *AutoScaling) DeleteAutoScalingGroupWithContext(ctx aws.Context, input *DeleteAutoScalingGroupInput, opts ...request.Option) (*DeleteAutoScalingGroupOutput, error)
    func (c *AutoScaling) DeleteLaunchConfiguration(input *DeleteLaunchConfigurationInput) (*DeleteLaunchConfigurationOutput, error)
    func (c *AutoScaling) DeleteLaunchConfigurationRequest(input *DeleteLaunchConfigurationInput) (req *request.Request, output *DeleteLaunchConfigurationOutput)
    func (c *AutoScaling) DeleteLaunchConfigurationWithContext(ctx aws.Context, input *DeleteLaunchConfigurationInput, opts ...request.Option) (*DeleteLaunchConfigurationOutput, error)
    func (c *AutoScaling) DeleteLifecycleHook(input *DeleteLifecycleHookInput) (*DeleteLifecycleHookOutput, error)
    func (c *AutoScaling) DeleteLifecycleHookRequest(input *DeleteLifecycleHookInput) (req *request.Request, output *DeleteLifecycleHookOutput)
    func (c *AutoScaling) DeleteLifecycleHookWithContext(ctx aws.Context, input *DeleteLifecycleHookInput, opts ...request.Option) (*DeleteLifecycleHookOutput, error)
    func (c *AutoScaling) DeleteNotificationConfiguration(input *DeleteNotificationConfigurationInput) (*DeleteNotificationConfigurationOutput, error)
    func (c *AutoScaling) DeleteNotificationConfigurationRequest(input *DeleteNotificationConfigurationInput) (req *request.Request, output *DeleteNotificationConfigurationOutput)
    func (c *AutoScaling) DeleteNotificationConfigurationWithContext(ctx aws.Context, input *DeleteNotificationConfigurationInput, opts ...request.Option) (*DeleteNotificationConfigurationOutput, error)
    func (c *AutoScaling) DeletePolicy(input *DeletePolicyInput) (*DeletePolicyOutput, error)
    func (c *AutoScaling) DeletePolicyRequest(input *DeletePolicyInput) (req *request.Request, output *DeletePolicyOutput)
    func (c *AutoScaling) DeletePolicyWithContext(ctx aws.Context, input *DeletePolicyInput, opts ...request.Option) (*DeletePolicyOutput, error)
    func (c *AutoScaling) DeleteScheduledAction(input *DeleteScheduledActionInput) (*DeleteScheduledActionOutput, error)
    func (c *AutoScaling) DeleteScheduledActionRequest(input *DeleteScheduledActionInput) (req *request.Request, output *DeleteScheduledActionOutput)
    func (c *AutoScaling) DeleteScheduledActionWithContext(ctx aws.Context, input *DeleteScheduledActionInput, opts ...request.Option) (*DeleteScheduledActionOutput, error)
    func (c *AutoScaling) DeleteTags(input *DeleteTagsInput) (*DeleteTagsOutput, error)
    func (c *AutoScaling) DeleteTagsRequest(input *DeleteTagsInput) (req *request.Request, output *DeleteTagsOutput)
    func (c *AutoScaling) DeleteTagsWithContext(ctx aws.Context, input *DeleteTagsInput, opts ...request.Option) (*DeleteTagsOutput, error)
    func (c *AutoScaling) DescribeAccountLimits(input *DescribeAccountLimitsInput) (*DescribeAccountLimitsOutput, error)
    func (c *AutoScaling) DescribeAccountLimitsRequest(input *DescribeAccountLimitsInput) (req *request.Request, output *DescribeAccountLimitsOutput)
    func (c *AutoScaling) DescribeAccountLimitsWithContext(ctx aws.Context, input *DescribeAccountLimitsInput, opts ...request.Option) (*DescribeAccountLimitsOutput, error)
    func (c *AutoScaling) DescribeAdjustmentTypes(input *DescribeAdjustmentTypesInput) (*DescribeAdjustmentTypesOutput, error)
    func (c *AutoScaling) DescribeAdjustmentTypesRequest(input *DescribeAdjustmentTypesInput) (req *request.Request, output *DescribeAdjustmentTypesOutput)
    func (c *AutoScaling) DescribeAdjustmentTypesWithContext(ctx aws.Context, input *DescribeAdjustmentTypesInput, opts ...request.Option) (*DescribeAdjustmentTypesOutput, error)
    func (c *AutoScaling) DescribeAutoScalingGroups(input *DescribeAutoScalingGroupsInput) (*DescribeAutoScalingGroupsOutput, error)
    func (c *AutoScaling) DescribeAutoScalingGroupsPages(input *DescribeAutoScalingGroupsInput, fn func(*DescribeAutoScalingGroupsOutput, bool) bool) error
    func (c *AutoScaling) DescribeAutoScalingGroupsPagesWithContext(ctx aws.Context, input *DescribeAutoScalingGroupsInput, fn func(*DescribeAutoScalingGroupsOutput, bool) bool, opts ...request.Option) error
    func (c *AutoScaling) DescribeAutoScalingGroupsRequest(input *DescribeAutoScalingGroupsInput) (req *request.Request, output *DescribeAutoScalingGroupsOutput)
    func (c *AutoScaling) DescribeAutoScalingGroupsWithContext(ctx aws.Context, input *DescribeAutoScalingGroupsInput, opts ...request.Option) (*DescribeAutoScalingGroupsOutput, error)
    func (c *AutoScaling) DescribeAutoScalingInstances(input *DescribeAutoScalingInstancesInput) (*DescribeAutoScalingInstancesOutput, error)
    func (c *AutoScaling) DescribeAutoScalingInstancesPages(input *DescribeAutoScalingInstancesInput, fn func(*DescribeAutoScalingInstancesOutput, bool) bool) error
    func (c *AutoScaling) DescribeAutoScalingInstancesPagesWithContext(ctx aws.Context, input *DescribeAutoScalingInstancesInput, fn func(*DescribeAutoScalingInstancesOutput, bool) bool, opts ...request.Option) error
    func (c *AutoScaling) DescribeAutoScalingInstancesRequest(input *DescribeAutoScalingInstancesInput) (req *request.Request, output *DescribeAutoScalingInstancesOutput)
    func (c *AutoScaling) DescribeAutoScalingInstancesWithContext(ctx aws.Context, input *DescribeAutoScalingInstancesInput, opts ...request.Option) (*DescribeAutoScalingInstancesOutput, error)
    func (c *AutoScaling) DescribeAutoScalingNotificationTypes(input *DescribeAutoScalingNotificationTypesInput) (*DescribeAutoScalingNotificationTypesOutput, error)
    func (c *AutoScaling) DescribeAutoScalingNotificationTypesRequest(input *DescribeAutoScalingNotificationTypesInput) (req *request.Request, output *DescribeAutoScalingNotificationTypesOutput)
    func (c *AutoScaling) DescribeAutoScalingNotificationTypesWithContext(ctx aws.Context, input *DescribeAutoScalingNotificationTypesInput, opts ...request.Option) (*DescribeAutoScalingNotificationTypesOutput, error)
    func (c *AutoScaling) DescribeLaunchConfigurations(input *DescribeLaunchConfigurationsInput) (*DescribeLaunchConfigurationsOutput, error)
    func (c *AutoScaling) DescribeLaunchConfigurationsPages(input *DescribeLaunchConfigurationsInput, fn func(*DescribeLaunchConfigurationsOutput, bool) bool) error
    func (c *AutoScaling) DescribeLaunchConfigurationsPagesWithContext(ctx aws.Context, input *DescribeLaunchConfigurationsInput, fn func(*DescribeLaunchConfigurationsOutput, bool) bool, opts ...request.Option) error
    func (c *AutoScaling) DescribeLaunchConfigurationsRequest(input *DescribeLaunchConfigurationsInput) (req *request.Request, output *DescribeLaunchConfigurationsOutput)
    func (c *AutoScaling) DescribeLaunchConfigurationsWithContext(ctx aws.Context, input *DescribeLaunchConfigurationsInput, opts ...request.Option) (*DescribeLaunchConfigurationsOutput, error)
    func (c *AutoScaling) DescribeLifecycleHookTypes(input *DescribeLifecycleHookTypesInput) (*DescribeLifecycleHookTypesOutput, error)
    func (c *AutoScaling) DescribeLifecycleHookTypesRequest(input *DescribeLifecycleHookTypesInput) (req *request.Request, output *DescribeLifecycleHookTypesOutput)
    func (c *AutoScaling) DescribeLifecycleHookTypesWithContext(ctx aws.Context, input *DescribeLifecycleHookTypesInput, opts ...request.Option) (*DescribeLifecycleHookTypesOutput, error)
    func (c *AutoScaling) DescribeLifecycleHooks(input *DescribeLifecycleHooksInput) (*DescribeLifecycleHooksOutput, error)
    func (c *AutoScaling) DescribeLifecycleHooksRequest(input *DescribeLifecycleHooksInput) (req *request.Request, output *DescribeLifecycleHooksOutput)
    func (c *AutoScaling) DescribeLifecycleHooksWithContext(ctx aws.Context, input *DescribeLifecycleHooksInput, opts ...request.Option) (*DescribeLifecycleHooksOutput, error)
    func (c *AutoScaling) DescribeLoadBalancerTargetGroups(input *DescribeLoadBalancerTargetGroupsInput) (*DescribeLoadBalancerTargetGroupsOutput, error)
    func (c *AutoScaling) DescribeLoadBalancerTargetGroupsRequest(input *DescribeLoadBalancerTargetGroupsInput) (req *request.Request, output *DescribeLoadBalancerTargetGroupsOutput)
    func (c *AutoScaling) DescribeLoadBalancerTargetGroupsWithContext(ctx aws.Context, input *DescribeLoadBalancerTargetGroupsInput, opts ...request.Option) (*DescribeLoadBalancerTargetGroupsOutput, error)
    func (c *AutoScaling) DescribeLoadBalancers(input *DescribeLoadBalancersInput) (*DescribeLoadBalancersOutput, error)
    func (c *AutoScaling) DescribeLoadBalancersRequest(input *DescribeLoadBalancersInput) (req *request.Request, output *DescribeLoadBalancersOutput)
    func (c *AutoScaling) DescribeLoadBalancersWithContext(ctx aws.Context, input *DescribeLoadBalancersInput, opts ...request.Option) (*DescribeLoadBalancersOutput, error)
    func (c *AutoScaling) DescribeMetricCollectionTypes(input *DescribeMetricCollectionTypesInput) (*DescribeMetricCollectionTypesOutput, error)
    func (c *AutoScaling) DescribeMetricCollectionTypesRequest(input *DescribeMetricCollectionTypesInput) (req *request.Request, output *DescribeMetricCollectionTypesOutput)
    func (c *AutoScaling) DescribeMetricCollectionTypesWithContext(ctx aws.Context, input *DescribeMetricCollectionTypesInput, opts ...request.Option) (*DescribeMetricCollectionTypesOutput, error)
    func (c *AutoScaling) DescribeNotificationConfigurations(input *DescribeNotificationConfigurationsInput) (*DescribeNotificationConfigurationsOutput, error)
    func (c *AutoScaling) DescribeNotificationConfigurationsPages(input *DescribeNotificationConfigurationsInput, fn func(*DescribeNotificationConfigurationsOutput, bool) bool) error
    func (c *AutoScaling) DescribeNotificationConfigurationsPagesWithContext(ctx aws.Context, input *DescribeNotificationConfigurationsInput, fn func(*DescribeNotificationConfigurationsOutput, bool) bool, opts ...request.Option) error
    func (c *AutoScaling) DescribeNotificationConfigurationsRequest(input *DescribeNotificationConfigurationsInput) (req *request.Request, output *DescribeNotificationConfigurationsOutput)
    func (c *AutoScaling) DescribeNotificationConfigurationsWithContext(ctx aws.Context, input *DescribeNotificationConfigurationsInput, opts ...request.Option) (*DescribeNotificationConfigurationsOutput, error)
    func (c *AutoScaling) DescribePolicies(input *DescribePoliciesInput) (*DescribePoliciesOutput, error)
    func (c *AutoScaling) DescribePoliciesPages(input *DescribePoliciesInput, fn func(*DescribePoliciesOutput, bool) bool) error
    func (c *AutoScaling) DescribePoliciesPagesWithContext(ctx aws.Context, input *DescribePoliciesInput, fn func(*DescribePoliciesOutput, bool) bool, opts ...request.Option) error
    func (c *AutoScaling) DescribePoliciesRequest(input *DescribePoliciesInput) (req *request.Request, output *DescribePoliciesOutput)
    func (c *AutoScaling) DescribePoliciesWithContext(ctx aws.Context, input *DescribePoliciesInput, opts ...request.Option) (*DescribePoliciesOutput, error)
    func (c *AutoScaling) DescribeScalingActivities(input *DescribeScalingActivitiesInput) (*DescribeScalingActivitiesOutput, error)
    func (c *AutoScaling) DescribeScalingActivitiesPages(input *DescribeScalingActivitiesInput, fn func(*DescribeScalingActivitiesOutput, bool) bool) error
    func (c *AutoScaling) DescribeScalingActivitiesPagesWithContext(ctx aws.Context, input *DescribeScalingActivitiesInput, fn func(*DescribeScalingActivitiesOutput, bool) bool, opts ...request.Option) error
    func (c *AutoScaling) DescribeScalingActivitiesRequest(input *DescribeScalingActivitiesInput) (req *request.Request, output *DescribeScalingActivitiesOutput)
    func (c *AutoScaling) DescribeScalingActivitiesWithContext(ctx aws.Context, input *DescribeScalingActivitiesInput, opts ...request.Option) (*DescribeScalingActivitiesOutput, error)
    func (c *AutoScaling) DescribeScalingProcessTypes(input *DescribeScalingProcessTypesInput) (*DescribeScalingProcessTypesOutput, error)
    func (c *AutoScaling) DescribeScalingProcessTypesRequest(input *DescribeScalingProcessTypesInput) (req *request.Request, output *DescribeScalingProcessTypesOutput)
    func (c *AutoScaling) DescribeScalingProcessTypesWithContext(ctx aws.Context, input *DescribeScalingProcessTypesInput, opts ...request.Option) (*DescribeScalingProcessTypesOutput, error)
    func (c *AutoScaling) DescribeScheduledActions(input *DescribeScheduledActionsInput) (*DescribeScheduledActionsOutput, error)
    func (c *AutoScaling) DescribeScheduledActionsPages(input *DescribeScheduledActionsInput, fn func(*DescribeScheduledActionsOutput, bool) bool) error
    func (c *AutoScaling) DescribeScheduledActionsPagesWithContext(ctx aws.Context, input *DescribeScheduledActionsInput, fn func(*DescribeScheduledActionsOutput, bool) bool, opts ...request.Option) error
    func (c *AutoScaling) DescribeScheduledActionsRequest(input *DescribeScheduledActionsInput) (req *request.Request, output *DescribeScheduledActionsOutput)
    func (c *AutoScaling) DescribeScheduledActionsWithContext(ctx aws.Context, input *DescribeScheduledActionsInput, opts ...request.Option) (*DescribeScheduledActionsOutput, error)
    func (c *AutoScaling) DescribeTags(input *DescribeTagsInput) (*DescribeTagsOutput, error)
    func (c *AutoScaling) DescribeTagsPages(input *DescribeTagsInput, fn func(*DescribeTagsOutput, bool) bool) error
    func (c *AutoScaling) DescribeTagsPagesWithContext(ctx aws.Context, input *DescribeTagsInput, fn func(*DescribeTagsOutput, bool) bool, opts ...request.Option) error
    func (c *AutoScaling) DescribeTagsRequest(input *DescribeTagsInput) (req *request.Request, output *DescribeTagsOutput)
    func (c *AutoScaling) DescribeTagsWithContext(ctx aws.Context, input *DescribeTagsInput, opts ...request.Option) (*DescribeTagsOutput, error)
    func (c *AutoScaling) DescribeTerminationPolicyTypes(input *DescribeTerminationPolicyTypesInput) (*DescribeTerminationPolicyTypesOutput, error)
    func (c *AutoScaling) DescribeTerminationPolicyTypesRequest(input *DescribeTerminationPolicyTypesInput) (req *request.Request, output *DescribeTerminationPolicyTypesOutput)
    func (c *AutoScaling) DescribeTerminationPolicyTypesWithContext(ctx aws.Context, input *DescribeTerminationPolicyTypesInput, opts ...request.Option) (*DescribeTerminationPolicyTypesOutput, error)
    func (c *AutoScaling) DetachInstances(input *DetachInstancesInput) (*DetachInstancesOutput, error)
    func (c *AutoScaling) DetachInstancesRequest(input *DetachInstancesInput) (req *request.Request, output *DetachInstancesOutput)
    func (c *AutoScaling) DetachInstancesWithContext(ctx aws.Context, input *DetachInstancesInput, opts ...request.Option) (*DetachInstancesOutput, error)
    func (c *AutoScaling) DetachLoadBalancerTargetGroups(input *DetachLoadBalancerTargetGroupsInput) (*DetachLoadBalancerTargetGroupsOutput, error)
    func (c *AutoScaling) DetachLoadBalancerTargetGroupsRequest(input *DetachLoadBalancerTargetGroupsInput) (req *request.Request, output *DetachLoadBalancerTargetGroupsOutput)
    func (c *AutoScaling) DetachLoadBalancerTargetGroupsWithContext(ctx aws.Context, input *DetachLoadBalancerTargetGroupsInput, opts ...request.Option) (*DetachLoadBalancerTargetGroupsOutput, error)
    func (c *AutoScaling) DetachLoadBalancers(input *DetachLoadBalancersInput) (*DetachLoadBalancersOutput, error)
    func (c *AutoScaling) DetachLoadBalancersRequest(input *DetachLoadBalancersInput) (req *request.Request, output *DetachLoadBalancersOutput)
    func (c *AutoScaling) DetachLoadBalancersWithContext(ctx aws.Context, input *DetachLoadBalancersInput, opts ...request.Option) (*DetachLoadBalancersOutput, error)
    func (c *AutoScaling) DisableMetricsCollection(input *DisableMetricsCollectionInput) (*DisableMetricsCollectionOutput, error)
    func (c *AutoScaling) DisableMetricsCollectionRequest(input *DisableMetricsCollectionInput) (req *request.Request, output *DisableMetricsCollectionOutput)
    func (c *AutoScaling) DisableMetricsCollectionWithContext(ctx aws.Context, input *DisableMetricsCollectionInput, opts ...request.Option) (*DisableMetricsCollectionOutput, error)
    func (c *AutoScaling) EnableMetricsCollection(input *EnableMetricsCollectionInput) (*EnableMetricsCollectionOutput, error)
    func (c *AutoScaling) EnableMetricsCollectionRequest(input *EnableMetricsCollectionInput) (req *request.Request, output *EnableMetricsCollectionOutput)
    func (c *AutoScaling) EnableMetricsCollectionWithContext(ctx aws.Context, input *EnableMetricsCollectionInput, opts ...request.Option) (*EnableMetricsCollectionOutput, error)
    func (c *AutoScaling) EnterStandby(input *EnterStandbyInput) (*EnterStandbyOutput, error)
    func (c *AutoScaling) EnterStandbyRequest(input *EnterStandbyInput) (req *request.Request, output *EnterStandbyOutput)
    func (c *AutoScaling) EnterStandbyWithContext(ctx aws.Context, input *EnterStandbyInput, opts ...request.Option) (*EnterStandbyOutput, error)
    func (c *AutoScaling) ExecutePolicy(input *ExecutePolicyInput) (*ExecutePolicyOutput, error)
    func (c *AutoScaling) ExecutePolicyRequest(input *ExecutePolicyInput) (req *request.Request, output *ExecutePolicyOutput)
    func (c *AutoScaling) ExecutePolicyWithContext(ctx aws.Context, input *ExecutePolicyInput, opts ...request.Option) (*ExecutePolicyOutput, error)
    func (c *AutoScaling) ExitStandby(input *ExitStandbyInput) (*ExitStandbyOutput, error)
    func (c *AutoScaling) ExitStandbyRequest(input *ExitStandbyInput) (req *request.Request, output *ExitStandbyOutput)
    func (c *AutoScaling) ExitStandbyWithContext(ctx aws.Context, input *ExitStandbyInput, opts ...request.Option) (*ExitStandbyOutput, error)
    func (c *AutoScaling) PutLifecycleHook(input *PutLifecycleHookInput) (*PutLifecycleHookOutput, error)
    func (c *AutoScaling) PutLifecycleHookRequest(input *PutLifecycleHookInput) (req *request.Request, output *PutLifecycleHookOutput)
    func (c *AutoScaling) PutLifecycleHookWithContext(ctx aws.Context, input *PutLifecycleHookInput, opts ...request.Option) (*PutLifecycleHookOutput, error)
    func (c *AutoScaling) PutNotificationConfiguration(input *PutNotificationConfigurationInput) (*PutNotificationConfigurationOutput, error)
    func (c *AutoScaling) PutNotificationConfigurationRequest(input *PutNotificationConfigurationInput) (req *request.Request, output *PutNotificationConfigurationOutput)
    func (c *AutoScaling) PutNotificationConfigurationWithContext(ctx aws.Context, input *PutNotificationConfigurationInput, opts ...request.Option) (*PutNotificationConfigurationOutput, error)
    func (c *AutoScaling) PutScalingPolicy(input *PutScalingPolicyInput) (*PutScalingPolicyOutput, error)
    func (c *AutoScaling) PutScalingPolicyRequest(input *PutScalingPolicyInput) (req *request.Request, output *PutScalingPolicyOutput)
    func (c *AutoScaling) PutScalingPolicyWithContext(ctx aws.Context, input *PutScalingPolicyInput, opts ...request.Option) (*PutScalingPolicyOutput, error)
    func (c *AutoScaling) PutScheduledUpdateGroupAction(input *PutScheduledUpdateGroupActionInput) (*PutScheduledUpdateGroupActionOutput, error)
    func (c *AutoScaling) PutScheduledUpdateGroupActionRequest(input *PutScheduledUpdateGroupActionInput) (req *request.Request, output *PutScheduledUpdateGroupActionOutput)
    func (c *AutoScaling) PutScheduledUpdateGroupActionWithContext(ctx aws.Context, input *PutScheduledUpdateGroupActionInput, opts ...request.Option) (*PutScheduledUpdateGroupActionOutput, error)
    func (c *AutoScaling) RecordLifecycleActionHeartbeat(input *RecordLifecycleActionHeartbeatInput) (*RecordLifecycleActionHeartbeatOutput, error)
    func (c *AutoScaling) RecordLifecycleActionHeartbeatRequest(input *RecordLifecycleActionHeartbeatInput) (req *request.Request, output *RecordLifecycleActionHeartbeatOutput)
    func (c *AutoScaling) RecordLifecycleActionHeartbeatWithContext(ctx aws.Context, input *RecordLifecycleActionHeartbeatInput, opts ...request.Option) (*RecordLifecycleActionHeartbeatOutput, error)
    func (c *AutoScaling) ResumeProcesses(input *ScalingProcessQuery) (*ResumeProcessesOutput, error)
    func (c *AutoScaling) ResumeProcessesRequest(input *ScalingProcessQuery) (req *request.Request, output *ResumeProcessesOutput)
    func (c *AutoScaling) ResumeProcessesWithContext(ctx aws.Context, input *ScalingProcessQuery, opts ...request.Option) (*ResumeProcessesOutput, error)
    func (c *AutoScaling) SetDesiredCapacity(input *SetDesiredCapacityInput) (*SetDesiredCapacityOutput, error)
    func (c *AutoScaling) SetDesiredCapacityRequest(input *SetDesiredCapacityInput) (req *request.Request, output *SetDesiredCapacityOutput)
    func (c *AutoScaling) SetDesiredCapacityWithContext(ctx aws.Context, input *SetDesiredCapacityInput, opts ...request.Option) (*SetDesiredCapacityOutput, error)
    func (c *AutoScaling) SetInstanceHealth(input *SetInstanceHealthInput) (*SetInstanceHealthOutput, error)
    func (c *AutoScaling) SetInstanceHealthRequest(input *SetInstanceHealthInput) (req *request.Request, output *SetInstanceHealthOutput)
    func (c *AutoScaling) SetInstanceHealthWithContext(ctx aws.Context, input *SetInstanceHealthInput, opts ...request.Option) (*SetInstanceHealthOutput, error)
    func (c *AutoScaling) SetInstanceProtection(input *SetInstanceProtectionInput) (*SetInstanceProtectionOutput, error)
    func (c *AutoScaling) SetInstanceProtectionRequest(input *SetInstanceProtectionInput) (req *request.Request, output *SetInstanceProtectionOutput)
    func (c *AutoScaling) SetInstanceProtectionWithContext(ctx aws.Context, input *SetInstanceProtectionInput, opts ...request.Option) (*SetInstanceProtectionOutput, error)
    func (c *AutoScaling) SuspendProcesses(input *ScalingProcessQuery) (*SuspendProcessesOutput, error)
    func (c *AutoScaling) SuspendProcessesRequest(input *ScalingProcessQuery) (req *request.Request, output *SuspendProcessesOutput)
    func (c *AutoScaling) SuspendProcessesWithContext(ctx aws.Context, input *ScalingProcessQuery, opts ...request.Option) (*SuspendProcessesOutput, error)
    func (c *AutoScaling) TerminateInstanceInAutoScalingGroup(input *TerminateInstanceInAutoScalingGroupInput) (*TerminateInstanceInAutoScalingGroupOutput, error)
    func (c *AutoScaling) TerminateInstanceInAutoScalingGroupRequest(input *TerminateInstanceInAutoScalingGroupInput) (req *request.Request, output *TerminateInstanceInAutoScalingGroupOutput)
    func (c *AutoScaling) TerminateInstanceInAutoScalingGroupWithContext(ctx aws.Context, input *TerminateInstanceInAutoScalingGroupInput, opts ...request.Option) (*TerminateInstanceInAutoScalingGroupOutput, error)
    func (c *AutoScaling) UpdateAutoScalingGroup(input *UpdateAutoScalingGroupInput) (*UpdateAutoScalingGroupOutput, error)
    func (c *AutoScaling) UpdateAutoScalingGroupRequest(input *UpdateAutoScalingGroupInput) (req *request.Request, output *UpdateAutoScalingGroupOutput)
    func (c *AutoScaling) UpdateAutoScalingGroupWithContext(ctx aws.Context, input *UpdateAutoScalingGroupInput, opts ...request.Option) (*UpdateAutoScalingGroupOutput, error)
    func (c *AutoScaling) WaitUntilGroupExists(input *DescribeAutoScalingGroupsInput) error
    func (c *AutoScaling) WaitUntilGroupExistsWithContext(ctx aws.Context, input *DescribeAutoScalingGroupsInput, opts ...request.WaiterOption) error
    func (c *AutoScaling) WaitUntilGroupInService(input *DescribeAutoScalingGroupsInput) error
    func (c *AutoScaling) WaitUntilGroupInServiceWithContext(ctx aws.Context, input *DescribeAutoScalingGroupsInput, opts ...request.WaiterOption) error
    func (c *AutoScaling) WaitUntilGroupNotExists(input *DescribeAutoScalingGroupsInput) error
    func (c *AutoScaling) WaitUntilGroupNotExistsWithContext(ctx aws.Context, input *DescribeAutoScalingGroupsInput, opts ...request.WaiterOption) error
type BlockDeviceMapping
    func (s BlockDeviceMapping) GoString() string
    func (s *BlockDeviceMapping) SetDeviceName(v string) *BlockDeviceMapping
    func (s *BlockDeviceMapping) SetEbs(v *Ebs) *BlockDeviceMapping
    func (s *BlockDeviceMapping) SetNoDevice(v bool) *BlockDeviceMapping
    func (s *BlockDeviceMapping) SetVirtualName(v string) *BlockDeviceMapping
    func (s BlockDeviceMapping) String() string
    func (s *BlockDeviceMapping) Validate() error
type CompleteLifecycleActionInput
    func (s CompleteLifecycleActionInput) GoString() string
    func (s *CompleteLifecycleActionInput) SetAutoScalingGroupName(v string) *CompleteLifecycleActionInput
    func (s *CompleteLifecycleActionInput) SetInstanceId(v string) *CompleteLifecycleActionInput
    func (s *CompleteLifecycleActionInput) SetLifecycleActionResult(v string) *CompleteLifecycleActionInput
    func (s *CompleteLifecycleActionInput) SetLifecycleActionToken(v string) *CompleteLifecycleActionInput
    func (s *CompleteLifecycleActionInput) SetLifecycleHookName(v string) *CompleteLifecycleActionInput
    func (s CompleteLifecycleActionInput) String() string
    func (s *CompleteLifecycleActionInput) Validate() error
type CompleteLifecycleActionOutput
    func (s CompleteLifecycleActionOutput) GoString() string
    func (s CompleteLifecycleActionOutput) String() string
type CreateAutoScalingGroupInput
    func (s CreateAutoScalingGroupInput) GoString() string
    func (s *CreateAutoScalingGroupInput) SetAutoScalingGroupName(v string) *CreateAutoScalingGroupInput
    func (s *CreateAutoScalingGroupInput) SetAvailabilityZones(v []*string) *CreateAutoScalingGroupInput
    func (s *CreateAutoScalingGroupInput) SetDefaultCooldown(v int64) *CreateAutoScalingGroupInput
    func (s *CreateAutoScalingGroupInput) SetDesiredCapacity(v int64) *CreateAutoScalingGroupInput
    func (s *CreateAutoScalingGroupInput) SetHealthCheckGracePeriod(v int64) *CreateAutoScalingGroupInput
    func (s *CreateAutoScalingGroupInput) SetHealthCheckType(v string) *CreateAutoScalingGroupInput
    func (s *CreateAutoScalingGroupInput) SetInstanceId(v string) *CreateAutoScalingGroupInput
    func (s *CreateAutoScalingGroupInput) SetLaunchConfigurationName(v string) *CreateAutoScalingGroupInput
    func (s *CreateAutoScalingGroupInput) SetLoadBalancerNames(v []*string) *CreateAutoScalingGroupInput
    func (s *CreateAutoScalingGroupInput) SetMaxSize(v int64) *CreateAutoScalingGroupInput
    func (s *CreateAutoScalingGroupInput) SetMinSize(v int64) *CreateAutoScalingGroupInput
    func (s *CreateAutoScalingGroupInput) SetNewInstancesProtectedFromScaleIn(v bool) *CreateAutoScalingGroupInput
    func (s *CreateAutoScalingGroupInput) SetPlacementGroup(v string) *CreateAutoScalingGroupInput
    func (s *CreateAutoScalingGroupInput) SetTags(v []*Tag) *CreateAutoScalingGroupInput
    func (s *CreateAutoScalingGroupInput) SetTargetGroupARNs(v []*string) *CreateAutoScalingGroupInput
    func (s *CreateAutoScalingGroupInput) SetTerminationPolicies(v []*string) *CreateAutoScalingGroupInput
    func (s *CreateAutoScalingGroupInput) SetVPCZoneIdentifier(v string) *CreateAutoScalingGroupInput
    func (s CreateAutoScalingGroupInput) String() string
    func (s *CreateAutoScalingGroupInput) Validate() error
type CreateAutoScalingGroupOutput
    func (s CreateAutoScalingGroupOutput) GoString() string
    func (s CreateAutoScalingGroupOutput) String() string
type CreateLaunchConfigurationInput
    func (s CreateLaunchConfigurationInput) GoString() string
    func (s *CreateLaunchConfigurationInput) SetAssociatePublicIpAddress(v bool) *CreateLaunchConfigurationInput
    func (s *CreateLaunchConfigurationInput) SetBlockDeviceMappings(v []*BlockDeviceMapping) *CreateLaunchConfigurationInput
    func (s *CreateLaunchConfigurationInput) SetClassicLinkVPCId(v string) *CreateLaunchConfigurationInput
    func (s *CreateLaunchConfigurationInput) SetClassicLinkVPCSecurityGroups(v []*string) *CreateLaunchConfigurationInput
    func (s *CreateLaunchConfigurationInput) SetEbsOptimized(v bool) *CreateLaunchConfigurationInput
    func (s *CreateLaunchConfigurationInput) SetIamInstanceProfile(v string) *CreateLaunchConfigurationInput
    func (s *CreateLaunchConfigurationInput) SetImageId(v string) *CreateLaunchConfigurationInput
    func (s *CreateLaunchConfigurationInput) SetInstanceId(v string) *CreateLaunchConfigurationInput
    func (s *CreateLaunchConfigurationInput) SetInstanceMonitoring(v *InstanceMonitoring) *CreateLaunchConfigurationInput
    func (s *CreateLaunchConfigurationInput) SetInstanceType(v string) *CreateLaunchConfigurationInput
    func (s *CreateLaunchConfigurationInput) SetKernelId(v string) *CreateLaunchConfigurationInput
    func (s *CreateLaunchConfigurationInput) SetKeyName(v string) *CreateLaunchConfigurationInput
    func (s *CreateLaunchConfigurationInput) SetLaunchConfigurationName(v string) *CreateLaunchConfigurationInput
    func (s *CreateLaunchConfigurationInput) SetPlacementTenancy(v string) *CreateLaunchConfigurationInput
    func (s *CreateLaunchConfigurationInput) SetRamdiskId(v string) *CreateLaunchConfigurationInput
    func (s *CreateLaunchConfigurationInput) SetSecurityGroups(v []*string) *CreateLaunchConfigurationInput
    func (s *CreateLaunchConfigurationInput) SetSpotPrice(v string) *CreateLaunchConfigurationInput
    func (s *CreateLaunchConfigurationInput) SetUserData(v string) *CreateLaunchConfigurationInput
    func (s CreateLaunchConfigurationInput) String() string
    func (s *CreateLaunchConfigurationInput) Validate() error
type CreateLaunchConfigurationOutput
    func (s CreateLaunchConfigurationOutput) GoString() string
    func (s CreateLaunchConfigurationOutput) String() string
type CreateOrUpdateTagsInput
    func (s CreateOrUpdateTagsInput) GoString() string
    func (s *CreateOrUpdateTagsInput) SetTags(v []*Tag) *CreateOrUpdateTagsInput
    func (s CreateOrUpdateTagsInput) String() string
    func (s *CreateOrUpdateTagsInput) Validate() error
type CreateOrUpdateTagsOutput
    func (s CreateOrUpdateTagsOutput) GoString() string
    func (s CreateOrUpdateTagsOutput) String() string
type DeleteAutoScalingGroupInput
    func (s DeleteAutoScalingGroupInput) GoString() string
    func (s *DeleteAutoScalingGroupInput) SetAutoScalingGroupName(v string) *DeleteAutoScalingGroupInput
    func (s *DeleteAutoScalingGroupInput) SetForceDelete(v bool) *DeleteAutoScalingGroupInput
    func (s DeleteAutoScalingGroupInput) String() string
    func (s *DeleteAutoScalingGroupInput) Validate() error
type DeleteAutoScalingGroupOutput
    func (s DeleteAutoScalingGroupOutput) GoString() string
    func (s DeleteAutoScalingGroupOutput) String() string
type DeleteLaunchConfigurationInput
    func (s DeleteLaunchConfigurationInput) GoString() string
    func (s *DeleteLaunchConfigurationInput) SetLaunchConfigurationName(v string) *DeleteLaunchConfigurationInput
    func (s DeleteLaunchConfigurationInput) String() string
    func (s *DeleteLaunchConfigurationInput) Validate() error
type DeleteLaunchConfigurationOutput
    func (s DeleteLaunchConfigurationOutput) GoString() string
    func (s DeleteLaunchConfigurationOutput) String() string
type DeleteLifecycleHookInput
    func (s DeleteLifecycleHookInput) GoString() string
    func (s *DeleteLifecycleHookInput) SetAutoScalingGroupName(v string) *DeleteLifecycleHookInput
    func (s *DeleteLifecycleHookInput) SetLifecycleHookName(v string) *DeleteLifecycleHookInput
    func (s DeleteLifecycleHookInput) String() string
    func (s *DeleteLifecycleHookInput) Validate() error
type DeleteLifecycleHookOutput
    func (s DeleteLifecycleHookOutput) GoString() string
    func (s DeleteLifecycleHookOutput) String() string
type DeleteNotificationConfigurationInput
    func (s DeleteNotificationConfigurationInput) GoString() string
    func (s *DeleteNotificationConfigurationInput) SetAutoScalingGroupName(v string) *DeleteNotificationConfigurationInput
    func (s *DeleteNotificationConfigurationInput) SetTopicARN(v string) *DeleteNotificationConfigurationInput
    func (s DeleteNotificationConfigurationInput) String() string
    func (s *DeleteNotificationConfigurationInput) Validate() error
type DeleteNotificationConfigurationOutput
    func (s DeleteNotificationConfigurationOutput) GoString() string
    func (s DeleteNotificationConfigurationOutput) String() string
type DeletePolicyInput
    func (s DeletePolicyInput) GoString() string
    func (s *DeletePolicyInput) SetAutoScalingGroupName(v string) *DeletePolicyInput
    func (s *DeletePolicyInput) SetPolicyName(v string) *DeletePolicyInput
    func (s DeletePolicyInput) String() string
    func (s *DeletePolicyInput) Validate() error
type DeletePolicyOutput
    func (s DeletePolicyOutput) GoString() string
    func (s DeletePolicyOutput) String() string
type DeleteScheduledActionInput
    func (s DeleteScheduledActionInput) GoString() string
    func (s *DeleteScheduledActionInput) SetAutoScalingGroupName(v string) *DeleteScheduledActionInput
    func (s *DeleteScheduledActionInput) SetScheduledActionName(v string) *DeleteScheduledActionInput
    func (s DeleteScheduledActionInput) String() string
    func (s *DeleteScheduledActionInput) Validate() error
type DeleteScheduledActionOutput
    func (s DeleteScheduledActionOutput) GoString() string
    func (s DeleteScheduledActionOutput) String() string
type DeleteTagsInput
    func (s DeleteTagsInput) GoString() string
    func (s *DeleteTagsInput) SetTags(v []*Tag) *DeleteTagsInput
    func (s DeleteTagsInput) String() string
    func (s *DeleteTagsInput) Validate() error
type DeleteTagsOutput
    func (s DeleteTagsOutput) GoString() string
    func (s DeleteTagsOutput) String() string
type DescribeAccountLimitsInput
    func (s DescribeAccountLimitsInput) GoString() string
    func (s DescribeAccountLimitsInput) String() string
type DescribeAccountLimitsOutput
    func (s DescribeAccountLimitsOutput) GoString() string
    func (s *DescribeAccountLimitsOutput) SetMaxNumberOfAutoScalingGroups(v int64) *DescribeAccountLimitsOutput
    func (s *DescribeAccountLimitsOutput) SetMaxNumberOfLaunchConfigurations(v int64) *DescribeAccountLimitsOutput
    func (s *DescribeAccountLimitsOutput) SetNumberOfAutoScalingGroups(v int64) *DescribeAccountLimitsOutput
    func (s *DescribeAccountLimitsOutput) SetNumberOfLaunchConfigurations(v int64) *DescribeAccountLimitsOutput
    func (s DescribeAccountLimitsOutput) String() string
type DescribeAdjustmentTypesInput
    func (s DescribeAdjustmentTypesInput) GoString() string
    func (s DescribeAdjustmentTypesInput) String() string
type DescribeAdjustmentTypesOutput
    func (s DescribeAdjustmentTypesOutput) GoString() string
    func (s *DescribeAdjustmentTypesOutput) SetAdjustmentTypes(v []*AdjustmentType) *DescribeAdjustmentTypesOutput
    func (s DescribeAdjustmentTypesOutput) String() string
type DescribeAutoScalingGroupsInput
    func (s DescribeAutoScalingGroupsInput) GoString() string
    func (s *DescribeAutoScalingGroupsInput) SetAutoScalingGroupNames(v []*string) *DescribeAutoScalingGroupsInput
    func (s *DescribeAutoScalingGroupsInput) SetMaxRecords(v int64) *DescribeAutoScalingGroupsInput
    func (s *DescribeAutoScalingGroupsInput) SetNextToken(v string) *DescribeAutoScalingGroupsInput
    func (s DescribeAutoScalingGroupsInput) String() string
type DescribeAutoScalingGroupsOutput
    func (s DescribeAutoScalingGroupsOutput) GoString() string
    func (s *DescribeAutoScalingGroupsOutput) SetAutoScalingGroups(v []*Group) *DescribeAutoScalingGroupsOutput
    func (s *DescribeAutoScalingGroupsOutput) SetNextToken(v string) *DescribeAutoScalingGroupsOutput
    func (s DescribeAutoScalingGroupsOutput) String() string
type DescribeAutoScalingInstancesInput
    func (s DescribeAutoScalingInstancesInput) GoString() string
    func (s *DescribeAutoScalingInstancesInput) SetInstanceIds(v []*string) *DescribeAutoScalingInstancesInput
    func (s *DescribeAutoScalingInstancesInput) SetMaxRecords(v int64) *DescribeAutoScalingInstancesInput
    func (s *DescribeAutoScalingInstancesInput) SetNextToken(v string) *DescribeAutoScalingInstancesInput
    func (s DescribeAutoScalingInstancesInput) String() string
type DescribeAutoScalingInstancesOutput
    func (s DescribeAutoScalingInstancesOutput) GoString() string
    func (s *DescribeAutoScalingInstancesOutput) SetAutoScalingInstances(v []*InstanceDetails) *DescribeAutoScalingInstancesOutput
    func (s *DescribeAutoScalingInstancesOutput) SetNextToken(v string) *DescribeAutoScalingInstancesOutput
    func (s DescribeAutoScalingInstancesOutput) String() string
type DescribeAutoScalingNotificationTypesInput
    func (s DescribeAutoScalingNotificationTypesInput) GoString() string
    func (s DescribeAutoScalingNotificationTypesInput) String() string
type DescribeAutoScalingNotificationTypesOutput
    func (s DescribeAutoScalingNotificationTypesOutput) GoString() string
    func (s *DescribeAutoScalingNotificationTypesOutput) SetAutoScalingNotificationTypes(v []*string) *DescribeAutoScalingNotificationTypesOutput
    func (s DescribeAutoScalingNotificationTypesOutput) String() string
type DescribeLaunchConfigurationsInput
    func (s DescribeLaunchConfigurationsInput) GoString() string
    func (s *DescribeLaunchConfigurationsInput) SetLaunchConfigurationNames(v []*string) *DescribeLaunchConfigurationsInput
    func (s *DescribeLaunchConfigurationsInput) SetMaxRecords(v int64) *DescribeLaunchConfigurationsInput
    func (s *DescribeLaunchConfigurationsInput) SetNextToken(v string) *DescribeLaunchConfigurationsInput
    func (s DescribeLaunchConfigurationsInput) String() string
type DescribeLaunchConfigurationsOutput
    func (s DescribeLaunchConfigurationsOutput) GoString() string
    func (s *DescribeLaunchConfigurationsOutput) SetLaunchConfigurations(v []*LaunchConfiguration) *DescribeLaunchConfigurationsOutput
    func (s *DescribeLaunchConfigurationsOutput) SetNextToken(v string) *DescribeLaunchConfigurationsOutput
    func (s DescribeLaunchConfigurationsOutput) String() string
type DescribeLifecycleHookTypesInput
    func (s DescribeLifecycleHookTypesInput) GoString() string
    func (s DescribeLifecycleHookTypesInput) String() string
type DescribeLifecycleHookTypesOutput
    func (s DescribeLifecycleHookTypesOutput) GoString() string
    func (s *DescribeLifecycleHookTypesOutput) SetLifecycleHookTypes(v []*string) *DescribeLifecycleHookTypesOutput
    func (s DescribeLifecycleHookTypesOutput) String() string
type DescribeLifecycleHooksInput
    func (s DescribeLifecycleHooksInput) GoString() string
    func (s *DescribeLifecycleHooksInput) SetAutoScalingGroupName(v string) *DescribeLifecycleHooksInput
    func (s *DescribeLifecycleHooksInput) SetLifecycleHookNames(v []*string) *DescribeLifecycleHooksInput
    func (s DescribeLifecycleHooksInput) String() string
    func (s *DescribeLifecycleHooksInput) Validate() error
type DescribeLifecycleHooksOutput
    func (s DescribeLifecycleHooksOutput) GoString() string
    func (s *DescribeLifecycleHooksOutput) SetLifecycleHooks(v []*LifecycleHook) *DescribeLifecycleHooksOutput
    func (s DescribeLifecycleHooksOutput) String() string
type DescribeLoadBalancerTargetGroupsInput
    func (s DescribeLoadBalancerTargetGroupsInput) GoString() string
    func (s *DescribeLoadBalancerTargetGroupsInput) SetAutoScalingGroupName(v string) *DescribeLoadBalancerTargetGroupsInput
    func (s *DescribeLoadBalancerTargetGroupsInput) SetMaxRecords(v int64) *DescribeLoadBalancerTargetGroupsInput
    func (s *DescribeLoadBalancerTargetGroupsInput) SetNextToken(v string) *DescribeLoadBalancerTargetGroupsInput
    func (s DescribeLoadBalancerTargetGroupsInput) String() string
    func (s *DescribeLoadBalancerTargetGroupsInput) Validate() error
type DescribeLoadBalancerTargetGroupsOutput
    func (s DescribeLoadBalancerTargetGroupsOutput) GoString() string
    func (s *DescribeLoadBalancerTargetGroupsOutput) SetLoadBalancerTargetGroups(v []*LoadBalancerTargetGroupState) *DescribeLoadBalancerTargetGroupsOutput
    func (s *DescribeLoadBalancerTargetGroupsOutput) SetNextToken(v string) *DescribeLoadBalancerTargetGroupsOutput
    func (s DescribeLoadBalancerTargetGroupsOutput) String() string
type DescribeLoadBalancersInput
    func (s DescribeLoadBalancersInput) GoString() string
    func (s *DescribeLoadBalancersInput) SetAutoScalingGroupName(v string) *DescribeLoadBalancersInput
    func (s *DescribeLoadBalancersInput) SetMaxRecords(v int64) *DescribeLoadBalancersInput
    func (s *DescribeLoadBalancersInput) SetNextToken(v string) *DescribeLoadBalancersInput
    func (s DescribeLoadBalancersInput) String() string
    func (s *DescribeLoadBalancersInput) Validate() error
type DescribeLoadBalancersOutput
    func (s DescribeLoadBalancersOutput) GoString() string
    func (s *DescribeLoadBalancersOutput) SetLoadBalancers(v []*LoadBalancerState) *DescribeLoadBalancersOutput
    func (s *DescribeLoadBalancersOutput) SetNextToken(v string) *DescribeLoadBalancersOutput
    func (s DescribeLoadBalancersOutput) String() string
type DescribeMetricCollectionTypesInput
    func (s DescribeMetricCollectionTypesInput) GoString() string
    func (s DescribeMetricCollectionTypesInput) String() string
type DescribeMetricCollectionTypesOutput
    func (s DescribeMetricCollectionTypesOutput) GoString() string
    func (s *DescribeMetricCollectionTypesOutput) SetGranularities(v []*MetricGranularityType) *DescribeMetricCollectionTypesOutput
    func (s *DescribeMetricCollectionTypesOutput) SetMetrics(v []*MetricCollectionType) *DescribeMetricCollectionTypesOutput
    func (s DescribeMetricCollectionTypesOutput) String() string
type DescribeNotificationConfigurationsInput
    func (s DescribeNotificationConfigurationsInput) GoString() string
    func (s *DescribeNotificationConfigurationsInput) SetAutoScalingGroupNames(v []*string) *DescribeNotificationConfigurationsInput
    func (s *DescribeNotificationConfigurationsInput) SetMaxRecords(v int64) *DescribeNotificationConfigurationsInput
    func (s *DescribeNotificationConfigurationsInput) SetNextToken(v string) *DescribeNotificationConfigurationsInput
    func (s DescribeNotificationConfigurationsInput) String() string
type DescribeNotificationConfigurationsOutput
    func (s DescribeNotificationConfigurationsOutput) GoString() string
    func (s *DescribeNotificationConfigurationsOutput) SetNextToken(v string) *DescribeNotificationConfigurationsOutput
    func (s *DescribeNotificationConfigurationsOutput) SetNotificationConfigurations(v []*NotificationConfiguration) *DescribeNotificationConfigurationsOutput
    func (s DescribeNotificationConfigurationsOutput) String() string
type DescribePoliciesInput
    func (s DescribePoliciesInput) GoString() string
    func (s *DescribePoliciesInput) SetAutoScalingGroupName(v string) *DescribePoliciesInput
    func (s *DescribePoliciesInput) SetMaxRecords(v int64) *DescribePoliciesInput
    func (s *DescribePoliciesInput) SetNextToken(v string) *DescribePoliciesInput
    func (s *DescribePoliciesInput) SetPolicyNames(v []*string) *DescribePoliciesInput
    func (s *DescribePoliciesInput) SetPolicyTypes(v []*string) *DescribePoliciesInput
    func (s DescribePoliciesInput) String() string
    func (s *DescribePoliciesInput) Validate() error
type DescribePoliciesOutput
    func (s DescribePoliciesOutput) GoString() string
    func (s *DescribePoliciesOutput) SetNextToken(v string) *DescribePoliciesOutput
    func (s *DescribePoliciesOutput) SetScalingPolicies(v []*ScalingPolicy) *DescribePoliciesOutput
    func (s DescribePoliciesOutput) String() string
type DescribeScalingActivitiesInput
    func (s DescribeScalingActivitiesInput) GoString() string
    func (s *DescribeScalingActivitiesInput) SetActivityIds(v []*string) *DescribeScalingActivitiesInput
    func (s *DescribeScalingActivitiesInput) SetAutoScalingGroupName(v string) *DescribeScalingActivitiesInput
    func (s *DescribeScalingActivitiesInput) SetMaxRecords(v int64) *DescribeScalingActivitiesInput
    func (s *DescribeScalingActivitiesInput) SetNextToken(v string) *DescribeScalingActivitiesInput
    func (s DescribeScalingActivitiesInput) String() string
    func (s *DescribeScalingActivitiesInput) Validate() error
type DescribeScalingActivitiesOutput
    func (s DescribeScalingActivitiesOutput) GoString() string
    func (s *DescribeScalingActivitiesOutput) SetActivities(v []*Activity) *DescribeScalingActivitiesOutput
    func (s *DescribeScalingActivitiesOutput) SetNextToken(v string) *DescribeScalingActivitiesOutput
    func (s DescribeScalingActivitiesOutput) String() string
type DescribeScalingProcessTypesInput
    func (s DescribeScalingProcessTypesInput) GoString() string
    func (s DescribeScalingProcessTypesInput) String() string
type DescribeScalingProcessTypesOutput
    func (s DescribeScalingProcessTypesOutput) GoString() string
    func (s *DescribeScalingProcessTypesOutput) SetProcesses(v []*ProcessType) *DescribeScalingProcessTypesOutput
    func (s DescribeScalingProcessTypesOutput) String() string
type DescribeScheduledActionsInput
    func (s DescribeScheduledActionsInput) GoString() string
    func (s *DescribeScheduledActionsInput) SetAutoScalingGroupName(v string) *DescribeScheduledActionsInput
    func (s *DescribeScheduledActionsInput) SetEndTime(v time.Time) *DescribeScheduledActionsInput
    func (s *DescribeScheduledActionsInput) SetMaxRecords(v int64) *DescribeScheduledActionsInput
    func (s *DescribeScheduledActionsInput) SetNextToken(v string) *DescribeScheduledActionsInput
    func (s *DescribeScheduledActionsInput) SetScheduledActionNames(v []*string) *DescribeScheduledActionsInput
    func (s *DescribeScheduledActionsInput) SetStartTime(v time.Time) *DescribeScheduledActionsInput
    func (s DescribeScheduledActionsInput) String() string
    func (s *DescribeScheduledActionsInput) Validate() error
type DescribeScheduledActionsOutput
    func (s DescribeScheduledActionsOutput) GoString() string
    func (s *DescribeScheduledActionsOutput) SetNextToken(v string) *DescribeScheduledActionsOutput
    func (s *DescribeScheduledActionsOutput) SetScheduledUpdateGroupActions(v []*ScheduledUpdateGroupAction) *DescribeScheduledActionsOutput
    func (s DescribeScheduledActionsOutput) String() string
type DescribeTagsInput
    func (s DescribeTagsInput) GoString() string
    func (s *DescribeTagsInput) SetFilters(v []*Filter) *DescribeTagsInput
    func (s *DescribeTagsInput) SetMaxRecords(v int64) *DescribeTagsInput
    func (s *DescribeTagsInput) SetNextToken(v string) *DescribeTagsInput
    func (s DescribeTagsInput) String() string
type DescribeTagsOutput
    func (s DescribeTagsOutput) GoString() string
    func (s *DescribeTagsOutput) SetNextToken(v string) *DescribeTagsOutput
    func (s *DescribeTagsOutput) SetTags(v []*TagDescription) *DescribeTagsOutput
    func (s DescribeTagsOutput) String() string
type DescribeTerminationPolicyTypesInput
    func (s DescribeTerminationPolicyTypesInput) GoString() string
    func (s DescribeTerminationPolicyTypesInput) String() string
type DescribeTerminationPolicyTypesOutput
    func (s DescribeTerminationPolicyTypesOutput) GoString() string
    func (s *DescribeTerminationPolicyTypesOutput) SetTerminationPolicyTypes(v []*string) *DescribeTerminationPolicyTypesOutput
    func (s DescribeTerminationPolicyTypesOutput) String() string
type DetachInstancesInput
    func (s DetachInstancesInput) GoString() string
    func (s *DetachInstancesInput) SetAutoScalingGroupName(v string) *DetachInstancesInput
    func (s *DetachInstancesInput) SetInstanceIds(v []*string) *DetachInstancesInput
    func (s *DetachInstancesInput) SetShouldDecrementDesiredCapacity(v bool) *DetachInstancesInput
    func (s DetachInstancesInput) String() string
    func (s *DetachInstancesInput) Validate() error
type DetachInstancesOutput
    func (s DetachInstancesOutput) GoString() string
    func (s *DetachInstancesOutput) SetActivities(v []*Activity) *DetachInstancesOutput
    func (s DetachInstancesOutput) String() string
type DetachLoadBalancerTargetGroupsInput
    func (s DetachLoadBalancerTargetGroupsInput) GoString() string
    func (s *DetachLoadBalancerTargetGroupsInput) SetAutoScalingGroupName(v string) *DetachLoadBalancerTargetGroupsInput
    func (s *DetachLoadBalancerTargetGroupsInput) SetTargetGroupARNs(v []*string) *DetachLoadBalancerTargetGroupsInput
    func (s DetachLoadBalancerTargetGroupsInput) String() string
    func (s *DetachLoadBalancerTargetGroupsInput) Validate() error
type DetachLoadBalancerTargetGroupsOutput
    func (s DetachLoadBalancerTargetGroupsOutput) GoString() string
    func (s DetachLoadBalancerTargetGroupsOutput) String() string
type DetachLoadBalancersInput
    func (s DetachLoadBalancersInput) GoString() string
    func (s *DetachLoadBalancersInput) SetAutoScalingGroupName(v string) *DetachLoadBalancersInput
    func (s *DetachLoadBalancersInput) SetLoadBalancerNames(v []*string) *DetachLoadBalancersInput
    func (s DetachLoadBalancersInput) String() string
    func (s *DetachLoadBalancersInput) Validate() error
type DetachLoadBalancersOutput
    func (s DetachLoadBalancersOutput) GoString() string
    func (s DetachLoadBalancersOutput) String() string
type DisableMetricsCollectionInput
    func (s DisableMetricsCollectionInput) GoString() string
    func (s *DisableMetricsCollectionInput) SetAutoScalingGroupName(v string) *DisableMetricsCollectionInput
    func (s *DisableMetricsCollectionInput) SetMetrics(v []*string) *DisableMetricsCollectionInput
    func (s DisableMetricsCollectionInput) String() string
    func (s *DisableMetricsCollectionInput) Validate() error
type DisableMetricsCollectionOutput
    func (s DisableMetricsCollectionOutput) GoString() string
    func (s DisableMetricsCollectionOutput) String() string
type Ebs
    func (s Ebs) GoString() string
    func (s *Ebs) SetDeleteOnTermination(v bool) *Ebs
    func (s *Ebs) SetEncrypted(v bool) *Ebs
    func (s *Ebs) SetIops(v int64) *Ebs
    func (s *Ebs) SetSnapshotId(v string) *Ebs
    func (s *Ebs) SetVolumeSize(v int64) *Ebs
    func (s *Ebs) SetVolumeType(v string) *Ebs
    func (s Ebs) String() string
    func (s *Ebs) Validate() error
type EnableMetricsCollectionInput
    func (s EnableMetricsCollectionInput) GoString() string
    func (s *EnableMetricsCollectionInput) SetAutoScalingGroupName(v string) *EnableMetricsCollectionInput
    func (s *EnableMetricsCollectionInput) SetGranularity(v string) *EnableMetricsCollectionInput
    func (s *EnableMetricsCollectionInput) SetMetrics(v []*string) *EnableMetricsCollectionInput
    func (s EnableMetricsCollectionInput) String() string
    func (s *EnableMetricsCollectionInput) Validate() error
type EnableMetricsCollectionOutput
    func (s EnableMetricsCollectionOutput) GoString() string
    func (s EnableMetricsCollectionOutput) String() string
type EnabledMetric
    func (s EnabledMetric) GoString() string
    func (s *EnabledMetric) SetGranularity(v string) *EnabledMetric
    func (s *EnabledMetric) SetMetric(v string) *EnabledMetric
    func (s EnabledMetric) String() string
type EnterStandbyInput
    func (s EnterStandbyInput) GoString() string
    func (s *EnterStandbyInput) SetAutoScalingGroupName(v string) *EnterStandbyInput
    func (s *EnterStandbyInput) SetInstanceIds(v []*string) *EnterStandbyInput
    func (s *EnterStandbyInput) SetShouldDecrementDesiredCapacity(v bool) *EnterStandbyInput
    func (s EnterStandbyInput) String() string
    func (s *EnterStandbyInput) Validate() error
type EnterStandbyOutput
    func (s EnterStandbyOutput) GoString() string
    func (s *EnterStandbyOutput) SetActivities(v []*Activity) *EnterStandbyOutput
    func (s EnterStandbyOutput) String() string
type ExecutePolicyInput
    func (s ExecutePolicyInput) GoString() string
    func (s *ExecutePolicyInput) SetAutoScalingGroupName(v string) *ExecutePolicyInput
    func (s *ExecutePolicyInput) SetBreachThreshold(v float64) *ExecutePolicyInput
    func (s *ExecutePolicyInput) SetHonorCooldown(v bool) *ExecutePolicyInput
    func (s *ExecutePolicyInput) SetMetricValue(v float64) *ExecutePolicyInput
    func (s *ExecutePolicyInput) SetPolicyName(v string) *ExecutePolicyInput
    func (s ExecutePolicyInput) String() string
    func (s *ExecutePolicyInput) Validate() error
type ExecutePolicyOutput
    func (s ExecutePolicyOutput) GoString() string
    func (s ExecutePolicyOutput) String() string
type ExitStandbyInput
    func (s ExitStandbyInput) GoString() string
    func (s *ExitStandbyInput) SetAutoScalingGroupName(v string) *ExitStandbyInput
    func (s *ExitStandbyInput) SetInstanceIds(v []*string) *ExitStandbyInput
    func (s ExitStandbyInput) String() string
    func (s *ExitStandbyInput) Validate() error
type ExitStandbyOutput
    func (s ExitStandbyOutput) GoString() string
    func (s *ExitStandbyOutput) SetActivities(v []*Activity) *ExitStandbyOutput
    func (s ExitStandbyOutput) String() string
type Filter
    func (s Filter) GoString() string
    func (s *Filter) SetName(v string) *Filter
    func (s *Filter) SetValues(v []*string) *Filter
    func (s Filter) String() string
type Group
    func (s Group) GoString() string
    func (s *Group) SetAutoScalingGroupARN(v string) *Group
    func (s *Group) SetAutoScalingGroupName(v string) *Group
    func (s *Group) SetAvailabilityZones(v []*string) *Group
    func (s *Group) SetCreatedTime(v time.Time) *Group
    func (s *Group) SetDefaultCooldown(v int64) *Group
    func (s *Group) SetDesiredCapacity(v int64) *Group
    func (s *Group) SetEnabledMetrics(v []*EnabledMetric) *Group
    func (s *Group) SetHealthCheckGracePeriod(v int64) *Group
    func (s *Group) SetHealthCheckType(v string) *Group
    func (s *Group) SetInstances(v []*Instance) *Group
    func (s *Group) SetLaunchConfigurationName(v string) *Group
    func (s *Group) SetLoadBalancerNames(v []*string) *Group
    func (s *Group) SetMaxSize(v int64) *Group
    func (s *Group) SetMinSize(v int64) *Group
    func (s *Group) SetNewInstancesProtectedFromScaleIn(v bool) *Group
    func (s *Group) SetPlacementGroup(v string) *Group
    func (s *Group) SetStatus(v string) *Group
    func (s *Group) SetSuspendedProcesses(v []*SuspendedProcess) *Group
    func (s *Group) SetTags(v []*TagDescription) *Group
    func (s *Group) SetTargetGroupARNs(v []*string) *Group
    func (s *Group) SetTerminationPolicies(v []*string) *Group
    func (s *Group) SetVPCZoneIdentifier(v string) *Group
    func (s Group) String() string
type Instance
    func (s Instance) GoString() string
    func (s *Instance) SetAvailabilityZone(v string) *Instance
    func (s *Instance) SetHealthStatus(v string) *Instance
    func (s *Instance) SetInstanceId(v string) *Instance
    func (s *Instance) SetLaunchConfigurationName(v string) *Instance
    func (s *Instance) SetLifecycleState(v string) *Instance
    func (s *Instance) SetProtectedFromScaleIn(v bool) *Instance
    func (s Instance) String() string
type InstanceDetails
    func (s InstanceDetails) GoString() string
    func (s *InstanceDetails) SetAutoScalingGroupName(v string) *InstanceDetails
    func (s *InstanceDetails) SetAvailabilityZone(v string) *InstanceDetails
    func (s *InstanceDetails) SetHealthStatus(v string) *InstanceDetails
    func (s *InstanceDetails) SetInstanceId(v string) *InstanceDetails
    func (s *InstanceDetails) SetLaunchConfigurationName(v string) *InstanceDetails
    func (s *InstanceDetails) SetLifecycleState(v string) *InstanceDetails
    func (s *InstanceDetails) SetProtectedFromScaleIn(v bool) *InstanceDetails
    func (s InstanceDetails) String() string
type InstanceMonitoring
    func (s InstanceMonitoring) GoString() string
    func (s *InstanceMonitoring) SetEnabled(v bool) *InstanceMonitoring
    func (s InstanceMonitoring) String() string
type LaunchConfiguration
    func (s LaunchConfiguration) GoString() string
    func (s *LaunchConfiguration) SetAssociatePublicIpAddress(v bool) *LaunchConfiguration
    func (s *LaunchConfiguration) SetBlockDeviceMappings(v []*BlockDeviceMapping) *LaunchConfiguration
    func (s *LaunchConfiguration) SetClassicLinkVPCId(v string) *LaunchConfiguration
    func (s *LaunchConfiguration) SetClassicLinkVPCSecurityGroups(v []*string) *LaunchConfiguration
    func (s *LaunchConfiguration) SetCreatedTime(v time.Time) *LaunchConfiguration
    func (s *LaunchConfiguration) SetEbsOptimized(v bool) *LaunchConfiguration
    func (s *LaunchConfiguration) SetIamInstanceProfile(v string) *LaunchConfiguration
    func (s *LaunchConfiguration) SetImageId(v string) *LaunchConfiguration
    func (s *LaunchConfiguration) SetInstanceMonitoring(v *InstanceMonitoring) *LaunchConfiguration
    func (s *LaunchConfiguration) SetInstanceType(v string) *LaunchConfiguration
    func (s *LaunchConfiguration) SetKernelId(v string) *LaunchConfiguration
    func (s *LaunchConfiguration) SetKeyName(v string) *LaunchConfiguration
    func (s *LaunchConfiguration) SetLaunchConfigurationARN(v string) *LaunchConfiguration
    func (s *LaunchConfiguration) SetLaunchConfigurationName(v string) *LaunchConfiguration
    func (s *LaunchConfiguration) SetPlacementTenancy(v string) *LaunchConfiguration
    func (s *LaunchConfiguration) SetRamdiskId(v string) *LaunchConfiguration
    func (s *LaunchConfiguration) SetSecurityGroups(v []*string) *LaunchConfiguration
    func (s *LaunchConfiguration) SetSpotPrice(v string) *LaunchConfiguration
    func (s *LaunchConfiguration) SetUserData(v string) *LaunchConfiguration
    func (s LaunchConfiguration) String() string
type LifecycleHook
    func (s LifecycleHook) GoString() string
    func (s *LifecycleHook) SetAutoScalingGroupName(v string) *LifecycleHook
    func (s *LifecycleHook) SetDefaultResult(v string) *LifecycleHook
    func (s *LifecycleHook) SetGlobalTimeout(v int64) *LifecycleHook
    func (s *LifecycleHook) SetHeartbeatTimeout(v int64) *LifecycleHook
    func (s *LifecycleHook) SetLifecycleHookName(v string) *LifecycleHook
    func (s *LifecycleHook) SetLifecycleTransition(v string) *LifecycleHook
    func (s *LifecycleHook) SetNotificationMetadata(v string) *LifecycleHook
    func (s *LifecycleHook) SetNotificationTargetARN(v string) *LifecycleHook
    func (s *LifecycleHook) SetRoleARN(v string) *LifecycleHook
    func (s LifecycleHook) String() string
type LoadBalancerState
    func (s LoadBalancerState) GoString() string
    func (s *LoadBalancerState) SetLoadBalancerName(v string) *LoadBalancerState
    func (s *LoadBalancerState) SetState(v string) *LoadBalancerState
    func (s LoadBalancerState) String() string
type LoadBalancerTargetGroupState
    func (s LoadBalancerTargetGroupState) GoString() string
    func (s *LoadBalancerTargetGroupState) SetLoadBalancerTargetGroupARN(v string) *LoadBalancerTargetGroupState
    func (s *LoadBalancerTargetGroupState) SetState(v string) *LoadBalancerTargetGroupState
    func (s LoadBalancerTargetGroupState) String() string
type MetricCollectionType
    func (s MetricCollectionType) GoString() string
    func (s *MetricCollectionType) SetMetric(v string) *MetricCollectionType
    func (s MetricCollectionType) String() string
type MetricGranularityType
    func (s MetricGranularityType) GoString() string
    func (s *MetricGranularityType) SetGranularity(v string) *MetricGranularityType
    func (s MetricGranularityType) String() string
type NotificationConfiguration
    func (s NotificationConfiguration) GoString() string
    func (s *NotificationConfiguration) SetAutoScalingGroupName(v string) *NotificationConfiguration
    func (s *NotificationConfiguration) SetNotificationType(v string) *NotificationConfiguration
    func (s *NotificationConfiguration) SetTopicARN(v string) *NotificationConfiguration
    func (s NotificationConfiguration) String() string
type ProcessType
    func (s ProcessType) GoString() string
    func (s *ProcessType) SetProcessName(v string) *ProcessType
    func (s ProcessType) String() string
type PutLifecycleHookInput
    func (s PutLifecycleHookInput) GoString() string
    func (s *PutLifecycleHookInput) SetAutoScalingGroupName(v string) *PutLifecycleHookInput
    func (s *PutLifecycleHookInput) SetDefaultResult(v string) *PutLifecycleHookInput
    func (s *PutLifecycleHookInput) SetHeartbeatTimeout(v int64) *PutLifecycleHookInput
    func (s *PutLifecycleHookInput) SetLifecycleHookName(v string) *PutLifecycleHookInput
    func (s *PutLifecycleHookInput) SetLifecycleTransition(v string) *PutLifecycleHookInput
    func (s *PutLifecycleHookInput) SetNotificationMetadata(v string) *PutLifecycleHookInput
    func (s *PutLifecycleHookInput) SetNotificationTargetARN(v string) *PutLifecycleHookInput
    func (s *PutLifecycleHookInput) SetRoleARN(v string) *PutLifecycleHookInput
    func (s PutLifecycleHookInput) String() string
    func (s *PutLifecycleHookInput) Validate() error
type PutLifecycleHookOutput
    func (s PutLifecycleHookOutput) GoString() string
    func (s PutLifecycleHookOutput) String() string
type PutNotificationConfigurationInput
    func (s PutNotificationConfigurationInput) GoString() string
    func (s *PutNotificationConfigurationInput) SetAutoScalingGroupName(v string) *PutNotificationConfigurationInput
    func (s *PutNotificationConfigurationInput) SetNotificationTypes(v []*string) *PutNotificationConfigurationInput
    func (s *PutNotificationConfigurationInput) SetTopicARN(v string) *PutNotificationConfigurationInput
    func (s PutNotificationConfigurationInput) String() string
    func (s *PutNotificationConfigurationInput) Validate() error
type PutNotificationConfigurationOutput
    func (s PutNotificationConfigurationOutput) GoString() string
    func (s PutNotificationConfigurationOutput) String() string
type PutScalingPolicyInput
    func (s PutScalingPolicyInput) GoString() string
    func (s *PutScalingPolicyInput) SetAdjustmentType(v string) *PutScalingPolicyInput
    func (s *PutScalingPolicyInput) SetAutoScalingGroupName(v string) *PutScalingPolicyInput
    func (s *PutScalingPolicyInput) SetCooldown(v int64) *PutScalingPolicyInput
    func (s *PutScalingPolicyInput) SetEstimatedInstanceWarmup(v int64) *PutScalingPolicyInput
    func (s *PutScalingPolicyInput) SetMetricAggregationType(v string) *PutScalingPolicyInput
    func (s *PutScalingPolicyInput) SetMinAdjustmentMagnitude(v int64) *PutScalingPolicyInput
    func (s *PutScalingPolicyInput) SetMinAdjustmentStep(v int64) *PutScalingPolicyInput
    func (s *PutScalingPolicyInput) SetPolicyName(v string) *PutScalingPolicyInput
    func (s *PutScalingPolicyInput) SetPolicyType(v string) *PutScalingPolicyInput
    func (s *PutScalingPolicyInput) SetScalingAdjustment(v int64) *PutScalingPolicyInput
    func (s *PutScalingPolicyInput) SetStepAdjustments(v []*StepAdjustment) *PutScalingPolicyInput
    func (s PutScalingPolicyInput) String() string
    func (s *PutScalingPolicyInput) Validate() error
type PutScalingPolicyOutput
    func (s PutScalingPolicyOutput) GoString() string
    func (s *PutScalingPolicyOutput) SetPolicyARN(v string) *PutScalingPolicyOutput
    func (s PutScalingPolicyOutput) String() string
type PutScheduledUpdateGroupActionInput
    func (s PutScheduledUpdateGroupActionInput) GoString() string
    func (s *PutScheduledUpdateGroupActionInput) SetAutoScalingGroupName(v string) *PutScheduledUpdateGroupActionInput
    func (s *PutScheduledUpdateGroupActionInput) SetDesiredCapacity(v int64) *PutScheduledUpdateGroupActionInput
    func (s *PutScheduledUpdateGroupActionInput) SetEndTime(v time.Time) *PutScheduledUpdateGroupActionInput
    func (s *PutScheduledUpdateGroupActionInput) SetMaxSize(v int64) *PutScheduledUpdateGroupActionInput
    func (s *PutScheduledUpdateGroupActionInput) SetMinSize(v int64) *PutScheduledUpdateGroupActionInput
    func (s *PutScheduledUpdateGroupActionInput) SetRecurrence(v string) *PutScheduledUpdateGroupActionInput
    func (s *PutScheduledUpdateGroupActionInput) SetScheduledActionName(v string) *PutScheduledUpdateGroupActionInput
    func (s *PutScheduledUpdateGroupActionInput) SetStartTime(v time.Time) *PutScheduledUpdateGroupActionInput
    func (s *PutScheduledUpdateGroupActionInput) SetTime(v time.Time) *PutScheduledUpdateGroupActionInput
    func (s PutScheduledUpdateGroupActionInput) String() string
    func (s *PutScheduledUpdateGroupActionInput) Validate() error
type PutScheduledUpdateGroupActionOutput
    func (s PutScheduledUpdateGroupActionOutput) GoString() string
    func (s PutScheduledUpdateGroupActionOutput) String() string
type RecordLifecycleActionHeartbeatInput
    func (s RecordLifecycleActionHeartbeatInput) GoString() string
    func (s *RecordLifecycleActionHeartbeatInput) SetAutoScalingGroupName(v string) *RecordLifecycleActionHeartbeatInput
    func (s *RecordLifecycleActionHeartbeatInput) SetInstanceId(v string) *RecordLifecycleActionHeartbeatInput
    func (s *RecordLifecycleActionHeartbeatInput) SetLifecycleActionToken(v string) *RecordLifecycleActionHeartbeatInput
    func (s *RecordLifecycleActionHeartbeatInput) SetLifecycleHookName(v string) *RecordLifecycleActionHeartbeatInput
    func (s RecordLifecycleActionHeartbeatInput) String() string
    func (s *RecordLifecycleActionHeartbeatInput) Validate() error
type RecordLifecycleActionHeartbeatOutput
    func (s RecordLifecycleActionHeartbeatOutput) GoString() string
    func (s RecordLifecycleActionHeartbeatOutput) String() string
type ResumeProcessesOutput
    func (s ResumeProcessesOutput) GoString() string
    func (s ResumeProcessesOutput) String() string
type ScalingPolicy
    func (s ScalingPolicy) GoString() string
    func (s *ScalingPolicy) SetAdjustmentType(v string) *ScalingPolicy
    func (s *ScalingPolicy) SetAlarms(v []*Alarm) *ScalingPolicy
    func (s *ScalingPolicy) SetAutoScalingGroupName(v string) *ScalingPolicy
    func (s *ScalingPolicy) SetCooldown(v int64) *ScalingPolicy
    func (s *ScalingPolicy) SetEstimatedInstanceWarmup(v int64) *ScalingPolicy
    func (s *ScalingPolicy) SetMetricAggregationType(v string) *ScalingPolicy
    func (s *ScalingPolicy) SetMinAdjustmentMagnitude(v int64) *ScalingPolicy
    func (s *ScalingPolicy) SetMinAdjustmentStep(v int64) *ScalingPolicy
    func (s *ScalingPolicy) SetPolicyARN(v string) *ScalingPolicy
    func (s *ScalingPolicy) SetPolicyName(v string) *ScalingPolicy
    func (s *ScalingPolicy) SetPolicyType(v string) *ScalingPolicy
    func (s *ScalingPolicy) SetScalingAdjustment(v int64) *ScalingPolicy
    func (s *ScalingPolicy) SetStepAdjustments(v []*StepAdjustment) *ScalingPolicy
    func (s ScalingPolicy) String() string
type ScalingProcessQuery
    func (s ScalingProcessQuery) GoString() string
    func (s *ScalingProcessQuery) SetAutoScalingGroupName(v string) *ScalingProcessQuery
    func (s *ScalingProcessQuery) SetScalingProcesses(v []*string) *ScalingProcessQuery
    func (s ScalingProcessQuery) String() string
    func (s *ScalingProcessQuery) Validate() error
type ScheduledUpdateGroupAction
    func (s ScheduledUpdateGroupAction) GoString() string
    func (s *ScheduledUpdateGroupAction) SetAutoScalingGroupName(v string) *ScheduledUpdateGroupAction
    func (s *ScheduledUpdateGroupAction) SetDesiredCapacity(v int64) *ScheduledUpdateGroupAction
    func (s *ScheduledUpdateGroupAction) SetEndTime(v time.Time) *ScheduledUpdateGroupAction
    func (s *ScheduledUpdateGroupAction) SetMaxSize(v int64) *ScheduledUpdateGroupAction
    func (s *ScheduledUpdateGroupAction) SetMinSize(v int64) *ScheduledUpdateGroupAction
    func (s *ScheduledUpdateGroupAction) SetRecurrence(v string) *ScheduledUpdateGroupAction
    func (s *ScheduledUpdateGroupAction) SetScheduledActionARN(v string) *ScheduledUpdateGroupAction
    func (s *ScheduledUpdateGroupAction) SetScheduledActionName(v string) *ScheduledUpdateGroupAction
    func (s *ScheduledUpdateGroupAction) SetStartTime(v time.Time) *ScheduledUpdateGroupAction
    func (s *ScheduledUpdateGroupAction) SetTime(v time.Time) *ScheduledUpdateGroupAction
    func (s ScheduledUpdateGroupAction) String() string
type SetDesiredCapacityInput
    func (s SetDesiredCapacityInput) GoString() string
    func (s *SetDesiredCapacityInput) SetAutoScalingGroupName(v string) *SetDesiredCapacityInput
    func (s *SetDesiredCapacityInput) SetDesiredCapacity(v int64) *SetDesiredCapacityInput
    func (s *SetDesiredCapacityInput) SetHonorCooldown(v bool) *SetDesiredCapacityInput
    func (s SetDesiredCapacityInput) String() string
    func (s *SetDesiredCapacityInput) Validate() error
type SetDesiredCapacityOutput
    func (s SetDesiredCapacityOutput) GoString() string
    func (s SetDesiredCapacityOutput) String() string
type SetInstanceHealthInput
    func (s SetInstanceHealthInput) GoString() string
    func (s *SetInstanceHealthInput) SetHealthStatus(v string) *SetInstanceHealthInput
    func (s *SetInstanceHealthInput) SetInstanceId(v string) *SetInstanceHealthInput
    func (s *SetInstanceHealthInput) SetShouldRespectGracePeriod(v bool) *SetInstanceHealthInput
    func (s SetInstanceHealthInput) String() string
    func (s *SetInstanceHealthInput) Validate() error
type SetInstanceHealthOutput
    func (s SetInstanceHealthOutput) GoString() string
    func (s SetInstanceHealthOutput) String() string
type SetInstanceProtectionInput
    func (s SetInstanceProtectionInput) GoString() string
    func (s *SetInstanceProtectionInput) SetAutoScalingGroupName(v string) *SetInstanceProtectionInput
    func (s *SetInstanceProtectionInput) SetInstanceIds(v []*string) *SetInstanceProtectionInput
    func (s *SetInstanceProtectionInput) SetProtectedFromScaleIn(v bool) *SetInstanceProtectionInput
    func (s SetInstanceProtectionInput) String() string
    func (s *SetInstanceProtectionInput) Validate() error
type SetInstanceProtectionOutput
    func (s SetInstanceProtectionOutput) GoString() string
    func (s SetInstanceProtectionOutput) String() string
type StepAdjustment
    func (s StepAdjustment) GoString() string
    func (s *StepAdjustment) SetMetricIntervalLowerBound(v float64) *StepAdjustment
    func (s *StepAdjustment) SetMetricIntervalUpperBound(v float64) *StepAdjustment
    func (s *StepAdjustment) SetScalingAdjustment(v int64) *StepAdjustment
    func (s StepAdjustment) String() string
    func (s *StepAdjustment) Validate() error
type SuspendProcessesOutput
    func (s SuspendProcessesOutput) GoString() string
    func (s SuspendProcessesOutput) String() string
type SuspendedProcess
    func (s SuspendedProcess) GoString() string
    func (s *SuspendedProcess) SetProcessName(v string) *SuspendedProcess
    func (s *SuspendedProcess) SetSuspensionReason(v string) *SuspendedProcess
    func (s SuspendedProcess) String() string
type Tag
    func (s Tag) GoString() string
    func (s *Tag) SetKey(v string) *Tag
    func (s *Tag) SetPropagateAtLaunch(v bool) *Tag
    func (s *Tag) SetResourceId(v string) *Tag
    func (s *Tag) SetResourceType(v string) *Tag
    func (s *Tag) SetValue(v string) *Tag
    func (s Tag) String() string
    func (s *Tag) Validate() error
type TagDescription
    func (s TagDescription) GoString() string
    func (s *TagDescription) SetKey(v string) *TagDescription
    func (s *TagDescription) SetPropagateAtLaunch(v bool) *TagDescription
    func (s *TagDescription) SetResourceId(v string) *TagDescription
    func (s *TagDescription) SetResourceType(v string) *TagDescription
    func (s *TagDescription) SetValue(v string) *TagDescription
    func (s TagDescription) String() string
type TerminateInstanceInAutoScalingGroupInput
    func (s TerminateInstanceInAutoScalingGroupInput) GoString() string
    func (s *TerminateInstanceInAutoScalingGroupInput) SetInstanceId(v string) *TerminateInstanceInAutoScalingGroupInput
    func (s *TerminateInstanceInAutoScalingGroupInput) SetShouldDecrementDesiredCapacity(v bool) *TerminateInstanceInAutoScalingGroupInput
    func (s TerminateInstanceInAutoScalingGroupInput) String() string
    func (s *TerminateInstanceInAutoScalingGroupInput) Validate() error
type TerminateInstanceInAutoScalingGroupOutput
    func (s TerminateInstanceInAutoScalingGroupOutput) GoString() string
    func (s *TerminateInstanceInAutoScalingGroupOutput) SetActivity(v *Activity) *TerminateInstanceInAutoScalingGroupOutput
    func (s TerminateInstanceInAutoScalingGroupOutput) String() string
type UpdateAutoScalingGroupInput
    func (s UpdateAutoScalingGroupInput) GoString() string
    func (s *UpdateAutoScalingGroupInput) SetAutoScalingGroupName(v string) *UpdateAutoScalingGroupInput
    func (s *UpdateAutoScalingGroupInput) SetAvailabilityZones(v []*string) *UpdateAutoScalingGroupInput
    func (s *UpdateAutoScalingGroupInput) SetDefaultCooldown(v int64) *UpdateAutoScalingGroupInput
    func (s *UpdateAutoScalingGroupInput) SetDesiredCapacity(v int64) *UpdateAutoScalingGroupInput
    func (s *UpdateAutoScalingGroupInput) SetHealthCheckGracePeriod(v int64) *UpdateAutoScalingGroupInput
    func (s *UpdateAutoScalingGroupInput) SetHealthCheckType(v string) *UpdateAutoScalingGroupInput
    func (s *UpdateAutoScalingGroupInput) SetLaunchConfigurationName(v string) *UpdateAutoScalingGroupInput
    func (s *UpdateAutoScalingGroupInput) SetMaxSize(v int64) *UpdateAutoScalingGroupInput
    func (s *UpdateAutoScalingGroupInput) SetMinSize(v int64) *UpdateAutoScalingGroupInput
    func (s *UpdateAutoScalingGroupInput) SetNewInstancesProtectedFromScaleIn(v bool) *UpdateAutoScalingGroupInput
    func (s *UpdateAutoScalingGroupInput) SetPlacementGroup(v string) *UpdateAutoScalingGroupInput
    func (s *UpdateAutoScalingGroupInput) SetTerminationPolicies(v []*string) *UpdateAutoScalingGroupInput
    func (s *UpdateAutoScalingGroupInput) SetVPCZoneIdentifier(v string) *UpdateAutoScalingGroupInput
    func (s UpdateAutoScalingGroupInput) String() string
    func (s *UpdateAutoScalingGroupInput) Validate() error
type UpdateAutoScalingGroupOutput
    func (s UpdateAutoScalingGroupOutput) GoString() string
    func (s UpdateAutoScalingGroupOutput) String() string

Examples

AutoScaling.AttachInstances (Shared00)
AutoScaling.AttachLoadBalancerTargetGroups (Shared00)
AutoScaling.AttachLoadBalancers (Shared00)
AutoScaling.CompleteLifecycleAction (Shared00)
AutoScaling.CreateAutoScalingGroup (Shared00)
AutoScaling.CreateAutoScalingGroup (Shared01)
AutoScaling.CreateAutoScalingGroup (Shared02)
AutoScaling.CreateLaunchConfiguration (Shared00)
AutoScaling.CreateOrUpdateTags (Shared00)
AutoScaling.DeleteAutoScalingGroup (Shared00)
AutoScaling.DeleteAutoScalingGroup (Shared01)
AutoScaling.DeleteLaunchConfiguration (Shared00)
AutoScaling.DeleteLifecycleHook (Shared00)
AutoScaling.DeleteNotificationConfiguration (Shared00)
AutoScaling.DeletePolicy (Shared00)
AutoScaling.DeleteScheduledAction (Shared00)
AutoScaling.DeleteTags (Shared00)
AutoScaling.DescribeAccountLimits (Shared00)
AutoScaling.DescribeAdjustmentTypes (Shared00)
AutoScaling.DescribeAutoScalingGroups (Shared00)
AutoScaling.DescribeAutoScalingInstances (Shared00)
AutoScaling.DescribeAutoScalingNotificationTypes (Shared00)
AutoScaling.DescribeLaunchConfigurations (Shared00)
AutoScaling.DescribeLifecycleHookTypes (Shared00)
AutoScaling.DescribeLifecycleHooks (Shared00)
AutoScaling.DescribeLoadBalancerTargetGroups (Shared00)
AutoScaling.DescribeLoadBalancers (Shared00)
AutoScaling.DescribeMetricCollectionTypes (Shared00)
AutoScaling.DescribeNotificationConfigurations (Shared00)
AutoScaling.DescribePolicies (Shared00)
AutoScaling.DescribeScalingActivities (Shared00)
AutoScaling.DescribeScalingProcessTypes (Shared00)
AutoScaling.DescribeScheduledActions (Shared00)
AutoScaling.DescribeTags (Shared00)
AutoScaling.DescribeTerminationPolicyTypes (Shared00)
AutoScaling.DetachInstances (Shared00)
AutoScaling.DetachLoadBalancerTargetGroups (Shared00)
AutoScaling.DetachLoadBalancers (Shared00)
AutoScaling.DisableMetricsCollection (Shared00)
AutoScaling.EnableMetricsCollection (Shared00)
AutoScaling.EnterStandby (Shared00)
AutoScaling.ExecutePolicy (Shared00)
AutoScaling.ExitStandby (Shared00)
AutoScaling.PutLifecycleHook (Shared00)
AutoScaling.PutNotificationConfiguration (Shared00)
AutoScaling.PutScalingPolicy (Shared00)
AutoScaling.PutScheduledUpdateGroupAction (Shared00)
AutoScaling.RecordLifecycleActionHeartbeat (Shared00)
AutoScaling.ResumeProcesses (Shared00)
AutoScaling.SetDesiredCapacity (Shared00)
AutoScaling.SetInstanceHealth (Shared00)
AutoScaling.SetInstanceProtection (Shared00)
AutoScaling.SetInstanceProtection (Shared01)
AutoScaling.SuspendProcesses (Shared00)
AutoScaling.TerminateInstanceInAutoScalingGroup (Shared00)
AutoScaling.UpdateAutoScalingGroup (Shared00)
AutoScaling.UpdateAutoScalingGroup (Shared01)
AutoScaling.UpdateAutoScalingGroup (Shared02)

Package files

api.go doc.go errors.go service.go waiters.go

Constants

const (
    // LifecycleStatePending is a LifecycleState enum value
    LifecycleStatePending = "Pending"

    // LifecycleStatePendingWait is a LifecycleState enum value
    LifecycleStatePendingWait = "Pending:Wait"

    // LifecycleStatePendingProceed is a LifecycleState enum value
    LifecycleStatePendingProceed = "Pending:Proceed"

    // LifecycleStateQuarantined is a LifecycleState enum value
    LifecycleStateQuarantined = "Quarantined"

    // LifecycleStateInService is a LifecycleState enum value
    LifecycleStateInService = "InService"

    // LifecycleStateTerminating is a LifecycleState enum value
    LifecycleStateTerminating = "Terminating"

    // LifecycleStateTerminatingWait is a LifecycleState enum value
    LifecycleStateTerminatingWait = "Terminating:Wait"

    // LifecycleStateTerminatingProceed is a LifecycleState enum value
    LifecycleStateTerminatingProceed = "Terminating:Proceed"

    // LifecycleStateTerminated is a LifecycleState enum value
    LifecycleStateTerminated = "Terminated"

    // LifecycleStateDetaching is a LifecycleState enum value
    LifecycleStateDetaching = "Detaching"

    // LifecycleStateDetached is a LifecycleState enum value
    LifecycleStateDetached = "Detached"

    // LifecycleStateEnteringStandby is a LifecycleState enum value
    LifecycleStateEnteringStandby = "EnteringStandby"

    // LifecycleStateStandby is a LifecycleState enum value
    LifecycleStateStandby = "Standby"
)
const (
    // ScalingActivityStatusCodePendingSpotBidPlacement is a ScalingActivityStatusCode enum value
    ScalingActivityStatusCodePendingSpotBidPlacement = "PendingSpotBidPlacement"

    // ScalingActivityStatusCodeWaitingForSpotInstanceRequestId is a ScalingActivityStatusCode enum value
    ScalingActivityStatusCodeWaitingForSpotInstanceRequestId = "WaitingForSpotInstanceRequestId"

    // ScalingActivityStatusCodeWaitingForSpotInstanceId is a ScalingActivityStatusCode enum value
    ScalingActivityStatusCodeWaitingForSpotInstanceId = "WaitingForSpotInstanceId"

    // ScalingActivityStatusCodeWaitingForInstanceId is a ScalingActivityStatusCode enum value
    ScalingActivityStatusCodeWaitingForInstanceId = "WaitingForInstanceId"

    // ScalingActivityStatusCodePreInService is a ScalingActivityStatusCode enum value
    ScalingActivityStatusCodePreInService = "PreInService"

    // ScalingActivityStatusCodeInProgress is a ScalingActivityStatusCode enum value
    ScalingActivityStatusCodeInProgress = "InProgress"

    // ScalingActivityStatusCodeWaitingForElbconnectionDraining is a ScalingActivityStatusCode enum value
    ScalingActivityStatusCodeWaitingForElbconnectionDraining = "WaitingForELBConnectionDraining"

    // ScalingActivityStatusCodeMidLifecycleAction is a ScalingActivityStatusCode enum value
    ScalingActivityStatusCodeMidLifecycleAction = "MidLifecycleAction"

    // ScalingActivityStatusCodeWaitingForInstanceWarmup is a ScalingActivityStatusCode enum value
    ScalingActivityStatusCodeWaitingForInstanceWarmup = "WaitingForInstanceWarmup"

    // ScalingActivityStatusCodeSuccessful is a ScalingActivityStatusCode enum value
    ScalingActivityStatusCodeSuccessful = "Successful"

    // ScalingActivityStatusCodeFailed is a ScalingActivityStatusCode enum value
    ScalingActivityStatusCodeFailed = "Failed"

    // ScalingActivityStatusCodeCancelled is a ScalingActivityStatusCode enum value
    ScalingActivityStatusCodeCancelled = "Cancelled"
)
const (

    // ErrCodeAlreadyExistsFault for service response error code
    // "AlreadyExists".
    //
    // You already have an Auto Scaling group or launch configuration with this
    // name.
    ErrCodeAlreadyExistsFault = "AlreadyExists"

    // ErrCodeInvalidNextToken for service response error code
    // "InvalidNextToken".
    //
    // The NextToken value is not valid.
    ErrCodeInvalidNextToken = "InvalidNextToken"

    // ErrCodeLimitExceededFault for service response error code
    // "LimitExceeded".
    //
    // You have already reached a limit for your Auto Scaling resources (for example,
    // groups, launch configurations, or lifecycle hooks). For more information,
    // see DescribeAccountLimits.
    ErrCodeLimitExceededFault = "LimitExceeded"

    // ErrCodeResourceContentionFault for service response error code
    // "ResourceContention".
    //
    // You already have a pending update to an Auto Scaling resource (for example,
    // a group, instance, or load balancer).
    ErrCodeResourceContentionFault = "ResourceContention"

    // ErrCodeResourceInUseFault for service response error code
    // "ResourceInUse".
    //
    // The operation can't be performed because the resource is in use.
    ErrCodeResourceInUseFault = "ResourceInUse"

    // ErrCodeScalingActivityInProgressFault for service response error code
    // "ScalingActivityInProgress".
    //
    // The operation can't be performed because there are scaling activities in
    // progress.
    ErrCodeScalingActivityInProgressFault = "ScalingActivityInProgress"
)

Service information constants

const (
    ServiceName = "autoscaling" // Service endpoint prefix API calls made to.
    EndpointsID = ServiceName   // Service ID for Regions and Endpoints metadata.
)

type Activity

Describes scaling activity, which is a long-running process that represents a change to your Auto Scaling group, such as changing its size or replacing an instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/Activity

type Activity struct {

    // The ID of the activity.
    //
    // ActivityId is a required field
    ActivityId *string `type:"string" required:"true"`

    // The name of the Auto Scaling group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // The reason the activity began.
    //
    // Cause is a required field
    Cause *string `min:"1" type:"string" required:"true"`

    // A friendly, more verbose description of the activity.
    Description *string `type:"string"`

    // The details about the activity.
    Details *string `type:"string"`

    // The end time of the activity.
    EndTime *time.Time `type:"timestamp" timestampFormat:"iso8601"`

    // A value between 0 and 100 that indicates the progress of the activity.
    Progress *int64 `type:"integer"`

    // The start time of the activity.
    //
    // StartTime is a required field
    StartTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"`

    // The current status of the activity.
    //
    // StatusCode is a required field
    StatusCode *string `type:"string" required:"true" enum:"ScalingActivityStatusCode"`

    // A friendly, more verbose description of the activity status.
    StatusMessage *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (Activity) GoString

func (s Activity) GoString() string

GoString returns the string representation

func (*Activity) SetActivityId

func (s *Activity) SetActivityId(v string) *Activity

SetActivityId sets the ActivityId field's value.

func (*Activity) SetAutoScalingGroupName

func (s *Activity) SetAutoScalingGroupName(v string) *Activity

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*Activity) SetCause

func (s *Activity) SetCause(v string) *Activity

SetCause sets the Cause field's value.

func (*Activity) SetDescription

func (s *Activity) SetDescription(v string) *Activity

SetDescription sets the Description field's value.

func (*Activity) SetDetails

func (s *Activity) SetDetails(v string) *Activity

SetDetails sets the Details field's value.

func (*Activity) SetEndTime

func (s *Activity) SetEndTime(v time.Time) *Activity

SetEndTime sets the EndTime field's value.

func (*Activity) SetProgress

func (s *Activity) SetProgress(v int64) *Activity

SetProgress sets the Progress field's value.

func (*Activity) SetStartTime

func (s *Activity) SetStartTime(v time.Time) *Activity

SetStartTime sets the StartTime field's value.

func (*Activity) SetStatusCode

func (s *Activity) SetStatusCode(v string) *Activity

SetStatusCode sets the StatusCode field's value.

func (*Activity) SetStatusMessage

func (s *Activity) SetStatusMessage(v string) *Activity

SetStatusMessage sets the StatusMessage field's value.

func (Activity) String

func (s Activity) String() string

String returns the string representation

type AdjustmentType

Describes a policy adjustment type.

For more information, see Dynamic Scaling (http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/as-scale-based-on-demand.html) in the Auto Scaling User Guide. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/AdjustmentType

type AdjustmentType struct {

    // The policy adjustment type. The valid values are ChangeInCapacity, ExactCapacity,
    // and PercentChangeInCapacity.
    AdjustmentType *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (AdjustmentType) GoString

func (s AdjustmentType) GoString() string

GoString returns the string representation

func (*AdjustmentType) SetAdjustmentType

func (s *AdjustmentType) SetAdjustmentType(v string) *AdjustmentType

SetAdjustmentType sets the AdjustmentType field's value.

func (AdjustmentType) String

func (s AdjustmentType) String() string

String returns the string representation

type Alarm

Describes an alarm. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/Alarm

type Alarm struct {

    // The Amazon Resource Name (ARN) of the alarm.
    AlarmARN *string `min:"1" type:"string"`

    // The name of the alarm.
    AlarmName *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (Alarm) GoString

func (s Alarm) GoString() string

GoString returns the string representation

func (*Alarm) SetAlarmARN

func (s *Alarm) SetAlarmARN(v string) *Alarm

SetAlarmARN sets the AlarmARN field's value.

func (*Alarm) SetAlarmName

func (s *Alarm) SetAlarmName(v string) *Alarm

SetAlarmName sets the AlarmName field's value.

func (Alarm) String

func (s Alarm) String() string

String returns the string representation

type AttachInstancesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/AttachInstancesQuery

type AttachInstancesInput struct {

    // The name of the group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // One or more instance IDs.
    InstanceIds []*string `type:"list"`
    // contains filtered or unexported fields
}

func (AttachInstancesInput) GoString

func (s AttachInstancesInput) GoString() string

GoString returns the string representation

func (*AttachInstancesInput) SetAutoScalingGroupName

func (s *AttachInstancesInput) SetAutoScalingGroupName(v string) *AttachInstancesInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*AttachInstancesInput) SetInstanceIds

func (s *AttachInstancesInput) SetInstanceIds(v []*string) *AttachInstancesInput

SetInstanceIds sets the InstanceIds field's value.

func (AttachInstancesInput) String

func (s AttachInstancesInput) String() string

String returns the string representation

func (*AttachInstancesInput) Validate

func (s *AttachInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AttachInstancesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/AttachInstancesOutput

type AttachInstancesOutput struct {
    // contains filtered or unexported fields
}

func (AttachInstancesOutput) GoString

func (s AttachInstancesOutput) GoString() string

GoString returns the string representation

func (AttachInstancesOutput) String

func (s AttachInstancesOutput) String() string

String returns the string representation

type AttachLoadBalancerTargetGroupsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/AttachLoadBalancerTargetGroupsType

type AttachLoadBalancerTargetGroupsInput struct {

    // The name of the Auto Scaling group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // The Amazon Resource Names (ARN) of the target groups.
    //
    // TargetGroupARNs is a required field
    TargetGroupARNs []*string `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (AttachLoadBalancerTargetGroupsInput) GoString

func (s AttachLoadBalancerTargetGroupsInput) GoString() string

GoString returns the string representation

func (*AttachLoadBalancerTargetGroupsInput) SetAutoScalingGroupName

func (s *AttachLoadBalancerTargetGroupsInput) SetAutoScalingGroupName(v string) *AttachLoadBalancerTargetGroupsInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*AttachLoadBalancerTargetGroupsInput) SetTargetGroupARNs

func (s *AttachLoadBalancerTargetGroupsInput) SetTargetGroupARNs(v []*string) *AttachLoadBalancerTargetGroupsInput

SetTargetGroupARNs sets the TargetGroupARNs field's value.

func (AttachLoadBalancerTargetGroupsInput) String

func (s AttachLoadBalancerTargetGroupsInput) String() string

String returns the string representation

func (*AttachLoadBalancerTargetGroupsInput) Validate

func (s *AttachLoadBalancerTargetGroupsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AttachLoadBalancerTargetGroupsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/AttachLoadBalancerTargetGroupsResultType

type AttachLoadBalancerTargetGroupsOutput struct {
    // contains filtered or unexported fields
}

func (AttachLoadBalancerTargetGroupsOutput) GoString

func (s AttachLoadBalancerTargetGroupsOutput) GoString() string

GoString returns the string representation

func (AttachLoadBalancerTargetGroupsOutput) String

func (s AttachLoadBalancerTargetGroupsOutput) String() string

String returns the string representation

type AttachLoadBalancersInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/AttachLoadBalancersType

type AttachLoadBalancersInput struct {

    // The name of the group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // One or more load balancer names.
    //
    // LoadBalancerNames is a required field
    LoadBalancerNames []*string `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (AttachLoadBalancersInput) GoString

func (s AttachLoadBalancersInput) GoString() string

GoString returns the string representation

func (*AttachLoadBalancersInput) SetAutoScalingGroupName

func (s *AttachLoadBalancersInput) SetAutoScalingGroupName(v string) *AttachLoadBalancersInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*AttachLoadBalancersInput) SetLoadBalancerNames

func (s *AttachLoadBalancersInput) SetLoadBalancerNames(v []*string) *AttachLoadBalancersInput

SetLoadBalancerNames sets the LoadBalancerNames field's value.

func (AttachLoadBalancersInput) String

func (s AttachLoadBalancersInput) String() string

String returns the string representation

func (*AttachLoadBalancersInput) Validate

func (s *AttachLoadBalancersInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AttachLoadBalancersOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/AttachLoadBalancersResultType

type AttachLoadBalancersOutput struct {
    // contains filtered or unexported fields
}

func (AttachLoadBalancersOutput) GoString

func (s AttachLoadBalancersOutput) GoString() string

GoString returns the string representation

func (AttachLoadBalancersOutput) String

func (s AttachLoadBalancersOutput) String() string

String returns the string representation

type AutoScaling

AutoScaling provides the API operation methods for making requests to Auto Scaling. See this package's package overview docs for details on the service.

AutoScaling methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.

type AutoScaling struct {
    *client.Client
}

func New

func New(p client.ConfigProvider, cfgs ...*aws.Config) *AutoScaling

New creates a new instance of the AutoScaling client with a session. If additional configuration is needed for the client instance use the optional aws.Config parameter to add your extra config.

Example:

// Create a AutoScaling client from just a session.
svc := autoscaling.New(mySession)

// Create a AutoScaling client with additional configuration
svc := autoscaling.New(mySession, aws.NewConfig().WithRegion("us-west-2"))

func (*AutoScaling) AttachInstances

func (c *AutoScaling) AttachInstances(input *AttachInstancesInput) (*AttachInstancesOutput, error)

AttachInstances API operation for Auto Scaling.

Attaches one or more EC2 instances to the specified Auto Scaling group.

When you attach instances, Auto Scaling increases the desired capacity of the group by the number of instances being attached. If the number of instances being attached plus the desired capacity of the group exceeds the maximum size of the group, the operation fails.

If there is a Classic Load Balancer attached to your Auto Scaling group, the instances are also registered with the load balancer. If there are target groups attached to your Auto Scaling group, the instances are also registered with the target groups.

For more information, see Attach EC2 Instances to Your Auto Scaling Group (http://docs.aws.amazon.com/autoscaling/latest/userguide/attach-instance-asg.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation AttachInstances for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/AttachInstances

Example (Shared00)

To attach an instance to an Auto Scaling group This example attaches the specified instance to the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.AttachInstancesInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    InstanceIds: []*string{
        aws.String("i-93633f9b"),
    },
}

result, err := svc.AttachInstances(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) AttachInstancesRequest

func (c *AutoScaling) AttachInstancesRequest(input *AttachInstancesInput) (req *request.Request, output *AttachInstancesOutput)

AttachInstancesRequest generates a "aws/request.Request" representing the client's request for the AttachInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AttachInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AttachInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AttachInstancesRequest method.
req, resp := client.AttachInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/AttachInstances

func (*AutoScaling) AttachInstancesWithContext

func (c *AutoScaling) AttachInstancesWithContext(ctx aws.Context, input *AttachInstancesInput, opts ...request.Option) (*AttachInstancesOutput, error)

AttachInstancesWithContext is the same as AttachInstances with the addition of the ability to pass a context and additional request options.

See AttachInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) AttachLoadBalancerTargetGroups

func (c *AutoScaling) AttachLoadBalancerTargetGroups(input *AttachLoadBalancerTargetGroupsInput) (*AttachLoadBalancerTargetGroupsOutput, error)

AttachLoadBalancerTargetGroups API operation for Auto Scaling.

Attaches one or more target groups to the specified Auto Scaling group.

To describe the target groups for an Auto Scaling group, use DescribeLoadBalancerTargetGroups. To detach the target group from the Auto Scaling group, use DetachLoadBalancerTargetGroups.

For more information, see Attach a Load Balancer to Your Auto Scaling Group (http://docs.aws.amazon.com/autoscaling/latest/userguide/attach-load-balancer-asg.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation AttachLoadBalancerTargetGroups for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/AttachLoadBalancerTargetGroups

Example (Shared00)

To attach a target group to an Auto Scaling group This example attaches the specified target group to the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.AttachLoadBalancerTargetGroupsInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    TargetGroupARNs: []*string{
        aws.String("arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067"),
    },
}

result, err := svc.AttachLoadBalancerTargetGroups(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) AttachLoadBalancerTargetGroupsRequest

func (c *AutoScaling) AttachLoadBalancerTargetGroupsRequest(input *AttachLoadBalancerTargetGroupsInput) (req *request.Request, output *AttachLoadBalancerTargetGroupsOutput)

AttachLoadBalancerTargetGroupsRequest generates a "aws/request.Request" representing the client's request for the AttachLoadBalancerTargetGroups operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AttachLoadBalancerTargetGroups for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AttachLoadBalancerTargetGroups method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AttachLoadBalancerTargetGroupsRequest method.
req, resp := client.AttachLoadBalancerTargetGroupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/AttachLoadBalancerTargetGroups

func (*AutoScaling) AttachLoadBalancerTargetGroupsWithContext

func (c *AutoScaling) AttachLoadBalancerTargetGroupsWithContext(ctx aws.Context, input *AttachLoadBalancerTargetGroupsInput, opts ...request.Option) (*AttachLoadBalancerTargetGroupsOutput, error)

AttachLoadBalancerTargetGroupsWithContext is the same as AttachLoadBalancerTargetGroups with the addition of the ability to pass a context and additional request options.

See AttachLoadBalancerTargetGroups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) AttachLoadBalancers

func (c *AutoScaling) AttachLoadBalancers(input *AttachLoadBalancersInput) (*AttachLoadBalancersOutput, error)

AttachLoadBalancers API operation for Auto Scaling.

Attaches one or more Classic Load Balancers to the specified Auto Scaling group.

To attach an Application Load Balancer instead, see AttachLoadBalancerTargetGroups.

To describe the load balancers for an Auto Scaling group, use DescribeLoadBalancers. To detach the load balancer from the Auto Scaling group, use DetachLoadBalancers.

For more information, see Attach a Load Balancer to Your Auto Scaling Group (http://docs.aws.amazon.com/autoscaling/latest/userguide/attach-load-balancer-asg.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation AttachLoadBalancers for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/AttachLoadBalancers

Example (Shared00)

To attach a load balancer to an Auto Scaling group This example attaches the specified load balancer to the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.AttachLoadBalancersInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    LoadBalancerNames: []*string{
        aws.String("my-load-balancer"),
    },
}

result, err := svc.AttachLoadBalancers(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) AttachLoadBalancersRequest

func (c *AutoScaling) AttachLoadBalancersRequest(input *AttachLoadBalancersInput) (req *request.Request, output *AttachLoadBalancersOutput)

AttachLoadBalancersRequest generates a "aws/request.Request" representing the client's request for the AttachLoadBalancers operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AttachLoadBalancers for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AttachLoadBalancers method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AttachLoadBalancersRequest method.
req, resp := client.AttachLoadBalancersRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/AttachLoadBalancers

func (*AutoScaling) AttachLoadBalancersWithContext

func (c *AutoScaling) AttachLoadBalancersWithContext(ctx aws.Context, input *AttachLoadBalancersInput, opts ...request.Option) (*AttachLoadBalancersOutput, error)

AttachLoadBalancersWithContext is the same as AttachLoadBalancers with the addition of the ability to pass a context and additional request options.

See AttachLoadBalancers for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) CompleteLifecycleAction

func (c *AutoScaling) CompleteLifecycleAction(input *CompleteLifecycleActionInput) (*CompleteLifecycleActionOutput, error)

CompleteLifecycleAction API operation for Auto Scaling.

Completes the lifecycle action for the specified token or instance with the specified result.

This step is a part of the procedure for adding a lifecycle hook to an Auto Scaling group:

(Optional) Create a Lambda function and a rule that allows CloudWatch Events to invoke your Lambda function when Auto Scaling launches or terminates instances.

(Optional) Create a notification target and an IAM role. The target can be either an Amazon SQS queue or an Amazon SNS topic. The role allows Auto Scaling to publish lifecycle notifications to the target.

Create the lifecycle hook. Specify whether the hook is used when the instances launch or terminate.

If you need more time, record the lifecycle action heartbeat to keep the instance in a pending state.

If you finish before the timeout period ends, complete the lifecycle action.

For more information, see Auto Scaling Lifecycle (http://docs.aws.amazon.com/autoscaling/latest/userguide/AutoScalingGroupLifecycle.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation CompleteLifecycleAction for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CompleteLifecycleAction

Example (Shared00)

To complete the lifecycle action This example notifies Auto Scaling that the specified lifecycle action is complete so that it can finish launching or terminating the instance.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.CompleteLifecycleActionInput{
    AutoScalingGroupName:  aws.String("my-auto-scaling-group"),
    LifecycleActionResult: aws.String("CONTINUE"),
    LifecycleActionToken:  aws.String("bcd2f1b8-9a78-44d3-8a7a-4dd07d7cf635"),
    LifecycleHookName:     aws.String("my-lifecycle-hook"),
}

result, err := svc.CompleteLifecycleAction(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) CompleteLifecycleActionRequest

func (c *AutoScaling) CompleteLifecycleActionRequest(input *CompleteLifecycleActionInput) (req *request.Request, output *CompleteLifecycleActionOutput)

CompleteLifecycleActionRequest generates a "aws/request.Request" representing the client's request for the CompleteLifecycleAction operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CompleteLifecycleAction for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CompleteLifecycleAction method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CompleteLifecycleActionRequest method.
req, resp := client.CompleteLifecycleActionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CompleteLifecycleAction

func (*AutoScaling) CompleteLifecycleActionWithContext

func (c *AutoScaling) CompleteLifecycleActionWithContext(ctx aws.Context, input *CompleteLifecycleActionInput, opts ...request.Option) (*CompleteLifecycleActionOutput, error)

CompleteLifecycleActionWithContext is the same as CompleteLifecycleAction with the addition of the ability to pass a context and additional request options.

See CompleteLifecycleAction for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) CreateAutoScalingGroup

func (c *AutoScaling) CreateAutoScalingGroup(input *CreateAutoScalingGroupInput) (*CreateAutoScalingGroupOutput, error)

CreateAutoScalingGroup API operation for Auto Scaling.

Creates an Auto Scaling group with the specified name and attributes.

If you exceed your maximum limit of Auto Scaling groups, which by default is 20 per region, the call fails. For information about viewing and updating this limit, see DescribeAccountLimits.

For more information, see Auto Scaling Groups (http://docs.aws.amazon.com/autoscaling/latest/userguide/AutoScalingGroup.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation CreateAutoScalingGroup for usage and error information.

Returned Error Codes:

* ErrCodeAlreadyExistsFault "AlreadyExists"
You already have an Auto Scaling group or launch configuration with this
name.

* ErrCodeLimitExceededFault "LimitExceeded"
You have already reached a limit for your Auto Scaling resources (for example,
groups, launch configurations, or lifecycle hooks). For more information,
see DescribeAccountLimits.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CreateAutoScalingGroup

Example (Shared00)

To create an Auto Scaling group This example creates an Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.CreateAutoScalingGroupInput{
    AutoScalingGroupName:    aws.String("my-auto-scaling-group"),
    LaunchConfigurationName: aws.String("my-launch-config"),
    MaxSize:                 aws.Int64(3),
    MinSize:                 aws.Int64(1),
    VPCZoneIdentifier:       aws.String("subnet-4176792c"),
}

result, err := svc.CreateAutoScalingGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeAlreadyExistsFault:
            fmt.Println(autoscaling.ErrCodeAlreadyExistsFault, aerr.Error())
        case autoscaling.ErrCodeLimitExceededFault:
            fmt.Println(autoscaling.ErrCodeLimitExceededFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To create an Auto Scaling group with an attached load balancer This example creates an Auto Scaling group and attaches the specified Classic Load Balancer.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.CreateAutoScalingGroupInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    AvailabilityZones: []*string{
        aws.String("us-west-2c"),
    },
    HealthCheckGracePeriod:  aws.Int64(120),
    HealthCheckType:         aws.String("ELB"),
    LaunchConfigurationName: aws.String("my-launch-config"),
    LoadBalancerNames: []*string{
        aws.String("my-load-balancer"),
    },
    MaxSize: aws.Int64(3),
    MinSize: aws.Int64(1),
}

result, err := svc.CreateAutoScalingGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeAlreadyExistsFault:
            fmt.Println(autoscaling.ErrCodeAlreadyExistsFault, aerr.Error())
        case autoscaling.ErrCodeLimitExceededFault:
            fmt.Println(autoscaling.ErrCodeLimitExceededFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared02)

To create an Auto Scaling group with an attached target group This example creates an Auto Scaling group and attaches the specified target group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.CreateAutoScalingGroupInput{
    AutoScalingGroupName:    aws.String("my-auto-scaling-group"),
    HealthCheckGracePeriod:  aws.Int64(120),
    HealthCheckType:         aws.String("ELB"),
    LaunchConfigurationName: aws.String("my-launch-config"),
    MaxSize:                 aws.Int64(3),
    MinSize:                 aws.Int64(1),
    TargetGroupARNs: []*string{
        aws.String("arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067"),
    },
    VPCZoneIdentifier: aws.String("subnet-4176792c, subnet-65ea5f08"),
}

result, err := svc.CreateAutoScalingGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeAlreadyExistsFault:
            fmt.Println(autoscaling.ErrCodeAlreadyExistsFault, aerr.Error())
        case autoscaling.ErrCodeLimitExceededFault:
            fmt.Println(autoscaling.ErrCodeLimitExceededFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) CreateAutoScalingGroupRequest

func (c *AutoScaling) CreateAutoScalingGroupRequest(input *CreateAutoScalingGroupInput) (req *request.Request, output *CreateAutoScalingGroupOutput)

CreateAutoScalingGroupRequest generates a "aws/request.Request" representing the client's request for the CreateAutoScalingGroup operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateAutoScalingGroup for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateAutoScalingGroup method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateAutoScalingGroupRequest method.
req, resp := client.CreateAutoScalingGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CreateAutoScalingGroup

func (*AutoScaling) CreateAutoScalingGroupWithContext

func (c *AutoScaling) CreateAutoScalingGroupWithContext(ctx aws.Context, input *CreateAutoScalingGroupInput, opts ...request.Option) (*CreateAutoScalingGroupOutput, error)

CreateAutoScalingGroupWithContext is the same as CreateAutoScalingGroup with the addition of the ability to pass a context and additional request options.

See CreateAutoScalingGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) CreateLaunchConfiguration

func (c *AutoScaling) CreateLaunchConfiguration(input *CreateLaunchConfigurationInput) (*CreateLaunchConfigurationOutput, error)

CreateLaunchConfiguration API operation for Auto Scaling.

Creates a launch configuration.

If you exceed your maximum limit of launch configurations, which by default is 100 per region, the call fails. For information about viewing and updating this limit, see DescribeAccountLimits.

For more information, see Launch Configurations (http://docs.aws.amazon.com/autoscaling/latest/userguide/LaunchConfiguration.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation CreateLaunchConfiguration for usage and error information.

Returned Error Codes:

* ErrCodeAlreadyExistsFault "AlreadyExists"
You already have an Auto Scaling group or launch configuration with this
name.

* ErrCodeLimitExceededFault "LimitExceeded"
You have already reached a limit for your Auto Scaling resources (for example,
groups, launch configurations, or lifecycle hooks). For more information,
see DescribeAccountLimits.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CreateLaunchConfiguration

Example (Shared00)

To create a launch configuration This example creates a launch configuration.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.CreateLaunchConfigurationInput{
    IamInstanceProfile:      aws.String("my-iam-role"),
    ImageId:                 aws.String("ami-12345678"),
    InstanceType:            aws.String("m3.medium"),
    LaunchConfigurationName: aws.String("my-launch-config"),
    SecurityGroups: []*string{
        aws.String("sg-eb2af88e"),
    },
}

result, err := svc.CreateLaunchConfiguration(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeAlreadyExistsFault:
            fmt.Println(autoscaling.ErrCodeAlreadyExistsFault, aerr.Error())
        case autoscaling.ErrCodeLimitExceededFault:
            fmt.Println(autoscaling.ErrCodeLimitExceededFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) CreateLaunchConfigurationRequest

func (c *AutoScaling) CreateLaunchConfigurationRequest(input *CreateLaunchConfigurationInput) (req *request.Request, output *CreateLaunchConfigurationOutput)

CreateLaunchConfigurationRequest generates a "aws/request.Request" representing the client's request for the CreateLaunchConfiguration operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateLaunchConfiguration for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateLaunchConfiguration method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateLaunchConfigurationRequest method.
req, resp := client.CreateLaunchConfigurationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CreateLaunchConfiguration

func (*AutoScaling) CreateLaunchConfigurationWithContext

func (c *AutoScaling) CreateLaunchConfigurationWithContext(ctx aws.Context, input *CreateLaunchConfigurationInput, opts ...request.Option) (*CreateLaunchConfigurationOutput, error)

CreateLaunchConfigurationWithContext is the same as CreateLaunchConfiguration with the addition of the ability to pass a context and additional request options.

See CreateLaunchConfiguration for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) CreateOrUpdateTags

func (c *AutoScaling) CreateOrUpdateTags(input *CreateOrUpdateTagsInput) (*CreateOrUpdateTagsOutput, error)

CreateOrUpdateTags API operation for Auto Scaling.

Creates or updates tags for the specified Auto Scaling group.

When you specify a tag with a key that already exists, the operation overwrites the previous tag definition, and you do not get an error message.

For more information, see Tagging Auto Scaling Groups and Instances (http://docs.aws.amazon.com/autoscaling/latest/userguide/autoscaling-tagging.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation CreateOrUpdateTags for usage and error information.

Returned Error Codes:

* ErrCodeLimitExceededFault "LimitExceeded"
You have already reached a limit for your Auto Scaling resources (for example,
groups, launch configurations, or lifecycle hooks). For more information,
see DescribeAccountLimits.

* ErrCodeAlreadyExistsFault "AlreadyExists"
You already have an Auto Scaling group or launch configuration with this
name.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CreateOrUpdateTags

Example (Shared00)

To create or update tags for an Auto Scaling group This example adds two tags to the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.CreateOrUpdateTagsInput{
    Tags: []*autoscaling.Tag{
        {
            Key:               aws.String("Role"),
            PropagateAtLaunch: aws.Bool(true),
            ResourceId:        aws.String("my-auto-scaling-group"),
            ResourceType:      aws.String("auto-scaling-group"),
            Value:             aws.String("WebServer"),
        },
        {
            Key:               aws.String("Dept"),
            PropagateAtLaunch: aws.Bool(true),
            ResourceId:        aws.String("my-auto-scaling-group"),
            ResourceType:      aws.String("auto-scaling-group"),
            Value:             aws.String("Research"),
        },
    },
}

result, err := svc.CreateOrUpdateTags(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeLimitExceededFault:
            fmt.Println(autoscaling.ErrCodeLimitExceededFault, aerr.Error())
        case autoscaling.ErrCodeAlreadyExistsFault:
            fmt.Println(autoscaling.ErrCodeAlreadyExistsFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) CreateOrUpdateTagsRequest

func (c *AutoScaling) CreateOrUpdateTagsRequest(input *CreateOrUpdateTagsInput) (req *request.Request, output *CreateOrUpdateTagsOutput)

CreateOrUpdateTagsRequest generates a "aws/request.Request" representing the client's request for the CreateOrUpdateTags operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateOrUpdateTags for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateOrUpdateTags method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateOrUpdateTagsRequest method.
req, resp := client.CreateOrUpdateTagsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CreateOrUpdateTags

func (*AutoScaling) CreateOrUpdateTagsWithContext

func (c *AutoScaling) CreateOrUpdateTagsWithContext(ctx aws.Context, input *CreateOrUpdateTagsInput, opts ...request.Option) (*CreateOrUpdateTagsOutput, error)

CreateOrUpdateTagsWithContext is the same as CreateOrUpdateTags with the addition of the ability to pass a context and additional request options.

See CreateOrUpdateTags for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DeleteAutoScalingGroup

func (c *AutoScaling) DeleteAutoScalingGroup(input *DeleteAutoScalingGroupInput) (*DeleteAutoScalingGroupOutput, error)

DeleteAutoScalingGroup API operation for Auto Scaling.

Deletes the specified Auto Scaling group.

If the group has instances or scaling activities in progress, you must specify the option to force the deletion in order for it to succeed.

If the group has policies, deleting the group deletes the policies, the underlying alarm actions, and any alarm that no longer has an associated action.

To remove instances from the Auto Scaling group before deleting it, call DetachInstances with the list of instances and the option to decrement the desired capacity so that Auto Scaling does not launch replacement instances.

To terminate all instances before deleting the Auto Scaling group, call UpdateAutoScalingGroup and set the minimum size and desired capacity of the Auto Scaling group to zero.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DeleteAutoScalingGroup for usage and error information.

Returned Error Codes:

* ErrCodeScalingActivityInProgressFault "ScalingActivityInProgress"
The operation can't be performed because there are scaling activities in
progress.

* ErrCodeResourceInUseFault "ResourceInUse"
The operation can't be performed because the resource is in use.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteAutoScalingGroup

Example (Shared00)

To delete an Auto Scaling group This example deletes the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DeleteAutoScalingGroupInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
}

result, err := svc.DeleteAutoScalingGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeScalingActivityInProgressFault:
            fmt.Println(autoscaling.ErrCodeScalingActivityInProgressFault, aerr.Error())
        case autoscaling.ErrCodeResourceInUseFault:
            fmt.Println(autoscaling.ErrCodeResourceInUseFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To delete an Auto Scaling group and all its instances This example deletes the specified Auto Scaling group and all its instances.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DeleteAutoScalingGroupInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    ForceDelete:          aws.Bool(true),
}

result, err := svc.DeleteAutoScalingGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeScalingActivityInProgressFault:
            fmt.Println(autoscaling.ErrCodeScalingActivityInProgressFault, aerr.Error())
        case autoscaling.ErrCodeResourceInUseFault:
            fmt.Println(autoscaling.ErrCodeResourceInUseFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DeleteAutoScalingGroupRequest

func (c *AutoScaling) DeleteAutoScalingGroupRequest(input *DeleteAutoScalingGroupInput) (req *request.Request, output *DeleteAutoScalingGroupOutput)

DeleteAutoScalingGroupRequest generates a "aws/request.Request" representing the client's request for the DeleteAutoScalingGroup operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteAutoScalingGroup for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteAutoScalingGroup method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteAutoScalingGroupRequest method.
req, resp := client.DeleteAutoScalingGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteAutoScalingGroup

func (*AutoScaling) DeleteAutoScalingGroupWithContext

func (c *AutoScaling) DeleteAutoScalingGroupWithContext(ctx aws.Context, input *DeleteAutoScalingGroupInput, opts ...request.Option) (*DeleteAutoScalingGroupOutput, error)

DeleteAutoScalingGroupWithContext is the same as DeleteAutoScalingGroup with the addition of the ability to pass a context and additional request options.

See DeleteAutoScalingGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DeleteLaunchConfiguration

func (c *AutoScaling) DeleteLaunchConfiguration(input *DeleteLaunchConfigurationInput) (*DeleteLaunchConfigurationOutput, error)

DeleteLaunchConfiguration API operation for Auto Scaling.

Deletes the specified launch configuration.

The launch configuration must not be attached to an Auto Scaling group. When this call completes, the launch configuration is no longer available for use.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DeleteLaunchConfiguration for usage and error information.

Returned Error Codes:

* ErrCodeResourceInUseFault "ResourceInUse"
The operation can't be performed because the resource is in use.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteLaunchConfiguration

Example (Shared00)

To delete a launch configuration This example deletes the specified launch configuration.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DeleteLaunchConfigurationInput{
    LaunchConfigurationName: aws.String("my-launch-config"),
}

result, err := svc.DeleteLaunchConfiguration(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceInUseFault:
            fmt.Println(autoscaling.ErrCodeResourceInUseFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DeleteLaunchConfigurationRequest

func (c *AutoScaling) DeleteLaunchConfigurationRequest(input *DeleteLaunchConfigurationInput) (req *request.Request, output *DeleteLaunchConfigurationOutput)

DeleteLaunchConfigurationRequest generates a "aws/request.Request" representing the client's request for the DeleteLaunchConfiguration operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteLaunchConfiguration for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteLaunchConfiguration method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteLaunchConfigurationRequest method.
req, resp := client.DeleteLaunchConfigurationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteLaunchConfiguration

func (*AutoScaling) DeleteLaunchConfigurationWithContext

func (c *AutoScaling) DeleteLaunchConfigurationWithContext(ctx aws.Context, input *DeleteLaunchConfigurationInput, opts ...request.Option) (*DeleteLaunchConfigurationOutput, error)

DeleteLaunchConfigurationWithContext is the same as DeleteLaunchConfiguration with the addition of the ability to pass a context and additional request options.

See DeleteLaunchConfiguration for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DeleteLifecycleHook

func (c *AutoScaling) DeleteLifecycleHook(input *DeleteLifecycleHookInput) (*DeleteLifecycleHookOutput, error)

DeleteLifecycleHook API operation for Auto Scaling.

Deletes the specified lifecycle hook.

If there are any outstanding lifecycle actions, they are completed first (ABANDON for launching instances, CONTINUE for terminating instances).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DeleteLifecycleHook for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteLifecycleHook

Example (Shared00)

To delete a lifecycle hook This example deletes the specified lifecycle hook.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DeleteLifecycleHookInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    LifecycleHookName:    aws.String("my-lifecycle-hook"),
}

result, err := svc.DeleteLifecycleHook(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DeleteLifecycleHookRequest

func (c *AutoScaling) DeleteLifecycleHookRequest(input *DeleteLifecycleHookInput) (req *request.Request, output *DeleteLifecycleHookOutput)

DeleteLifecycleHookRequest generates a "aws/request.Request" representing the client's request for the DeleteLifecycleHook operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteLifecycleHook for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteLifecycleHook method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteLifecycleHookRequest method.
req, resp := client.DeleteLifecycleHookRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteLifecycleHook

func (*AutoScaling) DeleteLifecycleHookWithContext

func (c *AutoScaling) DeleteLifecycleHookWithContext(ctx aws.Context, input *DeleteLifecycleHookInput, opts ...request.Option) (*DeleteLifecycleHookOutput, error)

DeleteLifecycleHookWithContext is the same as DeleteLifecycleHook with the addition of the ability to pass a context and additional request options.

See DeleteLifecycleHook for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DeleteNotificationConfiguration

func (c *AutoScaling) DeleteNotificationConfiguration(input *DeleteNotificationConfigurationInput) (*DeleteNotificationConfigurationOutput, error)

DeleteNotificationConfiguration API operation for Auto Scaling.

Deletes the specified notification.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DeleteNotificationConfiguration for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteNotificationConfiguration

Example (Shared00)

To delete an Auto Scaling notification This example deletes the specified notification from the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DeleteNotificationConfigurationInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    TopicARN:             aws.String("arn:aws:sns:us-west-2:123456789012:my-sns-topic"),
}

result, err := svc.DeleteNotificationConfiguration(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DeleteNotificationConfigurationRequest

func (c *AutoScaling) DeleteNotificationConfigurationRequest(input *DeleteNotificationConfigurationInput) (req *request.Request, output *DeleteNotificationConfigurationOutput)

DeleteNotificationConfigurationRequest generates a "aws/request.Request" representing the client's request for the DeleteNotificationConfiguration operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteNotificationConfiguration for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteNotificationConfiguration method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteNotificationConfigurationRequest method.
req, resp := client.DeleteNotificationConfigurationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteNotificationConfiguration

func (*AutoScaling) DeleteNotificationConfigurationWithContext

func (c *AutoScaling) DeleteNotificationConfigurationWithContext(ctx aws.Context, input *DeleteNotificationConfigurationInput, opts ...request.Option) (*DeleteNotificationConfigurationOutput, error)

DeleteNotificationConfigurationWithContext is the same as DeleteNotificationConfiguration with the addition of the ability to pass a context and additional request options.

See DeleteNotificationConfiguration for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DeletePolicy

func (c *AutoScaling) DeletePolicy(input *DeletePolicyInput) (*DeletePolicyOutput, error)

DeletePolicy API operation for Auto Scaling.

Deletes the specified Auto Scaling policy.

Deleting a policy deletes the underlying alarm action, but does not delete the alarm, even if it no longer has an associated action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DeletePolicy for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeletePolicy

Example (Shared00)

To delete an Auto Scaling policy This example deletes the specified Auto Scaling policy.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DeletePolicyInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    PolicyName:           aws.String("ScaleIn"),
}

result, err := svc.DeletePolicy(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DeletePolicyRequest

func (c *AutoScaling) DeletePolicyRequest(input *DeletePolicyInput) (req *request.Request, output *DeletePolicyOutput)

DeletePolicyRequest generates a "aws/request.Request" representing the client's request for the DeletePolicy operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeletePolicy for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeletePolicy method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeletePolicyRequest method.
req, resp := client.DeletePolicyRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeletePolicy

func (*AutoScaling) DeletePolicyWithContext

func (c *AutoScaling) DeletePolicyWithContext(ctx aws.Context, input *DeletePolicyInput, opts ...request.Option) (*DeletePolicyOutput, error)

DeletePolicyWithContext is the same as DeletePolicy with the addition of the ability to pass a context and additional request options.

See DeletePolicy for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DeleteScheduledAction

func (c *AutoScaling) DeleteScheduledAction(input *DeleteScheduledActionInput) (*DeleteScheduledActionOutput, error)

DeleteScheduledAction API operation for Auto Scaling.

Deletes the specified scheduled action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DeleteScheduledAction for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteScheduledAction

Example (Shared00)

To delete a scheduled action from an Auto Scaling group This example deletes the specified scheduled action from the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DeleteScheduledActionInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    ScheduledActionName:  aws.String("my-scheduled-action"),
}

result, err := svc.DeleteScheduledAction(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DeleteScheduledActionRequest

func (c *AutoScaling) DeleteScheduledActionRequest(input *DeleteScheduledActionInput) (req *request.Request, output *DeleteScheduledActionOutput)

DeleteScheduledActionRequest generates a "aws/request.Request" representing the client's request for the DeleteScheduledAction operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteScheduledAction for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteScheduledAction method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteScheduledActionRequest method.
req, resp := client.DeleteScheduledActionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteScheduledAction

func (*AutoScaling) DeleteScheduledActionWithContext

func (c *AutoScaling) DeleteScheduledActionWithContext(ctx aws.Context, input *DeleteScheduledActionInput, opts ...request.Option) (*DeleteScheduledActionOutput, error)

DeleteScheduledActionWithContext is the same as DeleteScheduledAction with the addition of the ability to pass a context and additional request options.

See DeleteScheduledAction for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DeleteTags

func (c *AutoScaling) DeleteTags(input *DeleteTagsInput) (*DeleteTagsOutput, error)

DeleteTags API operation for Auto Scaling.

Deletes the specified tags.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DeleteTags for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteTags

Example (Shared00)

To delete a tag from an Auto Scaling group This example deletes the specified tag from the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DeleteTagsInput{
    Tags: []*autoscaling.Tag{
        {
            Key:          aws.String("Dept"),
            ResourceId:   aws.String("my-auto-scaling-group"),
            ResourceType: aws.String("auto-scaling-group"),
            Value:        aws.String("Research"),
        },
    },
}

result, err := svc.DeleteTags(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DeleteTagsRequest

func (c *AutoScaling) DeleteTagsRequest(input *DeleteTagsInput) (req *request.Request, output *DeleteTagsOutput)

DeleteTagsRequest generates a "aws/request.Request" representing the client's request for the DeleteTags operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteTags for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteTags method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteTagsRequest method.
req, resp := client.DeleteTagsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteTags

func (*AutoScaling) DeleteTagsWithContext

func (c *AutoScaling) DeleteTagsWithContext(ctx aws.Context, input *DeleteTagsInput, opts ...request.Option) (*DeleteTagsOutput, error)

DeleteTagsWithContext is the same as DeleteTags with the addition of the ability to pass a context and additional request options.

See DeleteTags for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeAccountLimits

func (c *AutoScaling) DescribeAccountLimits(input *DescribeAccountLimitsInput) (*DescribeAccountLimitsOutput, error)

DescribeAccountLimits API operation for Auto Scaling.

Describes the current Auto Scaling resource limits for your AWS account.

For information about requesting an increase in these limits, see AWS Service Limits (http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html) in the Amazon Web Services General Reference.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribeAccountLimits for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeAccountLimits

Example (Shared00)

To describe your Auto Scaling account limits This example describes the Auto Scaling limits for your AWS account.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribeAccountLimitsInput{}

result, err := svc.DescribeAccountLimits(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribeAccountLimitsRequest

func (c *AutoScaling) DescribeAccountLimitsRequest(input *DescribeAccountLimitsInput) (req *request.Request, output *DescribeAccountLimitsOutput)

DescribeAccountLimitsRequest generates a "aws/request.Request" representing the client's request for the DescribeAccountLimits operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeAccountLimits for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeAccountLimits method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeAccountLimitsRequest method.
req, resp := client.DescribeAccountLimitsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeAccountLimits

func (*AutoScaling) DescribeAccountLimitsWithContext

func (c *AutoScaling) DescribeAccountLimitsWithContext(ctx aws.Context, input *DescribeAccountLimitsInput, opts ...request.Option) (*DescribeAccountLimitsOutput, error)

DescribeAccountLimitsWithContext is the same as DescribeAccountLimits with the addition of the ability to pass a context and additional request options.

See DescribeAccountLimits for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeAdjustmentTypes

func (c *AutoScaling) DescribeAdjustmentTypes(input *DescribeAdjustmentTypesInput) (*DescribeAdjustmentTypesOutput, error)

DescribeAdjustmentTypes API operation for Auto Scaling.

Describes the policy adjustment types for use with PutScalingPolicy.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribeAdjustmentTypes for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeAdjustmentTypes

Example (Shared00)

To describe the Auto Scaling adjustment types This example describes the available adjustment types.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribeAdjustmentTypesInput{}

result, err := svc.DescribeAdjustmentTypes(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribeAdjustmentTypesRequest

func (c *AutoScaling) DescribeAdjustmentTypesRequest(input *DescribeAdjustmentTypesInput) (req *request.Request, output *DescribeAdjustmentTypesOutput)

DescribeAdjustmentTypesRequest generates a "aws/request.Request" representing the client's request for the DescribeAdjustmentTypes operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeAdjustmentTypes for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeAdjustmentTypes method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeAdjustmentTypesRequest method.
req, resp := client.DescribeAdjustmentTypesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeAdjustmentTypes

func (*AutoScaling) DescribeAdjustmentTypesWithContext

func (c *AutoScaling) DescribeAdjustmentTypesWithContext(ctx aws.Context, input *DescribeAdjustmentTypesInput, opts ...request.Option) (*DescribeAdjustmentTypesOutput, error)

DescribeAdjustmentTypesWithContext is the same as DescribeAdjustmentTypes with the addition of the ability to pass a context and additional request options.

See DescribeAdjustmentTypes for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeAutoScalingGroups

func (c *AutoScaling) DescribeAutoScalingGroups(input *DescribeAutoScalingGroupsInput) (*DescribeAutoScalingGroupsOutput, error)

DescribeAutoScalingGroups API operation for Auto Scaling.

Describes one or more Auto Scaling groups.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribeAutoScalingGroups for usage and error information.

Returned Error Codes:

* ErrCodeInvalidNextToken "InvalidNextToken"
The NextToken value is not valid.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeAutoScalingGroups

Example (Shared00)

To describe an Auto Scaling group This example describes the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribeAutoScalingGroupsInput{
    AutoScalingGroupNames: []*string{
        aws.String("my-auto-scaling-group"),
    },
}

result, err := svc.DescribeAutoScalingGroups(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeInvalidNextToken:
            fmt.Println(autoscaling.ErrCodeInvalidNextToken, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribeAutoScalingGroupsPages

func (c *AutoScaling) DescribeAutoScalingGroupsPages(input *DescribeAutoScalingGroupsInput, fn func(*DescribeAutoScalingGroupsOutput, bool) bool) error

DescribeAutoScalingGroupsPages iterates over the pages of a DescribeAutoScalingGroups operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeAutoScalingGroups method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeAutoScalingGroups operation.
pageNum := 0
err := client.DescribeAutoScalingGroupsPages(params,
    func(page *DescribeAutoScalingGroupsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*AutoScaling) DescribeAutoScalingGroupsPagesWithContext

func (c *AutoScaling) DescribeAutoScalingGroupsPagesWithContext(ctx aws.Context, input *DescribeAutoScalingGroupsInput, fn func(*DescribeAutoScalingGroupsOutput, bool) bool, opts ...request.Option) error

DescribeAutoScalingGroupsPagesWithContext same as DescribeAutoScalingGroupsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeAutoScalingGroupsRequest

func (c *AutoScaling) DescribeAutoScalingGroupsRequest(input *DescribeAutoScalingGroupsInput) (req *request.Request, output *DescribeAutoScalingGroupsOutput)

DescribeAutoScalingGroupsRequest generates a "aws/request.Request" representing the client's request for the DescribeAutoScalingGroups operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeAutoScalingGroups for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeAutoScalingGroups method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeAutoScalingGroupsRequest method.
req, resp := client.DescribeAutoScalingGroupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeAutoScalingGroups

func (*AutoScaling) DescribeAutoScalingGroupsWithContext

func (c *AutoScaling) DescribeAutoScalingGroupsWithContext(ctx aws.Context, input *DescribeAutoScalingGroupsInput, opts ...request.Option) (*DescribeAutoScalingGroupsOutput, error)

DescribeAutoScalingGroupsWithContext is the same as DescribeAutoScalingGroups with the addition of the ability to pass a context and additional request options.

See DescribeAutoScalingGroups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeAutoScalingInstances

func (c *AutoScaling) DescribeAutoScalingInstances(input *DescribeAutoScalingInstancesInput) (*DescribeAutoScalingInstancesOutput, error)

DescribeAutoScalingInstances API operation for Auto Scaling.

Describes one or more Auto Scaling instances.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribeAutoScalingInstances for usage and error information.

Returned Error Codes:

* ErrCodeInvalidNextToken "InvalidNextToken"
The NextToken value is not valid.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeAutoScalingInstances

Example (Shared00)

To describe one or more Auto Scaling instances This example describes the specified Auto Scaling instance.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribeAutoScalingInstancesInput{
    InstanceIds: []*string{
        aws.String("i-4ba0837f"),
    },
}

result, err := svc.DescribeAutoScalingInstances(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeInvalidNextToken:
            fmt.Println(autoscaling.ErrCodeInvalidNextToken, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribeAutoScalingInstancesPages

func (c *AutoScaling) DescribeAutoScalingInstancesPages(input *DescribeAutoScalingInstancesInput, fn func(*DescribeAutoScalingInstancesOutput, bool) bool) error

DescribeAutoScalingInstancesPages iterates over the pages of a DescribeAutoScalingInstances operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeAutoScalingInstances method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeAutoScalingInstances operation.
pageNum := 0
err := client.DescribeAutoScalingInstancesPages(params,
    func(page *DescribeAutoScalingInstancesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*AutoScaling) DescribeAutoScalingInstancesPagesWithContext

func (c *AutoScaling) DescribeAutoScalingInstancesPagesWithContext(ctx aws.Context, input *DescribeAutoScalingInstancesInput, fn func(*DescribeAutoScalingInstancesOutput, bool) bool, opts ...request.Option) error

DescribeAutoScalingInstancesPagesWithContext same as DescribeAutoScalingInstancesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeAutoScalingInstancesRequest

func (c *AutoScaling) DescribeAutoScalingInstancesRequest(input *DescribeAutoScalingInstancesInput) (req *request.Request, output *DescribeAutoScalingInstancesOutput)

DescribeAutoScalingInstancesRequest generates a "aws/request.Request" representing the client's request for the DescribeAutoScalingInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeAutoScalingInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeAutoScalingInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeAutoScalingInstancesRequest method.
req, resp := client.DescribeAutoScalingInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeAutoScalingInstances

func (*AutoScaling) DescribeAutoScalingInstancesWithContext

func (c *AutoScaling) DescribeAutoScalingInstancesWithContext(ctx aws.Context, input *DescribeAutoScalingInstancesInput, opts ...request.Option) (*DescribeAutoScalingInstancesOutput, error)

DescribeAutoScalingInstancesWithContext is the same as DescribeAutoScalingInstances with the addition of the ability to pass a context and additional request options.

See DescribeAutoScalingInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeAutoScalingNotificationTypes

func (c *AutoScaling) DescribeAutoScalingNotificationTypes(input *DescribeAutoScalingNotificationTypesInput) (*DescribeAutoScalingNotificationTypesOutput, error)

DescribeAutoScalingNotificationTypes API operation for Auto Scaling.

Describes the notification types that are supported by Auto Scaling.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribeAutoScalingNotificationTypes for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeAutoScalingNotificationTypes

Example (Shared00)

To describe the Auto Scaling notification types This example describes the available notification types.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribeAutoScalingNotificationTypesInput{}

result, err := svc.DescribeAutoScalingNotificationTypes(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribeAutoScalingNotificationTypesRequest

func (c *AutoScaling) DescribeAutoScalingNotificationTypesRequest(input *DescribeAutoScalingNotificationTypesInput) (req *request.Request, output *DescribeAutoScalingNotificationTypesOutput)

DescribeAutoScalingNotificationTypesRequest generates a "aws/request.Request" representing the client's request for the DescribeAutoScalingNotificationTypes operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeAutoScalingNotificationTypes for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeAutoScalingNotificationTypes method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeAutoScalingNotificationTypesRequest method.
req, resp := client.DescribeAutoScalingNotificationTypesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeAutoScalingNotificationTypes

func (*AutoScaling) DescribeAutoScalingNotificationTypesWithContext

func (c *AutoScaling) DescribeAutoScalingNotificationTypesWithContext(ctx aws.Context, input *DescribeAutoScalingNotificationTypesInput, opts ...request.Option) (*DescribeAutoScalingNotificationTypesOutput, error)

DescribeAutoScalingNotificationTypesWithContext is the same as DescribeAutoScalingNotificationTypes with the addition of the ability to pass a context and additional request options.

See DescribeAutoScalingNotificationTypes for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeLaunchConfigurations

func (c *AutoScaling) DescribeLaunchConfigurations(input *DescribeLaunchConfigurationsInput) (*DescribeLaunchConfigurationsOutput, error)

DescribeLaunchConfigurations API operation for Auto Scaling.

Describes one or more launch configurations.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribeLaunchConfigurations for usage and error information.

Returned Error Codes:

* ErrCodeInvalidNextToken "InvalidNextToken"
The NextToken value is not valid.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLaunchConfigurations

Example (Shared00)

To describe Auto Scaling launch configurations This example describes the specified launch configuration.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribeLaunchConfigurationsInput{
    LaunchConfigurationNames: []*string{
        aws.String("my-launch-config"),
    },
}

result, err := svc.DescribeLaunchConfigurations(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeInvalidNextToken:
            fmt.Println(autoscaling.ErrCodeInvalidNextToken, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribeLaunchConfigurationsPages

func (c *AutoScaling) DescribeLaunchConfigurationsPages(input *DescribeLaunchConfigurationsInput, fn func(*DescribeLaunchConfigurationsOutput, bool) bool) error

DescribeLaunchConfigurationsPages iterates over the pages of a DescribeLaunchConfigurations operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeLaunchConfigurations method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeLaunchConfigurations operation.
pageNum := 0
err := client.DescribeLaunchConfigurationsPages(params,
    func(page *DescribeLaunchConfigurationsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*AutoScaling) DescribeLaunchConfigurationsPagesWithContext

func (c *AutoScaling) DescribeLaunchConfigurationsPagesWithContext(ctx aws.Context, input *DescribeLaunchConfigurationsInput, fn func(*DescribeLaunchConfigurationsOutput, bool) bool, opts ...request.Option) error

DescribeLaunchConfigurationsPagesWithContext same as DescribeLaunchConfigurationsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeLaunchConfigurationsRequest

func (c *AutoScaling) DescribeLaunchConfigurationsRequest(input *DescribeLaunchConfigurationsInput) (req *request.Request, output *DescribeLaunchConfigurationsOutput)

DescribeLaunchConfigurationsRequest generates a "aws/request.Request" representing the client's request for the DescribeLaunchConfigurations operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeLaunchConfigurations for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeLaunchConfigurations method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeLaunchConfigurationsRequest method.
req, resp := client.DescribeLaunchConfigurationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLaunchConfigurations

func (*AutoScaling) DescribeLaunchConfigurationsWithContext

func (c *AutoScaling) DescribeLaunchConfigurationsWithContext(ctx aws.Context, input *DescribeLaunchConfigurationsInput, opts ...request.Option) (*DescribeLaunchConfigurationsOutput, error)

DescribeLaunchConfigurationsWithContext is the same as DescribeLaunchConfigurations with the addition of the ability to pass a context and additional request options.

See DescribeLaunchConfigurations for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeLifecycleHookTypes

func (c *AutoScaling) DescribeLifecycleHookTypes(input *DescribeLifecycleHookTypesInput) (*DescribeLifecycleHookTypesOutput, error)

DescribeLifecycleHookTypes API operation for Auto Scaling.

Describes the available types of lifecycle hooks.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribeLifecycleHookTypes for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLifecycleHookTypes

Example (Shared00)

To describe the available types of lifecycle hooks This example describes the available lifecycle hook types.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribeLifecycleHookTypesInput{}

result, err := svc.DescribeLifecycleHookTypes(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribeLifecycleHookTypesRequest

func (c *AutoScaling) DescribeLifecycleHookTypesRequest(input *DescribeLifecycleHookTypesInput) (req *request.Request, output *DescribeLifecycleHookTypesOutput)

DescribeLifecycleHookTypesRequest generates a "aws/request.Request" representing the client's request for the DescribeLifecycleHookTypes operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeLifecycleHookTypes for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeLifecycleHookTypes method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeLifecycleHookTypesRequest method.
req, resp := client.DescribeLifecycleHookTypesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLifecycleHookTypes

func (*AutoScaling) DescribeLifecycleHookTypesWithContext

func (c *AutoScaling) DescribeLifecycleHookTypesWithContext(ctx aws.Context, input *DescribeLifecycleHookTypesInput, opts ...request.Option) (*DescribeLifecycleHookTypesOutput, error)

DescribeLifecycleHookTypesWithContext is the same as DescribeLifecycleHookTypes with the addition of the ability to pass a context and additional request options.

See DescribeLifecycleHookTypes for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeLifecycleHooks

func (c *AutoScaling) DescribeLifecycleHooks(input *DescribeLifecycleHooksInput) (*DescribeLifecycleHooksOutput, error)

DescribeLifecycleHooks API operation for Auto Scaling.

Describes the lifecycle hooks for the specified Auto Scaling group.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribeLifecycleHooks for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLifecycleHooks

Example (Shared00)

To describe your lifecycle hooks This example describes the lifecycle hooks for the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribeLifecycleHooksInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
}

result, err := svc.DescribeLifecycleHooks(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribeLifecycleHooksRequest

func (c *AutoScaling) DescribeLifecycleHooksRequest(input *DescribeLifecycleHooksInput) (req *request.Request, output *DescribeLifecycleHooksOutput)

DescribeLifecycleHooksRequest generates a "aws/request.Request" representing the client's request for the DescribeLifecycleHooks operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeLifecycleHooks for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeLifecycleHooks method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeLifecycleHooksRequest method.
req, resp := client.DescribeLifecycleHooksRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLifecycleHooks

func (*AutoScaling) DescribeLifecycleHooksWithContext

func (c *AutoScaling) DescribeLifecycleHooksWithContext(ctx aws.Context, input *DescribeLifecycleHooksInput, opts ...request.Option) (*DescribeLifecycleHooksOutput, error)

DescribeLifecycleHooksWithContext is the same as DescribeLifecycleHooks with the addition of the ability to pass a context and additional request options.

See DescribeLifecycleHooks for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeLoadBalancerTargetGroups

func (c *AutoScaling) DescribeLoadBalancerTargetGroups(input *DescribeLoadBalancerTargetGroupsInput) (*DescribeLoadBalancerTargetGroupsOutput, error)

DescribeLoadBalancerTargetGroups API operation for Auto Scaling.

Describes the target groups for the specified Auto Scaling group.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribeLoadBalancerTargetGroups for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLoadBalancerTargetGroups

Example (Shared00)

To describe the target groups for an Auto Scaling group This example describes the target groups attached to the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribeLoadBalancerTargetGroupsInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
}

result, err := svc.DescribeLoadBalancerTargetGroups(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribeLoadBalancerTargetGroupsRequest

func (c *AutoScaling) DescribeLoadBalancerTargetGroupsRequest(input *DescribeLoadBalancerTargetGroupsInput) (req *request.Request, output *DescribeLoadBalancerTargetGroupsOutput)

DescribeLoadBalancerTargetGroupsRequest generates a "aws/request.Request" representing the client's request for the DescribeLoadBalancerTargetGroups operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeLoadBalancerTargetGroups for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeLoadBalancerTargetGroups method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeLoadBalancerTargetGroupsRequest method.
req, resp := client.DescribeLoadBalancerTargetGroupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLoadBalancerTargetGroups

func (*AutoScaling) DescribeLoadBalancerTargetGroupsWithContext

func (c *AutoScaling) DescribeLoadBalancerTargetGroupsWithContext(ctx aws.Context, input *DescribeLoadBalancerTargetGroupsInput, opts ...request.Option) (*DescribeLoadBalancerTargetGroupsOutput, error)

DescribeLoadBalancerTargetGroupsWithContext is the same as DescribeLoadBalancerTargetGroups with the addition of the ability to pass a context and additional request options.

See DescribeLoadBalancerTargetGroups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeLoadBalancers

func (c *AutoScaling) DescribeLoadBalancers(input *DescribeLoadBalancersInput) (*DescribeLoadBalancersOutput, error)

DescribeLoadBalancers API operation for Auto Scaling.

Describes the load balancers for the specified Auto Scaling group.

Note that this operation describes only Classic Load Balancers. If you have Application Load Balancers, use DescribeLoadBalancerTargetGroups instead.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribeLoadBalancers for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLoadBalancers

Example (Shared00)

To describe the load balancers for an Auto Scaling group This example describes the load balancers attached to the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribeLoadBalancersInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
}

result, err := svc.DescribeLoadBalancers(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribeLoadBalancersRequest

func (c *AutoScaling) DescribeLoadBalancersRequest(input *DescribeLoadBalancersInput) (req *request.Request, output *DescribeLoadBalancersOutput)

DescribeLoadBalancersRequest generates a "aws/request.Request" representing the client's request for the DescribeLoadBalancers operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeLoadBalancers for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeLoadBalancers method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeLoadBalancersRequest method.
req, resp := client.DescribeLoadBalancersRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLoadBalancers

func (*AutoScaling) DescribeLoadBalancersWithContext

func (c *AutoScaling) DescribeLoadBalancersWithContext(ctx aws.Context, input *DescribeLoadBalancersInput, opts ...request.Option) (*DescribeLoadBalancersOutput, error)

DescribeLoadBalancersWithContext is the same as DescribeLoadBalancers with the addition of the ability to pass a context and additional request options.

See DescribeLoadBalancers for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeMetricCollectionTypes

func (c *AutoScaling) DescribeMetricCollectionTypes(input *DescribeMetricCollectionTypesInput) (*DescribeMetricCollectionTypesOutput, error)

DescribeMetricCollectionTypes API operation for Auto Scaling.

Describes the available CloudWatch metrics for Auto Scaling.

Note that the GroupStandbyInstances metric is not returned by default. You must explicitly request this metric when calling EnableMetricsCollection.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribeMetricCollectionTypes for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeMetricCollectionTypes

Example (Shared00)

To describe the Auto Scaling metric collection types This example describes the available metric collection types.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribeMetricCollectionTypesInput{}

result, err := svc.DescribeMetricCollectionTypes(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribeMetricCollectionTypesRequest

func (c *AutoScaling) DescribeMetricCollectionTypesRequest(input *DescribeMetricCollectionTypesInput) (req *request.Request, output *DescribeMetricCollectionTypesOutput)

DescribeMetricCollectionTypesRequest generates a "aws/request.Request" representing the client's request for the DescribeMetricCollectionTypes operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeMetricCollectionTypes for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeMetricCollectionTypes method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeMetricCollectionTypesRequest method.
req, resp := client.DescribeMetricCollectionTypesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeMetricCollectionTypes

func (*AutoScaling) DescribeMetricCollectionTypesWithContext

func (c *AutoScaling) DescribeMetricCollectionTypesWithContext(ctx aws.Context, input *DescribeMetricCollectionTypesInput, opts ...request.Option) (*DescribeMetricCollectionTypesOutput, error)

DescribeMetricCollectionTypesWithContext is the same as DescribeMetricCollectionTypes with the addition of the ability to pass a context and additional request options.

See DescribeMetricCollectionTypes for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeNotificationConfigurations

func (c *AutoScaling) DescribeNotificationConfigurations(input *DescribeNotificationConfigurationsInput) (*DescribeNotificationConfigurationsOutput, error)

DescribeNotificationConfigurations API operation for Auto Scaling.

Describes the notification actions associated with the specified Auto Scaling group.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribeNotificationConfigurations for usage and error information.

Returned Error Codes:

* ErrCodeInvalidNextToken "InvalidNextToken"
The NextToken value is not valid.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeNotificationConfigurations

Example (Shared00)

To describe Auto Scaling notification configurations This example describes the notification configurations for the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribeNotificationConfigurationsInput{
    AutoScalingGroupNames: []*string{
        aws.String("my-auto-scaling-group"),
    },
}

result, err := svc.DescribeNotificationConfigurations(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeInvalidNextToken:
            fmt.Println(autoscaling.ErrCodeInvalidNextToken, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribeNotificationConfigurationsPages

func (c *AutoScaling) DescribeNotificationConfigurationsPages(input *DescribeNotificationConfigurationsInput, fn func(*DescribeNotificationConfigurationsOutput, bool) bool) error

DescribeNotificationConfigurationsPages iterates over the pages of a DescribeNotificationConfigurations operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeNotificationConfigurations method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeNotificationConfigurations operation.
pageNum := 0
err := client.DescribeNotificationConfigurationsPages(params,
    func(page *DescribeNotificationConfigurationsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*AutoScaling) DescribeNotificationConfigurationsPagesWithContext

func (c *AutoScaling) DescribeNotificationConfigurationsPagesWithContext(ctx aws.Context, input *DescribeNotificationConfigurationsInput, fn func(*DescribeNotificationConfigurationsOutput, bool) bool, opts ...request.Option) error

DescribeNotificationConfigurationsPagesWithContext same as DescribeNotificationConfigurationsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeNotificationConfigurationsRequest

func (c *AutoScaling) DescribeNotificationConfigurationsRequest(input *DescribeNotificationConfigurationsInput) (req *request.Request, output *DescribeNotificationConfigurationsOutput)

DescribeNotificationConfigurationsRequest generates a "aws/request.Request" representing the client's request for the DescribeNotificationConfigurations operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeNotificationConfigurations for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeNotificationConfigurations method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeNotificationConfigurationsRequest method.
req, resp := client.DescribeNotificationConfigurationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeNotificationConfigurations

func (*AutoScaling) DescribeNotificationConfigurationsWithContext

func (c *AutoScaling) DescribeNotificationConfigurationsWithContext(ctx aws.Context, input *DescribeNotificationConfigurationsInput, opts ...request.Option) (*DescribeNotificationConfigurationsOutput, error)

DescribeNotificationConfigurationsWithContext is the same as DescribeNotificationConfigurations with the addition of the ability to pass a context and additional request options.

See DescribeNotificationConfigurations for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribePolicies

func (c *AutoScaling) DescribePolicies(input *DescribePoliciesInput) (*DescribePoliciesOutput, error)

DescribePolicies API operation for Auto Scaling.

Describes the policies for the specified Auto Scaling group.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribePolicies for usage and error information.

Returned Error Codes:

* ErrCodeInvalidNextToken "InvalidNextToken"
The NextToken value is not valid.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribePolicies

Example (Shared00)

To describe Auto Scaling policies This example describes the policies for the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribePoliciesInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
}

result, err := svc.DescribePolicies(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeInvalidNextToken:
            fmt.Println(autoscaling.ErrCodeInvalidNextToken, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribePoliciesPages

func (c *AutoScaling) DescribePoliciesPages(input *DescribePoliciesInput, fn func(*DescribePoliciesOutput, bool) bool) error

DescribePoliciesPages iterates over the pages of a DescribePolicies operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribePolicies method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribePolicies operation.
pageNum := 0
err := client.DescribePoliciesPages(params,
    func(page *DescribePoliciesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*AutoScaling) DescribePoliciesPagesWithContext

func (c *AutoScaling) DescribePoliciesPagesWithContext(ctx aws.Context, input *DescribePoliciesInput, fn func(*DescribePoliciesOutput, bool) bool, opts ...request.Option) error

DescribePoliciesPagesWithContext same as DescribePoliciesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribePoliciesRequest

func (c *AutoScaling) DescribePoliciesRequest(input *DescribePoliciesInput) (req *request.Request, output *DescribePoliciesOutput)

DescribePoliciesRequest generates a "aws/request.Request" representing the client's request for the DescribePolicies operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribePolicies for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribePolicies method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribePoliciesRequest method.
req, resp := client.DescribePoliciesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribePolicies

func (*AutoScaling) DescribePoliciesWithContext

func (c *AutoScaling) DescribePoliciesWithContext(ctx aws.Context, input *DescribePoliciesInput, opts ...request.Option) (*DescribePoliciesOutput, error)

DescribePoliciesWithContext is the same as DescribePolicies with the addition of the ability to pass a context and additional request options.

See DescribePolicies for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeScalingActivities

func (c *AutoScaling) DescribeScalingActivities(input *DescribeScalingActivitiesInput) (*DescribeScalingActivitiesOutput, error)

DescribeScalingActivities API operation for Auto Scaling.

Describes one or more scaling activities for the specified Auto Scaling group.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribeScalingActivities for usage and error information.

Returned Error Codes:

* ErrCodeInvalidNextToken "InvalidNextToken"
The NextToken value is not valid.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeScalingActivities

Example (Shared00)

To describe the scaling activities for an Auto Scaling group This example describes the scaling activities for the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribeScalingActivitiesInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
}

result, err := svc.DescribeScalingActivities(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeInvalidNextToken:
            fmt.Println(autoscaling.ErrCodeInvalidNextToken, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribeScalingActivitiesPages

func (c *AutoScaling) DescribeScalingActivitiesPages(input *DescribeScalingActivitiesInput, fn func(*DescribeScalingActivitiesOutput, bool) bool) error

DescribeScalingActivitiesPages iterates over the pages of a DescribeScalingActivities operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeScalingActivities method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeScalingActivities operation.
pageNum := 0
err := client.DescribeScalingActivitiesPages(params,
    func(page *DescribeScalingActivitiesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*AutoScaling) DescribeScalingActivitiesPagesWithContext

func (c *AutoScaling) DescribeScalingActivitiesPagesWithContext(ctx aws.Context, input *DescribeScalingActivitiesInput, fn func(*DescribeScalingActivitiesOutput, bool) bool, opts ...request.Option) error

DescribeScalingActivitiesPagesWithContext same as DescribeScalingActivitiesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeScalingActivitiesRequest

func (c *AutoScaling) DescribeScalingActivitiesRequest(input *DescribeScalingActivitiesInput) (req *request.Request, output *DescribeScalingActivitiesOutput)

DescribeScalingActivitiesRequest generates a "aws/request.Request" representing the client's request for the DescribeScalingActivities operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeScalingActivities for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeScalingActivities method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeScalingActivitiesRequest method.
req, resp := client.DescribeScalingActivitiesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeScalingActivities

func (*AutoScaling) DescribeScalingActivitiesWithContext

func (c *AutoScaling) DescribeScalingActivitiesWithContext(ctx aws.Context, input *DescribeScalingActivitiesInput, opts ...request.Option) (*DescribeScalingActivitiesOutput, error)

DescribeScalingActivitiesWithContext is the same as DescribeScalingActivities with the addition of the ability to pass a context and additional request options.

See DescribeScalingActivities for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeScalingProcessTypes

func (c *AutoScaling) DescribeScalingProcessTypes(input *DescribeScalingProcessTypesInput) (*DescribeScalingProcessTypesOutput, error)

DescribeScalingProcessTypes API operation for Auto Scaling.

Describes the scaling process types for use with ResumeProcesses and SuspendProcesses.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribeScalingProcessTypes for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeScalingProcessTypes

Example (Shared00)

To describe the Auto Scaling process types This example describes the Auto Scaling process types.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribeScalingProcessTypesInput{}

result, err := svc.DescribeScalingProcessTypes(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribeScalingProcessTypesRequest

func (c *AutoScaling) DescribeScalingProcessTypesRequest(input *DescribeScalingProcessTypesInput) (req *request.Request, output *DescribeScalingProcessTypesOutput)

DescribeScalingProcessTypesRequest generates a "aws/request.Request" representing the client's request for the DescribeScalingProcessTypes operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeScalingProcessTypes for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeScalingProcessTypes method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeScalingProcessTypesRequest method.
req, resp := client.DescribeScalingProcessTypesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeScalingProcessTypes

func (*AutoScaling) DescribeScalingProcessTypesWithContext

func (c *AutoScaling) DescribeScalingProcessTypesWithContext(ctx aws.Context, input *DescribeScalingProcessTypesInput, opts ...request.Option) (*DescribeScalingProcessTypesOutput, error)

DescribeScalingProcessTypesWithContext is the same as DescribeScalingProcessTypes with the addition of the ability to pass a context and additional request options.

See DescribeScalingProcessTypes for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeScheduledActions

func (c *AutoScaling) DescribeScheduledActions(input *DescribeScheduledActionsInput) (*DescribeScheduledActionsOutput, error)

DescribeScheduledActions API operation for Auto Scaling.

Describes the actions scheduled for your Auto Scaling group that haven't run. To describe the actions that have already run, use DescribeScalingActivities.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribeScheduledActions for usage and error information.

Returned Error Codes:

* ErrCodeInvalidNextToken "InvalidNextToken"
The NextToken value is not valid.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeScheduledActions

Example (Shared00)

To describe scheduled actions This example describes the scheduled actions for the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribeScheduledActionsInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
}

result, err := svc.DescribeScheduledActions(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeInvalidNextToken:
            fmt.Println(autoscaling.ErrCodeInvalidNextToken, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribeScheduledActionsPages

func (c *AutoScaling) DescribeScheduledActionsPages(input *DescribeScheduledActionsInput, fn func(*DescribeScheduledActionsOutput, bool) bool) error

DescribeScheduledActionsPages iterates over the pages of a DescribeScheduledActions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeScheduledActions method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeScheduledActions operation.
pageNum := 0
err := client.DescribeScheduledActionsPages(params,
    func(page *DescribeScheduledActionsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*AutoScaling) DescribeScheduledActionsPagesWithContext

func (c *AutoScaling) DescribeScheduledActionsPagesWithContext(ctx aws.Context, input *DescribeScheduledActionsInput, fn func(*DescribeScheduledActionsOutput, bool) bool, opts ...request.Option) error

DescribeScheduledActionsPagesWithContext same as DescribeScheduledActionsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeScheduledActionsRequest

func (c *AutoScaling) DescribeScheduledActionsRequest(input *DescribeScheduledActionsInput) (req *request.Request, output *DescribeScheduledActionsOutput)

DescribeScheduledActionsRequest generates a "aws/request.Request" representing the client's request for the DescribeScheduledActions operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeScheduledActions for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeScheduledActions method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeScheduledActionsRequest method.
req, resp := client.DescribeScheduledActionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeScheduledActions

func (*AutoScaling) DescribeScheduledActionsWithContext

func (c *AutoScaling) DescribeScheduledActionsWithContext(ctx aws.Context, input *DescribeScheduledActionsInput, opts ...request.Option) (*DescribeScheduledActionsOutput, error)

DescribeScheduledActionsWithContext is the same as DescribeScheduledActions with the addition of the ability to pass a context and additional request options.

See DescribeScheduledActions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeTags

func (c *AutoScaling) DescribeTags(input *DescribeTagsInput) (*DescribeTagsOutput, error)

DescribeTags API operation for Auto Scaling.

Describes the specified tags.

You can use filters to limit the results. For example, you can query for the tags for a specific Auto Scaling group. You can specify multiple values for a filter. A tag must match at least one of the specified values for it to be included in the results.

You can also specify multiple filters. The result includes information for a particular tag only if it matches all the filters. If there's no match, no special message is returned.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribeTags for usage and error information.

Returned Error Codes:

* ErrCodeInvalidNextToken "InvalidNextToken"
The NextToken value is not valid.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeTags

Example (Shared00)

To describe tags This example describes the tags for the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribeTagsInput{
    Filters: []*autoscaling.Filter{
        {
            Name: aws.String("auto-scaling-group"),
            Values: []*string{
                aws.String("my-auto-scaling-group"),
            },
        },
    },
}

result, err := svc.DescribeTags(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeInvalidNextToken:
            fmt.Println(autoscaling.ErrCodeInvalidNextToken, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribeTagsPages

func (c *AutoScaling) DescribeTagsPages(input *DescribeTagsInput, fn func(*DescribeTagsOutput, bool) bool) error

DescribeTagsPages iterates over the pages of a DescribeTags operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeTags method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeTags operation.
pageNum := 0
err := client.DescribeTagsPages(params,
    func(page *DescribeTagsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*AutoScaling) DescribeTagsPagesWithContext

func (c *AutoScaling) DescribeTagsPagesWithContext(ctx aws.Context, input *DescribeTagsInput, fn func(*DescribeTagsOutput, bool) bool, opts ...request.Option) error

DescribeTagsPagesWithContext same as DescribeTagsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeTagsRequest

func (c *AutoScaling) DescribeTagsRequest(input *DescribeTagsInput) (req *request.Request, output *DescribeTagsOutput)

DescribeTagsRequest generates a "aws/request.Request" representing the client's request for the DescribeTags operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeTags for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeTags method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeTagsRequest method.
req, resp := client.DescribeTagsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeTags

func (*AutoScaling) DescribeTagsWithContext

func (c *AutoScaling) DescribeTagsWithContext(ctx aws.Context, input *DescribeTagsInput, opts ...request.Option) (*DescribeTagsOutput, error)

DescribeTagsWithContext is the same as DescribeTags with the addition of the ability to pass a context and additional request options.

See DescribeTags for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DescribeTerminationPolicyTypes

func (c *AutoScaling) DescribeTerminationPolicyTypes(input *DescribeTerminationPolicyTypesInput) (*DescribeTerminationPolicyTypesOutput, error)

DescribeTerminationPolicyTypes API operation for Auto Scaling.

Describes the termination policies supported by Auto Scaling.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DescribeTerminationPolicyTypes for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeTerminationPolicyTypes

Example (Shared00)

To describe termination policy types This example describes the available termination policy types.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DescribeTerminationPolicyTypesInput{}

result, err := svc.DescribeTerminationPolicyTypes(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DescribeTerminationPolicyTypesRequest

func (c *AutoScaling) DescribeTerminationPolicyTypesRequest(input *DescribeTerminationPolicyTypesInput) (req *request.Request, output *DescribeTerminationPolicyTypesOutput)

DescribeTerminationPolicyTypesRequest generates a "aws/request.Request" representing the client's request for the DescribeTerminationPolicyTypes operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeTerminationPolicyTypes for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeTerminationPolicyTypes method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeTerminationPolicyTypesRequest method.
req, resp := client.DescribeTerminationPolicyTypesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeTerminationPolicyTypes

func (*AutoScaling) DescribeTerminationPolicyTypesWithContext

func (c *AutoScaling) DescribeTerminationPolicyTypesWithContext(ctx aws.Context, input *DescribeTerminationPolicyTypesInput, opts ...request.Option) (*DescribeTerminationPolicyTypesOutput, error)

DescribeTerminationPolicyTypesWithContext is the same as DescribeTerminationPolicyTypes with the addition of the ability to pass a context and additional request options.

See DescribeTerminationPolicyTypes for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DetachInstances

func (c *AutoScaling) DetachInstances(input *DetachInstancesInput) (*DetachInstancesOutput, error)

DetachInstances API operation for Auto Scaling.

Removes one or more instances from the specified Auto Scaling group.

After the instances are detached, you can manage them independent of the Auto Scaling group.

If you do not specify the option to decrement the desired capacity, Auto Scaling launches instances to replace the ones that are detached.

If there is a Classic Load Balancer attached to the Auto Scaling group, the instances are deregistered from the load balancer. If there are target groups attached to the Auto Scaling group, the instances are deregistered from the target groups.

For more information, see Detach EC2 Instances from Your Auto Scaling Group (http://docs.aws.amazon.com/autoscaling/latest/userguide/detach-instance-asg.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DetachInstances for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DetachInstances

Example (Shared00)

To detach an instance from an Auto Scaling group This example detaches the specified instance from the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DetachInstancesInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    InstanceIds: []*string{
        aws.String("i-93633f9b"),
    },
    ShouldDecrementDesiredCapacity: aws.Bool(true),
}

result, err := svc.DetachInstances(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DetachInstancesRequest

func (c *AutoScaling) DetachInstancesRequest(input *DetachInstancesInput) (req *request.Request, output *DetachInstancesOutput)

DetachInstancesRequest generates a "aws/request.Request" representing the client's request for the DetachInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DetachInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DetachInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DetachInstancesRequest method.
req, resp := client.DetachInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DetachInstances

func (*AutoScaling) DetachInstancesWithContext

func (c *AutoScaling) DetachInstancesWithContext(ctx aws.Context, input *DetachInstancesInput, opts ...request.Option) (*DetachInstancesOutput, error)

DetachInstancesWithContext is the same as DetachInstances with the addition of the ability to pass a context and additional request options.

See DetachInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DetachLoadBalancerTargetGroups

func (c *AutoScaling) DetachLoadBalancerTargetGroups(input *DetachLoadBalancerTargetGroupsInput) (*DetachLoadBalancerTargetGroupsOutput, error)

DetachLoadBalancerTargetGroups API operation for Auto Scaling.

Detaches one or more target groups from the specified Auto Scaling group.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DetachLoadBalancerTargetGroups for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DetachLoadBalancerTargetGroups

Example (Shared00)

To detach a target group from an Auto Scaling group This example detaches the specified target group from the specified Auto Scaling group

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DetachLoadBalancerTargetGroupsInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    TargetGroupARNs: []*string{
        aws.String("arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067"),
    },
}

result, err := svc.DetachLoadBalancerTargetGroups(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DetachLoadBalancerTargetGroupsRequest

func (c *AutoScaling) DetachLoadBalancerTargetGroupsRequest(input *DetachLoadBalancerTargetGroupsInput) (req *request.Request, output *DetachLoadBalancerTargetGroupsOutput)

DetachLoadBalancerTargetGroupsRequest generates a "aws/request.Request" representing the client's request for the DetachLoadBalancerTargetGroups operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DetachLoadBalancerTargetGroups for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DetachLoadBalancerTargetGroups method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DetachLoadBalancerTargetGroupsRequest method.
req, resp := client.DetachLoadBalancerTargetGroupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DetachLoadBalancerTargetGroups

func (*AutoScaling) DetachLoadBalancerTargetGroupsWithContext

func (c *AutoScaling) DetachLoadBalancerTargetGroupsWithContext(ctx aws.Context, input *DetachLoadBalancerTargetGroupsInput, opts ...request.Option) (*DetachLoadBalancerTargetGroupsOutput, error)

DetachLoadBalancerTargetGroupsWithContext is the same as DetachLoadBalancerTargetGroups with the addition of the ability to pass a context and additional request options.

See DetachLoadBalancerTargetGroups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DetachLoadBalancers

func (c *AutoScaling) DetachLoadBalancers(input *DetachLoadBalancersInput) (*DetachLoadBalancersOutput, error)

DetachLoadBalancers API operation for Auto Scaling.

Detaches one or more Classic Load Balancers from the specified Auto Scaling group.

Note that this operation detaches only Classic Load Balancers. If you have Application Load Balancers, use DetachLoadBalancerTargetGroups instead.

When you detach a load balancer, it enters the Removing state while deregistering the instances in the group. When all instances are deregistered, then you can no longer describe the load balancer using DescribeLoadBalancers. Note that the instances remain running.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DetachLoadBalancers for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DetachLoadBalancers

Example (Shared00)

To detach a load balancer from an Auto Scaling group This example detaches the specified load balancer from the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DetachLoadBalancersInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    LoadBalancerNames: []*string{
        aws.String("my-load-balancer"),
    },
}

result, err := svc.DetachLoadBalancers(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DetachLoadBalancersRequest

func (c *AutoScaling) DetachLoadBalancersRequest(input *DetachLoadBalancersInput) (req *request.Request, output *DetachLoadBalancersOutput)

DetachLoadBalancersRequest generates a "aws/request.Request" representing the client's request for the DetachLoadBalancers operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DetachLoadBalancers for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DetachLoadBalancers method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DetachLoadBalancersRequest method.
req, resp := client.DetachLoadBalancersRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DetachLoadBalancers

func (*AutoScaling) DetachLoadBalancersWithContext

func (c *AutoScaling) DetachLoadBalancersWithContext(ctx aws.Context, input *DetachLoadBalancersInput, opts ...request.Option) (*DetachLoadBalancersOutput, error)

DetachLoadBalancersWithContext is the same as DetachLoadBalancers with the addition of the ability to pass a context and additional request options.

See DetachLoadBalancers for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) DisableMetricsCollection

func (c *AutoScaling) DisableMetricsCollection(input *DisableMetricsCollectionInput) (*DisableMetricsCollectionOutput, error)

DisableMetricsCollection API operation for Auto Scaling.

Disables group metrics for the specified Auto Scaling group.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation DisableMetricsCollection for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DisableMetricsCollection

Example (Shared00)

To disable metrics collection for an Auto Scaling group This example disables collecting data for the GroupDesiredCapacity metric for the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.DisableMetricsCollectionInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    Metrics: []*string{
        aws.String("GroupDesiredCapacity"),
    },
}

result, err := svc.DisableMetricsCollection(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) DisableMetricsCollectionRequest

func (c *AutoScaling) DisableMetricsCollectionRequest(input *DisableMetricsCollectionInput) (req *request.Request, output *DisableMetricsCollectionOutput)

DisableMetricsCollectionRequest generates a "aws/request.Request" representing the client's request for the DisableMetricsCollection operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DisableMetricsCollection for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DisableMetricsCollection method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DisableMetricsCollectionRequest method.
req, resp := client.DisableMetricsCollectionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DisableMetricsCollection

func (*AutoScaling) DisableMetricsCollectionWithContext

func (c *AutoScaling) DisableMetricsCollectionWithContext(ctx aws.Context, input *DisableMetricsCollectionInput, opts ...request.Option) (*DisableMetricsCollectionOutput, error)

DisableMetricsCollectionWithContext is the same as DisableMetricsCollection with the addition of the ability to pass a context and additional request options.

See DisableMetricsCollection for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) EnableMetricsCollection

func (c *AutoScaling) EnableMetricsCollection(input *EnableMetricsCollectionInput) (*EnableMetricsCollectionOutput, error)

EnableMetricsCollection API operation for Auto Scaling.

Enables group metrics for the specified Auto Scaling group. For more information, see Monitoring Your Auto Scaling Groups and Instances (http://docs.aws.amazon.com/autoscaling/latest/userguide/as-instance-monitoring.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation EnableMetricsCollection for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/EnableMetricsCollection

Example (Shared00)

To enable metrics collection for an Auto Scaling group This example enables data collection for the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.EnableMetricsCollectionInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    Granularity:          aws.String("1Minute"),
}

result, err := svc.EnableMetricsCollection(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) EnableMetricsCollectionRequest

func (c *AutoScaling) EnableMetricsCollectionRequest(input *EnableMetricsCollectionInput) (req *request.Request, output *EnableMetricsCollectionOutput)

EnableMetricsCollectionRequest generates a "aws/request.Request" representing the client's request for the EnableMetricsCollection operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See EnableMetricsCollection for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the EnableMetricsCollection method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the EnableMetricsCollectionRequest method.
req, resp := client.EnableMetricsCollectionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/EnableMetricsCollection

func (*AutoScaling) EnableMetricsCollectionWithContext

func (c *AutoScaling) EnableMetricsCollectionWithContext(ctx aws.Context, input *EnableMetricsCollectionInput, opts ...request.Option) (*EnableMetricsCollectionOutput, error)

EnableMetricsCollectionWithContext is the same as EnableMetricsCollection with the addition of the ability to pass a context and additional request options.

See EnableMetricsCollection for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) EnterStandby

func (c *AutoScaling) EnterStandby(input *EnterStandbyInput) (*EnterStandbyOutput, error)

EnterStandby API operation for Auto Scaling.

Moves the specified instances into the standby state.

For more information, see Temporarily Removing Instances from Your Auto Scaling Group (http://docs.aws.amazon.com/autoscaling/latest/userguide/as-enter-exit-standby.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation EnterStandby for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/EnterStandby

Example (Shared00)

To move instances into standby mode This example puts the specified instance into standby mode.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.EnterStandbyInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    InstanceIds: []*string{
        aws.String("i-93633f9b"),
    },
    ShouldDecrementDesiredCapacity: aws.Bool(true),
}

result, err := svc.EnterStandby(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) EnterStandbyRequest

func (c *AutoScaling) EnterStandbyRequest(input *EnterStandbyInput) (req *request.Request, output *EnterStandbyOutput)

EnterStandbyRequest generates a "aws/request.Request" representing the client's request for the EnterStandby operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See EnterStandby for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the EnterStandby method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the EnterStandbyRequest method.
req, resp := client.EnterStandbyRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/EnterStandby

func (*AutoScaling) EnterStandbyWithContext

func (c *AutoScaling) EnterStandbyWithContext(ctx aws.Context, input *EnterStandbyInput, opts ...request.Option) (*EnterStandbyOutput, error)

EnterStandbyWithContext is the same as EnterStandby with the addition of the ability to pass a context and additional request options.

See EnterStandby for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) ExecutePolicy

func (c *AutoScaling) ExecutePolicy(input *ExecutePolicyInput) (*ExecutePolicyOutput, error)

ExecutePolicy API operation for Auto Scaling.

Executes the specified policy.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation ExecutePolicy for usage and error information.

Returned Error Codes:

* ErrCodeScalingActivityInProgressFault "ScalingActivityInProgress"
The operation can't be performed because there are scaling activities in
progress.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ExecutePolicy

Example (Shared00)

To execute an Auto Scaling policy This example executes the specified Auto Scaling policy for the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.ExecutePolicyInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    HonorCooldown:        aws.Bool(true),
    PolicyName:           aws.String("ScaleIn"),
}

result, err := svc.ExecutePolicy(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeScalingActivityInProgressFault:
            fmt.Println(autoscaling.ErrCodeScalingActivityInProgressFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) ExecutePolicyRequest

func (c *AutoScaling) ExecutePolicyRequest(input *ExecutePolicyInput) (req *request.Request, output *ExecutePolicyOutput)

ExecutePolicyRequest generates a "aws/request.Request" representing the client's request for the ExecutePolicy operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ExecutePolicy for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ExecutePolicy method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ExecutePolicyRequest method.
req, resp := client.ExecutePolicyRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ExecutePolicy

func (*AutoScaling) ExecutePolicyWithContext

func (c *AutoScaling) ExecutePolicyWithContext(ctx aws.Context, input *ExecutePolicyInput, opts ...request.Option) (*ExecutePolicyOutput, error)

ExecutePolicyWithContext is the same as ExecutePolicy with the addition of the ability to pass a context and additional request options.

See ExecutePolicy for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) ExitStandby

func (c *AutoScaling) ExitStandby(input *ExitStandbyInput) (*ExitStandbyOutput, error)

ExitStandby API operation for Auto Scaling.

Moves the specified instances out of the standby state.

For more information, see Temporarily Removing Instances from Your Auto Scaling Group (http://docs.aws.amazon.com/autoscaling/latest/userguide/as-enter-exit-standby.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation ExitStandby for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ExitStandby

Example (Shared00)

To move instances out of standby mode This example moves the specified instance out of standby mode.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.ExitStandbyInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    InstanceIds: []*string{
        aws.String("i-93633f9b"),
    },
}

result, err := svc.ExitStandby(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) ExitStandbyRequest

func (c *AutoScaling) ExitStandbyRequest(input *ExitStandbyInput) (req *request.Request, output *ExitStandbyOutput)

ExitStandbyRequest generates a "aws/request.Request" representing the client's request for the ExitStandby operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ExitStandby for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ExitStandby method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ExitStandbyRequest method.
req, resp := client.ExitStandbyRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ExitStandby

func (*AutoScaling) ExitStandbyWithContext

func (c *AutoScaling) ExitStandbyWithContext(ctx aws.Context, input *ExitStandbyInput, opts ...request.Option) (*ExitStandbyOutput, error)

ExitStandbyWithContext is the same as ExitStandby with the addition of the ability to pass a context and additional request options.

See ExitStandby for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) PutLifecycleHook

func (c *AutoScaling) PutLifecycleHook(input *PutLifecycleHookInput) (*PutLifecycleHookOutput, error)

PutLifecycleHook API operation for Auto Scaling.

Creates or updates a lifecycle hook for the specified Auto Scaling Group.

A lifecycle hook tells Auto Scaling that you want to perform an action on an instance that is not actively in service; for example, either when the instance launches or before the instance terminates.

This step is a part of the procedure for adding a lifecycle hook to an Auto Scaling group:

(Optional) Create a Lambda function and a rule that allows CloudWatch Events to invoke your Lambda function when Auto Scaling launches or terminates instances.

(Optional) Create a notification target and an IAM role. The target can be either an Amazon SQS queue or an Amazon SNS topic. The role allows Auto Scaling to publish lifecycle notifications to the target.

Create the lifecycle hook. Specify whether the hook is used when the instances launch or terminate.

If you need more time, record the lifecycle action heartbeat to keep the instance in a pending state.

If you finish before the timeout period ends, complete the lifecycle action.

For more information, see Auto Scaling Lifecycle Hooks (http://docs.aws.amazon.com/autoscaling/latest/userguide/lifecycle-hooks.html) in the Auto Scaling User Guide.

If you exceed your maximum limit of lifecycle hooks, which by default is 50 per Auto Scaling group, the call fails. For information about updating this limit, see AWS Service Limits (http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html) in the Amazon Web Services General Reference.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation PutLifecycleHook for usage and error information.

Returned Error Codes:

* ErrCodeLimitExceededFault "LimitExceeded"
You have already reached a limit for your Auto Scaling resources (for example,
groups, launch configurations, or lifecycle hooks). For more information,
see DescribeAccountLimits.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutLifecycleHook

Example (Shared00)

To create a lifecycle hook This example creates a lifecycle hook.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.PutLifecycleHookInput{
    AutoScalingGroupName:  aws.String("my-auto-scaling-group"),
    LifecycleHookName:     aws.String("my-lifecycle-hook"),
    LifecycleTransition:   aws.String("autoscaling:EC2_INSTANCE_LAUNCHING"),
    NotificationTargetARN: aws.String("arn:aws:sns:us-west-2:123456789012:my-sns-topic --role-arn"),
    RoleARN:               aws.String("arn:aws:iam::123456789012:role/my-auto-scaling-role"),
}

result, err := svc.PutLifecycleHook(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeLimitExceededFault:
            fmt.Println(autoscaling.ErrCodeLimitExceededFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) PutLifecycleHookRequest

func (c *AutoScaling) PutLifecycleHookRequest(input *PutLifecycleHookInput) (req *request.Request, output *PutLifecycleHookOutput)

PutLifecycleHookRequest generates a "aws/request.Request" representing the client's request for the PutLifecycleHook operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See PutLifecycleHook for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PutLifecycleHook method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the PutLifecycleHookRequest method.
req, resp := client.PutLifecycleHookRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutLifecycleHook

func (*AutoScaling) PutLifecycleHookWithContext

func (c *AutoScaling) PutLifecycleHookWithContext(ctx aws.Context, input *PutLifecycleHookInput, opts ...request.Option) (*PutLifecycleHookOutput, error)

PutLifecycleHookWithContext is the same as PutLifecycleHook with the addition of the ability to pass a context and additional request options.

See PutLifecycleHook for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) PutNotificationConfiguration

func (c *AutoScaling) PutNotificationConfiguration(input *PutNotificationConfigurationInput) (*PutNotificationConfigurationOutput, error)

PutNotificationConfiguration API operation for Auto Scaling.

Configures an Auto Scaling group to send notifications when specified events take place. Subscribers to the specified topic can have messages delivered to an endpoint such as a web server or an email address.

This configuration overwrites any existing configuration.

For more information see Getting SNS Notifications When Your Auto Scaling Group Scales (http://docs.aws.amazon.com/autoscaling/latest/userguide/ASGettingNotifications.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation PutNotificationConfiguration for usage and error information.

Returned Error Codes:

* ErrCodeLimitExceededFault "LimitExceeded"
You have already reached a limit for your Auto Scaling resources (for example,
groups, launch configurations, or lifecycle hooks). For more information,
see DescribeAccountLimits.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutNotificationConfiguration

Example (Shared00)

To add an Auto Scaling notification This example adds the specified notification to the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.PutNotificationConfigurationInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    NotificationTypes: []*string{
        aws.String("autoscaling:TEST_NOTIFICATION"),
    },
    TopicARN: aws.String("arn:aws:sns:us-west-2:123456789012:my-sns-topic"),
}

result, err := svc.PutNotificationConfiguration(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeLimitExceededFault:
            fmt.Println(autoscaling.ErrCodeLimitExceededFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) PutNotificationConfigurationRequest

func (c *AutoScaling) PutNotificationConfigurationRequest(input *PutNotificationConfigurationInput) (req *request.Request, output *PutNotificationConfigurationOutput)

PutNotificationConfigurationRequest generates a "aws/request.Request" representing the client's request for the PutNotificationConfiguration operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See PutNotificationConfiguration for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PutNotificationConfiguration method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the PutNotificationConfigurationRequest method.
req, resp := client.PutNotificationConfigurationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutNotificationConfiguration

func (*AutoScaling) PutNotificationConfigurationWithContext

func (c *AutoScaling) PutNotificationConfigurationWithContext(ctx aws.Context, input *PutNotificationConfigurationInput, opts ...request.Option) (*PutNotificationConfigurationOutput, error)

PutNotificationConfigurationWithContext is the same as PutNotificationConfiguration with the addition of the ability to pass a context and additional request options.

See PutNotificationConfiguration for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) PutScalingPolicy

func (c *AutoScaling) PutScalingPolicy(input *PutScalingPolicyInput) (*PutScalingPolicyOutput, error)

PutScalingPolicy API operation for Auto Scaling.

Creates or updates a policy for an Auto Scaling group. To update an existing policy, use the existing policy name and set the parameters you want to change. Any existing parameter not changed in an update to an existing policy is not changed in this update request.

If you exceed your maximum limit of step adjustments, which by default is 20 per region, the call fails. For information about updating this limit, see AWS Service Limits (http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html) in the Amazon Web Services General Reference.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation PutScalingPolicy for usage and error information.

Returned Error Codes:

* ErrCodeLimitExceededFault "LimitExceeded"
You have already reached a limit for your Auto Scaling resources (for example,
groups, launch configurations, or lifecycle hooks). For more information,
see DescribeAccountLimits.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutScalingPolicy

Example (Shared00)

To add a scaling policy to an Auto Scaling group This example adds the specified policy to the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.PutScalingPolicyInput{
    AdjustmentType:       aws.String("ChangeInCapacity"),
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    PolicyName:           aws.String("ScaleIn"),
    ScalingAdjustment:    aws.Int64(-1),
}

result, err := svc.PutScalingPolicy(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeLimitExceededFault:
            fmt.Println(autoscaling.ErrCodeLimitExceededFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) PutScalingPolicyRequest

func (c *AutoScaling) PutScalingPolicyRequest(input *PutScalingPolicyInput) (req *request.Request, output *PutScalingPolicyOutput)

PutScalingPolicyRequest generates a "aws/request.Request" representing the client's request for the PutScalingPolicy operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See PutScalingPolicy for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PutScalingPolicy method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the PutScalingPolicyRequest method.
req, resp := client.PutScalingPolicyRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutScalingPolicy

func (*AutoScaling) PutScalingPolicyWithContext

func (c *AutoScaling) PutScalingPolicyWithContext(ctx aws.Context, input *PutScalingPolicyInput, opts ...request.Option) (*PutScalingPolicyOutput, error)

PutScalingPolicyWithContext is the same as PutScalingPolicy with the addition of the ability to pass a context and additional request options.

See PutScalingPolicy for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) PutScheduledUpdateGroupAction

func (c *AutoScaling) PutScheduledUpdateGroupAction(input *PutScheduledUpdateGroupActionInput) (*PutScheduledUpdateGroupActionOutput, error)

PutScheduledUpdateGroupAction API operation for Auto Scaling.

Creates or updates a scheduled scaling action for an Auto Scaling group. When updating a scheduled scaling action, if you leave a parameter unspecified, the corresponding value remains unchanged.

For more information, see Scheduled Scaling (http://docs.aws.amazon.com/autoscaling/latest/userguide/schedule_time.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation PutScheduledUpdateGroupAction for usage and error information.

Returned Error Codes:

* ErrCodeAlreadyExistsFault "AlreadyExists"
You already have an Auto Scaling group or launch configuration with this
name.

* ErrCodeLimitExceededFault "LimitExceeded"
You have already reached a limit for your Auto Scaling resources (for example,
groups, launch configurations, or lifecycle hooks). For more information,
see DescribeAccountLimits.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutScheduledUpdateGroupAction

Example (Shared00)

To add a scheduled action to an Auto Scaling group This example adds the specified scheduled action to the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.PutScheduledUpdateGroupActionInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    DesiredCapacity:      aws.Int64(4),
    EndTime:              parseTime("2006-01-02T15:04:05Z", "2014-05-12T08:00:00Z"),
    MaxSize:              aws.Int64(6),
    MinSize:              aws.Int64(2),
    ScheduledActionName:  aws.String("my-scheduled-action"),
    StartTime:            parseTime("2006-01-02T15:04:05Z", "2014-05-12T08:00:00Z"),
}

result, err := svc.PutScheduledUpdateGroupAction(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeAlreadyExistsFault:
            fmt.Println(autoscaling.ErrCodeAlreadyExistsFault, aerr.Error())
        case autoscaling.ErrCodeLimitExceededFault:
            fmt.Println(autoscaling.ErrCodeLimitExceededFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) PutScheduledUpdateGroupActionRequest

func (c *AutoScaling) PutScheduledUpdateGroupActionRequest(input *PutScheduledUpdateGroupActionInput) (req *request.Request, output *PutScheduledUpdateGroupActionOutput)

PutScheduledUpdateGroupActionRequest generates a "aws/request.Request" representing the client's request for the PutScheduledUpdateGroupAction operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See PutScheduledUpdateGroupAction for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PutScheduledUpdateGroupAction method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the PutScheduledUpdateGroupActionRequest method.
req, resp := client.PutScheduledUpdateGroupActionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutScheduledUpdateGroupAction

func (*AutoScaling) PutScheduledUpdateGroupActionWithContext

func (c *AutoScaling) PutScheduledUpdateGroupActionWithContext(ctx aws.Context, input *PutScheduledUpdateGroupActionInput, opts ...request.Option) (*PutScheduledUpdateGroupActionOutput, error)

PutScheduledUpdateGroupActionWithContext is the same as PutScheduledUpdateGroupAction with the addition of the ability to pass a context and additional request options.

See PutScheduledUpdateGroupAction for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) RecordLifecycleActionHeartbeat

func (c *AutoScaling) RecordLifecycleActionHeartbeat(input *RecordLifecycleActionHeartbeatInput) (*RecordLifecycleActionHeartbeatOutput, error)

RecordLifecycleActionHeartbeat API operation for Auto Scaling.

Records a heartbeat for the lifecycle action associated with the specified token or instance. This extends the timeout by the length of time defined using PutLifecycleHook.

This step is a part of the procedure for adding a lifecycle hook to an Auto Scaling group:

(Optional) Create a Lambda function and a rule that allows CloudWatch Events to invoke your Lambda function when Auto Scaling launches or terminates instances.

(Optional) Create a notification target and an IAM role. The target can be either an Amazon SQS queue or an Amazon SNS topic. The role allows Auto Scaling to publish lifecycle notifications to the target.

Create the lifecycle hook. Specify whether the hook is used when the instances launch or terminate.

If you need more time, record the lifecycle action heartbeat to keep the instance in a pending state.

If you finish before the timeout period ends, complete the lifecycle action.

For more information, see Auto Scaling Lifecycle (http://docs.aws.amazon.com/autoscaling/latest/userguide/AutoScalingGroupLifecycle.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation RecordLifecycleActionHeartbeat for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/RecordLifecycleActionHeartbeat

Example (Shared00)

To record a lifecycle action heartbeat This example records a lifecycle action heartbeat to keep the instance in a pending state.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.RecordLifecycleActionHeartbeatInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    LifecycleActionToken: aws.String("bcd2f1b8-9a78-44d3-8a7a-4dd07d7cf635"),
    LifecycleHookName:    aws.String("my-lifecycle-hook"),
}

result, err := svc.RecordLifecycleActionHeartbeat(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) RecordLifecycleActionHeartbeatRequest

func (c *AutoScaling) RecordLifecycleActionHeartbeatRequest(input *RecordLifecycleActionHeartbeatInput) (req *request.Request, output *RecordLifecycleActionHeartbeatOutput)

RecordLifecycleActionHeartbeatRequest generates a "aws/request.Request" representing the client's request for the RecordLifecycleActionHeartbeat operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See RecordLifecycleActionHeartbeat for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the RecordLifecycleActionHeartbeat method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the RecordLifecycleActionHeartbeatRequest method.
req, resp := client.RecordLifecycleActionHeartbeatRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/RecordLifecycleActionHeartbeat

func (*AutoScaling) RecordLifecycleActionHeartbeatWithContext

func (c *AutoScaling) RecordLifecycleActionHeartbeatWithContext(ctx aws.Context, input *RecordLifecycleActionHeartbeatInput, opts ...request.Option) (*RecordLifecycleActionHeartbeatOutput, error)

RecordLifecycleActionHeartbeatWithContext is the same as RecordLifecycleActionHeartbeat with the addition of the ability to pass a context and additional request options.

See RecordLifecycleActionHeartbeat for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) ResumeProcesses

func (c *AutoScaling) ResumeProcesses(input *ScalingProcessQuery) (*ResumeProcessesOutput, error)

ResumeProcesses API operation for Auto Scaling.

Resumes the specified suspended Auto Scaling processes, or all suspended process, for the specified Auto Scaling group.

For more information, see Suspending and Resuming Auto Scaling Processes (http://docs.aws.amazon.com/autoscaling/latest/userguide/as-suspend-resume-processes.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation ResumeProcesses for usage and error information.

Returned Error Codes:

* ErrCodeResourceInUseFault "ResourceInUse"
The operation can't be performed because the resource is in use.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ResumeProcesses

Example (Shared00)

To resume Auto Scaling processes This example resumes the specified suspended scaling process for the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.ScalingProcessQuery{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    ScalingProcesses: []*string{
        aws.String("AlarmNotification"),
    },
}

result, err := svc.ResumeProcesses(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceInUseFault:
            fmt.Println(autoscaling.ErrCodeResourceInUseFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) ResumeProcessesRequest

func (c *AutoScaling) ResumeProcessesRequest(input *ScalingProcessQuery) (req *request.Request, output *ResumeProcessesOutput)

ResumeProcessesRequest generates a "aws/request.Request" representing the client's request for the ResumeProcesses operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ResumeProcesses for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ResumeProcesses method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ResumeProcessesRequest method.
req, resp := client.ResumeProcessesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ResumeProcesses

func (*AutoScaling) ResumeProcessesWithContext

func (c *AutoScaling) ResumeProcessesWithContext(ctx aws.Context, input *ScalingProcessQuery, opts ...request.Option) (*ResumeProcessesOutput, error)

ResumeProcessesWithContext is the same as ResumeProcesses with the addition of the ability to pass a context and additional request options.

See ResumeProcesses for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) SetDesiredCapacity

func (c *AutoScaling) SetDesiredCapacity(input *SetDesiredCapacityInput) (*SetDesiredCapacityOutput, error)

SetDesiredCapacity API operation for Auto Scaling.

Sets the size of the specified Auto Scaling group.

For more information about desired capacity, see What Is Auto Scaling? (http://docs.aws.amazon.com/autoscaling/latest/userguide/WhatIsAutoScaling.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation SetDesiredCapacity for usage and error information.

Returned Error Codes:

* ErrCodeScalingActivityInProgressFault "ScalingActivityInProgress"
The operation can't be performed because there are scaling activities in
progress.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/SetDesiredCapacity

Example (Shared00)

To set the desired capacity for an Auto Scaling group This example sets the desired capacity for the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.SetDesiredCapacityInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    DesiredCapacity:      aws.Int64(2),
    HonorCooldown:        aws.Bool(true),
}

result, err := svc.SetDesiredCapacity(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeScalingActivityInProgressFault:
            fmt.Println(autoscaling.ErrCodeScalingActivityInProgressFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) SetDesiredCapacityRequest

func (c *AutoScaling) SetDesiredCapacityRequest(input *SetDesiredCapacityInput) (req *request.Request, output *SetDesiredCapacityOutput)

SetDesiredCapacityRequest generates a "aws/request.Request" representing the client's request for the SetDesiredCapacity operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See SetDesiredCapacity for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the SetDesiredCapacity method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the SetDesiredCapacityRequest method.
req, resp := client.SetDesiredCapacityRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/SetDesiredCapacity

func (*AutoScaling) SetDesiredCapacityWithContext

func (c *AutoScaling) SetDesiredCapacityWithContext(ctx aws.Context, input *SetDesiredCapacityInput, opts ...request.Option) (*SetDesiredCapacityOutput, error)

SetDesiredCapacityWithContext is the same as SetDesiredCapacity with the addition of the ability to pass a context and additional request options.

See SetDesiredCapacity for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) SetInstanceHealth

func (c *AutoScaling) SetInstanceHealth(input *SetInstanceHealthInput) (*SetInstanceHealthOutput, error)

SetInstanceHealth API operation for Auto Scaling.

Sets the health status of the specified instance.

For more information, see Health Checks (http://docs.aws.amazon.com/autoscaling/latest/userguide/healthcheck.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation SetInstanceHealth for usage and error information.

Returned Error Codes:

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/SetInstanceHealth

Example (Shared00)

To set the health status of an instance This example sets the health status of the specified instance to Unhealthy.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.SetInstanceHealthInput{
    HealthStatus: aws.String("Unhealthy"),
    InstanceId:   aws.String("i-93633f9b"),
}

result, err := svc.SetInstanceHealth(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) SetInstanceHealthRequest

func (c *AutoScaling) SetInstanceHealthRequest(input *SetInstanceHealthInput) (req *request.Request, output *SetInstanceHealthOutput)

SetInstanceHealthRequest generates a "aws/request.Request" representing the client's request for the SetInstanceHealth operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See SetInstanceHealth for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the SetInstanceHealth method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the SetInstanceHealthRequest method.
req, resp := client.SetInstanceHealthRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/SetInstanceHealth

func (*AutoScaling) SetInstanceHealthWithContext

func (c *AutoScaling) SetInstanceHealthWithContext(ctx aws.Context, input *SetInstanceHealthInput, opts ...request.Option) (*SetInstanceHealthOutput, error)

SetInstanceHealthWithContext is the same as SetInstanceHealth with the addition of the ability to pass a context and additional request options.

See SetInstanceHealth for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) SetInstanceProtection

func (c *AutoScaling) SetInstanceProtection(input *SetInstanceProtectionInput) (*SetInstanceProtectionOutput, error)

SetInstanceProtection API operation for Auto Scaling.

Updates the instance protection settings of the specified instances.

For more information, see Instance Protection (http://docs.aws.amazon.com/autoscaling/latest/userguide/as-instance-termination.html#instance-protection) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation SetInstanceProtection for usage and error information.

Returned Error Codes:

* ErrCodeLimitExceededFault "LimitExceeded"
You have already reached a limit for your Auto Scaling resources (for example,
groups, launch configurations, or lifecycle hooks). For more information,
see DescribeAccountLimits.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/SetInstanceProtection

Example (Shared00)

To enable instance protection for an instance This example enables instance protection for the specified instance.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.SetInstanceProtectionInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    InstanceIds: []*string{
        aws.String("i-93633f9b"),
    },
    ProtectedFromScaleIn: aws.Bool(true),
}

result, err := svc.SetInstanceProtection(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeLimitExceededFault:
            fmt.Println(autoscaling.ErrCodeLimitExceededFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To disable instance protection for an instance This example disables instance protection for the specified instance.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.SetInstanceProtectionInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    InstanceIds: []*string{
        aws.String("i-93633f9b"),
    },
    ProtectedFromScaleIn: aws.Bool(false),
}

result, err := svc.SetInstanceProtection(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeLimitExceededFault:
            fmt.Println(autoscaling.ErrCodeLimitExceededFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) SetInstanceProtectionRequest

func (c *AutoScaling) SetInstanceProtectionRequest(input *SetInstanceProtectionInput) (req *request.Request, output *SetInstanceProtectionOutput)

SetInstanceProtectionRequest generates a "aws/request.Request" representing the client's request for the SetInstanceProtection operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See SetInstanceProtection for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the SetInstanceProtection method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the SetInstanceProtectionRequest method.
req, resp := client.SetInstanceProtectionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/SetInstanceProtection

func (*AutoScaling) SetInstanceProtectionWithContext

func (c *AutoScaling) SetInstanceProtectionWithContext(ctx aws.Context, input *SetInstanceProtectionInput, opts ...request.Option) (*SetInstanceProtectionOutput, error)

SetInstanceProtectionWithContext is the same as SetInstanceProtection with the addition of the ability to pass a context and additional request options.

See SetInstanceProtection for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) SuspendProcesses

func (c *AutoScaling) SuspendProcesses(input *ScalingProcessQuery) (*SuspendProcessesOutput, error)

SuspendProcesses API operation for Auto Scaling.

Suspends the specified Auto Scaling processes, or all processes, for the specified Auto Scaling group.

Note that if you suspend either the Launch or Terminate process types, it can prevent other process types from functioning properly.

To resume processes that have been suspended, use ResumeProcesses.

For more information, see Suspending and Resuming Auto Scaling Processes (http://docs.aws.amazon.com/autoscaling/latest/userguide/as-suspend-resume-processes.html) in the Auto Scaling User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation SuspendProcesses for usage and error information.

Returned Error Codes:

* ErrCodeResourceInUseFault "ResourceInUse"
The operation can't be performed because the resource is in use.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/SuspendProcesses

Example (Shared00)

To suspend Auto Scaling processes This example suspends the specified scaling process for the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.ScalingProcessQuery{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    ScalingProcesses: []*string{
        aws.String("AlarmNotification"),
    },
}

result, err := svc.SuspendProcesses(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeResourceInUseFault:
            fmt.Println(autoscaling.ErrCodeResourceInUseFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) SuspendProcessesRequest

func (c *AutoScaling) SuspendProcessesRequest(input *ScalingProcessQuery) (req *request.Request, output *SuspendProcessesOutput)

SuspendProcessesRequest generates a "aws/request.Request" representing the client's request for the SuspendProcesses operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See SuspendProcesses for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the SuspendProcesses method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the SuspendProcessesRequest method.
req, resp := client.SuspendProcessesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/SuspendProcesses

func (*AutoScaling) SuspendProcessesWithContext

func (c *AutoScaling) SuspendProcessesWithContext(ctx aws.Context, input *ScalingProcessQuery, opts ...request.Option) (*SuspendProcessesOutput, error)

SuspendProcessesWithContext is the same as SuspendProcesses with the addition of the ability to pass a context and additional request options.

See SuspendProcesses for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) TerminateInstanceInAutoScalingGroup

func (c *AutoScaling) TerminateInstanceInAutoScalingGroup(input *TerminateInstanceInAutoScalingGroupInput) (*TerminateInstanceInAutoScalingGroupOutput, error)

TerminateInstanceInAutoScalingGroup API operation for Auto Scaling.

Terminates the specified instance and optionally adjusts the desired group size.

This call simply makes a termination request. The instance is not terminated immediately.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation TerminateInstanceInAutoScalingGroup for usage and error information.

Returned Error Codes:

* ErrCodeScalingActivityInProgressFault "ScalingActivityInProgress"
The operation can't be performed because there are scaling activities in
progress.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/TerminateInstanceInAutoScalingGroup

Example (Shared00)

To terminate an instance in an Auto Scaling group This example terminates the specified instance from the specified Auto Scaling group without updating the size of the group. Auto Scaling launches a replacement instance after the specified instance terminates.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.TerminateInstanceInAutoScalingGroupInput{
    InstanceId:                     aws.String("i-93633f9b"),
    ShouldDecrementDesiredCapacity: aws.Bool(false),
}

result, err := svc.TerminateInstanceInAutoScalingGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeScalingActivityInProgressFault:
            fmt.Println(autoscaling.ErrCodeScalingActivityInProgressFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) TerminateInstanceInAutoScalingGroupRequest

func (c *AutoScaling) TerminateInstanceInAutoScalingGroupRequest(input *TerminateInstanceInAutoScalingGroupInput) (req *request.Request, output *TerminateInstanceInAutoScalingGroupOutput)

TerminateInstanceInAutoScalingGroupRequest generates a "aws/request.Request" representing the client's request for the TerminateInstanceInAutoScalingGroup operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See TerminateInstanceInAutoScalingGroup for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the TerminateInstanceInAutoScalingGroup method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the TerminateInstanceInAutoScalingGroupRequest method.
req, resp := client.TerminateInstanceInAutoScalingGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/TerminateInstanceInAutoScalingGroup

func (*AutoScaling) TerminateInstanceInAutoScalingGroupWithContext

func (c *AutoScaling) TerminateInstanceInAutoScalingGroupWithContext(ctx aws.Context, input *TerminateInstanceInAutoScalingGroupInput, opts ...request.Option) (*TerminateInstanceInAutoScalingGroupOutput, error)

TerminateInstanceInAutoScalingGroupWithContext is the same as TerminateInstanceInAutoScalingGroup with the addition of the ability to pass a context and additional request options.

See TerminateInstanceInAutoScalingGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) UpdateAutoScalingGroup

func (c *AutoScaling) UpdateAutoScalingGroup(input *UpdateAutoScalingGroupInput) (*UpdateAutoScalingGroupOutput, error)

UpdateAutoScalingGroup API operation for Auto Scaling.

Updates the configuration for the specified Auto Scaling group.

The new settings take effect on any scaling activities after this call returns. Scaling activities that are currently in progress aren't affected.

To update an Auto Scaling group with a launch configuration with InstanceMonitoring set to false, you must first disable the collection of group metrics. Otherwise, you will get an error. If you have previously enabled the collection of group metrics, you can disable it using DisableMetricsCollection.

Note the following:

* If you specify a new value for MinSize without specifying a value for
DesiredCapacity, and the new MinSize is larger than the current size of
the group, we implicitly call SetDesiredCapacity to set the size of the
group to the new value of MinSize.

* If you specify a new value for MaxSize without specifying a value for
DesiredCapacity, and the new MaxSize is smaller than the current size
of the group, we implicitly call SetDesiredCapacity to set the size of
the group to the new value of MaxSize.

* All other optional parameters are left unchanged if not specified.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Auto Scaling's API operation UpdateAutoScalingGroup for usage and error information.

Returned Error Codes:

* ErrCodeScalingActivityInProgressFault "ScalingActivityInProgress"
The operation can't be performed because there are scaling activities in
progress.

* ErrCodeResourceContentionFault "ResourceContention"
You already have a pending update to an Auto Scaling resource (for example,
a group, instance, or load balancer).

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/UpdateAutoScalingGroup

Example (Shared00)

To update the launch configuration This example updates the launch configuration of the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.UpdateAutoScalingGroupInput{
    AutoScalingGroupName:    aws.String("my-auto-scaling-group"),
    LaunchConfigurationName: aws.String("new-launch-config"),
}

result, err := svc.UpdateAutoScalingGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeScalingActivityInProgressFault:
            fmt.Println(autoscaling.ErrCodeScalingActivityInProgressFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To update the minimum and maximum size This example updates the minimum size and maximum size of the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.UpdateAutoScalingGroupInput{
    AutoScalingGroupName: aws.String("my-auto-scaling-group"),
    MaxSize:              aws.Int64(3),
    MinSize:              aws.Int64(1),
}

result, err := svc.UpdateAutoScalingGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeScalingActivityInProgressFault:
            fmt.Println(autoscaling.ErrCodeScalingActivityInProgressFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared02)

To enable instance protection This example enables instance protection for the specified Auto Scaling group.

Code:

svc := autoscaling.New(session.New())
input := &autoscaling.UpdateAutoScalingGroupInput{
    AutoScalingGroupName:             aws.String("my-auto-scaling-group"),
    NewInstancesProtectedFromScaleIn: aws.Bool(true),
}

result, err := svc.UpdateAutoScalingGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case autoscaling.ErrCodeScalingActivityInProgressFault:
            fmt.Println(autoscaling.ErrCodeScalingActivityInProgressFault, aerr.Error())
        case autoscaling.ErrCodeResourceContentionFault:
            fmt.Println(autoscaling.ErrCodeResourceContentionFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*AutoScaling) UpdateAutoScalingGroupRequest

func (c *AutoScaling) UpdateAutoScalingGroupRequest(input *UpdateAutoScalingGroupInput) (req *request.Request, output *UpdateAutoScalingGroupOutput)

UpdateAutoScalingGroupRequest generates a "aws/request.Request" representing the client's request for the UpdateAutoScalingGroup operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See UpdateAutoScalingGroup for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the UpdateAutoScalingGroup method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the UpdateAutoScalingGroupRequest method.
req, resp := client.UpdateAutoScalingGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/UpdateAutoScalingGroup

func (*AutoScaling) UpdateAutoScalingGroupWithContext

func (c *AutoScaling) UpdateAutoScalingGroupWithContext(ctx aws.Context, input *UpdateAutoScalingGroupInput, opts ...request.Option) (*UpdateAutoScalingGroupOutput, error)

UpdateAutoScalingGroupWithContext is the same as UpdateAutoScalingGroup with the addition of the ability to pass a context and additional request options.

See UpdateAutoScalingGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) WaitUntilGroupExists

func (c *AutoScaling) WaitUntilGroupExists(input *DescribeAutoScalingGroupsInput) error

WaitUntilGroupExists uses the Auto Scaling API operation DescribeAutoScalingGroups to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*AutoScaling) WaitUntilGroupExistsWithContext

func (c *AutoScaling) WaitUntilGroupExistsWithContext(ctx aws.Context, input *DescribeAutoScalingGroupsInput, opts ...request.WaiterOption) error

WaitUntilGroupExistsWithContext is an extended version of WaitUntilGroupExists. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) WaitUntilGroupInService

func (c *AutoScaling) WaitUntilGroupInService(input *DescribeAutoScalingGroupsInput) error

WaitUntilGroupInService uses the Auto Scaling API operation DescribeAutoScalingGroups to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*AutoScaling) WaitUntilGroupInServiceWithContext

func (c *AutoScaling) WaitUntilGroupInServiceWithContext(ctx aws.Context, input *DescribeAutoScalingGroupsInput, opts ...request.WaiterOption) error

WaitUntilGroupInServiceWithContext is an extended version of WaitUntilGroupInService. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*AutoScaling) WaitUntilGroupNotExists

func (c *AutoScaling) WaitUntilGroupNotExists(input *DescribeAutoScalingGroupsInput) error

WaitUntilGroupNotExists uses the Auto Scaling API operation DescribeAutoScalingGroups to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*AutoScaling) WaitUntilGroupNotExistsWithContext

func (c *AutoScaling) WaitUntilGroupNotExistsWithContext(ctx aws.Context, input *DescribeAutoScalingGroupsInput, opts ...request.WaiterOption) error

WaitUntilGroupNotExistsWithContext is an extended version of WaitUntilGroupNotExists. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

type BlockDeviceMapping

Describes a block device mapping. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/BlockDeviceMapping

type BlockDeviceMapping struct {

    // The device name exposed to the EC2 instance (for example, /dev/sdh or xvdh).
    //
    // DeviceName is a required field
    DeviceName *string `min:"1" type:"string" required:"true"`

    // The information about the Amazon EBS volume.
    Ebs *Ebs `type:"structure"`

    // Suppresses a device mapping.
    //
    // If this parameter is true for the root device, the instance might fail the
    // EC2 health check. Auto Scaling launches a replacement instance if the instance
    // fails the health check.
    NoDevice *bool `type:"boolean"`

    // The name of the virtual device (for example, ephemeral0).
    VirtualName *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (BlockDeviceMapping) GoString

func (s BlockDeviceMapping) GoString() string

GoString returns the string representation

func (*BlockDeviceMapping) SetDeviceName

func (s *BlockDeviceMapping) SetDeviceName(v string) *BlockDeviceMapping

SetDeviceName sets the DeviceName field's value.

func (*BlockDeviceMapping) SetEbs

func (s *BlockDeviceMapping) SetEbs(v *Ebs) *BlockDeviceMapping

SetEbs sets the Ebs field's value.

func (*BlockDeviceMapping) SetNoDevice

func (s *BlockDeviceMapping) SetNoDevice(v bool) *BlockDeviceMapping

SetNoDevice sets the NoDevice field's value.

func (*BlockDeviceMapping) SetVirtualName

func (s *BlockDeviceMapping) SetVirtualName(v string) *BlockDeviceMapping

SetVirtualName sets the VirtualName field's value.

func (BlockDeviceMapping) String

func (s BlockDeviceMapping) String() string

String returns the string representation

func (*BlockDeviceMapping) Validate

func (s *BlockDeviceMapping) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CompleteLifecycleActionInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CompleteLifecycleActionType

type CompleteLifecycleActionInput struct {

    // The name of the group for the lifecycle hook.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // The ID of the instance.
    InstanceId *string `min:"1" type:"string"`

    // The action for the group to take. This parameter can be either CONTINUE or
    // ABANDON.
    //
    // LifecycleActionResult is a required field
    LifecycleActionResult *string `type:"string" required:"true"`

    // A universally unique identifier (UUID) that identifies a specific lifecycle
    // action associated with an instance. Auto Scaling sends this token to the
    // notification target you specified when you created the lifecycle hook.
    LifecycleActionToken *string `min:"36" type:"string"`

    // The name of the lifecycle hook.
    //
    // LifecycleHookName is a required field
    LifecycleHookName *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CompleteLifecycleActionInput) GoString

func (s CompleteLifecycleActionInput) GoString() string

GoString returns the string representation

func (*CompleteLifecycleActionInput) SetAutoScalingGroupName

func (s *CompleteLifecycleActionInput) SetAutoScalingGroupName(v string) *CompleteLifecycleActionInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*CompleteLifecycleActionInput) SetInstanceId

func (s *CompleteLifecycleActionInput) SetInstanceId(v string) *CompleteLifecycleActionInput

SetInstanceId sets the InstanceId field's value.

func (*CompleteLifecycleActionInput) SetLifecycleActionResult

func (s *CompleteLifecycleActionInput) SetLifecycleActionResult(v string) *CompleteLifecycleActionInput

SetLifecycleActionResult sets the LifecycleActionResult field's value.

func (*CompleteLifecycleActionInput) SetLifecycleActionToken

func (s *CompleteLifecycleActionInput) SetLifecycleActionToken(v string) *CompleteLifecycleActionInput

SetLifecycleActionToken sets the LifecycleActionToken field's value.

func (*CompleteLifecycleActionInput) SetLifecycleHookName

func (s *CompleteLifecycleActionInput) SetLifecycleHookName(v string) *CompleteLifecycleActionInput

SetLifecycleHookName sets the LifecycleHookName field's value.

func (CompleteLifecycleActionInput) String

func (s CompleteLifecycleActionInput) String() string

String returns the string representation

func (*CompleteLifecycleActionInput) Validate

func (s *CompleteLifecycleActionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CompleteLifecycleActionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CompleteLifecycleActionAnswer

type CompleteLifecycleActionOutput struct {
    // contains filtered or unexported fields
}

func (CompleteLifecycleActionOutput) GoString

func (s CompleteLifecycleActionOutput) GoString() string

GoString returns the string representation

func (CompleteLifecycleActionOutput) String

func (s CompleteLifecycleActionOutput) String() string

String returns the string representation

type CreateAutoScalingGroupInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CreateAutoScalingGroupType

type CreateAutoScalingGroupInput struct {

    // The name of the group. This name must be unique within the scope of your
    // AWS account.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // One or more Availability Zones for the group. This parameter is optional
    // if you specify one or more subnets.
    AvailabilityZones []*string `min:"1" type:"list"`

    // The amount of time, in seconds, after a scaling activity completes before
    // another scaling activity can start. The default is 300.
    //
    // For more information, see Auto Scaling Cooldowns (http://docs.aws.amazon.com/autoscaling/latest/userguide/Cooldown.html)
    // in the Auto Scaling User Guide.
    DefaultCooldown *int64 `type:"integer"`

    // The number of EC2 instances that should be running in the group. This number
    // must be greater than or equal to the minimum size of the group and less than
    // or equal to the maximum size of the group. If you do not specify a desired
    // capacity, the default is the minimum size of the group.
    DesiredCapacity *int64 `type:"integer"`

    // The amount of time, in seconds, that Auto Scaling waits before checking the
    // health status of an EC2 instance that has come into service. During this
    // time, any health check failures for the instance are ignored. The default
    // is 0.
    //
    // This parameter is required if you are adding an ELB health check.
    //
    // For more information, see Health Checks (http://docs.aws.amazon.com/autoscaling/latest/userguide/healthcheck.html)
    // in the Auto Scaling User Guide.
    HealthCheckGracePeriod *int64 `type:"integer"`

    // The service to use for the health checks. The valid values are EC2 and ELB.
    //
    // By default, health checks use Amazon EC2 instance status checks to determine
    // the health of an instance. For more information, see Health Checks (http://docs.aws.amazon.com/autoscaling/latest/userguide/healthcheck.html)
    // in the Auto Scaling User Guide.
    HealthCheckType *string `min:"1" type:"string"`

    // The ID of the instance used to create a launch configuration for the group.
    // Alternatively, specify a launch configuration instead of an EC2 instance.
    //
    // When you specify an ID of an instance, Auto Scaling creates a new launch
    // configuration and associates it with the group. This launch configuration
    // derives its attributes from the specified instance, with the exception of
    // the block device mapping.
    //
    // For more information, see Create an Auto Scaling Group Using an EC2 Instance
    // (http://docs.aws.amazon.com/autoscaling/latest/userguide/create-asg-from-instance.html)
    // in the Auto Scaling User Guide.
    InstanceId *string `min:"1" type:"string"`

    // The name of the launch configuration. Alternatively, specify an EC2 instance
    // instead of a launch configuration.
    LaunchConfigurationName *string `min:"1" type:"string"`

    // One or more Classic Load Balancers. To specify an Application Load Balancer,
    // use TargetGroupARNs instead.
    //
    // For more information, see Using a Load Balancer With an Auto Scaling Group
    // (http://docs.aws.amazon.com/autoscaling/latest/userguide/create-asg-from-instance.html)
    // in the Auto Scaling User Guide.
    LoadBalancerNames []*string `type:"list"`

    // The maximum size of the group.
    //
    // MaxSize is a required field
    MaxSize *int64 `type:"integer" required:"true"`

    // The minimum size of the group.
    //
    // MinSize is a required field
    MinSize *int64 `type:"integer" required:"true"`

    // Indicates whether newly launched instances are protected from termination
    // by Auto Scaling when scaling in.
    NewInstancesProtectedFromScaleIn *bool `type:"boolean"`

    // The name of the placement group into which you'll launch your instances,
    // if any. For more information, see Placement Groups (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    PlacementGroup *string `min:"1" type:"string"`

    // One or more tags.
    //
    // For more information, see Tagging Auto Scaling Groups and Instances (http://docs.aws.amazon.com/autoscaling/latest/userguide/autoscaling-tagging.html)
    // in the Auto Scaling User Guide.
    Tags []*Tag `type:"list"`

    // The Amazon Resource Names (ARN) of the target groups.
    TargetGroupARNs []*string `type:"list"`

    // One or more termination policies used to select the instance to terminate.
    // These policies are executed in the order that they are listed.
    //
    // For more information, see Controlling Which Instances Auto Scaling Terminates
    // During Scale In (http://docs.aws.amazon.com/autoscaling/latest/userguide/as-instance-termination.html)
    // in the Auto Scaling User Guide.
    TerminationPolicies []*string `type:"list"`

    // A comma-separated list of subnet identifiers for your virtual private cloud
    // (VPC).
    //
    // If you specify subnets and Availability Zones with this call, ensure that
    // the subnets' Availability Zones match the Availability Zones specified.
    //
    // For more information, see Launching Auto Scaling Instances in a VPC (http://docs.aws.amazon.com/autoscaling/latest/userguide/asg-in-vpc.html)
    // in the Auto Scaling User Guide.
    VPCZoneIdentifier *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (CreateAutoScalingGroupInput) GoString

func (s CreateAutoScalingGroupInput) GoString() string

GoString returns the string representation

func (*CreateAutoScalingGroupInput) SetAutoScalingGroupName

func (s *CreateAutoScalingGroupInput) SetAutoScalingGroupName(v string) *CreateAutoScalingGroupInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*CreateAutoScalingGroupInput) SetAvailabilityZones

func (s *CreateAutoScalingGroupInput) SetAvailabilityZones(v []*string) *CreateAutoScalingGroupInput

SetAvailabilityZones sets the AvailabilityZones field's value.

func (*CreateAutoScalingGroupInput) SetDefaultCooldown

func (s *CreateAutoScalingGroupInput) SetDefaultCooldown(v int64) *CreateAutoScalingGroupInput

SetDefaultCooldown sets the DefaultCooldown field's value.

func (*CreateAutoScalingGroupInput) SetDesiredCapacity

func (s *CreateAutoScalingGroupInput) SetDesiredCapacity(v int64) *CreateAutoScalingGroupInput

SetDesiredCapacity sets the DesiredCapacity field's value.

func (*CreateAutoScalingGroupInput) SetHealthCheckGracePeriod

func (s *CreateAutoScalingGroupInput) SetHealthCheckGracePeriod(v int64) *CreateAutoScalingGroupInput

SetHealthCheckGracePeriod sets the HealthCheckGracePeriod field's value.

func (*CreateAutoScalingGroupInput) SetHealthCheckType

func (s *CreateAutoScalingGroupInput) SetHealthCheckType(v string) *CreateAutoScalingGroupInput

SetHealthCheckType sets the HealthCheckType field's value.

func (*CreateAutoScalingGroupInput) SetInstanceId

func (s *CreateAutoScalingGroupInput) SetInstanceId(v string) *CreateAutoScalingGroupInput

SetInstanceId sets the InstanceId field's value.

func (*CreateAutoScalingGroupInput) SetLaunchConfigurationName

func (s *CreateAutoScalingGroupInput) SetLaunchConfigurationName(v string) *CreateAutoScalingGroupInput

SetLaunchConfigurationName sets the LaunchConfigurationName field's value.

func (*CreateAutoScalingGroupInput) SetLoadBalancerNames

func (s *CreateAutoScalingGroupInput) SetLoadBalancerNames(v []*string) *CreateAutoScalingGroupInput

SetLoadBalancerNames sets the LoadBalancerNames field's value.

func (*CreateAutoScalingGroupInput) SetMaxSize

func (s *CreateAutoScalingGroupInput) SetMaxSize(v int64) *CreateAutoScalingGroupInput

SetMaxSize sets the MaxSize field's value.

func (*CreateAutoScalingGroupInput) SetMinSize

func (s *CreateAutoScalingGroupInput) SetMinSize(v int64) *CreateAutoScalingGroupInput

SetMinSize sets the MinSize field's value.

func (*CreateAutoScalingGroupInput) SetNewInstancesProtectedFromScaleIn

func (s *CreateAutoScalingGroupInput) SetNewInstancesProtectedFromScaleIn(v bool) *CreateAutoScalingGroupInput

SetNewInstancesProtectedFromScaleIn sets the NewInstancesProtectedFromScaleIn field's value.

func (*CreateAutoScalingGroupInput) SetPlacementGroup

func (s *CreateAutoScalingGroupInput) SetPlacementGroup(v string) *CreateAutoScalingGroupInput

SetPlacementGroup sets the PlacementGroup field's value.

func (*CreateAutoScalingGroupInput) SetTags

func (s *CreateAutoScalingGroupInput) SetTags(v []*Tag) *CreateAutoScalingGroupInput

SetTags sets the Tags field's value.

func (*CreateAutoScalingGroupInput) SetTargetGroupARNs

func (s *CreateAutoScalingGroupInput) SetTargetGroupARNs(v []*string) *CreateAutoScalingGroupInput

SetTargetGroupARNs sets the TargetGroupARNs field's value.

func (*CreateAutoScalingGroupInput) SetTerminationPolicies

func (s *CreateAutoScalingGroupInput) SetTerminationPolicies(v []*string) *CreateAutoScalingGroupInput

SetTerminationPolicies sets the TerminationPolicies field's value.

func (*CreateAutoScalingGroupInput) SetVPCZoneIdentifier

func (s *CreateAutoScalingGroupInput) SetVPCZoneIdentifier(v string) *CreateAutoScalingGroupInput

SetVPCZoneIdentifier sets the VPCZoneIdentifier field's value.

func (CreateAutoScalingGroupInput) String

func (s CreateAutoScalingGroupInput) String() string

String returns the string representation

func (*CreateAutoScalingGroupInput) Validate

func (s *CreateAutoScalingGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateAutoScalingGroupOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CreateAutoScalingGroupOutput

type CreateAutoScalingGroupOutput struct {
    // contains filtered or unexported fields
}

func (CreateAutoScalingGroupOutput) GoString

func (s CreateAutoScalingGroupOutput) GoString() string

GoString returns the string representation

func (CreateAutoScalingGroupOutput) String

func (s CreateAutoScalingGroupOutput) String() string

String returns the string representation

type CreateLaunchConfigurationInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CreateLaunchConfigurationType

type CreateLaunchConfigurationInput struct {

    // Used for groups that launch instances into a virtual private cloud (VPC).
    // Specifies whether to assign a public IP address to each instance. For more
    // information, see Launching Auto Scaling Instances in a VPC (http://docs.aws.amazon.com/autoscaling/latest/userguide/asg-in-vpc.html)
    // in the Auto Scaling User Guide.
    //
    // If you specify this parameter, be sure to specify at least one subnet when
    // you create your group.
    //
    // Default: If the instance is launched into a default subnet, the default is
    // true. If the instance is launched into a nondefault subnet, the default is
    // false. For more information, see Supported Platforms (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-platforms.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    AssociatePublicIpAddress *bool `type:"boolean"`

    // One or more mappings that specify how block devices are exposed to the instance.
    // For more information, see Block Device Mapping (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    BlockDeviceMappings []*BlockDeviceMapping `type:"list"`

    // The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to.
    // This parameter is supported only if you are launching EC2-Classic instances.
    // For more information, see ClassicLink (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    ClassicLinkVPCId *string `min:"1" type:"string"`

    // The IDs of one or more security groups for the specified ClassicLink-enabled
    // VPC. This parameter is required if you specify a ClassicLink-enabled VPC,
    // and is not supported otherwise. For more information, see ClassicLink (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    ClassicLinkVPCSecurityGroups []*string `type:"list"`

    // Indicates whether the instance is optimized for Amazon EBS I/O. By default,
    // the instance is not optimized for EBS I/O. The optimization provides dedicated
    // throughput to Amazon EBS and an optimized configuration stack to provide
    // optimal I/O performance. This optimization is not available with all instance
    // types. Additional usage charges apply. For more information, see Amazon EBS-Optimized
    // Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSOptimized.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    EbsOptimized *bool `type:"boolean"`

    // The name or the Amazon Resource Name (ARN) of the instance profile associated
    // with the IAM role for the instance.
    //
    // EC2 instances launched with an IAM role will automatically have AWS security
    // credentials available. You can use IAM roles with Auto Scaling to automatically
    // enable applications running on your EC2 instances to securely access other
    // AWS resources. For more information, see Launch Auto Scaling Instances with
    // an IAM Role (http://docs.aws.amazon.com/autoscaling/latest/userguide/us-iam-role.html)
    // in the Auto Scaling User Guide.
    IamInstanceProfile *string `min:"1" type:"string"`

    // The ID of the Amazon Machine Image (AMI) to use to launch your EC2 instances.
    //
    // If you do not specify InstanceId, you must specify ImageId.
    //
    // For more information, see Finding an AMI (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/finding-an-ami.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    ImageId *string `min:"1" type:"string"`

    // The ID of the instance to use to create the launch configuration. The new
    // launch configuration derives attributes from the instance, with the exception
    // of the block device mapping.
    //
    // If you do not specify InstanceId, you must specify both ImageId and InstanceType.
    //
    // To create a launch configuration with a block device mapping or override
    // any other instance attributes, specify them as part of the same request.
    //
    // For more information, see Create a Launch Configuration Using an EC2 Instance
    // (http://docs.aws.amazon.com/autoscaling/latest/userguide/create-lc-with-instanceID.html)
    // in the Auto Scaling User Guide.
    InstanceId *string `min:"1" type:"string"`

    // Enables detailed monitoring (true) or basic monitoring (false) for the Auto
    // Scaling instances. The default is true.
    InstanceMonitoring *InstanceMonitoring `type:"structure"`

    // The instance type of the EC2 instance.
    //
    // If you do not specify InstanceId, you must specify InstanceType.
    //
    // For information about available instance types, see Available Instance Types
    // (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#AvailableInstanceTypes)
    // in the Amazon Elastic Compute Cloud User Guide.
    InstanceType *string `min:"1" type:"string"`

    // The ID of the kernel associated with the AMI.
    KernelId *string `min:"1" type:"string"`

    // The name of the key pair. For more information, see Amazon EC2 Key Pairs
    // (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html) in
    // the Amazon Elastic Compute Cloud User Guide.
    KeyName *string `min:"1" type:"string"`

    // The name of the launch configuration. This name must be unique within the
    // scope of your AWS account.
    //
    // LaunchConfigurationName is a required field
    LaunchConfigurationName *string `min:"1" type:"string" required:"true"`

    // The tenancy of the instance. An instance with a tenancy of dedicated runs
    // on single-tenant hardware and can only be launched into a VPC.
    //
    // You must set the value of this parameter to dedicated if want to launch Dedicated
    // Instances into a shared tenancy VPC (VPC with instance placement tenancy
    // attribute set to default).
    //
    // If you specify this parameter, be sure to specify at least one subnet when
    // you create your group.
    //
    // For more information, see Launching Auto Scaling Instances in a VPC (http://docs.aws.amazon.com/autoscaling/latest/userguide/asg-in-vpc.html)
    // in the Auto Scaling User Guide.
    //
    // Valid values: default | dedicated
    PlacementTenancy *string `min:"1" type:"string"`

    // The ID of the RAM disk associated with the AMI.
    RamdiskId *string `min:"1" type:"string"`

    // One or more security groups with which to associate the instances.
    //
    // If your instances are launched in EC2-Classic, you can either specify security
    // group names or the security group IDs. For more information about security
    // groups for EC2-Classic, see Amazon EC2 Security Groups (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    //
    // If your instances are launched into a VPC, specify security group IDs. For
    // more information, see Security Groups for Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_SecurityGroups.html)
    // in the Amazon Virtual Private Cloud User Guide.
    SecurityGroups []*string `type:"list"`

    // The maximum hourly price to be paid for any Spot Instance launched to fulfill
    // the request. Spot Instances are launched when the price you specify exceeds
    // the current Spot market price. For more information, see Launching Spot Instances
    // in Your Auto Scaling Group (http://docs.aws.amazon.com/autoscaling/latest/userguide/US-SpotInstances.html)
    // in the Auto Scaling User Guide.
    SpotPrice *string `min:"1" type:"string"`

    // The user data to make available to the launched EC2 instances. For more information,
    // see Instance Metadata and User Data (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    UserData *string `type:"string"`
    // contains filtered or unexported fields
}

func (CreateLaunchConfigurationInput) GoString

func (s CreateLaunchConfigurationInput) GoString() string

GoString returns the string representation

func (*CreateLaunchConfigurationInput) SetAssociatePublicIpAddress

func (s *CreateLaunchConfigurationInput) SetAssociatePublicIpAddress(v bool) *CreateLaunchConfigurationInput

SetAssociatePublicIpAddress sets the AssociatePublicIpAddress field's value.

func (*CreateLaunchConfigurationInput) SetBlockDeviceMappings

func (s *CreateLaunchConfigurationInput) SetBlockDeviceMappings(v []*BlockDeviceMapping) *CreateLaunchConfigurationInput

SetBlockDeviceMappings sets the BlockDeviceMappings field's value.

func (*CreateLaunchConfigurationInput) SetClassicLinkVPCId

func (s *CreateLaunchConfigurationInput) SetClassicLinkVPCId(v string) *CreateLaunchConfigurationInput

SetClassicLinkVPCId sets the ClassicLinkVPCId field's value.

func (*CreateLaunchConfigurationInput) SetClassicLinkVPCSecurityGroups

func (s *CreateLaunchConfigurationInput) SetClassicLinkVPCSecurityGroups(v []*string) *CreateLaunchConfigurationInput

SetClassicLinkVPCSecurityGroups sets the ClassicLinkVPCSecurityGroups field's value.

func (*CreateLaunchConfigurationInput) SetEbsOptimized

func (s *CreateLaunchConfigurationInput) SetEbsOptimized(v bool) *CreateLaunchConfigurationInput

SetEbsOptimized sets the EbsOptimized field's value.

func (*CreateLaunchConfigurationInput) SetIamInstanceProfile

func (s *CreateLaunchConfigurationInput) SetIamInstanceProfile(v string) *CreateLaunchConfigurationInput

SetIamInstanceProfile sets the IamInstanceProfile field's value.

func (*CreateLaunchConfigurationInput) SetImageId

func (s *CreateLaunchConfigurationInput) SetImageId(v string) *CreateLaunchConfigurationInput

SetImageId sets the ImageId field's value.

func (*CreateLaunchConfigurationInput) SetInstanceId

func (s *CreateLaunchConfigurationInput) SetInstanceId(v string) *CreateLaunchConfigurationInput

SetInstanceId sets the InstanceId field's value.

func (*CreateLaunchConfigurationInput) SetInstanceMonitoring

func (s *CreateLaunchConfigurationInput) SetInstanceMonitoring(v *InstanceMonitoring) *CreateLaunchConfigurationInput

SetInstanceMonitoring sets the InstanceMonitoring field's value.

func (*CreateLaunchConfigurationInput) SetInstanceType

func (s *CreateLaunchConfigurationInput) SetInstanceType(v string) *CreateLaunchConfigurationInput

SetInstanceType sets the InstanceType field's value.

func (*CreateLaunchConfigurationInput) SetKernelId

func (s *CreateLaunchConfigurationInput) SetKernelId(v string) *CreateLaunchConfigurationInput

SetKernelId sets the KernelId field's value.

func (*CreateLaunchConfigurationInput) SetKeyName

func (s *CreateLaunchConfigurationInput) SetKeyName(v string) *CreateLaunchConfigurationInput

SetKeyName sets the KeyName field's value.

func (*CreateLaunchConfigurationInput) SetLaunchConfigurationName

func (s *CreateLaunchConfigurationInput) SetLaunchConfigurationName(v string) *CreateLaunchConfigurationInput

SetLaunchConfigurationName sets the LaunchConfigurationName field's value.

func (*CreateLaunchConfigurationInput) SetPlacementTenancy

func (s *CreateLaunchConfigurationInput) SetPlacementTenancy(v string) *CreateLaunchConfigurationInput

SetPlacementTenancy sets the PlacementTenancy field's value.

func (*CreateLaunchConfigurationInput) SetRamdiskId

func (s *CreateLaunchConfigurationInput) SetRamdiskId(v string) *CreateLaunchConfigurationInput

SetRamdiskId sets the RamdiskId field's value.

func (*CreateLaunchConfigurationInput) SetSecurityGroups

func (s *CreateLaunchConfigurationInput) SetSecurityGroups(v []*string) *CreateLaunchConfigurationInput

SetSecurityGroups sets the SecurityGroups field's value.

func (*CreateLaunchConfigurationInput) SetSpotPrice

func (s *CreateLaunchConfigurationInput) SetSpotPrice(v string) *CreateLaunchConfigurationInput

SetSpotPrice sets the SpotPrice field's value.

func (*CreateLaunchConfigurationInput) SetUserData

func (s *CreateLaunchConfigurationInput) SetUserData(v string) *CreateLaunchConfigurationInput

SetUserData sets the UserData field's value.

func (CreateLaunchConfigurationInput) String

func (s CreateLaunchConfigurationInput) String() string

String returns the string representation

func (*CreateLaunchConfigurationInput) Validate

func (s *CreateLaunchConfigurationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateLaunchConfigurationOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CreateLaunchConfigurationOutput

type CreateLaunchConfigurationOutput struct {
    // contains filtered or unexported fields
}

func (CreateLaunchConfigurationOutput) GoString

func (s CreateLaunchConfigurationOutput) GoString() string

GoString returns the string representation

func (CreateLaunchConfigurationOutput) String

func (s CreateLaunchConfigurationOutput) String() string

String returns the string representation

type CreateOrUpdateTagsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CreateOrUpdateTagsType

type CreateOrUpdateTagsInput struct {

    // One or more tags.
    //
    // Tags is a required field
    Tags []*Tag `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (CreateOrUpdateTagsInput) GoString

func (s CreateOrUpdateTagsInput) GoString() string

GoString returns the string representation

func (*CreateOrUpdateTagsInput) SetTags

func (s *CreateOrUpdateTagsInput) SetTags(v []*Tag) *CreateOrUpdateTagsInput

SetTags sets the Tags field's value.

func (CreateOrUpdateTagsInput) String

func (s CreateOrUpdateTagsInput) String() string

String returns the string representation

func (*CreateOrUpdateTagsInput) Validate

func (s *CreateOrUpdateTagsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateOrUpdateTagsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CreateOrUpdateTagsOutput

type CreateOrUpdateTagsOutput struct {
    // contains filtered or unexported fields
}

func (CreateOrUpdateTagsOutput) GoString

func (s CreateOrUpdateTagsOutput) GoString() string

GoString returns the string representation

func (CreateOrUpdateTagsOutput) String

func (s CreateOrUpdateTagsOutput) String() string

String returns the string representation

type DeleteAutoScalingGroupInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteAutoScalingGroupType

type DeleteAutoScalingGroupInput struct {

    // The name of the group to delete.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // Specifies that the group will be deleted along with all instances associated
    // with the group, without waiting for all instances to be terminated. This
    // parameter also deletes any lifecycle actions associated with the group.
    ForceDelete *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (DeleteAutoScalingGroupInput) GoString

func (s DeleteAutoScalingGroupInput) GoString() string

GoString returns the string representation

func (*DeleteAutoScalingGroupInput) SetAutoScalingGroupName

func (s *DeleteAutoScalingGroupInput) SetAutoScalingGroupName(v string) *DeleteAutoScalingGroupInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*DeleteAutoScalingGroupInput) SetForceDelete

func (s *DeleteAutoScalingGroupInput) SetForceDelete(v bool) *DeleteAutoScalingGroupInput

SetForceDelete sets the ForceDelete field's value.

func (DeleteAutoScalingGroupInput) String

func (s DeleteAutoScalingGroupInput) String() string

String returns the string representation

func (*DeleteAutoScalingGroupInput) Validate

func (s *DeleteAutoScalingGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteAutoScalingGroupOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteAutoScalingGroupOutput

type DeleteAutoScalingGroupOutput struct {
    // contains filtered or unexported fields
}

func (DeleteAutoScalingGroupOutput) GoString

func (s DeleteAutoScalingGroupOutput) GoString() string

GoString returns the string representation

func (DeleteAutoScalingGroupOutput) String

func (s DeleteAutoScalingGroupOutput) String() string

String returns the string representation

type DeleteLaunchConfigurationInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/LaunchConfigurationNameType

type DeleteLaunchConfigurationInput struct {

    // The name of the launch configuration.
    //
    // LaunchConfigurationName is a required field
    LaunchConfigurationName *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteLaunchConfigurationInput) GoString

func (s DeleteLaunchConfigurationInput) GoString() string

GoString returns the string representation

func (*DeleteLaunchConfigurationInput) SetLaunchConfigurationName

func (s *DeleteLaunchConfigurationInput) SetLaunchConfigurationName(v string) *DeleteLaunchConfigurationInput

SetLaunchConfigurationName sets the LaunchConfigurationName field's value.

func (DeleteLaunchConfigurationInput) String

func (s DeleteLaunchConfigurationInput) String() string

String returns the string representation

func (*DeleteLaunchConfigurationInput) Validate

func (s *DeleteLaunchConfigurationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteLaunchConfigurationOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteLaunchConfigurationOutput

type DeleteLaunchConfigurationOutput struct {
    // contains filtered or unexported fields
}

func (DeleteLaunchConfigurationOutput) GoString

func (s DeleteLaunchConfigurationOutput) GoString() string

GoString returns the string representation

func (DeleteLaunchConfigurationOutput) String

func (s DeleteLaunchConfigurationOutput) String() string

String returns the string representation

type DeleteLifecycleHookInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteLifecycleHookType

type DeleteLifecycleHookInput struct {

    // The name of the Auto Scaling group for the lifecycle hook.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // The name of the lifecycle hook.
    //
    // LifecycleHookName is a required field
    LifecycleHookName *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteLifecycleHookInput) GoString

func (s DeleteLifecycleHookInput) GoString() string

GoString returns the string representation

func (*DeleteLifecycleHookInput) SetAutoScalingGroupName

func (s *DeleteLifecycleHookInput) SetAutoScalingGroupName(v string) *DeleteLifecycleHookInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*DeleteLifecycleHookInput) SetLifecycleHookName

func (s *DeleteLifecycleHookInput) SetLifecycleHookName(v string) *DeleteLifecycleHookInput

SetLifecycleHookName sets the LifecycleHookName field's value.

func (DeleteLifecycleHookInput) String

func (s DeleteLifecycleHookInput) String() string

String returns the string representation

func (*DeleteLifecycleHookInput) Validate

func (s *DeleteLifecycleHookInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteLifecycleHookOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteLifecycleHookAnswer

type DeleteLifecycleHookOutput struct {
    // contains filtered or unexported fields
}

func (DeleteLifecycleHookOutput) GoString

func (s DeleteLifecycleHookOutput) GoString() string

GoString returns the string representation

func (DeleteLifecycleHookOutput) String

func (s DeleteLifecycleHookOutput) String() string

String returns the string representation

type DeleteNotificationConfigurationInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteNotificationConfigurationType

type DeleteNotificationConfigurationInput struct {

    // The name of the Auto Scaling group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // The Amazon Resource Name (ARN) of the Amazon Simple Notification Service
    // (SNS) topic.
    //
    // TopicARN is a required field
    TopicARN *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteNotificationConfigurationInput) GoString

func (s DeleteNotificationConfigurationInput) GoString() string

GoString returns the string representation

func (*DeleteNotificationConfigurationInput) SetAutoScalingGroupName

func (s *DeleteNotificationConfigurationInput) SetAutoScalingGroupName(v string) *DeleteNotificationConfigurationInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*DeleteNotificationConfigurationInput) SetTopicARN

func (s *DeleteNotificationConfigurationInput) SetTopicARN(v string) *DeleteNotificationConfigurationInput

SetTopicARN sets the TopicARN field's value.

func (DeleteNotificationConfigurationInput) String

func (s DeleteNotificationConfigurationInput) String() string

String returns the string representation

func (*DeleteNotificationConfigurationInput) Validate

func (s *DeleteNotificationConfigurationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteNotificationConfigurationOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteNotificationConfigurationOutput

type DeleteNotificationConfigurationOutput struct {
    // contains filtered or unexported fields
}

func (DeleteNotificationConfigurationOutput) GoString

func (s DeleteNotificationConfigurationOutput) GoString() string

GoString returns the string representation

func (DeleteNotificationConfigurationOutput) String

func (s DeleteNotificationConfigurationOutput) String() string

String returns the string representation

type DeletePolicyInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeletePolicyType

type DeletePolicyInput struct {

    // The name of the Auto Scaling group.
    AutoScalingGroupName *string `min:"1" type:"string"`

    // The name or Amazon Resource Name (ARN) of the policy.
    //
    // PolicyName is a required field
    PolicyName *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeletePolicyInput) GoString

func (s DeletePolicyInput) GoString() string

GoString returns the string representation

func (*DeletePolicyInput) SetAutoScalingGroupName

func (s *DeletePolicyInput) SetAutoScalingGroupName(v string) *DeletePolicyInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*DeletePolicyInput) SetPolicyName

func (s *DeletePolicyInput) SetPolicyName(v string) *DeletePolicyInput

SetPolicyName sets the PolicyName field's value.

func (DeletePolicyInput) String

func (s DeletePolicyInput) String() string

String returns the string representation

func (*DeletePolicyInput) Validate

func (s *DeletePolicyInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeletePolicyOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeletePolicyOutput

type DeletePolicyOutput struct {
    // contains filtered or unexported fields
}

func (DeletePolicyOutput) GoString

func (s DeletePolicyOutput) GoString() string

GoString returns the string representation

func (DeletePolicyOutput) String

func (s DeletePolicyOutput) String() string

String returns the string representation

type DeleteScheduledActionInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteScheduledActionType

type DeleteScheduledActionInput struct {

    // The name of the Auto Scaling group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // The name of the action to delete.
    //
    // ScheduledActionName is a required field
    ScheduledActionName *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteScheduledActionInput) GoString

func (s DeleteScheduledActionInput) GoString() string

GoString returns the string representation

func (*DeleteScheduledActionInput) SetAutoScalingGroupName

func (s *DeleteScheduledActionInput) SetAutoScalingGroupName(v string) *DeleteScheduledActionInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*DeleteScheduledActionInput) SetScheduledActionName

func (s *DeleteScheduledActionInput) SetScheduledActionName(v string) *DeleteScheduledActionInput

SetScheduledActionName sets the ScheduledActionName field's value.

func (DeleteScheduledActionInput) String

func (s DeleteScheduledActionInput) String() string

String returns the string representation

func (*DeleteScheduledActionInput) Validate

func (s *DeleteScheduledActionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteScheduledActionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteScheduledActionOutput

type DeleteScheduledActionOutput struct {
    // contains filtered or unexported fields
}

func (DeleteScheduledActionOutput) GoString

func (s DeleteScheduledActionOutput) GoString() string

GoString returns the string representation

func (DeleteScheduledActionOutput) String

func (s DeleteScheduledActionOutput) String() string

String returns the string representation

type DeleteTagsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteTagsType

type DeleteTagsInput struct {

    // One or more tags.
    //
    // Tags is a required field
    Tags []*Tag `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteTagsInput) GoString

func (s DeleteTagsInput) GoString() string

GoString returns the string representation

func (*DeleteTagsInput) SetTags

func (s *DeleteTagsInput) SetTags(v []*Tag) *DeleteTagsInput

SetTags sets the Tags field's value.

func (DeleteTagsInput) String

func (s DeleteTagsInput) String() string

String returns the string representation

func (*DeleteTagsInput) Validate

func (s *DeleteTagsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteTagsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteTagsOutput

type DeleteTagsOutput struct {
    // contains filtered or unexported fields
}

func (DeleteTagsOutput) GoString

func (s DeleteTagsOutput) GoString() string

GoString returns the string representation

func (DeleteTagsOutput) String

func (s DeleteTagsOutput) String() string

String returns the string representation

type DescribeAccountLimitsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeAccountLimitsInput

type DescribeAccountLimitsInput struct {
    // contains filtered or unexported fields
}

func (DescribeAccountLimitsInput) GoString

func (s DescribeAccountLimitsInput) GoString() string

GoString returns the string representation

func (DescribeAccountLimitsInput) String

func (s DescribeAccountLimitsInput) String() string

String returns the string representation

type DescribeAccountLimitsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeAccountLimitsAnswer

type DescribeAccountLimitsOutput struct {

    // The maximum number of groups allowed for your AWS account. The default limit
    // is 20 per region.
    MaxNumberOfAutoScalingGroups *int64 `type:"integer"`

    // The maximum number of launch configurations allowed for your AWS account.
    // The default limit is 100 per region.
    MaxNumberOfLaunchConfigurations *int64 `type:"integer"`

    // The current number of groups for your AWS account.
    NumberOfAutoScalingGroups *int64 `type:"integer"`

    // The current number of launch configurations for your AWS account.
    NumberOfLaunchConfigurations *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeAccountLimitsOutput) GoString

func (s DescribeAccountLimitsOutput) GoString() string

GoString returns the string representation

func (*DescribeAccountLimitsOutput) SetMaxNumberOfAutoScalingGroups

func (s *DescribeAccountLimitsOutput) SetMaxNumberOfAutoScalingGroups(v int64) *DescribeAccountLimitsOutput

SetMaxNumberOfAutoScalingGroups sets the MaxNumberOfAutoScalingGroups field's value.

func (*DescribeAccountLimitsOutput) SetMaxNumberOfLaunchConfigurations

func (s *DescribeAccountLimitsOutput) SetMaxNumberOfLaunchConfigurations(v int64) *DescribeAccountLimitsOutput

SetMaxNumberOfLaunchConfigurations sets the MaxNumberOfLaunchConfigurations field's value.

func (*DescribeAccountLimitsOutput) SetNumberOfAutoScalingGroups

func (s *DescribeAccountLimitsOutput) SetNumberOfAutoScalingGroups(v int64) *DescribeAccountLimitsOutput

SetNumberOfAutoScalingGroups sets the NumberOfAutoScalingGroups field's value.

func (*DescribeAccountLimitsOutput) SetNumberOfLaunchConfigurations

func (s *DescribeAccountLimitsOutput) SetNumberOfLaunchConfigurations(v int64) *DescribeAccountLimitsOutput

SetNumberOfLaunchConfigurations sets the NumberOfLaunchConfigurations field's value.

func (DescribeAccountLimitsOutput) String

func (s DescribeAccountLimitsOutput) String() string

String returns the string representation

type DescribeAdjustmentTypesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeAdjustmentTypesInput

type DescribeAdjustmentTypesInput struct {
    // contains filtered or unexported fields
}

func (DescribeAdjustmentTypesInput) GoString

func (s DescribeAdjustmentTypesInput) GoString() string

GoString returns the string representation

func (DescribeAdjustmentTypesInput) String

func (s DescribeAdjustmentTypesInput) String() string

String returns the string representation

type DescribeAdjustmentTypesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeAdjustmentTypesAnswer

type DescribeAdjustmentTypesOutput struct {

    // The policy adjustment types.
    AdjustmentTypes []*AdjustmentType `type:"list"`
    // contains filtered or unexported fields
}

func (DescribeAdjustmentTypesOutput) GoString

func (s DescribeAdjustmentTypesOutput) GoString() string

GoString returns the string representation

func (*DescribeAdjustmentTypesOutput) SetAdjustmentTypes

func (s *DescribeAdjustmentTypesOutput) SetAdjustmentTypes(v []*AdjustmentType) *DescribeAdjustmentTypesOutput

SetAdjustmentTypes sets the AdjustmentTypes field's value.

func (DescribeAdjustmentTypesOutput) String

func (s DescribeAdjustmentTypesOutput) String() string

String returns the string representation

type DescribeAutoScalingGroupsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/GroupNamesType

type DescribeAutoScalingGroupsInput struct {

    // The group names. If you omit this parameter, all Auto Scaling groups are
    // described.
    AutoScalingGroupNames []*string `type:"list"`

    // The maximum number of items to return with this call. The default value is
    // 50 and the maximum value is 100.
    MaxRecords *int64 `type:"integer"`

    // The token for the next set of items to return. (You received this token from
    // a previous call.)
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeAutoScalingGroupsInput) GoString

func (s DescribeAutoScalingGroupsInput) GoString() string

GoString returns the string representation

func (*DescribeAutoScalingGroupsInput) SetAutoScalingGroupNames

func (s *DescribeAutoScalingGroupsInput) SetAutoScalingGroupNames(v []*string) *DescribeAutoScalingGroupsInput

SetAutoScalingGroupNames sets the AutoScalingGroupNames field's value.

func (*DescribeAutoScalingGroupsInput) SetMaxRecords

func (s *DescribeAutoScalingGroupsInput) SetMaxRecords(v int64) *DescribeAutoScalingGroupsInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeAutoScalingGroupsInput) SetNextToken

func (s *DescribeAutoScalingGroupsInput) SetNextToken(v string) *DescribeAutoScalingGroupsInput

SetNextToken sets the NextToken field's value.

func (DescribeAutoScalingGroupsInput) String

func (s DescribeAutoScalingGroupsInput) String() string

String returns the string representation

type DescribeAutoScalingGroupsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/GroupsType

type DescribeAutoScalingGroupsOutput struct {

    // The groups.
    //
    // AutoScalingGroups is a required field
    AutoScalingGroups []*Group `type:"list" required:"true"`

    // The token to use when requesting the next set of items. If there are no additional
    // items to return, the string is empty.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeAutoScalingGroupsOutput) GoString

func (s DescribeAutoScalingGroupsOutput) GoString() string

GoString returns the string representation

func (*DescribeAutoScalingGroupsOutput) SetAutoScalingGroups

func (s *DescribeAutoScalingGroupsOutput) SetAutoScalingGroups(v []*Group) *DescribeAutoScalingGroupsOutput

SetAutoScalingGroups sets the AutoScalingGroups field's value.

func (*DescribeAutoScalingGroupsOutput) SetNextToken

func (s *DescribeAutoScalingGroupsOutput) SetNextToken(v string) *DescribeAutoScalingGroupsOutput

SetNextToken sets the NextToken field's value.

func (DescribeAutoScalingGroupsOutput) String

func (s DescribeAutoScalingGroupsOutput) String() string

String returns the string representation

type DescribeAutoScalingInstancesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeAutoScalingInstancesType

type DescribeAutoScalingInstancesInput struct {

    // The instances to describe; up to 50 instance IDs. If you omit this parameter,
    // all Auto Scaling instances are described. If you specify an ID that does
    // not exist, it is ignored with no error.
    InstanceIds []*string `type:"list"`

    // The maximum number of items to return with this call. The default value is
    // 50 and the maximum value is 100.
    MaxRecords *int64 `type:"integer"`

    // The token for the next set of items to return. (You received this token from
    // a previous call.)
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeAutoScalingInstancesInput) GoString

func (s DescribeAutoScalingInstancesInput) GoString() string

GoString returns the string representation

func (*DescribeAutoScalingInstancesInput) SetInstanceIds

func (s *DescribeAutoScalingInstancesInput) SetInstanceIds(v []*string) *DescribeAutoScalingInstancesInput

SetInstanceIds sets the InstanceIds field's value.

func (*DescribeAutoScalingInstancesInput) SetMaxRecords

func (s *DescribeAutoScalingInstancesInput) SetMaxRecords(v int64) *DescribeAutoScalingInstancesInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeAutoScalingInstancesInput) SetNextToken

func (s *DescribeAutoScalingInstancesInput) SetNextToken(v string) *DescribeAutoScalingInstancesInput

SetNextToken sets the NextToken field's value.

func (DescribeAutoScalingInstancesInput) String

func (s DescribeAutoScalingInstancesInput) String() string

String returns the string representation

type DescribeAutoScalingInstancesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/InstancesType

type DescribeAutoScalingInstancesOutput struct {

    // The instances.
    AutoScalingInstances []*InstanceDetails `type:"list"`

    // The token to use when requesting the next set of items. If there are no additional
    // items to return, the string is empty.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeAutoScalingInstancesOutput) GoString

func (s DescribeAutoScalingInstancesOutput) GoString() string

GoString returns the string representation

func (*DescribeAutoScalingInstancesOutput) SetAutoScalingInstances

func (s *DescribeAutoScalingInstancesOutput) SetAutoScalingInstances(v []*InstanceDetails) *DescribeAutoScalingInstancesOutput

SetAutoScalingInstances sets the AutoScalingInstances field's value.

func (*DescribeAutoScalingInstancesOutput) SetNextToken

func (s *DescribeAutoScalingInstancesOutput) SetNextToken(v string) *DescribeAutoScalingInstancesOutput

SetNextToken sets the NextToken field's value.

func (DescribeAutoScalingInstancesOutput) String

func (s DescribeAutoScalingInstancesOutput) String() string

String returns the string representation

type DescribeAutoScalingNotificationTypesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeAutoScalingNotificationTypesInput

type DescribeAutoScalingNotificationTypesInput struct {
    // contains filtered or unexported fields
}

func (DescribeAutoScalingNotificationTypesInput) GoString

func (s DescribeAutoScalingNotificationTypesInput) GoString() string

GoString returns the string representation

func (DescribeAutoScalingNotificationTypesInput) String

func (s DescribeAutoScalingNotificationTypesInput) String() string

String returns the string representation

type DescribeAutoScalingNotificationTypesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeAutoScalingNotificationTypesAnswer

type DescribeAutoScalingNotificationTypesOutput struct {

    // The notification types.
    AutoScalingNotificationTypes []*string `type:"list"`
    // contains filtered or unexported fields
}

func (DescribeAutoScalingNotificationTypesOutput) GoString

func (s DescribeAutoScalingNotificationTypesOutput) GoString() string

GoString returns the string representation

func (*DescribeAutoScalingNotificationTypesOutput) SetAutoScalingNotificationTypes

func (s *DescribeAutoScalingNotificationTypesOutput) SetAutoScalingNotificationTypes(v []*string) *DescribeAutoScalingNotificationTypesOutput

SetAutoScalingNotificationTypes sets the AutoScalingNotificationTypes field's value.

func (DescribeAutoScalingNotificationTypesOutput) String

func (s DescribeAutoScalingNotificationTypesOutput) String() string

String returns the string representation

type DescribeLaunchConfigurationsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/LaunchConfigurationNamesType

type DescribeLaunchConfigurationsInput struct {

    // The launch configuration names. If you omit this parameter, all launch configurations
    // are described.
    LaunchConfigurationNames []*string `type:"list"`

    // The maximum number of items to return with this call. The default value is
    // 50 and the maximum value is 100.
    MaxRecords *int64 `type:"integer"`

    // The token for the next set of items to return. (You received this token from
    // a previous call.)
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeLaunchConfigurationsInput) GoString

func (s DescribeLaunchConfigurationsInput) GoString() string

GoString returns the string representation

func (*DescribeLaunchConfigurationsInput) SetLaunchConfigurationNames

func (s *DescribeLaunchConfigurationsInput) SetLaunchConfigurationNames(v []*string) *DescribeLaunchConfigurationsInput

SetLaunchConfigurationNames sets the LaunchConfigurationNames field's value.

func (*DescribeLaunchConfigurationsInput) SetMaxRecords

func (s *DescribeLaunchConfigurationsInput) SetMaxRecords(v int64) *DescribeLaunchConfigurationsInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeLaunchConfigurationsInput) SetNextToken

func (s *DescribeLaunchConfigurationsInput) SetNextToken(v string) *DescribeLaunchConfigurationsInput

SetNextToken sets the NextToken field's value.

func (DescribeLaunchConfigurationsInput) String

func (s DescribeLaunchConfigurationsInput) String() string

String returns the string representation

type DescribeLaunchConfigurationsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/LaunchConfigurationsType

type DescribeLaunchConfigurationsOutput struct {

    // The launch configurations.
    //
    // LaunchConfigurations is a required field
    LaunchConfigurations []*LaunchConfiguration `type:"list" required:"true"`

    // The token to use when requesting the next set of items. If there are no additional
    // items to return, the string is empty.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeLaunchConfigurationsOutput) GoString

func (s DescribeLaunchConfigurationsOutput) GoString() string

GoString returns the string representation

func (*DescribeLaunchConfigurationsOutput) SetLaunchConfigurations

func (s *DescribeLaunchConfigurationsOutput) SetLaunchConfigurations(v []*LaunchConfiguration) *DescribeLaunchConfigurationsOutput

SetLaunchConfigurations sets the LaunchConfigurations field's value.

func (*DescribeLaunchConfigurationsOutput) SetNextToken

func (s *DescribeLaunchConfigurationsOutput) SetNextToken(v string) *DescribeLaunchConfigurationsOutput

SetNextToken sets the NextToken field's value.

func (DescribeLaunchConfigurationsOutput) String

func (s DescribeLaunchConfigurationsOutput) String() string

String returns the string representation

type DescribeLifecycleHookTypesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLifecycleHookTypesInput

type DescribeLifecycleHookTypesInput struct {
    // contains filtered or unexported fields
}

func (DescribeLifecycleHookTypesInput) GoString

func (s DescribeLifecycleHookTypesInput) GoString() string

GoString returns the string representation

func (DescribeLifecycleHookTypesInput) String

func (s DescribeLifecycleHookTypesInput) String() string

String returns the string representation

type DescribeLifecycleHookTypesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLifecycleHookTypesAnswer

type DescribeLifecycleHookTypesOutput struct {

    // The lifecycle hook types.
    LifecycleHookTypes []*string `type:"list"`
    // contains filtered or unexported fields
}

func (DescribeLifecycleHookTypesOutput) GoString

func (s DescribeLifecycleHookTypesOutput) GoString() string

GoString returns the string representation

func (*DescribeLifecycleHookTypesOutput) SetLifecycleHookTypes

func (s *DescribeLifecycleHookTypesOutput) SetLifecycleHookTypes(v []*string) *DescribeLifecycleHookTypesOutput

SetLifecycleHookTypes sets the LifecycleHookTypes field's value.

func (DescribeLifecycleHookTypesOutput) String

func (s DescribeLifecycleHookTypesOutput) String() string

String returns the string representation

type DescribeLifecycleHooksInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLifecycleHooksType

type DescribeLifecycleHooksInput struct {

    // The name of the group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // The names of one or more lifecycle hooks. If you omit this parameter, all
    // lifecycle hooks are described.
    LifecycleHookNames []*string `type:"list"`
    // contains filtered or unexported fields
}

func (DescribeLifecycleHooksInput) GoString

func (s DescribeLifecycleHooksInput) GoString() string

GoString returns the string representation

func (*DescribeLifecycleHooksInput) SetAutoScalingGroupName

func (s *DescribeLifecycleHooksInput) SetAutoScalingGroupName(v string) *DescribeLifecycleHooksInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*DescribeLifecycleHooksInput) SetLifecycleHookNames

func (s *DescribeLifecycleHooksInput) SetLifecycleHookNames(v []*string) *DescribeLifecycleHooksInput

SetLifecycleHookNames sets the LifecycleHookNames field's value.

func (DescribeLifecycleHooksInput) String

func (s DescribeLifecycleHooksInput) String() string

String returns the string representation

func (*DescribeLifecycleHooksInput) Validate

func (s *DescribeLifecycleHooksInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeLifecycleHooksOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLifecycleHooksAnswer

type DescribeLifecycleHooksOutput struct {

    // The lifecycle hooks for the specified group.
    LifecycleHooks []*LifecycleHook `type:"list"`
    // contains filtered or unexported fields
}

func (DescribeLifecycleHooksOutput) GoString

func (s DescribeLifecycleHooksOutput) GoString() string

GoString returns the string representation

func (*DescribeLifecycleHooksOutput) SetLifecycleHooks

func (s *DescribeLifecycleHooksOutput) SetLifecycleHooks(v []*LifecycleHook) *DescribeLifecycleHooksOutput

SetLifecycleHooks sets the LifecycleHooks field's value.

func (DescribeLifecycleHooksOutput) String

func (s DescribeLifecycleHooksOutput) String() string

String returns the string representation

type DescribeLoadBalancerTargetGroupsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLoadBalancerTargetGroupsRequest

type DescribeLoadBalancerTargetGroupsInput struct {

    // The name of the Auto Scaling group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // The maximum number of items to return with this call. The default value is
    // 50 and the maximum value is 100.
    MaxRecords *int64 `type:"integer"`

    // The token for the next set of items to return. (You received this token from
    // a previous call.)
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeLoadBalancerTargetGroupsInput) GoString

func (s DescribeLoadBalancerTargetGroupsInput) GoString() string

GoString returns the string representation

func (*DescribeLoadBalancerTargetGroupsInput) SetAutoScalingGroupName

func (s *DescribeLoadBalancerTargetGroupsInput) SetAutoScalingGroupName(v string) *DescribeLoadBalancerTargetGroupsInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*DescribeLoadBalancerTargetGroupsInput) SetMaxRecords

func (s *DescribeLoadBalancerTargetGroupsInput) SetMaxRecords(v int64) *DescribeLoadBalancerTargetGroupsInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeLoadBalancerTargetGroupsInput) SetNextToken

func (s *DescribeLoadBalancerTargetGroupsInput) SetNextToken(v string) *DescribeLoadBalancerTargetGroupsInput

SetNextToken sets the NextToken field's value.

func (DescribeLoadBalancerTargetGroupsInput) String

func (s DescribeLoadBalancerTargetGroupsInput) String() string

String returns the string representation

func (*DescribeLoadBalancerTargetGroupsInput) Validate

func (s *DescribeLoadBalancerTargetGroupsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeLoadBalancerTargetGroupsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLoadBalancerTargetGroupsResponse

type DescribeLoadBalancerTargetGroupsOutput struct {

    // Information about the target groups.
    LoadBalancerTargetGroups []*LoadBalancerTargetGroupState `type:"list"`

    // The token to use when requesting the next set of items. If there are no additional
    // items to return, the string is empty.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeLoadBalancerTargetGroupsOutput) GoString

func (s DescribeLoadBalancerTargetGroupsOutput) GoString() string

GoString returns the string representation

func (*DescribeLoadBalancerTargetGroupsOutput) SetLoadBalancerTargetGroups

func (s *DescribeLoadBalancerTargetGroupsOutput) SetLoadBalancerTargetGroups(v []*LoadBalancerTargetGroupState) *DescribeLoadBalancerTargetGroupsOutput

SetLoadBalancerTargetGroups sets the LoadBalancerTargetGroups field's value.

func (*DescribeLoadBalancerTargetGroupsOutput) SetNextToken

func (s *DescribeLoadBalancerTargetGroupsOutput) SetNextToken(v string) *DescribeLoadBalancerTargetGroupsOutput

SetNextToken sets the NextToken field's value.

func (DescribeLoadBalancerTargetGroupsOutput) String

func (s DescribeLoadBalancerTargetGroupsOutput) String() string

String returns the string representation

type DescribeLoadBalancersInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLoadBalancersRequest

type DescribeLoadBalancersInput struct {

    // The name of the group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // The maximum number of items to return with this call. The default value is
    // 50 and the maximum value is 100.
    MaxRecords *int64 `type:"integer"`

    // The token for the next set of items to return. (You received this token from
    // a previous call.)
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeLoadBalancersInput) GoString

func (s DescribeLoadBalancersInput) GoString() string

GoString returns the string representation

func (*DescribeLoadBalancersInput) SetAutoScalingGroupName

func (s *DescribeLoadBalancersInput) SetAutoScalingGroupName(v string) *DescribeLoadBalancersInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*DescribeLoadBalancersInput) SetMaxRecords

func (s *DescribeLoadBalancersInput) SetMaxRecords(v int64) *DescribeLoadBalancersInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeLoadBalancersInput) SetNextToken

func (s *DescribeLoadBalancersInput) SetNextToken(v string) *DescribeLoadBalancersInput

SetNextToken sets the NextToken field's value.

func (DescribeLoadBalancersInput) String

func (s DescribeLoadBalancersInput) String() string

String returns the string representation

func (*DescribeLoadBalancersInput) Validate

func (s *DescribeLoadBalancersInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeLoadBalancersOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeLoadBalancersResponse

type DescribeLoadBalancersOutput struct {

    // The load balancers.
    LoadBalancers []*LoadBalancerState `type:"list"`

    // The token to use when requesting the next set of items. If there are no additional
    // items to return, the string is empty.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeLoadBalancersOutput) GoString

func (s DescribeLoadBalancersOutput) GoString() string

GoString returns the string representation

func (*DescribeLoadBalancersOutput) SetLoadBalancers

func (s *DescribeLoadBalancersOutput) SetLoadBalancers(v []*LoadBalancerState) *DescribeLoadBalancersOutput

SetLoadBalancers sets the LoadBalancers field's value.

func (*DescribeLoadBalancersOutput) SetNextToken

func (s *DescribeLoadBalancersOutput) SetNextToken(v string) *DescribeLoadBalancersOutput

SetNextToken sets the NextToken field's value.

func (DescribeLoadBalancersOutput) String

func (s DescribeLoadBalancersOutput) String() string

String returns the string representation

type DescribeMetricCollectionTypesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeMetricCollectionTypesInput

type DescribeMetricCollectionTypesInput struct {
    // contains filtered or unexported fields
}

func (DescribeMetricCollectionTypesInput) GoString

func (s DescribeMetricCollectionTypesInput) GoString() string

GoString returns the string representation

func (DescribeMetricCollectionTypesInput) String

func (s DescribeMetricCollectionTypesInput) String() string

String returns the string representation

type DescribeMetricCollectionTypesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeMetricCollectionTypesAnswer

type DescribeMetricCollectionTypesOutput struct {

    // The granularities for the metrics.
    Granularities []*MetricGranularityType `type:"list"`

    // One or more metrics.
    Metrics []*MetricCollectionType `type:"list"`
    // contains filtered or unexported fields
}

func (DescribeMetricCollectionTypesOutput) GoString

func (s DescribeMetricCollectionTypesOutput) GoString() string

GoString returns the string representation

func (*DescribeMetricCollectionTypesOutput) SetGranularities

func (s *DescribeMetricCollectionTypesOutput) SetGranularities(v []*MetricGranularityType) *DescribeMetricCollectionTypesOutput

SetGranularities sets the Granularities field's value.

func (*DescribeMetricCollectionTypesOutput) SetMetrics

func (s *DescribeMetricCollectionTypesOutput) SetMetrics(v []*MetricCollectionType) *DescribeMetricCollectionTypesOutput

SetMetrics sets the Metrics field's value.

func (DescribeMetricCollectionTypesOutput) String

func (s DescribeMetricCollectionTypesOutput) String() string

String returns the string representation

type DescribeNotificationConfigurationsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeNotificationConfigurationsType

type DescribeNotificationConfigurationsInput struct {

    // The name of the group.
    AutoScalingGroupNames []*string `type:"list"`

    // The maximum number of items to return with this call. The default value is
    // 50 and the maximum value is 100.
    MaxRecords *int64 `type:"integer"`

    // The token for the next set of items to return. (You received this token from
    // a previous call.)
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeNotificationConfigurationsInput) GoString

func (s DescribeNotificationConfigurationsInput) GoString() string

GoString returns the string representation

func (*DescribeNotificationConfigurationsInput) SetAutoScalingGroupNames

func (s *DescribeNotificationConfigurationsInput) SetAutoScalingGroupNames(v []*string) *DescribeNotificationConfigurationsInput

SetAutoScalingGroupNames sets the AutoScalingGroupNames field's value.

func (*DescribeNotificationConfigurationsInput) SetMaxRecords

func (s *DescribeNotificationConfigurationsInput) SetMaxRecords(v int64) *DescribeNotificationConfigurationsInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeNotificationConfigurationsInput) SetNextToken

func (s *DescribeNotificationConfigurationsInput) SetNextToken(v string) *DescribeNotificationConfigurationsInput

SetNextToken sets the NextToken field's value.

func (DescribeNotificationConfigurationsInput) String

func (s DescribeNotificationConfigurationsInput) String() string

String returns the string representation

type DescribeNotificationConfigurationsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeNotificationConfigurationsAnswer

type DescribeNotificationConfigurationsOutput struct {

    // The token to use when requesting the next set of items. If there are no additional
    // items to return, the string is empty.
    NextToken *string `type:"string"`

    // The notification configurations.
    //
    // NotificationConfigurations is a required field
    NotificationConfigurations []*NotificationConfiguration `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeNotificationConfigurationsOutput) GoString

func (s DescribeNotificationConfigurationsOutput) GoString() string

GoString returns the string representation

func (*DescribeNotificationConfigurationsOutput) SetNextToken

func (s *DescribeNotificationConfigurationsOutput) SetNextToken(v string) *DescribeNotificationConfigurationsOutput

SetNextToken sets the NextToken field's value.

func (*DescribeNotificationConfigurationsOutput) SetNotificationConfigurations

func (s *DescribeNotificationConfigurationsOutput) SetNotificationConfigurations(v []*NotificationConfiguration) *DescribeNotificationConfigurationsOutput

SetNotificationConfigurations sets the NotificationConfigurations field's value.

func (DescribeNotificationConfigurationsOutput) String

func (s DescribeNotificationConfigurationsOutput) String() string

String returns the string representation

type DescribePoliciesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribePoliciesType

type DescribePoliciesInput struct {

    // The name of the group.
    AutoScalingGroupName *string `min:"1" type:"string"`

    // The maximum number of items to be returned with each call. The default value
    // is 50 and the maximum value is 100.
    MaxRecords *int64 `type:"integer"`

    // The token for the next set of items to return. (You received this token from
    // a previous call.)
    NextToken *string `type:"string"`

    // One or more policy names or policy ARNs to be described. If you omit this
    // parameter, all policy names are described. If an group name is provided,
    // the results are limited to that group. This list is limited to 50 items.
    // If you specify an unknown policy name, it is ignored with no error.
    PolicyNames []*string `type:"list"`

    // One or more policy types. Valid values are SimpleScaling and StepScaling.
    PolicyTypes []*string `type:"list"`
    // contains filtered or unexported fields
}

func (DescribePoliciesInput) GoString

func (s DescribePoliciesInput) GoString() string

GoString returns the string representation

func (*DescribePoliciesInput) SetAutoScalingGroupName

func (s *DescribePoliciesInput) SetAutoScalingGroupName(v string) *DescribePoliciesInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*DescribePoliciesInput) SetMaxRecords

func (s *DescribePoliciesInput) SetMaxRecords(v int64) *DescribePoliciesInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribePoliciesInput) SetNextToken

func (s *DescribePoliciesInput) SetNextToken(v string) *DescribePoliciesInput

SetNextToken sets the NextToken field's value.

func (*DescribePoliciesInput) SetPolicyNames

func (s *DescribePoliciesInput) SetPolicyNames(v []*string) *DescribePoliciesInput

SetPolicyNames sets the PolicyNames field's value.

func (*DescribePoliciesInput) SetPolicyTypes

func (s *DescribePoliciesInput) SetPolicyTypes(v []*string) *DescribePoliciesInput

SetPolicyTypes sets the PolicyTypes field's value.

func (DescribePoliciesInput) String

func (s DescribePoliciesInput) String() string

String returns the string representation

func (*DescribePoliciesInput) Validate

func (s *DescribePoliciesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribePoliciesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PoliciesType

type DescribePoliciesOutput struct {

    // The token to use when requesting the next set of items. If there are no additional
    // items to return, the string is empty.
    NextToken *string `type:"string"`

    // The scaling policies.
    ScalingPolicies []*ScalingPolicy `type:"list"`
    // contains filtered or unexported fields
}

func (DescribePoliciesOutput) GoString

func (s DescribePoliciesOutput) GoString() string

GoString returns the string representation

func (*DescribePoliciesOutput) SetNextToken

func (s *DescribePoliciesOutput) SetNextToken(v string) *DescribePoliciesOutput

SetNextToken sets the NextToken field's value.

func (*DescribePoliciesOutput) SetScalingPolicies

func (s *DescribePoliciesOutput) SetScalingPolicies(v []*ScalingPolicy) *DescribePoliciesOutput

SetScalingPolicies sets the ScalingPolicies field's value.

func (DescribePoliciesOutput) String

func (s DescribePoliciesOutput) String() string

String returns the string representation

type DescribeScalingActivitiesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeScalingActivitiesType

type DescribeScalingActivitiesInput struct {

    // The activity IDs of the desired scaling activities. If you omit this parameter,
    // all activities for the past six weeks are described. If you specify an Auto
    // Scaling group, the results are limited to that group. The list of requested
    // activities cannot contain more than 50 items. If unknown activities are requested,
    // they are ignored with no error.
    ActivityIds []*string `type:"list"`

    // The name of the group.
    AutoScalingGroupName *string `min:"1" type:"string"`

    // The maximum number of items to return with this call. The default value is
    // 100.
    MaxRecords *int64 `type:"integer"`

    // The token for the next set of items to return. (You received this token from
    // a previous call.)
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeScalingActivitiesInput) GoString

func (s DescribeScalingActivitiesInput) GoString() string

GoString returns the string representation

func (*DescribeScalingActivitiesInput) SetActivityIds

func (s *DescribeScalingActivitiesInput) SetActivityIds(v []*string) *DescribeScalingActivitiesInput

SetActivityIds sets the ActivityIds field's value.

func (*DescribeScalingActivitiesInput) SetAutoScalingGroupName

func (s *DescribeScalingActivitiesInput) SetAutoScalingGroupName(v string) *DescribeScalingActivitiesInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*DescribeScalingActivitiesInput) SetMaxRecords

func (s *DescribeScalingActivitiesInput) SetMaxRecords(v int64) *DescribeScalingActivitiesInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeScalingActivitiesInput) SetNextToken

func (s *DescribeScalingActivitiesInput) SetNextToken(v string) *DescribeScalingActivitiesInput

SetNextToken sets the NextToken field's value.

func (DescribeScalingActivitiesInput) String

func (s DescribeScalingActivitiesInput) String() string

String returns the string representation

func (*DescribeScalingActivitiesInput) Validate

func (s *DescribeScalingActivitiesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeScalingActivitiesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ActivitiesType

type DescribeScalingActivitiesOutput struct {

    // The scaling activities. Activities are sorted by start time. Activities still
    // in progress are described first.
    //
    // Activities is a required field
    Activities []*Activity `type:"list" required:"true"`

    // The token to use when requesting the next set of items. If there are no additional
    // items to return, the string is empty.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeScalingActivitiesOutput) GoString

func (s DescribeScalingActivitiesOutput) GoString() string

GoString returns the string representation

func (*DescribeScalingActivitiesOutput) SetActivities

func (s *DescribeScalingActivitiesOutput) SetActivities(v []*Activity) *DescribeScalingActivitiesOutput

SetActivities sets the Activities field's value.

func (*DescribeScalingActivitiesOutput) SetNextToken

func (s *DescribeScalingActivitiesOutput) SetNextToken(v string) *DescribeScalingActivitiesOutput

SetNextToken sets the NextToken field's value.

func (DescribeScalingActivitiesOutput) String

func (s DescribeScalingActivitiesOutput) String() string

String returns the string representation

type DescribeScalingProcessTypesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeScalingProcessTypesInput

type DescribeScalingProcessTypesInput struct {
    // contains filtered or unexported fields
}

func (DescribeScalingProcessTypesInput) GoString

func (s DescribeScalingProcessTypesInput) GoString() string

GoString returns the string representation

func (DescribeScalingProcessTypesInput) String

func (s DescribeScalingProcessTypesInput) String() string

String returns the string representation

type DescribeScalingProcessTypesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ProcessesType

type DescribeScalingProcessTypesOutput struct {

    // The names of the process types.
    Processes []*ProcessType `type:"list"`
    // contains filtered or unexported fields
}

func (DescribeScalingProcessTypesOutput) GoString

func (s DescribeScalingProcessTypesOutput) GoString() string

GoString returns the string representation

func (*DescribeScalingProcessTypesOutput) SetProcesses

func (s *DescribeScalingProcessTypesOutput) SetProcesses(v []*ProcessType) *DescribeScalingProcessTypesOutput

SetProcesses sets the Processes field's value.

func (DescribeScalingProcessTypesOutput) String

func (s DescribeScalingProcessTypesOutput) String() string

String returns the string representation

type DescribeScheduledActionsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeScheduledActionsType

type DescribeScheduledActionsInput struct {

    // The name of the group.
    AutoScalingGroupName *string `min:"1" type:"string"`

    // The latest scheduled start time to return. If scheduled action names are
    // provided, this parameter is ignored.
    EndTime *time.Time `type:"timestamp" timestampFormat:"iso8601"`

    // The maximum number of items to return with this call. The default value is
    // 50 and the maximum value is 100.
    MaxRecords *int64 `type:"integer"`

    // The token for the next set of items to return. (You received this token from
    // a previous call.)
    NextToken *string `type:"string"`

    // Describes one or more scheduled actions. If you omit this parameter, all
    // scheduled actions are described. If you specify an unknown scheduled action,
    // it is ignored with no error.
    //
    // You can describe up to a maximum of 50 instances with a single call. If there
    // are more items to return, the call returns a token. To get the next set of
    // items, repeat the call with the returned token.
    ScheduledActionNames []*string `type:"list"`

    // The earliest scheduled start time to return. If scheduled action names are
    // provided, this parameter is ignored.
    StartTime *time.Time `type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (DescribeScheduledActionsInput) GoString

func (s DescribeScheduledActionsInput) GoString() string

GoString returns the string representation

func (*DescribeScheduledActionsInput) SetAutoScalingGroupName

func (s *DescribeScheduledActionsInput) SetAutoScalingGroupName(v string) *DescribeScheduledActionsInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*DescribeScheduledActionsInput) SetEndTime

func (s *DescribeScheduledActionsInput) SetEndTime(v time.Time) *DescribeScheduledActionsInput

SetEndTime sets the EndTime field's value.

func (*DescribeScheduledActionsInput) SetMaxRecords

func (s *DescribeScheduledActionsInput) SetMaxRecords(v int64) *DescribeScheduledActionsInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeScheduledActionsInput) SetNextToken

func (s *DescribeScheduledActionsInput) SetNextToken(v string) *DescribeScheduledActionsInput

SetNextToken sets the NextToken field's value.

func (*DescribeScheduledActionsInput) SetScheduledActionNames

func (s *DescribeScheduledActionsInput) SetScheduledActionNames(v []*string) *DescribeScheduledActionsInput

SetScheduledActionNames sets the ScheduledActionNames field's value.

func (*DescribeScheduledActionsInput) SetStartTime

func (s *DescribeScheduledActionsInput) SetStartTime(v time.Time) *DescribeScheduledActionsInput

SetStartTime sets the StartTime field's value.

func (DescribeScheduledActionsInput) String

func (s DescribeScheduledActionsInput) String() string

String returns the string representation

func (*DescribeScheduledActionsInput) Validate

func (s *DescribeScheduledActionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeScheduledActionsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ScheduledActionsType

type DescribeScheduledActionsOutput struct {

    // The token to use when requesting the next set of items. If there are no additional
    // items to return, the string is empty.
    NextToken *string `type:"string"`

    // The scheduled actions.
    ScheduledUpdateGroupActions []*ScheduledUpdateGroupAction `type:"list"`
    // contains filtered or unexported fields
}

func (DescribeScheduledActionsOutput) GoString

func (s DescribeScheduledActionsOutput) GoString() string

GoString returns the string representation

func (*DescribeScheduledActionsOutput) SetNextToken

func (s *DescribeScheduledActionsOutput) SetNextToken(v string) *DescribeScheduledActionsOutput

SetNextToken sets the NextToken field's value.

func (*DescribeScheduledActionsOutput) SetScheduledUpdateGroupActions

func (s *DescribeScheduledActionsOutput) SetScheduledUpdateGroupActions(v []*ScheduledUpdateGroupAction) *DescribeScheduledActionsOutput

SetScheduledUpdateGroupActions sets the ScheduledUpdateGroupActions field's value.

func (DescribeScheduledActionsOutput) String

func (s DescribeScheduledActionsOutput) String() string

String returns the string representation

type DescribeTagsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeTagsType

type DescribeTagsInput struct {

    // A filter used to scope the tags to return.
    Filters []*Filter `type:"list"`

    // The maximum number of items to return with this call. The default value is
    // 50 and the maximum value is 100.
    MaxRecords *int64 `type:"integer"`

    // The token for the next set of items to return. (You received this token from
    // a previous call.)
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeTagsInput) GoString

func (s DescribeTagsInput) GoString() string

GoString returns the string representation

func (*DescribeTagsInput) SetFilters

func (s *DescribeTagsInput) SetFilters(v []*Filter) *DescribeTagsInput

SetFilters sets the Filters field's value.

func (*DescribeTagsInput) SetMaxRecords

func (s *DescribeTagsInput) SetMaxRecords(v int64) *DescribeTagsInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeTagsInput) SetNextToken

func (s *DescribeTagsInput) SetNextToken(v string) *DescribeTagsInput

SetNextToken sets the NextToken field's value.

func (DescribeTagsInput) String

func (s DescribeTagsInput) String() string

String returns the string representation

type DescribeTagsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/TagsType

type DescribeTagsOutput struct {

    // The token to use when requesting the next set of items. If there are no additional
    // items to return, the string is empty.
    NextToken *string `type:"string"`

    // One or more tags.
    Tags []*TagDescription `type:"list"`
    // contains filtered or unexported fields
}

func (DescribeTagsOutput) GoString

func (s DescribeTagsOutput) GoString() string

GoString returns the string representation

func (*DescribeTagsOutput) SetNextToken

func (s *DescribeTagsOutput) SetNextToken(v string) *DescribeTagsOutput

SetNextToken sets the NextToken field's value.

func (*DescribeTagsOutput) SetTags

func (s *DescribeTagsOutput) SetTags(v []*TagDescription) *DescribeTagsOutput

SetTags sets the Tags field's value.

func (DescribeTagsOutput) String

func (s DescribeTagsOutput) String() string

String returns the string representation

type DescribeTerminationPolicyTypesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeTerminationPolicyTypesInput

type DescribeTerminationPolicyTypesInput struct {
    // contains filtered or unexported fields
}

func (DescribeTerminationPolicyTypesInput) GoString

func (s DescribeTerminationPolicyTypesInput) GoString() string

GoString returns the string representation

func (DescribeTerminationPolicyTypesInput) String

func (s DescribeTerminationPolicyTypesInput) String() string

String returns the string representation

type DescribeTerminationPolicyTypesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeTerminationPolicyTypesAnswer

type DescribeTerminationPolicyTypesOutput struct {

    // The termination policies supported by Auto Scaling (OldestInstance, OldestLaunchConfiguration,
    // NewestInstance, ClosestToNextInstanceHour, and Default).
    TerminationPolicyTypes []*string `type:"list"`
    // contains filtered or unexported fields
}

func (DescribeTerminationPolicyTypesOutput) GoString

func (s DescribeTerminationPolicyTypesOutput) GoString() string

GoString returns the string representation

func (*DescribeTerminationPolicyTypesOutput) SetTerminationPolicyTypes

func (s *DescribeTerminationPolicyTypesOutput) SetTerminationPolicyTypes(v []*string) *DescribeTerminationPolicyTypesOutput

SetTerminationPolicyTypes sets the TerminationPolicyTypes field's value.

func (DescribeTerminationPolicyTypesOutput) String

func (s DescribeTerminationPolicyTypesOutput) String() string

String returns the string representation

type DetachInstancesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DetachInstancesQuery

type DetachInstancesInput struct {

    // The name of the group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // One or more instance IDs.
    InstanceIds []*string `type:"list"`

    // If True, the Auto Scaling group decrements the desired capacity value by
    // the number of instances detached.
    //
    // ShouldDecrementDesiredCapacity is a required field
    ShouldDecrementDesiredCapacity *bool `type:"boolean" required:"true"`
    // contains filtered or unexported fields
}

func (DetachInstancesInput) GoString

func (s DetachInstancesInput) GoString() string

GoString returns the string representation

func (*DetachInstancesInput) SetAutoScalingGroupName

func (s *DetachInstancesInput) SetAutoScalingGroupName(v string) *DetachInstancesInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*DetachInstancesInput) SetInstanceIds

func (s *DetachInstancesInput) SetInstanceIds(v []*string) *DetachInstancesInput

SetInstanceIds sets the InstanceIds field's value.

func (*DetachInstancesInput) SetShouldDecrementDesiredCapacity

func (s *DetachInstancesInput) SetShouldDecrementDesiredCapacity(v bool) *DetachInstancesInput

SetShouldDecrementDesiredCapacity sets the ShouldDecrementDesiredCapacity field's value.

func (DetachInstancesInput) String

func (s DetachInstancesInput) String() string

String returns the string representation

func (*DetachInstancesInput) Validate

func (s *DetachInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DetachInstancesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DetachInstancesAnswer

type DetachInstancesOutput struct {

    // The activities related to detaching the instances from the Auto Scaling group.
    Activities []*Activity `type:"list"`
    // contains filtered or unexported fields
}

func (DetachInstancesOutput) GoString

func (s DetachInstancesOutput) GoString() string

GoString returns the string representation

func (*DetachInstancesOutput) SetActivities

func (s *DetachInstancesOutput) SetActivities(v []*Activity) *DetachInstancesOutput

SetActivities sets the Activities field's value.

func (DetachInstancesOutput) String

func (s DetachInstancesOutput) String() string

String returns the string representation

type DetachLoadBalancerTargetGroupsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DetachLoadBalancerTargetGroupsType

type DetachLoadBalancerTargetGroupsInput struct {

    // The name of the Auto Scaling group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // The Amazon Resource Names (ARN) of the target groups.
    //
    // TargetGroupARNs is a required field
    TargetGroupARNs []*string `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (DetachLoadBalancerTargetGroupsInput) GoString

func (s DetachLoadBalancerTargetGroupsInput) GoString() string

GoString returns the string representation

func (*DetachLoadBalancerTargetGroupsInput) SetAutoScalingGroupName

func (s *DetachLoadBalancerTargetGroupsInput) SetAutoScalingGroupName(v string) *DetachLoadBalancerTargetGroupsInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*DetachLoadBalancerTargetGroupsInput) SetTargetGroupARNs

func (s *DetachLoadBalancerTargetGroupsInput) SetTargetGroupARNs(v []*string) *DetachLoadBalancerTargetGroupsInput

SetTargetGroupARNs sets the TargetGroupARNs field's value.

func (DetachLoadBalancerTargetGroupsInput) String

func (s DetachLoadBalancerTargetGroupsInput) String() string

String returns the string representation

func (*DetachLoadBalancerTargetGroupsInput) Validate

func (s *DetachLoadBalancerTargetGroupsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DetachLoadBalancerTargetGroupsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DetachLoadBalancerTargetGroupsResultType

type DetachLoadBalancerTargetGroupsOutput struct {
    // contains filtered or unexported fields
}

func (DetachLoadBalancerTargetGroupsOutput) GoString

func (s DetachLoadBalancerTargetGroupsOutput) GoString() string

GoString returns the string representation

func (DetachLoadBalancerTargetGroupsOutput) String

func (s DetachLoadBalancerTargetGroupsOutput) String() string

String returns the string representation

type DetachLoadBalancersInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DetachLoadBalancersType

type DetachLoadBalancersInput struct {

    // The name of the Auto Scaling group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // One or more load balancer names.
    //
    // LoadBalancerNames is a required field
    LoadBalancerNames []*string `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (DetachLoadBalancersInput) GoString

func (s DetachLoadBalancersInput) GoString() string

GoString returns the string representation

func (*DetachLoadBalancersInput) SetAutoScalingGroupName

func (s *DetachLoadBalancersInput) SetAutoScalingGroupName(v string) *DetachLoadBalancersInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*DetachLoadBalancersInput) SetLoadBalancerNames

func (s *DetachLoadBalancersInput) SetLoadBalancerNames(v []*string) *DetachLoadBalancersInput

SetLoadBalancerNames sets the LoadBalancerNames field's value.

func (DetachLoadBalancersInput) String

func (s DetachLoadBalancersInput) String() string

String returns the string representation

func (*DetachLoadBalancersInput) Validate

func (s *DetachLoadBalancersInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DetachLoadBalancersOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DetachLoadBalancersResultType

type DetachLoadBalancersOutput struct {
    // contains filtered or unexported fields
}

func (DetachLoadBalancersOutput) GoString

func (s DetachLoadBalancersOutput) GoString() string

GoString returns the string representation

func (DetachLoadBalancersOutput) String

func (s DetachLoadBalancersOutput) String() string

String returns the string representation

type DisableMetricsCollectionInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DisableMetricsCollectionQuery

type DisableMetricsCollectionInput struct {

    // The name or Amazon Resource Name (ARN) of the group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // One or more of the following metrics. If you omit this parameter, all metrics
    // are disabled.
    //
    //    * GroupMinSize
    //
    //    * GroupMaxSize
    //
    //    * GroupDesiredCapacity
    //
    //    * GroupInServiceInstances
    //
    //    * GroupPendingInstances
    //
    //    * GroupStandbyInstances
    //
    //    * GroupTerminatingInstances
    //
    //    * GroupTotalInstances
    Metrics []*string `type:"list"`
    // contains filtered or unexported fields
}

func (DisableMetricsCollectionInput) GoString

func (s DisableMetricsCollectionInput) GoString() string

GoString returns the string representation

func (*DisableMetricsCollectionInput) SetAutoScalingGroupName

func (s *DisableMetricsCollectionInput) SetAutoScalingGroupName(v string) *DisableMetricsCollectionInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*DisableMetricsCollectionInput) SetMetrics

func (s *DisableMetricsCollectionInput) SetMetrics(v []*string) *DisableMetricsCollectionInput

SetMetrics sets the Metrics field's value.

func (DisableMetricsCollectionInput) String

func (s DisableMetricsCollectionInput) String() string

String returns the string representation

func (*DisableMetricsCollectionInput) Validate

func (s *DisableMetricsCollectionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DisableMetricsCollectionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DisableMetricsCollectionOutput

type DisableMetricsCollectionOutput struct {
    // contains filtered or unexported fields
}

func (DisableMetricsCollectionOutput) GoString

func (s DisableMetricsCollectionOutput) GoString() string

GoString returns the string representation

func (DisableMetricsCollectionOutput) String

func (s DisableMetricsCollectionOutput) String() string

String returns the string representation

type Ebs

Describes an Amazon EBS volume. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/Ebs

type Ebs struct {

    // Indicates whether the volume is deleted on instance termination.
    //
    // Default: true
    DeleteOnTermination *bool `type:"boolean"`

    // Indicates whether the volume should be encrypted. Encrypted EBS volumes must
    // be attached to instances that support Amazon EBS encryption. Volumes that
    // are created from encrypted snapshots are automatically encrypted. There is
    // no way to create an encrypted volume from an unencrypted snapshot or an unencrypted
    // volume from an encrypted snapshot. For more information, see Amazon EBS Encryption
    // (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html) in
    // the Amazon Elastic Compute Cloud User Guide.
    Encrypted *bool `type:"boolean"`

    // The number of I/O operations per second (IOPS) to provision for the volume.
    //
    // Constraint: Required when the volume type is io1.
    Iops *int64 `min:"100" type:"integer"`

    // The ID of the snapshot.
    SnapshotId *string `min:"1" type:"string"`

    // The volume size, in GiB. For standard volumes, specify a value from 1 to
    // 1,024. For io1 volumes, specify a value from 4 to 16,384. For gp2 volumes,
    // specify a value from 1 to 16,384. If you specify a snapshot, the volume size
    // must be equal to or larger than the snapshot size.
    //
    // Default: If you create a volume from a snapshot and you don't specify a volume
    // size, the default is the snapshot size.
    VolumeSize *int64 `min:"1" type:"integer"`

    // The volume type. For more information, see Amazon EBS Volume Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    //
    // Valid values: standard | io1 | gp2
    //
    // Default: standard
    VolumeType *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (Ebs) GoString

func (s Ebs) GoString() string

GoString returns the string representation

func (*Ebs) SetDeleteOnTermination

func (s *Ebs) SetDeleteOnTermination(v bool) *Ebs

SetDeleteOnTermination sets the DeleteOnTermination field's value.

func (*Ebs) SetEncrypted

func (s *Ebs) SetEncrypted(v bool) *Ebs

SetEncrypted sets the Encrypted field's value.

func (*Ebs) SetIops

func (s *Ebs) SetIops(v int64) *Ebs

SetIops sets the Iops field's value.

func (*Ebs) SetSnapshotId

func (s *Ebs) SetSnapshotId(v string) *Ebs

SetSnapshotId sets the SnapshotId field's value.

func (*Ebs) SetVolumeSize

func (s *Ebs) SetVolumeSize(v int64) *Ebs

SetVolumeSize sets the VolumeSize field's value.

func (*Ebs) SetVolumeType

func (s *Ebs) SetVolumeType(v string) *Ebs

SetVolumeType sets the VolumeType field's value.

func (Ebs) String

func (s Ebs) String() string

String returns the string representation

func (*Ebs) Validate

func (s *Ebs) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type EnableMetricsCollectionInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/EnableMetricsCollectionQuery

type EnableMetricsCollectionInput struct {

    // The name or ARN of the Auto Scaling group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // The granularity to associate with the metrics to collect. The only valid
    // value is 1Minute.
    //
    // Granularity is a required field
    Granularity *string `min:"1" type:"string" required:"true"`

    // One or more of the following metrics. If you omit this parameter, all metrics
    // are enabled.
    //
    //    * GroupMinSize
    //
    //    * GroupMaxSize
    //
    //    * GroupDesiredCapacity
    //
    //    * GroupInServiceInstances
    //
    //    * GroupPendingInstances
    //
    //    * GroupStandbyInstances
    //
    //    * GroupTerminatingInstances
    //
    //    * GroupTotalInstances
    Metrics []*string `type:"list"`
    // contains filtered or unexported fields
}

func (EnableMetricsCollectionInput) GoString

func (s EnableMetricsCollectionInput) GoString() string

GoString returns the string representation

func (*EnableMetricsCollectionInput) SetAutoScalingGroupName

func (s *EnableMetricsCollectionInput) SetAutoScalingGroupName(v string) *EnableMetricsCollectionInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*EnableMetricsCollectionInput) SetGranularity

func (s *EnableMetricsCollectionInput) SetGranularity(v string) *EnableMetricsCollectionInput

SetGranularity sets the Granularity field's value.

func (*EnableMetricsCollectionInput) SetMetrics

func (s *EnableMetricsCollectionInput) SetMetrics(v []*string) *EnableMetricsCollectionInput

SetMetrics sets the Metrics field's value.

func (EnableMetricsCollectionInput) String

func (s EnableMetricsCollectionInput) String() string

String returns the string representation

func (*EnableMetricsCollectionInput) Validate

func (s *EnableMetricsCollectionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type EnableMetricsCollectionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/EnableMetricsCollectionOutput

type EnableMetricsCollectionOutput struct {
    // contains filtered or unexported fields
}

func (EnableMetricsCollectionOutput) GoString

func (s EnableMetricsCollectionOutput) GoString() string

GoString returns the string representation

func (EnableMetricsCollectionOutput) String

func (s EnableMetricsCollectionOutput) String() string

String returns the string representation

type EnabledMetric

Describes an enabled metric. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/EnabledMetric

type EnabledMetric struct {

    // The granularity of the metric. The only valid value is 1Minute.
    Granularity *string `min:"1" type:"string"`

    // One of the following metrics:
    //
    //    * GroupMinSize
    //
    //    * GroupMaxSize
    //
    //    * GroupDesiredCapacity
    //
    //    * GroupInServiceInstances
    //
    //    * GroupPendingInstances
    //
    //    * GroupStandbyInstances
    //
    //    * GroupTerminatingInstances
    //
    //    * GroupTotalInstances
    Metric *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (EnabledMetric) GoString

func (s EnabledMetric) GoString() string

GoString returns the string representation

func (*EnabledMetric) SetGranularity

func (s *EnabledMetric) SetGranularity(v string) *EnabledMetric

SetGranularity sets the Granularity field's value.

func (*EnabledMetric) SetMetric

func (s *EnabledMetric) SetMetric(v string) *EnabledMetric

SetMetric sets the Metric field's value.

func (EnabledMetric) String

func (s EnabledMetric) String() string

String returns the string representation

type EnterStandbyInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/EnterStandbyQuery

type EnterStandbyInput struct {

    // The name of the Auto Scaling group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // One or more instances to move into Standby mode. You must specify at least
    // one instance ID.
    InstanceIds []*string `type:"list"`

    // Specifies whether the instances moved to Standby mode count as part of the
    // Auto Scaling group's desired capacity. If set, the desired capacity for the
    // Auto Scaling group decrements by the number of instances moved to Standby
    // mode.
    //
    // ShouldDecrementDesiredCapacity is a required field
    ShouldDecrementDesiredCapacity *bool `type:"boolean" required:"true"`
    // contains filtered or unexported fields
}

func (EnterStandbyInput) GoString

func (s EnterStandbyInput) GoString() string

GoString returns the string representation

func (*EnterStandbyInput) SetAutoScalingGroupName

func (s *EnterStandbyInput) SetAutoScalingGroupName(v string) *EnterStandbyInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*EnterStandbyInput) SetInstanceIds

func (s *EnterStandbyInput) SetInstanceIds(v []*string) *EnterStandbyInput

SetInstanceIds sets the InstanceIds field's value.

func (*EnterStandbyInput) SetShouldDecrementDesiredCapacity

func (s *EnterStandbyInput) SetShouldDecrementDesiredCapacity(v bool) *EnterStandbyInput

SetShouldDecrementDesiredCapacity sets the ShouldDecrementDesiredCapacity field's value.

func (EnterStandbyInput) String

func (s EnterStandbyInput) String() string

String returns the string representation

func (*EnterStandbyInput) Validate

func (s *EnterStandbyInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type EnterStandbyOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/EnterStandbyAnswer

type EnterStandbyOutput struct {

    // The activities related to moving instances into Standby mode.
    Activities []*Activity `type:"list"`
    // contains filtered or unexported fields
}

func (EnterStandbyOutput) GoString

func (s EnterStandbyOutput) GoString() string

GoString returns the string representation

func (*EnterStandbyOutput) SetActivities

func (s *EnterStandbyOutput) SetActivities(v []*Activity) *EnterStandbyOutput

SetActivities sets the Activities field's value.

func (EnterStandbyOutput) String

func (s EnterStandbyOutput) String() string

String returns the string representation

type ExecutePolicyInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ExecutePolicyType

type ExecutePolicyInput struct {

    // The name or Amazon Resource Name (ARN) of the Auto Scaling group.
    AutoScalingGroupName *string `min:"1" type:"string"`

    // The breach threshold for the alarm.
    //
    // This parameter is required if the policy type is StepScaling and not supported
    // otherwise.
    BreachThreshold *float64 `type:"double"`

    // If this parameter is true, Auto Scaling waits for the cooldown period to
    // complete before executing the policy. Otherwise, Auto Scaling executes the
    // policy without waiting for the cooldown period to complete.
    //
    // This parameter is not supported if the policy type is StepScaling.
    //
    // For more information, see Auto Scaling Cooldowns (http://docs.aws.amazon.com/autoscaling/latest/userguide/Cooldown.html)
    // in the Auto Scaling User Guide.
    HonorCooldown *bool `type:"boolean"`

    // The metric value to compare to BreachThreshold. This enables you to execute
    // a policy of type StepScaling and determine which step adjustment to use.
    // For example, if the breach threshold is 50 and you want to use a step adjustment
    // with a lower bound of 0 and an upper bound of 10, you can set the metric
    // value to 59.
    //
    // If you specify a metric value that doesn't correspond to a step adjustment
    // for the policy, the call returns an error.
    //
    // This parameter is required if the policy type is StepScaling and not supported
    // otherwise.
    MetricValue *float64 `type:"double"`

    // The name or ARN of the policy.
    //
    // PolicyName is a required field
    PolicyName *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ExecutePolicyInput) GoString

func (s ExecutePolicyInput) GoString() string

GoString returns the string representation

func (*ExecutePolicyInput) SetAutoScalingGroupName

func (s *ExecutePolicyInput) SetAutoScalingGroupName(v string) *ExecutePolicyInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*ExecutePolicyInput) SetBreachThreshold

func (s *ExecutePolicyInput) SetBreachThreshold(v float64) *ExecutePolicyInput

SetBreachThreshold sets the BreachThreshold field's value.

func (*ExecutePolicyInput) SetHonorCooldown

func (s *ExecutePolicyInput) SetHonorCooldown(v bool) *ExecutePolicyInput

SetHonorCooldown sets the HonorCooldown field's value.

func (*ExecutePolicyInput) SetMetricValue

func (s *ExecutePolicyInput) SetMetricValue(v float64) *ExecutePolicyInput

SetMetricValue sets the MetricValue field's value.

func (*ExecutePolicyInput) SetPolicyName

func (s *ExecutePolicyInput) SetPolicyName(v string) *ExecutePolicyInput

SetPolicyName sets the PolicyName field's value.

func (ExecutePolicyInput) String

func (s ExecutePolicyInput) String() string

String returns the string representation

func (*ExecutePolicyInput) Validate

func (s *ExecutePolicyInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ExecutePolicyOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ExecutePolicyOutput

type ExecutePolicyOutput struct {
    // contains filtered or unexported fields
}

func (ExecutePolicyOutput) GoString

func (s ExecutePolicyOutput) GoString() string

GoString returns the string representation

func (ExecutePolicyOutput) String

func (s ExecutePolicyOutput) String() string

String returns the string representation

type ExitStandbyInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ExitStandbyQuery

type ExitStandbyInput struct {

    // The name of the Auto Scaling group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // One or more instance IDs. You must specify at least one instance ID.
    InstanceIds []*string `type:"list"`
    // contains filtered or unexported fields
}

func (ExitStandbyInput) GoString

func (s ExitStandbyInput) GoString() string

GoString returns the string representation

func (*ExitStandbyInput) SetAutoScalingGroupName

func (s *ExitStandbyInput) SetAutoScalingGroupName(v string) *ExitStandbyInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*ExitStandbyInput) SetInstanceIds

func (s *ExitStandbyInput) SetInstanceIds(v []*string) *ExitStandbyInput

SetInstanceIds sets the InstanceIds field's value.

func (ExitStandbyInput) String

func (s ExitStandbyInput) String() string

String returns the string representation

func (*ExitStandbyInput) Validate

func (s *ExitStandbyInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ExitStandbyOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ExitStandbyAnswer

type ExitStandbyOutput struct {

    // The activities related to moving instances out of Standby mode.
    Activities []*Activity `type:"list"`
    // contains filtered or unexported fields
}

func (ExitStandbyOutput) GoString

func (s ExitStandbyOutput) GoString() string

GoString returns the string representation

func (*ExitStandbyOutput) SetActivities

func (s *ExitStandbyOutput) SetActivities(v []*Activity) *ExitStandbyOutput

SetActivities sets the Activities field's value.

func (ExitStandbyOutput) String

func (s ExitStandbyOutput) String() string

String returns the string representation

type Filter

Describes a filter. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/Filter

type Filter struct {

    // The name of the filter. The valid values are: "auto-scaling-group", "key",
    // "value", and "propagate-at-launch".
    Name *string `type:"string"`

    // The value of the filter.
    Values []*string `type:"list"`
    // contains filtered or unexported fields
}

func (Filter) GoString

func (s Filter) GoString() string

GoString returns the string representation

func (*Filter) SetName

func (s *Filter) SetName(v string) *Filter

SetName sets the Name field's value.

func (*Filter) SetValues

func (s *Filter) SetValues(v []*string) *Filter

SetValues sets the Values field's value.

func (Filter) String

func (s Filter) String() string

String returns the string representation

type Group

Describes an Auto Scaling group. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/AutoScalingGroup

type Group struct {

    // The Amazon Resource Name (ARN) of the group.
    AutoScalingGroupARN *string `min:"1" type:"string"`

    // The name of the group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // One or more Availability Zones for the group.
    //
    // AvailabilityZones is a required field
    AvailabilityZones []*string `min:"1" type:"list" required:"true"`

    // The date and time the group was created.
    //
    // CreatedTime is a required field
    CreatedTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"`

    // The amount of time, in seconds, after a scaling activity completes before
    // another scaling activity can start.
    //
    // DefaultCooldown is a required field
    DefaultCooldown *int64 `type:"integer" required:"true"`

    // The desired size of the group.
    //
    // DesiredCapacity is a required field
    DesiredCapacity *int64 `type:"integer" required:"true"`

    // The metrics enabled for the group.
    EnabledMetrics []*EnabledMetric `type:"list"`

    // The amount of time, in seconds, that Auto Scaling waits before checking the
    // health status of an EC2 instance that has come into service.
    HealthCheckGracePeriod *int64 `type:"integer"`

    // The service to use for the health checks. The valid values are EC2 and ELB.
    //
    // HealthCheckType is a required field
    HealthCheckType *string `min:"1" type:"string" required:"true"`

    // The EC2 instances associated with the group.
    Instances []*Instance `type:"list"`

    // The name of the associated launch configuration.
    LaunchConfigurationName *string `min:"1" type:"string"`

    // One or more load balancers associated with the group.
    LoadBalancerNames []*string `type:"list"`

    // The maximum size of the group.
    //
    // MaxSize is a required field
    MaxSize *int64 `type:"integer" required:"true"`

    // The minimum size of the group.
    //
    // MinSize is a required field
    MinSize *int64 `type:"integer" required:"true"`

    // Indicates whether newly launched instances are protected from termination
    // by Auto Scaling when scaling in.
    NewInstancesProtectedFromScaleIn *bool `type:"boolean"`

    // The name of the placement group into which you'll launch your instances,
    // if any. For more information, see Placement Groups (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    PlacementGroup *string `min:"1" type:"string"`

    // The current state of the group when DeleteAutoScalingGroup is in progress.
    Status *string `min:"1" type:"string"`

    // The suspended processes associated with the group.
    SuspendedProcesses []*SuspendedProcess `type:"list"`

    // The tags for the group.
    Tags []*TagDescription `type:"list"`

    // The Amazon Resource Names (ARN) of the target groups for your load balancer.
    TargetGroupARNs []*string `type:"list"`

    // The termination policies for the group.
    TerminationPolicies []*string `type:"list"`

    // One or more subnet IDs, if applicable, separated by commas.
    //
    // If you specify VPCZoneIdentifier and AvailabilityZones, ensure that the Availability
    // Zones of the subnets match the values for AvailabilityZones.
    VPCZoneIdentifier *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (Group) GoString

func (s Group) GoString() string

GoString returns the string representation

func (*Group) SetAutoScalingGroupARN

func (s *Group) SetAutoScalingGroupARN(v string) *Group

SetAutoScalingGroupARN sets the AutoScalingGroupARN field's value.

func (*Group) SetAutoScalingGroupName

func (s *Group) SetAutoScalingGroupName(v string) *Group

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*Group) SetAvailabilityZones

func (s *Group) SetAvailabilityZones(v []*string) *Group

SetAvailabilityZones sets the AvailabilityZones field's value.

func (*Group) SetCreatedTime

func (s *Group) SetCreatedTime(v time.Time) *Group

SetCreatedTime sets the CreatedTime field's value.

func (*Group) SetDefaultCooldown

func (s *Group) SetDefaultCooldown(v int64) *Group

SetDefaultCooldown sets the DefaultCooldown field's value.

func (*Group) SetDesiredCapacity

func (s *Group) SetDesiredCapacity(v int64) *Group

SetDesiredCapacity sets the DesiredCapacity field's value.

func (*Group) SetEnabledMetrics

func (s *Group) SetEnabledMetrics(v []*EnabledMetric) *Group

SetEnabledMetrics sets the EnabledMetrics field's value.

func (*Group) SetHealthCheckGracePeriod

func (s *Group) SetHealthCheckGracePeriod(v int64) *Group

SetHealthCheckGracePeriod sets the HealthCheckGracePeriod field's value.

func (*Group) SetHealthCheckType

func (s *Group) SetHealthCheckType(v string) *Group

SetHealthCheckType sets the HealthCheckType field's value.

func (*Group) SetInstances

func (s *Group) SetInstances(v []*Instance) *Group

SetInstances sets the Instances field's value.

func (*Group) SetLaunchConfigurationName

func (s *Group) SetLaunchConfigurationName(v string) *Group

SetLaunchConfigurationName sets the LaunchConfigurationName field's value.

func (*Group) SetLoadBalancerNames

func (s *Group) SetLoadBalancerNames(v []*string) *Group

SetLoadBalancerNames sets the LoadBalancerNames field's value.

func (*Group) SetMaxSize

func (s *Group) SetMaxSize(v int64) *Group

SetMaxSize sets the MaxSize field's value.

func (*Group) SetMinSize

func (s *Group) SetMinSize(v int64) *Group

SetMinSize sets the MinSize field's value.

func (*Group) SetNewInstancesProtectedFromScaleIn

func (s *Group) SetNewInstancesProtectedFromScaleIn(v bool) *Group

SetNewInstancesProtectedFromScaleIn sets the NewInstancesProtectedFromScaleIn field's value.

func (*Group) SetPlacementGroup

func (s *Group) SetPlacementGroup(v string) *Group

SetPlacementGroup sets the PlacementGroup field's value.

func (*Group) SetStatus

func (s *Group) SetStatus(v string) *Group

SetStatus sets the Status field's value.

func (*Group) SetSuspendedProcesses

func (s *Group) SetSuspendedProcesses(v []*SuspendedProcess) *Group

SetSuspendedProcesses sets the SuspendedProcesses field's value.

func (*Group) SetTags

func (s *Group) SetTags(v []*TagDescription) *Group

SetTags sets the Tags field's value.

func (*Group) SetTargetGroupARNs

func (s *Group) SetTargetGroupARNs(v []*string) *Group

SetTargetGroupARNs sets the TargetGroupARNs field's value.

func (*Group) SetTerminationPolicies

func (s *Group) SetTerminationPolicies(v []*string) *Group

SetTerminationPolicies sets the TerminationPolicies field's value.

func (*Group) SetVPCZoneIdentifier

func (s *Group) SetVPCZoneIdentifier(v string) *Group

SetVPCZoneIdentifier sets the VPCZoneIdentifier field's value.

func (Group) String

func (s Group) String() string

String returns the string representation

type Instance

Describes an EC2 instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/Instance

type Instance struct {

    // The Availability Zone in which the instance is running.
    //
    // AvailabilityZone is a required field
    AvailabilityZone *string `min:"1" type:"string" required:"true"`

    // The last reported health status of the instance. "Healthy" means that the
    // instance is healthy and should remain in service. "Unhealthy" means that
    // the instance is unhealthy and Auto Scaling should terminate and replace it.
    //
    // HealthStatus is a required field
    HealthStatus *string `min:"1" type:"string" required:"true"`

    // The ID of the instance.
    //
    // InstanceId is a required field
    InstanceId *string `min:"1" type:"string" required:"true"`

    // The launch configuration associated with the instance.
    //
    // LaunchConfigurationName is a required field
    LaunchConfigurationName *string `min:"1" type:"string" required:"true"`

    // A description of the current lifecycle state. Note that the Quarantined state
    // is not used.
    //
    // LifecycleState is a required field
    LifecycleState *string `type:"string" required:"true" enum:"LifecycleState"`

    // Indicates whether the instance is protected from termination by Auto Scaling
    // when scaling in.
    //
    // ProtectedFromScaleIn is a required field
    ProtectedFromScaleIn *bool `type:"boolean" required:"true"`
    // contains filtered or unexported fields
}

func (Instance) GoString

func (s Instance) GoString() string

GoString returns the string representation

func (*Instance) SetAvailabilityZone

func (s *Instance) SetAvailabilityZone(v string) *Instance

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*Instance) SetHealthStatus

func (s *Instance) SetHealthStatus(v string) *Instance

SetHealthStatus sets the HealthStatus field's value.

func (*Instance) SetInstanceId

func (s *Instance) SetInstanceId(v string) *Instance

SetInstanceId sets the InstanceId field's value.

func (*Instance) SetLaunchConfigurationName

func (s *Instance) SetLaunchConfigurationName(v string) *Instance

SetLaunchConfigurationName sets the LaunchConfigurationName field's value.

func (*Instance) SetLifecycleState

func (s *Instance) SetLifecycleState(v string) *Instance

SetLifecycleState sets the LifecycleState field's value.

func (*Instance) SetProtectedFromScaleIn

func (s *Instance) SetProtectedFromScaleIn(v bool) *Instance

SetProtectedFromScaleIn sets the ProtectedFromScaleIn field's value.

func (Instance) String

func (s Instance) String() string

String returns the string representation

type InstanceDetails

Describes an EC2 instance associated with an Auto Scaling group. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/AutoScalingInstanceDetails

type InstanceDetails struct {

    // The name of the Auto Scaling group associated with the instance.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // The Availability Zone for the instance.
    //
    // AvailabilityZone is a required field
    AvailabilityZone *string `min:"1" type:"string" required:"true"`

    // The last reported health status of this instance. "Healthy" means that the
    // instance is healthy and should remain in service. "Unhealthy" means that
    // the instance is unhealthy and Auto Scaling should terminate and replace it.
    //
    // HealthStatus is a required field
    HealthStatus *string `min:"1" type:"string" required:"true"`

    // The ID of the instance.
    //
    // InstanceId is a required field
    InstanceId *string `min:"1" type:"string" required:"true"`

    // The launch configuration used to launch the instance. This value is not available
    // if you attached the instance to the Auto Scaling group.
    //
    // LaunchConfigurationName is a required field
    LaunchConfigurationName *string `min:"1" type:"string" required:"true"`

    // The lifecycle state for the instance. For more information, see Auto Scaling
    // Lifecycle (http://docs.aws.amazon.com/autoscaling/latest/userguide/AutoScalingGroupLifecycle.html)
    // in the Auto Scaling User Guide.
    //
    // LifecycleState is a required field
    LifecycleState *string `min:"1" type:"string" required:"true"`

    // Indicates whether the instance is protected from termination by Auto Scaling
    // when scaling in.
    //
    // ProtectedFromScaleIn is a required field
    ProtectedFromScaleIn *bool `type:"boolean" required:"true"`
    // contains filtered or unexported fields
}

func (InstanceDetails) GoString

func (s InstanceDetails) GoString() string

GoString returns the string representation

func (*InstanceDetails) SetAutoScalingGroupName

func (s *InstanceDetails) SetAutoScalingGroupName(v string) *InstanceDetails

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*InstanceDetails) SetAvailabilityZone

func (s *InstanceDetails) SetAvailabilityZone(v string) *InstanceDetails

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*InstanceDetails) SetHealthStatus

func (s *InstanceDetails) SetHealthStatus(v string) *InstanceDetails

SetHealthStatus sets the HealthStatus field's value.

func (*InstanceDetails) SetInstanceId

func (s *InstanceDetails) SetInstanceId(v string) *InstanceDetails

SetInstanceId sets the InstanceId field's value.

func (*InstanceDetails) SetLaunchConfigurationName

func (s *InstanceDetails) SetLaunchConfigurationName(v string) *InstanceDetails

SetLaunchConfigurationName sets the LaunchConfigurationName field's value.

func (*InstanceDetails) SetLifecycleState

func (s *InstanceDetails) SetLifecycleState(v string) *InstanceDetails

SetLifecycleState sets the LifecycleState field's value.

func (*InstanceDetails) SetProtectedFromScaleIn

func (s *InstanceDetails) SetProtectedFromScaleIn(v bool) *InstanceDetails

SetProtectedFromScaleIn sets the ProtectedFromScaleIn field's value.

func (InstanceDetails) String

func (s InstanceDetails) String() string

String returns the string representation

type InstanceMonitoring

Describes whether detailed monitoring is enabled for the Auto Scaling instances. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/InstanceMonitoring

type InstanceMonitoring struct {

    // If true, detailed monitoring is enabled. Otherwise, basic monitoring is enabled.
    Enabled *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (InstanceMonitoring) GoString

func (s InstanceMonitoring) GoString() string

GoString returns the string representation

func (*InstanceMonitoring) SetEnabled

func (s *InstanceMonitoring) SetEnabled(v bool) *InstanceMonitoring

SetEnabled sets the Enabled field's value.

func (InstanceMonitoring) String

func (s InstanceMonitoring) String() string

String returns the string representation

type LaunchConfiguration

Describes a launch configuration. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/LaunchConfiguration

type LaunchConfiguration struct {

    // [EC2-VPC] Indicates whether to assign a public IP address to each instance.
    AssociatePublicIpAddress *bool `type:"boolean"`

    // A block device mapping, which specifies the block devices for the instance.
    BlockDeviceMappings []*BlockDeviceMapping `type:"list"`

    // The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to.
    // This parameter can only be used if you are launching EC2-Classic instances.
    // For more information, see ClassicLink (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    ClassicLinkVPCId *string `min:"1" type:"string"`

    // The IDs of one or more security groups for the VPC specified in ClassicLinkVPCId.
    // This parameter is required if you specify a ClassicLink-enabled VPC, and
    // cannot be used otherwise. For more information, see ClassicLink (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    ClassicLinkVPCSecurityGroups []*string `type:"list"`

    // The creation date and time for the launch configuration.
    //
    // CreatedTime is a required field
    CreatedTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"`

    // Controls whether the instance is optimized for EBS I/O (true) or not (false).
    EbsOptimized *bool `type:"boolean"`

    // The name or Amazon Resource Name (ARN) of the instance profile associated
    // with the IAM role for the instance.
    IamInstanceProfile *string `min:"1" type:"string"`

    // The ID of the Amazon Machine Image (AMI).
    //
    // ImageId is a required field
    ImageId *string `min:"1" type:"string" required:"true"`

    // Controls whether instances in this group are launched with detailed (true)
    // or basic (false) monitoring.
    InstanceMonitoring *InstanceMonitoring `type:"structure"`

    // The instance type for the instances.
    //
    // InstanceType is a required field
    InstanceType *string `min:"1" type:"string" required:"true"`

    // The ID of the kernel associated with the AMI.
    KernelId *string `min:"1" type:"string"`

    // The name of the key pair.
    KeyName *string `min:"1" type:"string"`

    // The Amazon Resource Name (ARN) of the launch configuration.
    LaunchConfigurationARN *string `min:"1" type:"string"`

    // The name of the launch configuration.
    //
    // LaunchConfigurationName is a required field
    LaunchConfigurationName *string `min:"1" type:"string" required:"true"`

    // The tenancy of the instance, either default or dedicated. An instance with
    // dedicated tenancy runs in an isolated, single-tenant hardware and can only
    // be launched into a VPC.
    PlacementTenancy *string `min:"1" type:"string"`

    // The ID of the RAM disk associated with the AMI.
    RamdiskId *string `min:"1" type:"string"`

    // The security groups to associate with the instances.
    SecurityGroups []*string `type:"list"`

    // The price to bid when launching Spot Instances.
    SpotPrice *string `min:"1" type:"string"`

    // The user data available to the instances.
    UserData *string `type:"string"`
    // contains filtered or unexported fields
}

func (LaunchConfiguration) GoString

func (s LaunchConfiguration) GoString() string

GoString returns the string representation

func (*LaunchConfiguration) SetAssociatePublicIpAddress

func (s *LaunchConfiguration) SetAssociatePublicIpAddress(v bool) *LaunchConfiguration

SetAssociatePublicIpAddress sets the AssociatePublicIpAddress field's value.

func (*LaunchConfiguration) SetBlockDeviceMappings

func (s *LaunchConfiguration) SetBlockDeviceMappings(v []*BlockDeviceMapping) *LaunchConfiguration

SetBlockDeviceMappings sets the BlockDeviceMappings field's value.

func (*LaunchConfiguration) SetClassicLinkVPCId

func (s *LaunchConfiguration) SetClassicLinkVPCId(v string) *LaunchConfiguration

SetClassicLinkVPCId sets the ClassicLinkVPCId field's value.

func (*LaunchConfiguration) SetClassicLinkVPCSecurityGroups

func (s *LaunchConfiguration) SetClassicLinkVPCSecurityGroups(v []*string) *LaunchConfiguration

SetClassicLinkVPCSecurityGroups sets the ClassicLinkVPCSecurityGroups field's value.

func (*LaunchConfiguration) SetCreatedTime

func (s *LaunchConfiguration) SetCreatedTime(v time.Time) *LaunchConfiguration

SetCreatedTime sets the CreatedTime field's value.

func (*LaunchConfiguration) SetEbsOptimized

func (s *LaunchConfiguration) SetEbsOptimized(v bool) *LaunchConfiguration

SetEbsOptimized sets the EbsOptimized field's value.

func (*LaunchConfiguration) SetIamInstanceProfile

func (s *LaunchConfiguration) SetIamInstanceProfile(v string) *LaunchConfiguration

SetIamInstanceProfile sets the IamInstanceProfile field's value.

func (*LaunchConfiguration) SetImageId

func (s *LaunchConfiguration) SetImageId(v string) *LaunchConfiguration

SetImageId sets the ImageId field's value.

func (*LaunchConfiguration) SetInstanceMonitoring

func (s *LaunchConfiguration) SetInstanceMonitoring(v *InstanceMonitoring) *LaunchConfiguration

SetInstanceMonitoring sets the InstanceMonitoring field's value.

func (*LaunchConfiguration) SetInstanceType

func (s *LaunchConfiguration) SetInstanceType(v string) *LaunchConfiguration

SetInstanceType sets the InstanceType field's value.

func (*LaunchConfiguration) SetKernelId

func (s *LaunchConfiguration) SetKernelId(v string) *LaunchConfiguration

SetKernelId sets the KernelId field's value.

func (*LaunchConfiguration) SetKeyName

func (s *LaunchConfiguration) SetKeyName(v string) *LaunchConfiguration

SetKeyName sets the KeyName field's value.

func (*LaunchConfiguration) SetLaunchConfigurationARN

func (s *LaunchConfiguration) SetLaunchConfigurationARN(v string) *LaunchConfiguration

SetLaunchConfigurationARN sets the LaunchConfigurationARN field's value.

func (*LaunchConfiguration) SetLaunchConfigurationName

func (s *LaunchConfiguration) SetLaunchConfigurationName(v string) *LaunchConfiguration

SetLaunchConfigurationName sets the LaunchConfigurationName field's value.

func (*LaunchConfiguration) SetPlacementTenancy

func (s *LaunchConfiguration) SetPlacementTenancy(v string) *LaunchConfiguration

SetPlacementTenancy sets the PlacementTenancy field's value.

func (*LaunchConfiguration) SetRamdiskId

func (s *LaunchConfiguration) SetRamdiskId(v string) *LaunchConfiguration

SetRamdiskId sets the RamdiskId field's value.

func (*LaunchConfiguration) SetSecurityGroups

func (s *LaunchConfiguration) SetSecurityGroups(v []*string) *LaunchConfiguration

SetSecurityGroups sets the SecurityGroups field's value.

func (*LaunchConfiguration) SetSpotPrice

func (s *LaunchConfiguration) SetSpotPrice(v string) *LaunchConfiguration

SetSpotPrice sets the SpotPrice field's value.

func (*LaunchConfiguration) SetUserData

func (s *LaunchConfiguration) SetUserData(v string) *LaunchConfiguration

SetUserData sets the UserData field's value.

func (LaunchConfiguration) String

func (s LaunchConfiguration) String() string

String returns the string representation

type LifecycleHook

Describes a lifecycle hook, which tells Auto Scaling that you want to perform an action when an instance launches or terminates. When you have a lifecycle hook in place, the Auto Scaling group will either:

* Pause the instance after it launches, but before it is put into service

* Pause the instance as it terminates, but before it is fully terminated

For more information, see Auto Scaling Lifecycle (http://docs.aws.amazon.com/autoscaling/latest/userguide/AutoScalingGroupLifecycle.html) in the Auto Scaling User Guide. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/LifecycleHook

type LifecycleHook struct {

    // The name of the Auto Scaling group for the lifecycle hook.
    AutoScalingGroupName *string `min:"1" type:"string"`

    // Defines the action the Auto Scaling group should take when the lifecycle
    // hook timeout elapses or if an unexpected failure occurs. The valid values
    // are CONTINUE and ABANDON. The default value is CONTINUE.
    DefaultResult *string `type:"string"`

    // The maximum time, in seconds, that an instance can remain in a Pending:Wait
    // or Terminating:Wait state. The maximum is 172800 seconds (48 hours) or 100
    // times HeartbeatTimeout, whichever is smaller.
    GlobalTimeout *int64 `type:"integer"`

    // The maximum time, in seconds, that can elapse before the lifecycle hook times
    // out. The default is 3600 seconds (1 hour). When the lifecycle hook times
    // out, Auto Scaling performs the default action. You can prevent the lifecycle
    // hook from timing out by calling RecordLifecycleActionHeartbeat.
    HeartbeatTimeout *int64 `type:"integer"`

    // The name of the lifecycle hook.
    LifecycleHookName *string `min:"1" type:"string"`

    // The state of the EC2 instance to which you want to attach the lifecycle hook.
    // For a list of lifecycle hook types, see DescribeLifecycleHookTypes.
    LifecycleTransition *string `type:"string"`

    // Additional information that you want to include any time Auto Scaling sends
    // a message to the notification target.
    NotificationMetadata *string `min:"1" type:"string"`

    // The ARN of the notification target that Auto Scaling uses to notify you when
    // an instance is in the transition state for the lifecycle hook. This ARN target
    // can be either an SQS queue or an SNS topic. The notification message sent
    // to the target includes the following:
    //
    //    * Lifecycle action token
    //
    //    * User account ID
    //
    //    * Name of the Auto Scaling group
    //
    //    * Lifecycle hook name
    //
    //    * EC2 instance ID
    //
    //    * Lifecycle transition
    //
    //    * Notification metadata
    NotificationTargetARN *string `min:"1" type:"string"`

    // The ARN of the IAM role that allows the Auto Scaling group to publish to
    // the specified notification target.
    RoleARN *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (LifecycleHook) GoString

func (s LifecycleHook) GoString() string

GoString returns the string representation

func (*LifecycleHook) SetAutoScalingGroupName

func (s *LifecycleHook) SetAutoScalingGroupName(v string) *LifecycleHook

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*LifecycleHook) SetDefaultResult

func (s *LifecycleHook) SetDefaultResult(v string) *LifecycleHook

SetDefaultResult sets the DefaultResult field's value.

func (*LifecycleHook) SetGlobalTimeout

func (s *LifecycleHook) SetGlobalTimeout(v int64) *LifecycleHook

SetGlobalTimeout sets the GlobalTimeout field's value.

func (*LifecycleHook) SetHeartbeatTimeout

func (s *LifecycleHook) SetHeartbeatTimeout(v int64) *LifecycleHook

SetHeartbeatTimeout sets the HeartbeatTimeout field's value.

func (*LifecycleHook) SetLifecycleHookName

func (s *LifecycleHook) SetLifecycleHookName(v string) *LifecycleHook

SetLifecycleHookName sets the LifecycleHookName field's value.

func (*LifecycleHook) SetLifecycleTransition

func (s *LifecycleHook) SetLifecycleTransition(v string) *LifecycleHook

SetLifecycleTransition sets the LifecycleTransition field's value.

func (*LifecycleHook) SetNotificationMetadata

func (s *LifecycleHook) SetNotificationMetadata(v string) *LifecycleHook

SetNotificationMetadata sets the NotificationMetadata field's value.

func (*LifecycleHook) SetNotificationTargetARN

func (s *LifecycleHook) SetNotificationTargetARN(v string) *LifecycleHook

SetNotificationTargetARN sets the NotificationTargetARN field's value.

func (*LifecycleHook) SetRoleARN

func (s *LifecycleHook) SetRoleARN(v string) *LifecycleHook

SetRoleARN sets the RoleARN field's value.

func (LifecycleHook) String

func (s LifecycleHook) String() string

String returns the string representation

type LoadBalancerState

Describes the state of a Classic Load Balancer.

If you specify a load balancer when creating the Auto Scaling group, the state of the load balancer is InService.

If you attach a load balancer to an existing Auto Scaling group, the initial state is Adding. The state transitions to Added after all instances in the group are registered with the load balancer. If ELB health checks are enabled for the load balancer, the state transitions to InService after at least one instance in the group passes the health check. If EC2 health checks are enabled instead, the load balancer remains in the Added state. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/LoadBalancerState

type LoadBalancerState struct {

    // The name of the load balancer.
    LoadBalancerName *string `min:"1" type:"string"`

    // One of the following load balancer states:
    //
    //    * Adding - The instances in the group are being registered with the load
    //    balancer.
    //
    //    * Added - All instances in the group are registered with the load balancer.
    //
    //    * InService - At least one instance in the group passed an ELB health
    //    check.
    //
    //    * Removing - The instances in the group are being deregistered from the
    //    load balancer. If connection draining is enabled, Elastic Load Balancing
    //    waits for in-flight requests to complete before deregistering the instances.
    //
    //    * Removed - All instances in the group are deregistered from the load
    //    balancer.
    State *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (LoadBalancerState) GoString

func (s LoadBalancerState) GoString() string

GoString returns the string representation

func (*LoadBalancerState) SetLoadBalancerName

func (s *LoadBalancerState) SetLoadBalancerName(v string) *LoadBalancerState

SetLoadBalancerName sets the LoadBalancerName field's value.

func (*LoadBalancerState) SetState

func (s *LoadBalancerState) SetState(v string) *LoadBalancerState

SetState sets the State field's value.

func (LoadBalancerState) String

func (s LoadBalancerState) String() string

String returns the string representation

type LoadBalancerTargetGroupState

Describes the state of a target group.

If you attach a target group to an existing Auto Scaling group, the initial state is Adding. The state transitions to Added after all Auto Scaling instances are registered with the target group. If ELB health checks are enabled, the state transitions to InService after at least one Auto Scaling instance passes the health check. If EC2 health checks are enabled instead, the target group remains in the Added state. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/LoadBalancerTargetGroupState

type LoadBalancerTargetGroupState struct {

    // The Amazon Resource Name (ARN) of the target group.
    LoadBalancerTargetGroupARN *string `min:"1" type:"string"`

    // The state of the target group.
    //
    //    * Adding - The Auto Scaling instances are being registered with the target
    //    group.
    //
    //    * Added - All Auto Scaling instances are registered with the target group.
    //
    //    * InService - At least one Auto Scaling instance passed an ELB health
    //    check.
    //
    //    * Removing - The Auto Scaling instances are being deregistered from the
    //    target group. If connection draining is enabled, Elastic Load Balancing
    //    waits for in-flight requests to complete before deregistering the instances.
    //
    //    * Removed - All Auto Scaling instances are deregistered from the target
    //    group.
    State *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (LoadBalancerTargetGroupState) GoString

func (s LoadBalancerTargetGroupState) GoString() string

GoString returns the string representation

func (*LoadBalancerTargetGroupState) SetLoadBalancerTargetGroupARN

func (s *LoadBalancerTargetGroupState) SetLoadBalancerTargetGroupARN(v string) *LoadBalancerTargetGroupState

SetLoadBalancerTargetGroupARN sets the LoadBalancerTargetGroupARN field's value.

func (*LoadBalancerTargetGroupState) SetState

func (s *LoadBalancerTargetGroupState) SetState(v string) *LoadBalancerTargetGroupState

SetState sets the State field's value.

func (LoadBalancerTargetGroupState) String

func (s LoadBalancerTargetGroupState) String() string

String returns the string representation

type MetricCollectionType

Describes a metric. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/MetricCollectionType

type MetricCollectionType struct {

    // One of the following metrics:
    //
    //    * GroupMinSize
    //
    //    * GroupMaxSize
    //
    //    * GroupDesiredCapacity
    //
    //    * GroupInServiceInstances
    //
    //    * GroupPendingInstances
    //
    //    * GroupStandbyInstances
    //
    //    * GroupTerminatingInstances
    //
    //    * GroupTotalInstances
    Metric *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (MetricCollectionType) GoString

func (s MetricCollectionType) GoString() string

GoString returns the string representation

func (*MetricCollectionType) SetMetric

func (s *MetricCollectionType) SetMetric(v string) *MetricCollectionType

SetMetric sets the Metric field's value.

func (MetricCollectionType) String

func (s MetricCollectionType) String() string

String returns the string representation

type MetricGranularityType

Describes a granularity of a metric. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/MetricGranularityType

type MetricGranularityType struct {

    // The granularity. The only valid value is 1Minute.
    Granularity *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (MetricGranularityType) GoString

func (s MetricGranularityType) GoString() string

GoString returns the string representation

func (*MetricGranularityType) SetGranularity

func (s *MetricGranularityType) SetGranularity(v string) *MetricGranularityType

SetGranularity sets the Granularity field's value.

func (MetricGranularityType) String

func (s MetricGranularityType) String() string

String returns the string representation

type NotificationConfiguration

Describes a notification. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/NotificationConfiguration

type NotificationConfiguration struct {

    // The name of the group.
    AutoScalingGroupName *string `min:"1" type:"string"`

    // One of the following event notification types:
    //
    //    * autoscaling:EC2_INSTANCE_LAUNCH
    //
    //    * autoscaling:EC2_INSTANCE_LAUNCH_ERROR
    //
    //    * autoscaling:EC2_INSTANCE_TERMINATE
    //
    //    * autoscaling:EC2_INSTANCE_TERMINATE_ERROR
    //
    //    * autoscaling:TEST_NOTIFICATION
    NotificationType *string `min:"1" type:"string"`

    // The Amazon Resource Name (ARN) of the Amazon Simple Notification Service
    // (SNS) topic.
    TopicARN *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (NotificationConfiguration) GoString

func (s NotificationConfiguration) GoString() string

GoString returns the string representation

func (*NotificationConfiguration) SetAutoScalingGroupName

func (s *NotificationConfiguration) SetAutoScalingGroupName(v string) *NotificationConfiguration

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*NotificationConfiguration) SetNotificationType

func (s *NotificationConfiguration) SetNotificationType(v string) *NotificationConfiguration

SetNotificationType sets the NotificationType field's value.

func (*NotificationConfiguration) SetTopicARN

func (s *NotificationConfiguration) SetTopicARN(v string) *NotificationConfiguration

SetTopicARN sets the TopicARN field's value.

func (NotificationConfiguration) String

func (s NotificationConfiguration) String() string

String returns the string representation

type ProcessType

Describes a process type.

For more information, see Auto Scaling Processes (http://docs.aws.amazon.com/autoscaling/latest/userguide/as-suspend-resume-processes.html#process-types) in the Auto Scaling User Guide. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ProcessType

type ProcessType struct {

    // One of the following processes:
    //
    //    * Launch
    //
    //    * Terminate
    //
    //    * AddToLoadBalancer
    //
    //    * AlarmNotification
    //
    //    * AZRebalance
    //
    //    * HealthCheck
    //
    //    * ReplaceUnhealthy
    //
    //    * ScheduledActions
    //
    // ProcessName is a required field
    ProcessName *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ProcessType) GoString

func (s ProcessType) GoString() string

GoString returns the string representation

func (*ProcessType) SetProcessName

func (s *ProcessType) SetProcessName(v string) *ProcessType

SetProcessName sets the ProcessName field's value.

func (ProcessType) String

func (s ProcessType) String() string

String returns the string representation

type PutLifecycleHookInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutLifecycleHookType

type PutLifecycleHookInput struct {

    // The name of the Auto Scaling group to which you want to assign the lifecycle
    // hook.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // 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.
    DefaultResult *string `type:"string"`

    // The amount of time, in seconds, that can elapse before the lifecycle hook
    // times out. When the lifecycle hook times out, Auto Scaling performs the default
    // action. You can prevent the lifecycle hook from timing out by calling RecordLifecycleActionHeartbeat.
    // The default is 3600 seconds (1 hour).
    HeartbeatTimeout *int64 `type:"integer"`

    // The name of the lifecycle hook.
    //
    // LifecycleHookName is a required field
    LifecycleHookName *string `min:"1" type:"string" required:"true"`

    // The instance state to which you want to attach the lifecycle hook. For a
    // list of lifecycle hook types, see DescribeLifecycleHookTypes.
    //
    // This parameter is required for new lifecycle hooks, but optional when updating
    // existing hooks.
    LifecycleTransition *string `type:"string"`

    // Contains additional information that you want to include any time Auto Scaling
    // sends a message to the notification target.
    NotificationMetadata *string `min:"1" type:"string"`

    // The ARN of the notification target that Auto Scaling will use 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, Auto Scaling sends it a test message.
    // Test messages contains the following additional key/value pair: "Event":
    // "autoscaling:TEST_NOTIFICATION".
    NotificationTargetARN *string `type:"string"`

    // The ARN of the IAM role that allows the Auto Scaling group to publish to
    // the specified notification target.
    //
    // This parameter is required for new lifecycle hooks, but optional when updating
    // existing hooks.
    RoleARN *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (PutLifecycleHookInput) GoString

func (s PutLifecycleHookInput) GoString() string

GoString returns the string representation

func (*PutLifecycleHookInput) SetAutoScalingGroupName

func (s *PutLifecycleHookInput) SetAutoScalingGroupName(v string) *PutLifecycleHookInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*PutLifecycleHookInput) SetDefaultResult

func (s *PutLifecycleHookInput) SetDefaultResult(v string) *PutLifecycleHookInput

SetDefaultResult sets the DefaultResult field's value.

func (*PutLifecycleHookInput) SetHeartbeatTimeout

func (s *PutLifecycleHookInput) SetHeartbeatTimeout(v int64) *PutLifecycleHookInput

SetHeartbeatTimeout sets the HeartbeatTimeout field's value.

func (*PutLifecycleHookInput) SetLifecycleHookName

func (s *PutLifecycleHookInput) SetLifecycleHookName(v string) *PutLifecycleHookInput

SetLifecycleHookName sets the LifecycleHookName field's value.

func (*PutLifecycleHookInput) SetLifecycleTransition

func (s *PutLifecycleHookInput) SetLifecycleTransition(v string) *PutLifecycleHookInput

SetLifecycleTransition sets the LifecycleTransition field's value.

func (*PutLifecycleHookInput) SetNotificationMetadata

func (s *PutLifecycleHookInput) SetNotificationMetadata(v string) *PutLifecycleHookInput

SetNotificationMetadata sets the NotificationMetadata field's value.

func (*PutLifecycleHookInput) SetNotificationTargetARN

func (s *PutLifecycleHookInput) SetNotificationTargetARN(v string) *PutLifecycleHookInput

SetNotificationTargetARN sets the NotificationTargetARN field's value.

func (*PutLifecycleHookInput) SetRoleARN

func (s *PutLifecycleHookInput) SetRoleARN(v string) *PutLifecycleHookInput

SetRoleARN sets the RoleARN field's value.

func (PutLifecycleHookInput) String

func (s PutLifecycleHookInput) String() string

String returns the string representation

func (*PutLifecycleHookInput) Validate

func (s *PutLifecycleHookInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutLifecycleHookOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutLifecycleHookAnswer

type PutLifecycleHookOutput struct {
    // contains filtered or unexported fields
}

func (PutLifecycleHookOutput) GoString

func (s PutLifecycleHookOutput) GoString() string

GoString returns the string representation

func (PutLifecycleHookOutput) String

func (s PutLifecycleHookOutput) String() string

String returns the string representation

type PutNotificationConfigurationInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutNotificationConfigurationType

type PutNotificationConfigurationInput struct {

    // The name of the Auto Scaling group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // The type of event that will cause the notification to be sent. For details
    // about notification types supported by Auto Scaling, see DescribeAutoScalingNotificationTypes.
    //
    // NotificationTypes is a required field
    NotificationTypes []*string `type:"list" required:"true"`

    // The Amazon Resource Name (ARN) of the Amazon Simple Notification Service
    // (SNS) topic.
    //
    // TopicARN is a required field
    TopicARN *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (PutNotificationConfigurationInput) GoString

func (s PutNotificationConfigurationInput) GoString() string

GoString returns the string representation

func (*PutNotificationConfigurationInput) SetAutoScalingGroupName

func (s *PutNotificationConfigurationInput) SetAutoScalingGroupName(v string) *PutNotificationConfigurationInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*PutNotificationConfigurationInput) SetNotificationTypes

func (s *PutNotificationConfigurationInput) SetNotificationTypes(v []*string) *PutNotificationConfigurationInput

SetNotificationTypes sets the NotificationTypes field's value.

func (*PutNotificationConfigurationInput) SetTopicARN

func (s *PutNotificationConfigurationInput) SetTopicARN(v string) *PutNotificationConfigurationInput

SetTopicARN sets the TopicARN field's value.

func (PutNotificationConfigurationInput) String

func (s PutNotificationConfigurationInput) String() string

String returns the string representation

func (*PutNotificationConfigurationInput) Validate

func (s *PutNotificationConfigurationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutNotificationConfigurationOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutNotificationConfigurationOutput

type PutNotificationConfigurationOutput struct {
    // contains filtered or unexported fields
}

func (PutNotificationConfigurationOutput) GoString

func (s PutNotificationConfigurationOutput) GoString() string

GoString returns the string representation

func (PutNotificationConfigurationOutput) String

func (s PutNotificationConfigurationOutput) String() string

String returns the string representation

type PutScalingPolicyInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutScalingPolicyType

type PutScalingPolicyInput struct {

    // The adjustment type. Valid values are ChangeInCapacity, ExactCapacity, and
    // PercentChangeInCapacity.
    //
    // For more information, see Dynamic Scaling (http://docs.aws.amazon.com/autoscaling/latest/userguide/as-scale-based-on-demand.html)
    // in the Auto Scaling User Guide.
    //
    // AdjustmentType is a required field
    AdjustmentType *string `min:"1" type:"string" required:"true"`

    // The name or ARN of the group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // The amount of time, in seconds, after a scaling activity completes and before
    // the next scaling activity can start. If this parameter is not specified,
    // the default cooldown period for the group applies.
    //
    // This parameter is not supported unless the policy type is SimpleScaling.
    //
    // For more information, see Auto Scaling Cooldowns (http://docs.aws.amazon.com/autoscaling/latest/userguide/Cooldown.html)
    // in the Auto Scaling User Guide.
    Cooldown *int64 `type:"integer"`

    // The estimated time, in seconds, until a newly launched instance can contribute
    // to the CloudWatch metrics. The default is to use the value specified for
    // the default cooldown period for the group.
    //
    // This parameter is not supported if the policy type is SimpleScaling.
    EstimatedInstanceWarmup *int64 `type:"integer"`

    // The aggregation type for the CloudWatch metrics. Valid values are Minimum,
    // Maximum, and Average. If the aggregation type is null, the value is treated
    // as Average.
    //
    // This parameter is not supported if the policy type is SimpleScaling.
    MetricAggregationType *string `min:"1" type:"string"`

    // The minimum number of instances to scale. If the value of AdjustmentType
    // is PercentChangeInCapacity, the scaling policy changes the DesiredCapacity
    // of the Auto Scaling group by at least this many instances. Otherwise, the
    // error is ValidationError.
    MinAdjustmentMagnitude *int64 `type:"integer"`

    // Available for backward compatibility. Use MinAdjustmentMagnitude instead.
    MinAdjustmentStep *int64 `deprecated:"true" type:"integer"`

    // The name of the policy.
    //
    // PolicyName is a required field
    PolicyName *string `min:"1" type:"string" required:"true"`

    // The policy type. Valid values are SimpleScaling and StepScaling. If the policy
    // type is null, the value is treated as SimpleScaling.
    PolicyType *string `min:"1" type:"string"`

    // The amount by which to scale, based on the specified adjustment type. A positive
    // value adds to the current capacity while a negative number removes from the
    // current capacity.
    //
    // This parameter is required if the policy type is SimpleScaling and not supported
    // otherwise.
    ScalingAdjustment *int64 `type:"integer"`

    // A set of adjustments that enable you to scale based on the size of the alarm
    // breach.
    //
    // This parameter is required if the policy type is StepScaling and not supported
    // otherwise.
    StepAdjustments []*StepAdjustment `type:"list"`
    // contains filtered or unexported fields
}

func (PutScalingPolicyInput) GoString

func (s PutScalingPolicyInput) GoString() string

GoString returns the string representation

func (*PutScalingPolicyInput) SetAdjustmentType

func (s *PutScalingPolicyInput) SetAdjustmentType(v string) *PutScalingPolicyInput

SetAdjustmentType sets the AdjustmentType field's value.

func (*PutScalingPolicyInput) SetAutoScalingGroupName

func (s *PutScalingPolicyInput) SetAutoScalingGroupName(v string) *PutScalingPolicyInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*PutScalingPolicyInput) SetCooldown

func (s *PutScalingPolicyInput) SetCooldown(v int64) *PutScalingPolicyInput

SetCooldown sets the Cooldown field's value.

func (*PutScalingPolicyInput) SetEstimatedInstanceWarmup

func (s *PutScalingPolicyInput) SetEstimatedInstanceWarmup(v int64) *PutScalingPolicyInput

SetEstimatedInstanceWarmup sets the EstimatedInstanceWarmup field's value.

func (*PutScalingPolicyInput) SetMetricAggregationType

func (s *PutScalingPolicyInput) SetMetricAggregationType(v string) *PutScalingPolicyInput

SetMetricAggregationType sets the MetricAggregationType field's value.

func (*PutScalingPolicyInput) SetMinAdjustmentMagnitude

func (s *PutScalingPolicyInput) SetMinAdjustmentMagnitude(v int64) *PutScalingPolicyInput

SetMinAdjustmentMagnitude sets the MinAdjustmentMagnitude field's value.

func (*PutScalingPolicyInput) SetMinAdjustmentStep

func (s *PutScalingPolicyInput) SetMinAdjustmentStep(v int64) *PutScalingPolicyInput

SetMinAdjustmentStep sets the MinAdjustmentStep field's value.

func (*PutScalingPolicyInput) SetPolicyName

func (s *PutScalingPolicyInput) SetPolicyName(v string) *PutScalingPolicyInput

SetPolicyName sets the PolicyName field's value.

func (*PutScalingPolicyInput) SetPolicyType

func (s *PutScalingPolicyInput) SetPolicyType(v string) *PutScalingPolicyInput

SetPolicyType sets the PolicyType field's value.

func (*PutScalingPolicyInput) SetScalingAdjustment

func (s *PutScalingPolicyInput) SetScalingAdjustment(v int64) *PutScalingPolicyInput

SetScalingAdjustment sets the ScalingAdjustment field's value.

func (*PutScalingPolicyInput) SetStepAdjustments

func (s *PutScalingPolicyInput) SetStepAdjustments(v []*StepAdjustment) *PutScalingPolicyInput

SetStepAdjustments sets the StepAdjustments field's value.

func (PutScalingPolicyInput) String

func (s PutScalingPolicyInput) String() string

String returns the string representation

func (*PutScalingPolicyInput) Validate

func (s *PutScalingPolicyInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutScalingPolicyOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PolicyARNType

type PutScalingPolicyOutput struct {

    // The Amazon Resource Name (ARN) of the policy.
    PolicyARN *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (PutScalingPolicyOutput) GoString

func (s PutScalingPolicyOutput) GoString() string

GoString returns the string representation

func (*PutScalingPolicyOutput) SetPolicyARN

func (s *PutScalingPolicyOutput) SetPolicyARN(v string) *PutScalingPolicyOutput

SetPolicyARN sets the PolicyARN field's value.

func (PutScalingPolicyOutput) String

func (s PutScalingPolicyOutput) String() string

String returns the string representation

type PutScheduledUpdateGroupActionInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutScheduledUpdateGroupActionType

type PutScheduledUpdateGroupActionInput struct {

    // The name or Amazon Resource Name (ARN) of the Auto Scaling group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // The number of EC2 instances that should be running in the group.
    DesiredCapacity *int64 `type:"integer"`

    // The time for the recurring schedule to end. Auto Scaling does not perform
    // the action after this time.
    EndTime *time.Time `type:"timestamp" timestampFormat:"iso8601"`

    // The maximum size for the Auto Scaling group.
    MaxSize *int64 `type:"integer"`

    // The minimum size for the Auto Scaling group.
    MinSize *int64 `type:"integer"`

    // The recurring schedule for this action, in Unix cron syntax format. For more
    // information, see Cron (http://en.wikipedia.org/wiki/Cron) in Wikipedia.
    Recurrence *string `min:"1" type:"string"`

    // The name of this scaling action.
    //
    // ScheduledActionName is a required field
    ScheduledActionName *string `min:"1" type:"string" required:"true"`

    // The time for this action to start, in "YYYY-MM-DDThh:mm:ssZ" format in UTC/GMT
    // only (for example, 2014-06-01T00:00:00Z).
    //
    // If you specify Recurrence and StartTime, Auto Scaling performs the action
    // at this time, and then performs the action based on the specified recurrence.
    //
    // If you try to schedule your action in the past, Auto Scaling returns an error
    // message.
    StartTime *time.Time `type:"timestamp" timestampFormat:"iso8601"`

    // This parameter is deprecated.
    Time *time.Time `type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (PutScheduledUpdateGroupActionInput) GoString

func (s PutScheduledUpdateGroupActionInput) GoString() string

GoString returns the string representation

func (*PutScheduledUpdateGroupActionInput) SetAutoScalingGroupName

func (s *PutScheduledUpdateGroupActionInput) SetAutoScalingGroupName(v string) *PutScheduledUpdateGroupActionInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*PutScheduledUpdateGroupActionInput) SetDesiredCapacity

func (s *PutScheduledUpdateGroupActionInput) SetDesiredCapacity(v int64) *PutScheduledUpdateGroupActionInput

SetDesiredCapacity sets the DesiredCapacity field's value.

func (*PutScheduledUpdateGroupActionInput) SetEndTime

func (s *PutScheduledUpdateGroupActionInput) SetEndTime(v time.Time) *PutScheduledUpdateGroupActionInput

SetEndTime sets the EndTime field's value.

func (*PutScheduledUpdateGroupActionInput) SetMaxSize

func (s *PutScheduledUpdateGroupActionInput) SetMaxSize(v int64) *PutScheduledUpdateGroupActionInput

SetMaxSize sets the MaxSize field's value.

func (*PutScheduledUpdateGroupActionInput) SetMinSize

func (s *PutScheduledUpdateGroupActionInput) SetMinSize(v int64) *PutScheduledUpdateGroupActionInput

SetMinSize sets the MinSize field's value.

func (*PutScheduledUpdateGroupActionInput) SetRecurrence

func (s *PutScheduledUpdateGroupActionInput) SetRecurrence(v string) *PutScheduledUpdateGroupActionInput

SetRecurrence sets the Recurrence field's value.

func (*PutScheduledUpdateGroupActionInput) SetScheduledActionName

func (s *PutScheduledUpdateGroupActionInput) SetScheduledActionName(v string) *PutScheduledUpdateGroupActionInput

SetScheduledActionName sets the ScheduledActionName field's value.

func (*PutScheduledUpdateGroupActionInput) SetStartTime

func (s *PutScheduledUpdateGroupActionInput) SetStartTime(v time.Time) *PutScheduledUpdateGroupActionInput

SetStartTime sets the StartTime field's value.

func (*PutScheduledUpdateGroupActionInput) SetTime

func (s *PutScheduledUpdateGroupActionInput) SetTime(v time.Time) *PutScheduledUpdateGroupActionInput

SetTime sets the Time field's value.

func (PutScheduledUpdateGroupActionInput) String

func (s PutScheduledUpdateGroupActionInput) String() string

String returns the string representation

func (*PutScheduledUpdateGroupActionInput) Validate

func (s *PutScheduledUpdateGroupActionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutScheduledUpdateGroupActionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutScheduledUpdateGroupActionOutput

type PutScheduledUpdateGroupActionOutput struct {
    // contains filtered or unexported fields
}

func (PutScheduledUpdateGroupActionOutput) GoString

func (s PutScheduledUpdateGroupActionOutput) GoString() string

GoString returns the string representation

func (PutScheduledUpdateGroupActionOutput) String

func (s PutScheduledUpdateGroupActionOutput) String() string

String returns the string representation

type RecordLifecycleActionHeartbeatInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/RecordLifecycleActionHeartbeatType

type RecordLifecycleActionHeartbeatInput struct {

    // The name of the Auto Scaling group for the hook.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // The ID of the instance.
    InstanceId *string `min:"1" type:"string"`

    // A token that uniquely identifies a specific lifecycle action associated with
    // an instance. Auto Scaling sends this token to the notification target you
    // specified when you created the lifecycle hook.
    LifecycleActionToken *string `min:"36" type:"string"`

    // The name of the lifecycle hook.
    //
    // LifecycleHookName is a required field
    LifecycleHookName *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (RecordLifecycleActionHeartbeatInput) GoString

func (s RecordLifecycleActionHeartbeatInput) GoString() string

GoString returns the string representation

func (*RecordLifecycleActionHeartbeatInput) SetAutoScalingGroupName

func (s *RecordLifecycleActionHeartbeatInput) SetAutoScalingGroupName(v string) *RecordLifecycleActionHeartbeatInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*RecordLifecycleActionHeartbeatInput) SetInstanceId

func (s *RecordLifecycleActionHeartbeatInput) SetInstanceId(v string) *RecordLifecycleActionHeartbeatInput

SetInstanceId sets the InstanceId field's value.

func (*RecordLifecycleActionHeartbeatInput) SetLifecycleActionToken

func (s *RecordLifecycleActionHeartbeatInput) SetLifecycleActionToken(v string) *RecordLifecycleActionHeartbeatInput

SetLifecycleActionToken sets the LifecycleActionToken field's value.

func (*RecordLifecycleActionHeartbeatInput) SetLifecycleHookName

func (s *RecordLifecycleActionHeartbeatInput) SetLifecycleHookName(v string) *RecordLifecycleActionHeartbeatInput

SetLifecycleHookName sets the LifecycleHookName field's value.

func (RecordLifecycleActionHeartbeatInput) String

func (s RecordLifecycleActionHeartbeatInput) String() string

String returns the string representation

func (*RecordLifecycleActionHeartbeatInput) Validate

func (s *RecordLifecycleActionHeartbeatInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RecordLifecycleActionHeartbeatOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/RecordLifecycleActionHeartbeatAnswer

type RecordLifecycleActionHeartbeatOutput struct {
    // contains filtered or unexported fields
}

func (RecordLifecycleActionHeartbeatOutput) GoString

func (s RecordLifecycleActionHeartbeatOutput) GoString() string

GoString returns the string representation

func (RecordLifecycleActionHeartbeatOutput) String

func (s RecordLifecycleActionHeartbeatOutput) String() string

String returns the string representation

type ResumeProcessesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ResumeProcessesOutput

type ResumeProcessesOutput struct {
    // contains filtered or unexported fields
}

func (ResumeProcessesOutput) GoString

func (s ResumeProcessesOutput) GoString() string

GoString returns the string representation

func (ResumeProcessesOutput) String

func (s ResumeProcessesOutput) String() string

String returns the string representation

type ScalingPolicy

Describes a scaling policy. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ScalingPolicy

type ScalingPolicy struct {

    // The adjustment type, which specifies how ScalingAdjustment is interpreted.
    // Valid values are ChangeInCapacity, ExactCapacity, and PercentChangeInCapacity.
    AdjustmentType *string `min:"1" type:"string"`

    // The CloudWatch alarms related to the policy.
    Alarms []*Alarm `type:"list"`

    // The name of the Auto Scaling group associated with this scaling policy.
    AutoScalingGroupName *string `min:"1" type:"string"`

    // The amount of time, in seconds, after a scaling activity completes before
    // any further dynamic scaling activities can start.
    Cooldown *int64 `type:"integer"`

    // The estimated time, in seconds, until a newly launched instance can contribute
    // to the CloudWatch metrics.
    EstimatedInstanceWarmup *int64 `type:"integer"`

    // The aggregation type for the CloudWatch metrics. Valid values are Minimum,
    // Maximum, and Average.
    MetricAggregationType *string `min:"1" type:"string"`

    // The minimum number of instances to scale. If the value of AdjustmentType
    // is PercentChangeInCapacity, the scaling policy changes the DesiredCapacity
    // of the Auto Scaling group by at least this many instances. Otherwise, the
    // error is ValidationError.
    MinAdjustmentMagnitude *int64 `type:"integer"`

    // Available for backward compatibility. Use MinAdjustmentMagnitude instead.
    MinAdjustmentStep *int64 `deprecated:"true" type:"integer"`

    // The Amazon Resource Name (ARN) of the policy.
    PolicyARN *string `min:"1" type:"string"`

    // The name of the scaling policy.
    PolicyName *string `min:"1" type:"string"`

    // The policy type. Valid values are SimpleScaling and StepScaling.
    PolicyType *string `min:"1" type:"string"`

    // The amount by which to scale, based on the specified adjustment type. A positive
    // value adds to the current capacity while a negative number removes from the
    // current capacity.
    ScalingAdjustment *int64 `type:"integer"`

    // A set of adjustments that enable you to scale based on the size of the alarm
    // breach.
    StepAdjustments []*StepAdjustment `type:"list"`
    // contains filtered or unexported fields
}

func (ScalingPolicy) GoString

func (s ScalingPolicy) GoString() string

GoString returns the string representation

func (*ScalingPolicy) SetAdjustmentType

func (s *ScalingPolicy) SetAdjustmentType(v string) *ScalingPolicy

SetAdjustmentType sets the AdjustmentType field's value.

func (*ScalingPolicy) SetAlarms

func (s *ScalingPolicy) SetAlarms(v []*Alarm) *ScalingPolicy

SetAlarms sets the Alarms field's value.

func (*ScalingPolicy) SetAutoScalingGroupName

func (s *ScalingPolicy) SetAutoScalingGroupName(v string) *ScalingPolicy

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*ScalingPolicy) SetCooldown

func (s *ScalingPolicy) SetCooldown(v int64) *ScalingPolicy

SetCooldown sets the Cooldown field's value.

func (*ScalingPolicy) SetEstimatedInstanceWarmup

func (s *ScalingPolicy) SetEstimatedInstanceWarmup(v int64) *ScalingPolicy

SetEstimatedInstanceWarmup sets the EstimatedInstanceWarmup field's value.

func (*ScalingPolicy) SetMetricAggregationType

func (s *ScalingPolicy) SetMetricAggregationType(v string) *ScalingPolicy

SetMetricAggregationType sets the MetricAggregationType field's value.

func (*ScalingPolicy) SetMinAdjustmentMagnitude

func (s *ScalingPolicy) SetMinAdjustmentMagnitude(v int64) *ScalingPolicy

SetMinAdjustmentMagnitude sets the MinAdjustmentMagnitude field's value.

func (*ScalingPolicy) SetMinAdjustmentStep

func (s *ScalingPolicy) SetMinAdjustmentStep(v int64) *ScalingPolicy

SetMinAdjustmentStep sets the MinAdjustmentStep field's value.

func (*ScalingPolicy) SetPolicyARN

func (s *ScalingPolicy) SetPolicyARN(v string) *ScalingPolicy

SetPolicyARN sets the PolicyARN field's value.

func (*ScalingPolicy) SetPolicyName

func (s *ScalingPolicy) SetPolicyName(v string) *ScalingPolicy

SetPolicyName sets the PolicyName field's value.

func (*ScalingPolicy) SetPolicyType

func (s *ScalingPolicy) SetPolicyType(v string) *ScalingPolicy

SetPolicyType sets the PolicyType field's value.

func (*ScalingPolicy) SetScalingAdjustment

func (s *ScalingPolicy) SetScalingAdjustment(v int64) *ScalingPolicy

SetScalingAdjustment sets the ScalingAdjustment field's value.

func (*ScalingPolicy) SetStepAdjustments

func (s *ScalingPolicy) SetStepAdjustments(v []*StepAdjustment) *ScalingPolicy

SetStepAdjustments sets the StepAdjustments field's value.

func (ScalingPolicy) String

func (s ScalingPolicy) String() string

String returns the string representation

type ScalingProcessQuery

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ScalingProcessQuery

type ScalingProcessQuery struct {

    // The name or Amazon Resource Name (ARN) of the Auto Scaling group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // One or more of the following processes. If you omit this parameter, all processes
    // are specified.
    //
    //    * Launch
    //
    //    * Terminate
    //
    //    * HealthCheck
    //
    //    * ReplaceUnhealthy
    //
    //    * AZRebalance
    //
    //    * AlarmNotification
    //
    //    * ScheduledActions
    //
    //    * AddToLoadBalancer
    ScalingProcesses []*string `type:"list"`
    // contains filtered or unexported fields
}

func (ScalingProcessQuery) GoString

func (s ScalingProcessQuery) GoString() string

GoString returns the string representation

func (*ScalingProcessQuery) SetAutoScalingGroupName

func (s *ScalingProcessQuery) SetAutoScalingGroupName(v string) *ScalingProcessQuery

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*ScalingProcessQuery) SetScalingProcesses

func (s *ScalingProcessQuery) SetScalingProcesses(v []*string) *ScalingProcessQuery

SetScalingProcesses sets the ScalingProcesses field's value.

func (ScalingProcessQuery) String

func (s ScalingProcessQuery) String() string

String returns the string representation

func (*ScalingProcessQuery) Validate

func (s *ScalingProcessQuery) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ScheduledUpdateGroupAction

Describes a scheduled update to an Auto Scaling group. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ScheduledUpdateGroupAction

type ScheduledUpdateGroupAction struct {

    // The name of the group.
    AutoScalingGroupName *string `min:"1" type:"string"`

    // The number of instances you prefer to maintain in the group.
    DesiredCapacity *int64 `type:"integer"`

    // The date and time that the action is scheduled to end. This date and time
    // can be up to one month in the future.
    EndTime *time.Time `type:"timestamp" timestampFormat:"iso8601"`

    // The maximum size of the group.
    MaxSize *int64 `type:"integer"`

    // The minimum size of the group.
    MinSize *int64 `type:"integer"`

    // The recurring schedule for the action.
    Recurrence *string `min:"1" type:"string"`

    // The Amazon Resource Name (ARN) of the scheduled action.
    ScheduledActionARN *string `min:"1" type:"string"`

    // The name of the scheduled action.
    ScheduledActionName *string `min:"1" type:"string"`

    // The date and time that the action is scheduled to begin. This date and time
    // can be up to one month in the future.
    //
    // When StartTime and EndTime are specified with Recurrence, they form the boundaries
    // of when the recurring action will start and stop.
    StartTime *time.Time `type:"timestamp" timestampFormat:"iso8601"`

    // This parameter is deprecated.
    Time *time.Time `type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (ScheduledUpdateGroupAction) GoString

func (s ScheduledUpdateGroupAction) GoString() string

GoString returns the string representation

func (*ScheduledUpdateGroupAction) SetAutoScalingGroupName

func (s *ScheduledUpdateGroupAction) SetAutoScalingGroupName(v string) *ScheduledUpdateGroupAction

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*ScheduledUpdateGroupAction) SetDesiredCapacity

func (s *ScheduledUpdateGroupAction) SetDesiredCapacity(v int64) *ScheduledUpdateGroupAction

SetDesiredCapacity sets the DesiredCapacity field's value.

func (*ScheduledUpdateGroupAction) SetEndTime

func (s *ScheduledUpdateGroupAction) SetEndTime(v time.Time) *ScheduledUpdateGroupAction

SetEndTime sets the EndTime field's value.

func (*ScheduledUpdateGroupAction) SetMaxSize

func (s *ScheduledUpdateGroupAction) SetMaxSize(v int64) *ScheduledUpdateGroupAction

SetMaxSize sets the MaxSize field's value.

func (*ScheduledUpdateGroupAction) SetMinSize

func (s *ScheduledUpdateGroupAction) SetMinSize(v int64) *ScheduledUpdateGroupAction

SetMinSize sets the MinSize field's value.

func (*ScheduledUpdateGroupAction) SetRecurrence

func (s *ScheduledUpdateGroupAction) SetRecurrence(v string) *ScheduledUpdateGroupAction

SetRecurrence sets the Recurrence field's value.

func (*ScheduledUpdateGroupAction) SetScheduledActionARN

func (s *ScheduledUpdateGroupAction) SetScheduledActionARN(v string) *ScheduledUpdateGroupAction

SetScheduledActionARN sets the ScheduledActionARN field's value.

func (*ScheduledUpdateGroupAction) SetScheduledActionName

func (s *ScheduledUpdateGroupAction) SetScheduledActionName(v string) *ScheduledUpdateGroupAction

SetScheduledActionName sets the ScheduledActionName field's value.

func (*ScheduledUpdateGroupAction) SetStartTime

func (s *ScheduledUpdateGroupAction) SetStartTime(v time.Time) *ScheduledUpdateGroupAction

SetStartTime sets the StartTime field's value.

func (*ScheduledUpdateGroupAction) SetTime

func (s *ScheduledUpdateGroupAction) SetTime(v time.Time) *ScheduledUpdateGroupAction

SetTime sets the Time field's value.

func (ScheduledUpdateGroupAction) String

func (s ScheduledUpdateGroupAction) String() string

String returns the string representation

type SetDesiredCapacityInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/SetDesiredCapacityType

type SetDesiredCapacityInput struct {

    // The name of the Auto Scaling group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // The number of EC2 instances that should be running in the Auto Scaling group.
    //
    // DesiredCapacity is a required field
    DesiredCapacity *int64 `type:"integer" required:"true"`

    // By default, SetDesiredCapacity overrides any cooldown period associated with
    // the Auto Scaling group. Specify True to make Auto Scaling to wait for the
    // cool-down period associated with the Auto Scaling group to complete before
    // initiating a scaling activity to set your Auto Scaling group to its new capacity.
    HonorCooldown *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (SetDesiredCapacityInput) GoString

func (s SetDesiredCapacityInput) GoString() string

GoString returns the string representation

func (*SetDesiredCapacityInput) SetAutoScalingGroupName

func (s *SetDesiredCapacityInput) SetAutoScalingGroupName(v string) *SetDesiredCapacityInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*SetDesiredCapacityInput) SetDesiredCapacity

func (s *SetDesiredCapacityInput) SetDesiredCapacity(v int64) *SetDesiredCapacityInput

SetDesiredCapacity sets the DesiredCapacity field's value.

func (*SetDesiredCapacityInput) SetHonorCooldown

func (s *SetDesiredCapacityInput) SetHonorCooldown(v bool) *SetDesiredCapacityInput

SetHonorCooldown sets the HonorCooldown field's value.

func (SetDesiredCapacityInput) String

func (s SetDesiredCapacityInput) String() string

String returns the string representation

func (*SetDesiredCapacityInput) Validate

func (s *SetDesiredCapacityInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SetDesiredCapacityOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/SetDesiredCapacityOutput

type SetDesiredCapacityOutput struct {
    // contains filtered or unexported fields
}

func (SetDesiredCapacityOutput) GoString

func (s SetDesiredCapacityOutput) GoString() string

GoString returns the string representation

func (SetDesiredCapacityOutput) String

func (s SetDesiredCapacityOutput) String() string

String returns the string representation

type SetInstanceHealthInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/SetInstanceHealthQuery

type SetInstanceHealthInput struct {

    // The health status of the instance. Set to Healthy if you want the instance
    // to remain in service. Set to Unhealthy if you want the instance to be out
    // of service. Auto Scaling will terminate and replace the unhealthy instance.
    //
    // HealthStatus is a required field
    HealthStatus *string `min:"1" type:"string" required:"true"`

    // The ID of the instance.
    //
    // InstanceId is a required field
    InstanceId *string `min:"1" type:"string" required:"true"`

    // If the Auto Scaling group of the specified instance has a HealthCheckGracePeriod
    // specified for the group, by default, this call will respect the grace period.
    // Set this to False, if you do not want the call to respect the grace period
    // associated with the group.
    //
    // For more information, see the description of the health check grace period
    // for CreateAutoScalingGroup.
    ShouldRespectGracePeriod *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (SetInstanceHealthInput) GoString

func (s SetInstanceHealthInput) GoString() string

GoString returns the string representation

func (*SetInstanceHealthInput) SetHealthStatus

func (s *SetInstanceHealthInput) SetHealthStatus(v string) *SetInstanceHealthInput

SetHealthStatus sets the HealthStatus field's value.

func (*SetInstanceHealthInput) SetInstanceId

func (s *SetInstanceHealthInput) SetInstanceId(v string) *SetInstanceHealthInput

SetInstanceId sets the InstanceId field's value.

func (*SetInstanceHealthInput) SetShouldRespectGracePeriod

func (s *SetInstanceHealthInput) SetShouldRespectGracePeriod(v bool) *SetInstanceHealthInput

SetShouldRespectGracePeriod sets the ShouldRespectGracePeriod field's value.

func (SetInstanceHealthInput) String

func (s SetInstanceHealthInput) String() string

String returns the string representation

func (*SetInstanceHealthInput) Validate

func (s *SetInstanceHealthInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SetInstanceHealthOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/SetInstanceHealthOutput

type SetInstanceHealthOutput struct {
    // contains filtered or unexported fields
}

func (SetInstanceHealthOutput) GoString

func (s SetInstanceHealthOutput) GoString() string

GoString returns the string representation

func (SetInstanceHealthOutput) String

func (s SetInstanceHealthOutput) String() string

String returns the string representation

type SetInstanceProtectionInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/SetInstanceProtectionQuery

type SetInstanceProtectionInput struct {

    // The name of the group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // One or more instance IDs.
    //
    // InstanceIds is a required field
    InstanceIds []*string `type:"list" required:"true"`

    // Indicates whether the instance is protected from termination by Auto Scaling
    // when scaling in.
    //
    // ProtectedFromScaleIn is a required field
    ProtectedFromScaleIn *bool `type:"boolean" required:"true"`
    // contains filtered or unexported fields
}

func (SetInstanceProtectionInput) GoString

func (s SetInstanceProtectionInput) GoString() string

GoString returns the string representation

func (*SetInstanceProtectionInput) SetAutoScalingGroupName

func (s *SetInstanceProtectionInput) SetAutoScalingGroupName(v string) *SetInstanceProtectionInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*SetInstanceProtectionInput) SetInstanceIds

func (s *SetInstanceProtectionInput) SetInstanceIds(v []*string) *SetInstanceProtectionInput

SetInstanceIds sets the InstanceIds field's value.

func (*SetInstanceProtectionInput) SetProtectedFromScaleIn

func (s *SetInstanceProtectionInput) SetProtectedFromScaleIn(v bool) *SetInstanceProtectionInput

SetProtectedFromScaleIn sets the ProtectedFromScaleIn field's value.

func (SetInstanceProtectionInput) String

func (s SetInstanceProtectionInput) String() string

String returns the string representation

func (*SetInstanceProtectionInput) Validate

func (s *SetInstanceProtectionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SetInstanceProtectionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/SetInstanceProtectionAnswer

type SetInstanceProtectionOutput struct {
    // contains filtered or unexported fields
}

func (SetInstanceProtectionOutput) GoString

func (s SetInstanceProtectionOutput) GoString() string

GoString returns the string representation

func (SetInstanceProtectionOutput) String

func (s SetInstanceProtectionOutput) String() string

String returns the string representation

type StepAdjustment

Describes an adjustment based on the difference between the value of the aggregated CloudWatch metric and the breach threshold that you've defined for the alarm.

For the following examples, suppose that you have an alarm with a breach threshold of 50:

* If you want the adjustment to be triggered when the metric is greater
than or equal to 50 and less than 60, specify a lower bound of 0 and an
upper bound of 10.

* If you want the adjustment to be triggered when the metric is greater
than 40 and less than or equal to 50, specify a lower bound of -10 and
an upper bound of 0.

There are a few rules for the step adjustments for your step policy:

* The ranges of your step adjustments can't overlap or have a gap.

* At most one step adjustment can have a null lower bound. If one step
adjustment has a negative lower bound, then there must be a step adjustment
with a null lower bound.

* At most one step adjustment can have a null upper bound. If one step
adjustment has a positive upper bound, then there must be a step adjustment
with a null upper bound.

* The upper and lower bound can't be null in the same step adjustment.

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/StepAdjustment

type StepAdjustment struct {

    // The lower bound for the difference between the alarm threshold and the CloudWatch
    // metric. If the metric value is above the breach threshold, the lower bound
    // is inclusive (the metric must be greater than or equal to the threshold plus
    // the lower bound). Otherwise, it is exclusive (the metric must be greater
    // than the threshold plus the lower bound). A null value indicates negative
    // infinity.
    MetricIntervalLowerBound *float64 `type:"double"`

    // The upper bound for the difference between the alarm threshold and the CloudWatch
    // metric. If the metric value is above the breach threshold, the upper bound
    // is exclusive (the metric must be less than the threshold plus the upper bound).
    // Otherwise, it is inclusive (the metric must be less than or equal to the
    // threshold plus the upper bound). A null value indicates positive infinity.
    //
    // The upper bound must be greater than the lower bound.
    MetricIntervalUpperBound *float64 `type:"double"`

    // The amount by which to scale, based on the specified adjustment type. A positive
    // value adds to the current capacity while a negative number removes from the
    // current capacity.
    //
    // ScalingAdjustment is a required field
    ScalingAdjustment *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (StepAdjustment) GoString

func (s StepAdjustment) GoString() string

GoString returns the string representation

func (*StepAdjustment) SetMetricIntervalLowerBound

func (s *StepAdjustment) SetMetricIntervalLowerBound(v float64) *StepAdjustment

SetMetricIntervalLowerBound sets the MetricIntervalLowerBound field's value.

func (*StepAdjustment) SetMetricIntervalUpperBound

func (s *StepAdjustment) SetMetricIntervalUpperBound(v float64) *StepAdjustment

SetMetricIntervalUpperBound sets the MetricIntervalUpperBound field's value.

func (*StepAdjustment) SetScalingAdjustment

func (s *StepAdjustment) SetScalingAdjustment(v int64) *StepAdjustment

SetScalingAdjustment sets the ScalingAdjustment field's value.

func (StepAdjustment) String

func (s StepAdjustment) String() string

String returns the string representation

func (*StepAdjustment) Validate

func (s *StepAdjustment) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SuspendProcessesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/SuspendProcessesOutput

type SuspendProcessesOutput struct {
    // contains filtered or unexported fields
}

func (SuspendProcessesOutput) GoString

func (s SuspendProcessesOutput) GoString() string

GoString returns the string representation

func (SuspendProcessesOutput) String

func (s SuspendProcessesOutput) String() string

String returns the string representation

type SuspendedProcess

Describes an Auto Scaling process that has been suspended. For more information, see ProcessType. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/SuspendedProcess

type SuspendedProcess struct {

    // The name of the suspended process.
    ProcessName *string `min:"1" type:"string"`

    // The reason that the process was suspended.
    SuspensionReason *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (SuspendedProcess) GoString

func (s SuspendedProcess) GoString() string

GoString returns the string representation

func (*SuspendedProcess) SetProcessName

func (s *SuspendedProcess) SetProcessName(v string) *SuspendedProcess

SetProcessName sets the ProcessName field's value.

func (*SuspendedProcess) SetSuspensionReason

func (s *SuspendedProcess) SetSuspensionReason(v string) *SuspendedProcess

SetSuspensionReason sets the SuspensionReason field's value.

func (SuspendedProcess) String

func (s SuspendedProcess) String() string

String returns the string representation

type Tag

Describes a tag for an Auto Scaling group. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/Tag

type Tag struct {

    // The tag key.
    //
    // Key is a required field
    Key *string `min:"1" type:"string" required:"true"`

    // Determines whether the tag is added to new instances as they are launched
    // in the group.
    PropagateAtLaunch *bool `type:"boolean"`

    // The name of the group.
    ResourceId *string `type:"string"`

    // The type of resource. The only supported value is auto-scaling-group.
    ResourceType *string `type:"string"`

    // The tag value.
    Value *string `type:"string"`
    // contains filtered or unexported fields
}

func (Tag) GoString

func (s Tag) GoString() string

GoString returns the string representation

func (*Tag) SetKey

func (s *Tag) SetKey(v string) *Tag

SetKey sets the Key field's value.

func (*Tag) SetPropagateAtLaunch

func (s *Tag) SetPropagateAtLaunch(v bool) *Tag

SetPropagateAtLaunch sets the PropagateAtLaunch field's value.

func (*Tag) SetResourceId

func (s *Tag) SetResourceId(v string) *Tag

SetResourceId sets the ResourceId field's value.

func (*Tag) SetResourceType

func (s *Tag) SetResourceType(v string) *Tag

SetResourceType sets the ResourceType field's value.

func (*Tag) SetValue

func (s *Tag) SetValue(v string) *Tag

SetValue sets the Value field's value.

func (Tag) String

func (s Tag) String() string

String returns the string representation

func (*Tag) Validate

func (s *Tag) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TagDescription

Describes a tag for an Auto Scaling group. Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/TagDescription

type TagDescription struct {

    // The tag key.
    Key *string `min:"1" type:"string"`

    // Determines whether the tag is added to new instances as they are launched
    // in the group.
    PropagateAtLaunch *bool `type:"boolean"`

    // The name of the group.
    ResourceId *string `type:"string"`

    // The type of resource. The only supported value is auto-scaling-group.
    ResourceType *string `type:"string"`

    // The tag value.
    Value *string `type:"string"`
    // contains filtered or unexported fields
}

func (TagDescription) GoString

func (s TagDescription) GoString() string

GoString returns the string representation

func (*TagDescription) SetKey

func (s *TagDescription) SetKey(v string) *TagDescription

SetKey sets the Key field's value.

func (*TagDescription) SetPropagateAtLaunch

func (s *TagDescription) SetPropagateAtLaunch(v bool) *TagDescription

SetPropagateAtLaunch sets the PropagateAtLaunch field's value.

func (*TagDescription) SetResourceId

func (s *TagDescription) SetResourceId(v string) *TagDescription

SetResourceId sets the ResourceId field's value.

func (*TagDescription) SetResourceType

func (s *TagDescription) SetResourceType(v string) *TagDescription

SetResourceType sets the ResourceType field's value.

func (*TagDescription) SetValue

func (s *TagDescription) SetValue(v string) *TagDescription

SetValue sets the Value field's value.

func (TagDescription) String

func (s TagDescription) String() string

String returns the string representation

type TerminateInstanceInAutoScalingGroupInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/TerminateInstanceInAutoScalingGroupType

type TerminateInstanceInAutoScalingGroupInput struct {

    // The ID of the instance.
    //
    // InstanceId is a required field
    InstanceId *string `min:"1" type:"string" required:"true"`

    // If true, terminating the instance also decrements the size of the Auto Scaling
    // group.
    //
    // ShouldDecrementDesiredCapacity is a required field
    ShouldDecrementDesiredCapacity *bool `type:"boolean" required:"true"`
    // contains filtered or unexported fields
}

func (TerminateInstanceInAutoScalingGroupInput) GoString

func (s TerminateInstanceInAutoScalingGroupInput) GoString() string

GoString returns the string representation

func (*TerminateInstanceInAutoScalingGroupInput) SetInstanceId

func (s *TerminateInstanceInAutoScalingGroupInput) SetInstanceId(v string) *TerminateInstanceInAutoScalingGroupInput

SetInstanceId sets the InstanceId field's value.

func (*TerminateInstanceInAutoScalingGroupInput) SetShouldDecrementDesiredCapacity

func (s *TerminateInstanceInAutoScalingGroupInput) SetShouldDecrementDesiredCapacity(v bool) *TerminateInstanceInAutoScalingGroupInput

SetShouldDecrementDesiredCapacity sets the ShouldDecrementDesiredCapacity field's value.

func (TerminateInstanceInAutoScalingGroupInput) String

func (s TerminateInstanceInAutoScalingGroupInput) String() string

String returns the string representation

func (*TerminateInstanceInAutoScalingGroupInput) Validate

func (s *TerminateInstanceInAutoScalingGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TerminateInstanceInAutoScalingGroupOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ActivityType

type TerminateInstanceInAutoScalingGroupOutput struct {

    // A scaling activity.
    Activity *Activity `type:"structure"`
    // contains filtered or unexported fields
}

func (TerminateInstanceInAutoScalingGroupOutput) GoString

func (s TerminateInstanceInAutoScalingGroupOutput) GoString() string

GoString returns the string representation

func (*TerminateInstanceInAutoScalingGroupOutput) SetActivity

func (s *TerminateInstanceInAutoScalingGroupOutput) SetActivity(v *Activity) *TerminateInstanceInAutoScalingGroupOutput

SetActivity sets the Activity field's value.

func (TerminateInstanceInAutoScalingGroupOutput) String

func (s TerminateInstanceInAutoScalingGroupOutput) String() string

String returns the string representation

type UpdateAutoScalingGroupInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/UpdateAutoScalingGroupType

type UpdateAutoScalingGroupInput struct {

    // The name of the Auto Scaling group.
    //
    // AutoScalingGroupName is a required field
    AutoScalingGroupName *string `min:"1" type:"string" required:"true"`

    // One or more Availability Zones for the group.
    AvailabilityZones []*string `min:"1" type:"list"`

    // The amount of time, in seconds, after a scaling activity completes before
    // another scaling activity can start. The default is 300.
    //
    // For more information, see Auto Scaling Cooldowns (http://docs.aws.amazon.com/autoscaling/latest/userguide/Cooldown.html)
    // in the Auto Scaling User Guide.
    DefaultCooldown *int64 `type:"integer"`

    // The number of EC2 instances that should be running in the Auto Scaling group.
    // This number must be greater than or equal to the minimum size of the group
    // and less than or equal to the maximum size of the group.
    DesiredCapacity *int64 `type:"integer"`

    // The amount of time, in seconds, that Auto Scaling waits before checking the
    // health status of an EC2 instance that has come into service. The default
    // is 0.
    //
    // For more information, see Health Checks (http://docs.aws.amazon.com/autoscaling/latest/userguide/healthcheck.html)
    // in the Auto Scaling User Guide.
    HealthCheckGracePeriod *int64 `type:"integer"`

    // The service to use for the health checks. The valid values are EC2 and ELB.
    HealthCheckType *string `min:"1" type:"string"`

    // The name of the launch configuration.
    LaunchConfigurationName *string `min:"1" type:"string"`

    // The maximum size of the Auto Scaling group.
    MaxSize *int64 `type:"integer"`

    // The minimum size of the Auto Scaling group.
    MinSize *int64 `type:"integer"`

    // Indicates whether newly launched instances are protected from termination
    // by Auto Scaling when scaling in.
    NewInstancesProtectedFromScaleIn *bool `type:"boolean"`

    // The name of the placement group into which you'll launch your instances,
    // if any. For more information, see Placement Groups (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    PlacementGroup *string `min:"1" type:"string"`

    // A standalone termination policy or a list of termination policies used to
    // select the instance to terminate. The policies are executed in the order
    // that they are listed.
    //
    // For more information, see Controlling Which Instances Auto Scaling Terminates
    // During Scale In (http://docs.aws.amazon.com/autoscaling/latest/userguide/as-instance-termination.html)
    // in the Auto Scaling User Guide.
    TerminationPolicies []*string `type:"list"`

    // The ID of the subnet, if you are launching into a VPC. You can specify several
    // subnets in a comma-separated list.
    //
    // When you specify VPCZoneIdentifier with AvailabilityZones, ensure that the
    // subnets' Availability Zones match the values you specify for AvailabilityZones.
    //
    // For more information, see Launching Auto Scaling Instances in a VPC (http://docs.aws.amazon.com/autoscaling/latest/userguide/asg-in-vpc.html)
    // in the Auto Scaling User Guide.
    VPCZoneIdentifier *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (UpdateAutoScalingGroupInput) GoString

func (s UpdateAutoScalingGroupInput) GoString() string

GoString returns the string representation

func (*UpdateAutoScalingGroupInput) SetAutoScalingGroupName

func (s *UpdateAutoScalingGroupInput) SetAutoScalingGroupName(v string) *UpdateAutoScalingGroupInput

SetAutoScalingGroupName sets the AutoScalingGroupName field's value.

func (*UpdateAutoScalingGroupInput) SetAvailabilityZones

func (s *UpdateAutoScalingGroupInput) SetAvailabilityZones(v []*string) *UpdateAutoScalingGroupInput

SetAvailabilityZones sets the AvailabilityZones field's value.

func (*UpdateAutoScalingGroupInput) SetDefaultCooldown

func (s *UpdateAutoScalingGroupInput) SetDefaultCooldown(v int64) *UpdateAutoScalingGroupInput

SetDefaultCooldown sets the DefaultCooldown field's value.

func (*UpdateAutoScalingGroupInput) SetDesiredCapacity

func (s *UpdateAutoScalingGroupInput) SetDesiredCapacity(v int64) *UpdateAutoScalingGroupInput

SetDesiredCapacity sets the DesiredCapacity field's value.

func (*UpdateAutoScalingGroupInput) SetHealthCheckGracePeriod

func (s *UpdateAutoScalingGroupInput) SetHealthCheckGracePeriod(v int64) *UpdateAutoScalingGroupInput

SetHealthCheckGracePeriod sets the HealthCheckGracePeriod field's value.

func (*UpdateAutoScalingGroupInput) SetHealthCheckType

func (s *UpdateAutoScalingGroupInput) SetHealthCheckType(v string) *UpdateAutoScalingGroupInput

SetHealthCheckType sets the HealthCheckType field's value.

func (*UpdateAutoScalingGroupInput) SetLaunchConfigurationName

func (s *UpdateAutoScalingGroupInput) SetLaunchConfigurationName(v string) *UpdateAutoScalingGroupInput

SetLaunchConfigurationName sets the LaunchConfigurationName field's value.

func (*UpdateAutoScalingGroupInput) SetMaxSize

func (s *UpdateAutoScalingGroupInput) SetMaxSize(v int64) *UpdateAutoScalingGroupInput

SetMaxSize sets the MaxSize field's value.

func (*UpdateAutoScalingGroupInput) SetMinSize

func (s *UpdateAutoScalingGroupInput) SetMinSize(v int64) *UpdateAutoScalingGroupInput

SetMinSize sets the MinSize field's value.

func (*UpdateAutoScalingGroupInput) SetNewInstancesProtectedFromScaleIn

func (s *UpdateAutoScalingGroupInput) SetNewInstancesProtectedFromScaleIn(v bool) *UpdateAutoScalingGroupInput

SetNewInstancesProtectedFromScaleIn sets the NewInstancesProtectedFromScaleIn field's value.

func (*UpdateAutoScalingGroupInput) SetPlacementGroup

func (s *UpdateAutoScalingGroupInput) SetPlacementGroup(v string) *UpdateAutoScalingGroupInput

SetPlacementGroup sets the PlacementGroup field's value.

func (*UpdateAutoScalingGroupInput) SetTerminationPolicies

func (s *UpdateAutoScalingGroupInput) SetTerminationPolicies(v []*string) *UpdateAutoScalingGroupInput

SetTerminationPolicies sets the TerminationPolicies field's value.

func (*UpdateAutoScalingGroupInput) SetVPCZoneIdentifier

func (s *UpdateAutoScalingGroupInput) SetVPCZoneIdentifier(v string) *UpdateAutoScalingGroupInput

SetVPCZoneIdentifier sets the VPCZoneIdentifier field's value.

func (UpdateAutoScalingGroupInput) String

func (s UpdateAutoScalingGroupInput) String() string

String returns the string representation

func (*UpdateAutoScalingGroupInput) Validate

func (s *UpdateAutoScalingGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateAutoScalingGroupOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/UpdateAutoScalingGroupOutput

type UpdateAutoScalingGroupOutput struct {
    // contains filtered or unexported fields
}

func (UpdateAutoScalingGroupOutput) GoString

func (s UpdateAutoScalingGroupOutput) GoString() string

GoString returns the string representation

func (UpdateAutoScalingGroupOutput) String

func (s UpdateAutoScalingGroupOutput) String() string

String returns the string representation

Subdirectories

Name Synopsis
..
autoscalingiface Package autoscalingiface provides an interface to enable mocking the Auto Scaling service client for testing your code.