emr - ActiveState ActiveGo 1.8
...

Package emr

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

Overview ▾

Package emr provides the client and types for making API requests to Amazon Elastic MapReduce.

Amazon EMR is a web service that makes it easy to process large amounts of data efficiently. Amazon EMR uses Hadoop processing combined with several AWS products to do tasks such as web indexing, data mining, log file analysis, machine learning, scientific simulation, and data warehousing.

See https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31 for more information on this service.

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

Using the Client

To use the client for Amazon Elastic MapReduce 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 := emr.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 Amazon Elastic MapReduce client EMR for more information on creating the service's client. https://docs.aws.amazon.com/sdk-for-go/api/service/emr/#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.AddInstanceFleet(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("AddInstanceFleet 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.AddInstanceFleetWithContext(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 AddInstanceFleetInput
    func (s AddInstanceFleetInput) GoString() string
    func (s *AddInstanceFleetInput) SetClusterId(v string) *AddInstanceFleetInput
    func (s *AddInstanceFleetInput) SetInstanceFleet(v *InstanceFleetConfig) *AddInstanceFleetInput
    func (s AddInstanceFleetInput) String() string
    func (s *AddInstanceFleetInput) Validate() error
type AddInstanceFleetOutput
    func (s AddInstanceFleetOutput) GoString() string
    func (s *AddInstanceFleetOutput) SetClusterId(v string) *AddInstanceFleetOutput
    func (s *AddInstanceFleetOutput) SetInstanceFleetId(v string) *AddInstanceFleetOutput
    func (s AddInstanceFleetOutput) String() string
type AddInstanceGroupsInput
    func (s AddInstanceGroupsInput) GoString() string
    func (s *AddInstanceGroupsInput) SetInstanceGroups(v []*InstanceGroupConfig) *AddInstanceGroupsInput
    func (s *AddInstanceGroupsInput) SetJobFlowId(v string) *AddInstanceGroupsInput
    func (s AddInstanceGroupsInput) String() string
    func (s *AddInstanceGroupsInput) Validate() error
type AddInstanceGroupsOutput
    func (s AddInstanceGroupsOutput) GoString() string
    func (s *AddInstanceGroupsOutput) SetInstanceGroupIds(v []*string) *AddInstanceGroupsOutput
    func (s *AddInstanceGroupsOutput) SetJobFlowId(v string) *AddInstanceGroupsOutput
    func (s AddInstanceGroupsOutput) String() string
type AddJobFlowStepsInput
    func (s AddJobFlowStepsInput) GoString() string
    func (s *AddJobFlowStepsInput) SetJobFlowId(v string) *AddJobFlowStepsInput
    func (s *AddJobFlowStepsInput) SetSteps(v []*StepConfig) *AddJobFlowStepsInput
    func (s AddJobFlowStepsInput) String() string
    func (s *AddJobFlowStepsInput) Validate() error
type AddJobFlowStepsOutput
    func (s AddJobFlowStepsOutput) GoString() string
    func (s *AddJobFlowStepsOutput) SetStepIds(v []*string) *AddJobFlowStepsOutput
    func (s AddJobFlowStepsOutput) String() string
type AddTagsInput
    func (s AddTagsInput) GoString() string
    func (s *AddTagsInput) SetResourceId(v string) *AddTagsInput
    func (s *AddTagsInput) SetTags(v []*Tag) *AddTagsInput
    func (s AddTagsInput) String() string
    func (s *AddTagsInput) Validate() error
type AddTagsOutput
    func (s AddTagsOutput) GoString() string
    func (s AddTagsOutput) String() string
type Application
    func (s Application) GoString() string
    func (s *Application) SetAdditionalInfo(v map[string]*string) *Application
    func (s *Application) SetArgs(v []*string) *Application
    func (s *Application) SetName(v string) *Application
    func (s *Application) SetVersion(v string) *Application
    func (s Application) String() string
type AutoScalingPolicy
    func (s AutoScalingPolicy) GoString() string
    func (s *AutoScalingPolicy) SetConstraints(v *ScalingConstraints) *AutoScalingPolicy
    func (s *AutoScalingPolicy) SetRules(v []*ScalingRule) *AutoScalingPolicy
    func (s AutoScalingPolicy) String() string
    func (s *AutoScalingPolicy) Validate() error
type AutoScalingPolicyDescription
    func (s AutoScalingPolicyDescription) GoString() string
    func (s *AutoScalingPolicyDescription) SetConstraints(v *ScalingConstraints) *AutoScalingPolicyDescription
    func (s *AutoScalingPolicyDescription) SetRules(v []*ScalingRule) *AutoScalingPolicyDescription
    func (s *AutoScalingPolicyDescription) SetStatus(v *AutoScalingPolicyStatus) *AutoScalingPolicyDescription
    func (s AutoScalingPolicyDescription) String() string
type AutoScalingPolicyStateChangeReason
    func (s AutoScalingPolicyStateChangeReason) GoString() string
    func (s *AutoScalingPolicyStateChangeReason) SetCode(v string) *AutoScalingPolicyStateChangeReason
    func (s *AutoScalingPolicyStateChangeReason) SetMessage(v string) *AutoScalingPolicyStateChangeReason
    func (s AutoScalingPolicyStateChangeReason) String() string
type AutoScalingPolicyStatus
    func (s AutoScalingPolicyStatus) GoString() string
    func (s *AutoScalingPolicyStatus) SetState(v string) *AutoScalingPolicyStatus
    func (s *AutoScalingPolicyStatus) SetStateChangeReason(v *AutoScalingPolicyStateChangeReason) *AutoScalingPolicyStatus
    func (s AutoScalingPolicyStatus) String() string
type BootstrapActionConfig
    func (s BootstrapActionConfig) GoString() string
    func (s *BootstrapActionConfig) SetName(v string) *BootstrapActionConfig
    func (s *BootstrapActionConfig) SetScriptBootstrapAction(v *ScriptBootstrapActionConfig) *BootstrapActionConfig
    func (s BootstrapActionConfig) String() string
    func (s *BootstrapActionConfig) Validate() error
type BootstrapActionDetail
    func (s BootstrapActionDetail) GoString() string
    func (s *BootstrapActionDetail) SetBootstrapActionConfig(v *BootstrapActionConfig) *BootstrapActionDetail
    func (s BootstrapActionDetail) String() string
type CancelStepsInfo
    func (s CancelStepsInfo) GoString() string
    func (s *CancelStepsInfo) SetReason(v string) *CancelStepsInfo
    func (s *CancelStepsInfo) SetStatus(v string) *CancelStepsInfo
    func (s *CancelStepsInfo) SetStepId(v string) *CancelStepsInfo
    func (s CancelStepsInfo) String() string
type CancelStepsInput
    func (s CancelStepsInput) GoString() string
    func (s *CancelStepsInput) SetClusterId(v string) *CancelStepsInput
    func (s *CancelStepsInput) SetStepIds(v []*string) *CancelStepsInput
    func (s CancelStepsInput) String() string
type CancelStepsOutput
    func (s CancelStepsOutput) GoString() string
    func (s *CancelStepsOutput) SetCancelStepsInfoList(v []*CancelStepsInfo) *CancelStepsOutput
    func (s CancelStepsOutput) String() string
type CloudWatchAlarmDefinition
    func (s CloudWatchAlarmDefinition) GoString() string
    func (s *CloudWatchAlarmDefinition) SetComparisonOperator(v string) *CloudWatchAlarmDefinition
    func (s *CloudWatchAlarmDefinition) SetDimensions(v []*MetricDimension) *CloudWatchAlarmDefinition
    func (s *CloudWatchAlarmDefinition) SetEvaluationPeriods(v int64) *CloudWatchAlarmDefinition
    func (s *CloudWatchAlarmDefinition) SetMetricName(v string) *CloudWatchAlarmDefinition
    func (s *CloudWatchAlarmDefinition) SetNamespace(v string) *CloudWatchAlarmDefinition
    func (s *CloudWatchAlarmDefinition) SetPeriod(v int64) *CloudWatchAlarmDefinition
    func (s *CloudWatchAlarmDefinition) SetStatistic(v string) *CloudWatchAlarmDefinition
    func (s *CloudWatchAlarmDefinition) SetThreshold(v float64) *CloudWatchAlarmDefinition
    func (s *CloudWatchAlarmDefinition) SetUnit(v string) *CloudWatchAlarmDefinition
    func (s CloudWatchAlarmDefinition) String() string
    func (s *CloudWatchAlarmDefinition) Validate() error
type Cluster
    func (s Cluster) GoString() string
    func (s *Cluster) SetApplications(v []*Application) *Cluster
    func (s *Cluster) SetAutoScalingRole(v string) *Cluster
    func (s *Cluster) SetAutoTerminate(v bool) *Cluster
    func (s *Cluster) SetConfigurations(v []*Configuration) *Cluster
    func (s *Cluster) SetEc2InstanceAttributes(v *Ec2InstanceAttributes) *Cluster
    func (s *Cluster) SetId(v string) *Cluster
    func (s *Cluster) SetInstanceCollectionType(v string) *Cluster
    func (s *Cluster) SetLogUri(v string) *Cluster
    func (s *Cluster) SetMasterPublicDnsName(v string) *Cluster
    func (s *Cluster) SetName(v string) *Cluster
    func (s *Cluster) SetNormalizedInstanceHours(v int64) *Cluster
    func (s *Cluster) SetReleaseLabel(v string) *Cluster
    func (s *Cluster) SetRequestedAmiVersion(v string) *Cluster
    func (s *Cluster) SetRunningAmiVersion(v string) *Cluster
    func (s *Cluster) SetScaleDownBehavior(v string) *Cluster
    func (s *Cluster) SetSecurityConfiguration(v string) *Cluster
    func (s *Cluster) SetServiceRole(v string) *Cluster
    func (s *Cluster) SetStatus(v *ClusterStatus) *Cluster
    func (s *Cluster) SetTags(v []*Tag) *Cluster
    func (s *Cluster) SetTerminationProtected(v bool) *Cluster
    func (s *Cluster) SetVisibleToAllUsers(v bool) *Cluster
    func (s Cluster) String() string
type ClusterStateChangeReason
    func (s ClusterStateChangeReason) GoString() string
    func (s *ClusterStateChangeReason) SetCode(v string) *ClusterStateChangeReason
    func (s *ClusterStateChangeReason) SetMessage(v string) *ClusterStateChangeReason
    func (s ClusterStateChangeReason) String() string
type ClusterStatus
    func (s ClusterStatus) GoString() string
    func (s *ClusterStatus) SetState(v string) *ClusterStatus
    func (s *ClusterStatus) SetStateChangeReason(v *ClusterStateChangeReason) *ClusterStatus
    func (s *ClusterStatus) SetTimeline(v *ClusterTimeline) *ClusterStatus
    func (s ClusterStatus) String() string
type ClusterSummary
    func (s ClusterSummary) GoString() string
    func (s *ClusterSummary) SetId(v string) *ClusterSummary
    func (s *ClusterSummary) SetName(v string) *ClusterSummary
    func (s *ClusterSummary) SetNormalizedInstanceHours(v int64) *ClusterSummary
    func (s *ClusterSummary) SetStatus(v *ClusterStatus) *ClusterSummary
    func (s ClusterSummary) String() string
type ClusterTimeline
    func (s ClusterTimeline) GoString() string
    func (s *ClusterTimeline) SetCreationDateTime(v time.Time) *ClusterTimeline
    func (s *ClusterTimeline) SetEndDateTime(v time.Time) *ClusterTimeline
    func (s *ClusterTimeline) SetReadyDateTime(v time.Time) *ClusterTimeline
    func (s ClusterTimeline) String() string
type Command
    func (s Command) GoString() string
    func (s *Command) SetArgs(v []*string) *Command
    func (s *Command) SetName(v string) *Command
    func (s *Command) SetScriptPath(v string) *Command
    func (s Command) String() string
type Configuration
    func (s Configuration) GoString() string
    func (s *Configuration) SetClassification(v string) *Configuration
    func (s *Configuration) SetConfigurations(v []*Configuration) *Configuration
    func (s *Configuration) SetProperties(v map[string]*string) *Configuration
    func (s Configuration) String() string
type CreateSecurityConfigurationInput
    func (s CreateSecurityConfigurationInput) GoString() string
    func (s *CreateSecurityConfigurationInput) SetName(v string) *CreateSecurityConfigurationInput
    func (s *CreateSecurityConfigurationInput) SetSecurityConfiguration(v string) *CreateSecurityConfigurationInput
    func (s CreateSecurityConfigurationInput) String() string
    func (s *CreateSecurityConfigurationInput) Validate() error
type CreateSecurityConfigurationOutput
    func (s CreateSecurityConfigurationOutput) GoString() string
    func (s *CreateSecurityConfigurationOutput) SetCreationDateTime(v time.Time) *CreateSecurityConfigurationOutput
    func (s *CreateSecurityConfigurationOutput) SetName(v string) *CreateSecurityConfigurationOutput
    func (s CreateSecurityConfigurationOutput) String() string
type DeleteSecurityConfigurationInput
    func (s DeleteSecurityConfigurationInput) GoString() string
    func (s *DeleteSecurityConfigurationInput) SetName(v string) *DeleteSecurityConfigurationInput
    func (s DeleteSecurityConfigurationInput) String() string
    func (s *DeleteSecurityConfigurationInput) Validate() error
type DeleteSecurityConfigurationOutput
    func (s DeleteSecurityConfigurationOutput) GoString() string
    func (s DeleteSecurityConfigurationOutput) String() string
type DescribeClusterInput
    func (s DescribeClusterInput) GoString() string
    func (s *DescribeClusterInput) SetClusterId(v string) *DescribeClusterInput
    func (s DescribeClusterInput) String() string
    func (s *DescribeClusterInput) Validate() error
type DescribeClusterOutput
    func (s DescribeClusterOutput) GoString() string
    func (s *DescribeClusterOutput) SetCluster(v *Cluster) *DescribeClusterOutput
    func (s DescribeClusterOutput) String() string
type DescribeJobFlowsInput
    func (s DescribeJobFlowsInput) GoString() string
    func (s *DescribeJobFlowsInput) SetCreatedAfter(v time.Time) *DescribeJobFlowsInput
    func (s *DescribeJobFlowsInput) SetCreatedBefore(v time.Time) *DescribeJobFlowsInput
    func (s *DescribeJobFlowsInput) SetJobFlowIds(v []*string) *DescribeJobFlowsInput
    func (s *DescribeJobFlowsInput) SetJobFlowStates(v []*string) *DescribeJobFlowsInput
    func (s DescribeJobFlowsInput) String() string
type DescribeJobFlowsOutput
    func (s DescribeJobFlowsOutput) GoString() string
    func (s *DescribeJobFlowsOutput) SetJobFlows(v []*JobFlowDetail) *DescribeJobFlowsOutput
    func (s DescribeJobFlowsOutput) String() string
type DescribeSecurityConfigurationInput
    func (s DescribeSecurityConfigurationInput) GoString() string
    func (s *DescribeSecurityConfigurationInput) SetName(v string) *DescribeSecurityConfigurationInput
    func (s DescribeSecurityConfigurationInput) String() string
    func (s *DescribeSecurityConfigurationInput) Validate() error
type DescribeSecurityConfigurationOutput
    func (s DescribeSecurityConfigurationOutput) GoString() string
    func (s *DescribeSecurityConfigurationOutput) SetCreationDateTime(v time.Time) *DescribeSecurityConfigurationOutput
    func (s *DescribeSecurityConfigurationOutput) SetName(v string) *DescribeSecurityConfigurationOutput
    func (s *DescribeSecurityConfigurationOutput) SetSecurityConfiguration(v string) *DescribeSecurityConfigurationOutput
    func (s DescribeSecurityConfigurationOutput) String() string
type DescribeStepInput
    func (s DescribeStepInput) GoString() string
    func (s *DescribeStepInput) SetClusterId(v string) *DescribeStepInput
    func (s *DescribeStepInput) SetStepId(v string) *DescribeStepInput
    func (s DescribeStepInput) String() string
    func (s *DescribeStepInput) Validate() error
type DescribeStepOutput
    func (s DescribeStepOutput) GoString() string
    func (s *DescribeStepOutput) SetStep(v *Step) *DescribeStepOutput
    func (s DescribeStepOutput) String() string
type EMR
    func New(p client.ConfigProvider, cfgs ...*aws.Config) *EMR
    func (c *EMR) AddInstanceFleet(input *AddInstanceFleetInput) (*AddInstanceFleetOutput, error)
    func (c *EMR) AddInstanceFleetRequest(input *AddInstanceFleetInput) (req *request.Request, output *AddInstanceFleetOutput)
    func (c *EMR) AddInstanceFleetWithContext(ctx aws.Context, input *AddInstanceFleetInput, opts ...request.Option) (*AddInstanceFleetOutput, error)
    func (c *EMR) AddInstanceGroups(input *AddInstanceGroupsInput) (*AddInstanceGroupsOutput, error)
    func (c *EMR) AddInstanceGroupsRequest(input *AddInstanceGroupsInput) (req *request.Request, output *AddInstanceGroupsOutput)
    func (c *EMR) AddInstanceGroupsWithContext(ctx aws.Context, input *AddInstanceGroupsInput, opts ...request.Option) (*AddInstanceGroupsOutput, error)
    func (c *EMR) AddJobFlowSteps(input *AddJobFlowStepsInput) (*AddJobFlowStepsOutput, error)
    func (c *EMR) AddJobFlowStepsRequest(input *AddJobFlowStepsInput) (req *request.Request, output *AddJobFlowStepsOutput)
    func (c *EMR) AddJobFlowStepsWithContext(ctx aws.Context, input *AddJobFlowStepsInput, opts ...request.Option) (*AddJobFlowStepsOutput, error)
    func (c *EMR) AddTags(input *AddTagsInput) (*AddTagsOutput, error)
    func (c *EMR) AddTagsRequest(input *AddTagsInput) (req *request.Request, output *AddTagsOutput)
    func (c *EMR) AddTagsWithContext(ctx aws.Context, input *AddTagsInput, opts ...request.Option) (*AddTagsOutput, error)
    func (c *EMR) CancelSteps(input *CancelStepsInput) (*CancelStepsOutput, error)
    func (c *EMR) CancelStepsRequest(input *CancelStepsInput) (req *request.Request, output *CancelStepsOutput)
    func (c *EMR) CancelStepsWithContext(ctx aws.Context, input *CancelStepsInput, opts ...request.Option) (*CancelStepsOutput, error)
    func (c *EMR) CreateSecurityConfiguration(input *CreateSecurityConfigurationInput) (*CreateSecurityConfigurationOutput, error)
    func (c *EMR) CreateSecurityConfigurationRequest(input *CreateSecurityConfigurationInput) (req *request.Request, output *CreateSecurityConfigurationOutput)
    func (c *EMR) CreateSecurityConfigurationWithContext(ctx aws.Context, input *CreateSecurityConfigurationInput, opts ...request.Option) (*CreateSecurityConfigurationOutput, error)
    func (c *EMR) DeleteSecurityConfiguration(input *DeleteSecurityConfigurationInput) (*DeleteSecurityConfigurationOutput, error)
    func (c *EMR) DeleteSecurityConfigurationRequest(input *DeleteSecurityConfigurationInput) (req *request.Request, output *DeleteSecurityConfigurationOutput)
    func (c *EMR) DeleteSecurityConfigurationWithContext(ctx aws.Context, input *DeleteSecurityConfigurationInput, opts ...request.Option) (*DeleteSecurityConfigurationOutput, error)
    func (c *EMR) DescribeCluster(input *DescribeClusterInput) (*DescribeClusterOutput, error)
    func (c *EMR) DescribeClusterRequest(input *DescribeClusterInput) (req *request.Request, output *DescribeClusterOutput)
    func (c *EMR) DescribeClusterWithContext(ctx aws.Context, input *DescribeClusterInput, opts ...request.Option) (*DescribeClusterOutput, error)
    func (c *EMR) DescribeJobFlows(input *DescribeJobFlowsInput) (*DescribeJobFlowsOutput, error)
    func (c *EMR) DescribeJobFlowsRequest(input *DescribeJobFlowsInput) (req *request.Request, output *DescribeJobFlowsOutput)
    func (c *EMR) DescribeJobFlowsWithContext(ctx aws.Context, input *DescribeJobFlowsInput, opts ...request.Option) (*DescribeJobFlowsOutput, error)
    func (c *EMR) DescribeSecurityConfiguration(input *DescribeSecurityConfigurationInput) (*DescribeSecurityConfigurationOutput, error)
    func (c *EMR) DescribeSecurityConfigurationRequest(input *DescribeSecurityConfigurationInput) (req *request.Request, output *DescribeSecurityConfigurationOutput)
    func (c *EMR) DescribeSecurityConfigurationWithContext(ctx aws.Context, input *DescribeSecurityConfigurationInput, opts ...request.Option) (*DescribeSecurityConfigurationOutput, error)
    func (c *EMR) DescribeStep(input *DescribeStepInput) (*DescribeStepOutput, error)
    func (c *EMR) DescribeStepRequest(input *DescribeStepInput) (req *request.Request, output *DescribeStepOutput)
    func (c *EMR) DescribeStepWithContext(ctx aws.Context, input *DescribeStepInput, opts ...request.Option) (*DescribeStepOutput, error)
    func (c *EMR) ListBootstrapActions(input *ListBootstrapActionsInput) (*ListBootstrapActionsOutput, error)
    func (c *EMR) ListBootstrapActionsPages(input *ListBootstrapActionsInput, fn func(*ListBootstrapActionsOutput, bool) bool) error
    func (c *EMR) ListBootstrapActionsPagesWithContext(ctx aws.Context, input *ListBootstrapActionsInput, fn func(*ListBootstrapActionsOutput, bool) bool, opts ...request.Option) error
    func (c *EMR) ListBootstrapActionsRequest(input *ListBootstrapActionsInput) (req *request.Request, output *ListBootstrapActionsOutput)
    func (c *EMR) ListBootstrapActionsWithContext(ctx aws.Context, input *ListBootstrapActionsInput, opts ...request.Option) (*ListBootstrapActionsOutput, error)
    func (c *EMR) ListClusters(input *ListClustersInput) (*ListClustersOutput, error)
    func (c *EMR) ListClustersPages(input *ListClustersInput, fn func(*ListClustersOutput, bool) bool) error
    func (c *EMR) ListClustersPagesWithContext(ctx aws.Context, input *ListClustersInput, fn func(*ListClustersOutput, bool) bool, opts ...request.Option) error
    func (c *EMR) ListClustersRequest(input *ListClustersInput) (req *request.Request, output *ListClustersOutput)
    func (c *EMR) ListClustersWithContext(ctx aws.Context, input *ListClustersInput, opts ...request.Option) (*ListClustersOutput, error)
    func (c *EMR) ListInstanceFleets(input *ListInstanceFleetsInput) (*ListInstanceFleetsOutput, error)
    func (c *EMR) ListInstanceFleetsPages(input *ListInstanceFleetsInput, fn func(*ListInstanceFleetsOutput, bool) bool) error
    func (c *EMR) ListInstanceFleetsPagesWithContext(ctx aws.Context, input *ListInstanceFleetsInput, fn func(*ListInstanceFleetsOutput, bool) bool, opts ...request.Option) error
    func (c *EMR) ListInstanceFleetsRequest(input *ListInstanceFleetsInput) (req *request.Request, output *ListInstanceFleetsOutput)
    func (c *EMR) ListInstanceFleetsWithContext(ctx aws.Context, input *ListInstanceFleetsInput, opts ...request.Option) (*ListInstanceFleetsOutput, error)
    func (c *EMR) ListInstanceGroups(input *ListInstanceGroupsInput) (*ListInstanceGroupsOutput, error)
    func (c *EMR) ListInstanceGroupsPages(input *ListInstanceGroupsInput, fn func(*ListInstanceGroupsOutput, bool) bool) error
    func (c *EMR) ListInstanceGroupsPagesWithContext(ctx aws.Context, input *ListInstanceGroupsInput, fn func(*ListInstanceGroupsOutput, bool) bool, opts ...request.Option) error
    func (c *EMR) ListInstanceGroupsRequest(input *ListInstanceGroupsInput) (req *request.Request, output *ListInstanceGroupsOutput)
    func (c *EMR) ListInstanceGroupsWithContext(ctx aws.Context, input *ListInstanceGroupsInput, opts ...request.Option) (*ListInstanceGroupsOutput, error)
    func (c *EMR) ListInstances(input *ListInstancesInput) (*ListInstancesOutput, error)
    func (c *EMR) ListInstancesPages(input *ListInstancesInput, fn func(*ListInstancesOutput, bool) bool) error
    func (c *EMR) ListInstancesPagesWithContext(ctx aws.Context, input *ListInstancesInput, fn func(*ListInstancesOutput, bool) bool, opts ...request.Option) error
    func (c *EMR) ListInstancesRequest(input *ListInstancesInput) (req *request.Request, output *ListInstancesOutput)
    func (c *EMR) ListInstancesWithContext(ctx aws.Context, input *ListInstancesInput, opts ...request.Option) (*ListInstancesOutput, error)
    func (c *EMR) ListSecurityConfigurations(input *ListSecurityConfigurationsInput) (*ListSecurityConfigurationsOutput, error)
    func (c *EMR) ListSecurityConfigurationsRequest(input *ListSecurityConfigurationsInput) (req *request.Request, output *ListSecurityConfigurationsOutput)
    func (c *EMR) ListSecurityConfigurationsWithContext(ctx aws.Context, input *ListSecurityConfigurationsInput, opts ...request.Option) (*ListSecurityConfigurationsOutput, error)
    func (c *EMR) ListSteps(input *ListStepsInput) (*ListStepsOutput, error)
    func (c *EMR) ListStepsPages(input *ListStepsInput, fn func(*ListStepsOutput, bool) bool) error
    func (c *EMR) ListStepsPagesWithContext(ctx aws.Context, input *ListStepsInput, fn func(*ListStepsOutput, bool) bool, opts ...request.Option) error
    func (c *EMR) ListStepsRequest(input *ListStepsInput) (req *request.Request, output *ListStepsOutput)
    func (c *EMR) ListStepsWithContext(ctx aws.Context, input *ListStepsInput, opts ...request.Option) (*ListStepsOutput, error)
    func (c *EMR) ModifyInstanceFleet(input *ModifyInstanceFleetInput) (*ModifyInstanceFleetOutput, error)
    func (c *EMR) ModifyInstanceFleetRequest(input *ModifyInstanceFleetInput) (req *request.Request, output *ModifyInstanceFleetOutput)
    func (c *EMR) ModifyInstanceFleetWithContext(ctx aws.Context, input *ModifyInstanceFleetInput, opts ...request.Option) (*ModifyInstanceFleetOutput, error)
    func (c *EMR) ModifyInstanceGroups(input *ModifyInstanceGroupsInput) (*ModifyInstanceGroupsOutput, error)
    func (c *EMR) ModifyInstanceGroupsRequest(input *ModifyInstanceGroupsInput) (req *request.Request, output *ModifyInstanceGroupsOutput)
    func (c *EMR) ModifyInstanceGroupsWithContext(ctx aws.Context, input *ModifyInstanceGroupsInput, opts ...request.Option) (*ModifyInstanceGroupsOutput, error)
    func (c *EMR) PutAutoScalingPolicy(input *PutAutoScalingPolicyInput) (*PutAutoScalingPolicyOutput, error)
    func (c *EMR) PutAutoScalingPolicyRequest(input *PutAutoScalingPolicyInput) (req *request.Request, output *PutAutoScalingPolicyOutput)
    func (c *EMR) PutAutoScalingPolicyWithContext(ctx aws.Context, input *PutAutoScalingPolicyInput, opts ...request.Option) (*PutAutoScalingPolicyOutput, error)
    func (c *EMR) RemoveAutoScalingPolicy(input *RemoveAutoScalingPolicyInput) (*RemoveAutoScalingPolicyOutput, error)
    func (c *EMR) RemoveAutoScalingPolicyRequest(input *RemoveAutoScalingPolicyInput) (req *request.Request, output *RemoveAutoScalingPolicyOutput)
    func (c *EMR) RemoveAutoScalingPolicyWithContext(ctx aws.Context, input *RemoveAutoScalingPolicyInput, opts ...request.Option) (*RemoveAutoScalingPolicyOutput, error)
    func (c *EMR) RemoveTags(input *RemoveTagsInput) (*RemoveTagsOutput, error)
    func (c *EMR) RemoveTagsRequest(input *RemoveTagsInput) (req *request.Request, output *RemoveTagsOutput)
    func (c *EMR) RemoveTagsWithContext(ctx aws.Context, input *RemoveTagsInput, opts ...request.Option) (*RemoveTagsOutput, error)
    func (c *EMR) RunJobFlow(input *RunJobFlowInput) (*RunJobFlowOutput, error)
    func (c *EMR) RunJobFlowRequest(input *RunJobFlowInput) (req *request.Request, output *RunJobFlowOutput)
    func (c *EMR) RunJobFlowWithContext(ctx aws.Context, input *RunJobFlowInput, opts ...request.Option) (*RunJobFlowOutput, error)
    func (c *EMR) SetTerminationProtection(input *SetTerminationProtectionInput) (*SetTerminationProtectionOutput, error)
    func (c *EMR) SetTerminationProtectionRequest(input *SetTerminationProtectionInput) (req *request.Request, output *SetTerminationProtectionOutput)
    func (c *EMR) SetTerminationProtectionWithContext(ctx aws.Context, input *SetTerminationProtectionInput, opts ...request.Option) (*SetTerminationProtectionOutput, error)
    func (c *EMR) SetVisibleToAllUsers(input *SetVisibleToAllUsersInput) (*SetVisibleToAllUsersOutput, error)
    func (c *EMR) SetVisibleToAllUsersRequest(input *SetVisibleToAllUsersInput) (req *request.Request, output *SetVisibleToAllUsersOutput)
    func (c *EMR) SetVisibleToAllUsersWithContext(ctx aws.Context, input *SetVisibleToAllUsersInput, opts ...request.Option) (*SetVisibleToAllUsersOutput, error)
    func (c *EMR) TerminateJobFlows(input *TerminateJobFlowsInput) (*TerminateJobFlowsOutput, error)
    func (c *EMR) TerminateJobFlowsRequest(input *TerminateJobFlowsInput) (req *request.Request, output *TerminateJobFlowsOutput)
    func (c *EMR) TerminateJobFlowsWithContext(ctx aws.Context, input *TerminateJobFlowsInput, opts ...request.Option) (*TerminateJobFlowsOutput, error)
    func (c *EMR) WaitUntilClusterRunning(input *DescribeClusterInput) error
    func (c *EMR) WaitUntilClusterRunningWithContext(ctx aws.Context, input *DescribeClusterInput, opts ...request.WaiterOption) error
    func (c *EMR) WaitUntilClusterTerminated(input *DescribeClusterInput) error
    func (c *EMR) WaitUntilClusterTerminatedWithContext(ctx aws.Context, input *DescribeClusterInput, opts ...request.WaiterOption) error
    func (c *EMR) WaitUntilStepComplete(input *DescribeStepInput) error
    func (c *EMR) WaitUntilStepCompleteWithContext(ctx aws.Context, input *DescribeStepInput, opts ...request.WaiterOption) error
type EbsBlockDevice
    func (s EbsBlockDevice) GoString() string
    func (s *EbsBlockDevice) SetDevice(v string) *EbsBlockDevice
    func (s *EbsBlockDevice) SetVolumeSpecification(v *VolumeSpecification) *EbsBlockDevice
    func (s EbsBlockDevice) String() string
type EbsBlockDeviceConfig
    func (s EbsBlockDeviceConfig) GoString() string
    func (s *EbsBlockDeviceConfig) SetVolumeSpecification(v *VolumeSpecification) *EbsBlockDeviceConfig
    func (s *EbsBlockDeviceConfig) SetVolumesPerInstance(v int64) *EbsBlockDeviceConfig
    func (s EbsBlockDeviceConfig) String() string
    func (s *EbsBlockDeviceConfig) Validate() error
type EbsConfiguration
    func (s EbsConfiguration) GoString() string
    func (s *EbsConfiguration) SetEbsBlockDeviceConfigs(v []*EbsBlockDeviceConfig) *EbsConfiguration
    func (s *EbsConfiguration) SetEbsOptimized(v bool) *EbsConfiguration
    func (s EbsConfiguration) String() string
    func (s *EbsConfiguration) Validate() error
type EbsVolume
    func (s EbsVolume) GoString() string
    func (s *EbsVolume) SetDevice(v string) *EbsVolume
    func (s *EbsVolume) SetVolumeId(v string) *EbsVolume
    func (s EbsVolume) String() string
type Ec2InstanceAttributes
    func (s Ec2InstanceAttributes) GoString() string
    func (s *Ec2InstanceAttributes) SetAdditionalMasterSecurityGroups(v []*string) *Ec2InstanceAttributes
    func (s *Ec2InstanceAttributes) SetAdditionalSlaveSecurityGroups(v []*string) *Ec2InstanceAttributes
    func (s *Ec2InstanceAttributes) SetEc2AvailabilityZone(v string) *Ec2InstanceAttributes
    func (s *Ec2InstanceAttributes) SetEc2KeyName(v string) *Ec2InstanceAttributes
    func (s *Ec2InstanceAttributes) SetEc2SubnetId(v string) *Ec2InstanceAttributes
    func (s *Ec2InstanceAttributes) SetEmrManagedMasterSecurityGroup(v string) *Ec2InstanceAttributes
    func (s *Ec2InstanceAttributes) SetEmrManagedSlaveSecurityGroup(v string) *Ec2InstanceAttributes
    func (s *Ec2InstanceAttributes) SetIamInstanceProfile(v string) *Ec2InstanceAttributes
    func (s *Ec2InstanceAttributes) SetRequestedEc2AvailabilityZones(v []*string) *Ec2InstanceAttributes
    func (s *Ec2InstanceAttributes) SetRequestedEc2SubnetIds(v []*string) *Ec2InstanceAttributes
    func (s *Ec2InstanceAttributes) SetServiceAccessSecurityGroup(v string) *Ec2InstanceAttributes
    func (s Ec2InstanceAttributes) String() string
type FailureDetails
    func (s FailureDetails) GoString() string
    func (s *FailureDetails) SetLogFile(v string) *FailureDetails
    func (s *FailureDetails) SetMessage(v string) *FailureDetails
    func (s *FailureDetails) SetReason(v string) *FailureDetails
    func (s FailureDetails) String() string
type HadoopJarStepConfig
    func (s HadoopJarStepConfig) GoString() string
    func (s *HadoopJarStepConfig) SetArgs(v []*string) *HadoopJarStepConfig
    func (s *HadoopJarStepConfig) SetJar(v string) *HadoopJarStepConfig
    func (s *HadoopJarStepConfig) SetMainClass(v string) *HadoopJarStepConfig
    func (s *HadoopJarStepConfig) SetProperties(v []*KeyValue) *HadoopJarStepConfig
    func (s HadoopJarStepConfig) String() string
    func (s *HadoopJarStepConfig) Validate() error
type HadoopStepConfig
    func (s HadoopStepConfig) GoString() string
    func (s *HadoopStepConfig) SetArgs(v []*string) *HadoopStepConfig
    func (s *HadoopStepConfig) SetJar(v string) *HadoopStepConfig
    func (s *HadoopStepConfig) SetMainClass(v string) *HadoopStepConfig
    func (s *HadoopStepConfig) SetProperties(v map[string]*string) *HadoopStepConfig
    func (s HadoopStepConfig) String() string
type Instance
    func (s Instance) GoString() string
    func (s *Instance) SetEbsVolumes(v []*EbsVolume) *Instance
    func (s *Instance) SetEc2InstanceId(v string) *Instance
    func (s *Instance) SetId(v string) *Instance
    func (s *Instance) SetInstanceFleetId(v string) *Instance
    func (s *Instance) SetInstanceGroupId(v string) *Instance
    func (s *Instance) SetInstanceType(v string) *Instance
    func (s *Instance) SetMarket(v string) *Instance
    func (s *Instance) SetPrivateDnsName(v string) *Instance
    func (s *Instance) SetPrivateIpAddress(v string) *Instance
    func (s *Instance) SetPublicDnsName(v string) *Instance
    func (s *Instance) SetPublicIpAddress(v string) *Instance
    func (s *Instance) SetStatus(v *InstanceStatus) *Instance
    func (s Instance) String() string
type InstanceFleet
    func (s InstanceFleet) GoString() string
    func (s *InstanceFleet) SetId(v string) *InstanceFleet
    func (s *InstanceFleet) SetInstanceFleetType(v string) *InstanceFleet
    func (s *InstanceFleet) SetInstanceTypeSpecifications(v []*InstanceTypeSpecification) *InstanceFleet
    func (s *InstanceFleet) SetLaunchSpecifications(v *InstanceFleetProvisioningSpecifications) *InstanceFleet
    func (s *InstanceFleet) SetName(v string) *InstanceFleet
    func (s *InstanceFleet) SetProvisionedOnDemandCapacity(v int64) *InstanceFleet
    func (s *InstanceFleet) SetProvisionedSpotCapacity(v int64) *InstanceFleet
    func (s *InstanceFleet) SetStatus(v *InstanceFleetStatus) *InstanceFleet
    func (s *InstanceFleet) SetTargetOnDemandCapacity(v int64) *InstanceFleet
    func (s *InstanceFleet) SetTargetSpotCapacity(v int64) *InstanceFleet
    func (s InstanceFleet) String() string
type InstanceFleetConfig
    func (s InstanceFleetConfig) GoString() string
    func (s *InstanceFleetConfig) SetInstanceFleetType(v string) *InstanceFleetConfig
    func (s *InstanceFleetConfig) SetInstanceTypeConfigs(v []*InstanceTypeConfig) *InstanceFleetConfig
    func (s *InstanceFleetConfig) SetLaunchSpecifications(v *InstanceFleetProvisioningSpecifications) *InstanceFleetConfig
    func (s *InstanceFleetConfig) SetName(v string) *InstanceFleetConfig
    func (s *InstanceFleetConfig) SetTargetOnDemandCapacity(v int64) *InstanceFleetConfig
    func (s *InstanceFleetConfig) SetTargetSpotCapacity(v int64) *InstanceFleetConfig
    func (s InstanceFleetConfig) String() string
    func (s *InstanceFleetConfig) Validate() error
type InstanceFleetModifyConfig
    func (s InstanceFleetModifyConfig) GoString() string
    func (s *InstanceFleetModifyConfig) SetInstanceFleetId(v string) *InstanceFleetModifyConfig
    func (s *InstanceFleetModifyConfig) SetTargetOnDemandCapacity(v int64) *InstanceFleetModifyConfig
    func (s *InstanceFleetModifyConfig) SetTargetSpotCapacity(v int64) *InstanceFleetModifyConfig
    func (s InstanceFleetModifyConfig) String() string
    func (s *InstanceFleetModifyConfig) Validate() error
type InstanceFleetProvisioningSpecifications
    func (s InstanceFleetProvisioningSpecifications) GoString() string
    func (s *InstanceFleetProvisioningSpecifications) SetSpotSpecification(v *SpotProvisioningSpecification) *InstanceFleetProvisioningSpecifications
    func (s InstanceFleetProvisioningSpecifications) String() string
    func (s *InstanceFleetProvisioningSpecifications) Validate() error
type InstanceFleetStateChangeReason
    func (s InstanceFleetStateChangeReason) GoString() string
    func (s *InstanceFleetStateChangeReason) SetCode(v string) *InstanceFleetStateChangeReason
    func (s *InstanceFleetStateChangeReason) SetMessage(v string) *InstanceFleetStateChangeReason
    func (s InstanceFleetStateChangeReason) String() string
type InstanceFleetStatus
    func (s InstanceFleetStatus) GoString() string
    func (s *InstanceFleetStatus) SetState(v string) *InstanceFleetStatus
    func (s *InstanceFleetStatus) SetStateChangeReason(v *InstanceFleetStateChangeReason) *InstanceFleetStatus
    func (s *InstanceFleetStatus) SetTimeline(v *InstanceFleetTimeline) *InstanceFleetStatus
    func (s InstanceFleetStatus) String() string
type InstanceFleetTimeline
    func (s InstanceFleetTimeline) GoString() string
    func (s *InstanceFleetTimeline) SetCreationDateTime(v time.Time) *InstanceFleetTimeline
    func (s *InstanceFleetTimeline) SetEndDateTime(v time.Time) *InstanceFleetTimeline
    func (s *InstanceFleetTimeline) SetReadyDateTime(v time.Time) *InstanceFleetTimeline
    func (s InstanceFleetTimeline) String() string
type InstanceGroup
    func (s InstanceGroup) GoString() string
    func (s *InstanceGroup) SetAutoScalingPolicy(v *AutoScalingPolicyDescription) *InstanceGroup
    func (s *InstanceGroup) SetBidPrice(v string) *InstanceGroup
    func (s *InstanceGroup) SetConfigurations(v []*Configuration) *InstanceGroup
    func (s *InstanceGroup) SetEbsBlockDevices(v []*EbsBlockDevice) *InstanceGroup
    func (s *InstanceGroup) SetEbsOptimized(v bool) *InstanceGroup
    func (s *InstanceGroup) SetId(v string) *InstanceGroup
    func (s *InstanceGroup) SetInstanceGroupType(v string) *InstanceGroup
    func (s *InstanceGroup) SetInstanceType(v string) *InstanceGroup
    func (s *InstanceGroup) SetMarket(v string) *InstanceGroup
    func (s *InstanceGroup) SetName(v string) *InstanceGroup
    func (s *InstanceGroup) SetRequestedInstanceCount(v int64) *InstanceGroup
    func (s *InstanceGroup) SetRunningInstanceCount(v int64) *InstanceGroup
    func (s *InstanceGroup) SetShrinkPolicy(v *ShrinkPolicy) *InstanceGroup
    func (s *InstanceGroup) SetStatus(v *InstanceGroupStatus) *InstanceGroup
    func (s InstanceGroup) String() string
type InstanceGroupConfig
    func (s InstanceGroupConfig) GoString() string
    func (s *InstanceGroupConfig) SetAutoScalingPolicy(v *AutoScalingPolicy) *InstanceGroupConfig
    func (s *InstanceGroupConfig) SetBidPrice(v string) *InstanceGroupConfig
    func (s *InstanceGroupConfig) SetConfigurations(v []*Configuration) *InstanceGroupConfig
    func (s *InstanceGroupConfig) SetEbsConfiguration(v *EbsConfiguration) *InstanceGroupConfig
    func (s *InstanceGroupConfig) SetInstanceCount(v int64) *InstanceGroupConfig
    func (s *InstanceGroupConfig) SetInstanceRole(v string) *InstanceGroupConfig
    func (s *InstanceGroupConfig) SetInstanceType(v string) *InstanceGroupConfig
    func (s *InstanceGroupConfig) SetMarket(v string) *InstanceGroupConfig
    func (s *InstanceGroupConfig) SetName(v string) *InstanceGroupConfig
    func (s InstanceGroupConfig) String() string
    func (s *InstanceGroupConfig) Validate() error
type InstanceGroupDetail
    func (s InstanceGroupDetail) GoString() string
    func (s *InstanceGroupDetail) SetBidPrice(v string) *InstanceGroupDetail
    func (s *InstanceGroupDetail) SetCreationDateTime(v time.Time) *InstanceGroupDetail
    func (s *InstanceGroupDetail) SetEndDateTime(v time.Time) *InstanceGroupDetail
    func (s *InstanceGroupDetail) SetInstanceGroupId(v string) *InstanceGroupDetail
    func (s *InstanceGroupDetail) SetInstanceRequestCount(v int64) *InstanceGroupDetail
    func (s *InstanceGroupDetail) SetInstanceRole(v string) *InstanceGroupDetail
    func (s *InstanceGroupDetail) SetInstanceRunningCount(v int64) *InstanceGroupDetail
    func (s *InstanceGroupDetail) SetInstanceType(v string) *InstanceGroupDetail
    func (s *InstanceGroupDetail) SetLastStateChangeReason(v string) *InstanceGroupDetail
    func (s *InstanceGroupDetail) SetMarket(v string) *InstanceGroupDetail
    func (s *InstanceGroupDetail) SetName(v string) *InstanceGroupDetail
    func (s *InstanceGroupDetail) SetReadyDateTime(v time.Time) *InstanceGroupDetail
    func (s *InstanceGroupDetail) SetStartDateTime(v time.Time) *InstanceGroupDetail
    func (s *InstanceGroupDetail) SetState(v string) *InstanceGroupDetail
    func (s InstanceGroupDetail) String() string
type InstanceGroupModifyConfig
    func (s InstanceGroupModifyConfig) GoString() string
    func (s *InstanceGroupModifyConfig) SetEC2InstanceIdsToTerminate(v []*string) *InstanceGroupModifyConfig
    func (s *InstanceGroupModifyConfig) SetInstanceCount(v int64) *InstanceGroupModifyConfig
    func (s *InstanceGroupModifyConfig) SetInstanceGroupId(v string) *InstanceGroupModifyConfig
    func (s *InstanceGroupModifyConfig) SetShrinkPolicy(v *ShrinkPolicy) *InstanceGroupModifyConfig
    func (s InstanceGroupModifyConfig) String() string
    func (s *InstanceGroupModifyConfig) Validate() error
type InstanceGroupStateChangeReason
    func (s InstanceGroupStateChangeReason) GoString() string
    func (s *InstanceGroupStateChangeReason) SetCode(v string) *InstanceGroupStateChangeReason
    func (s *InstanceGroupStateChangeReason) SetMessage(v string) *InstanceGroupStateChangeReason
    func (s InstanceGroupStateChangeReason) String() string
type InstanceGroupStatus
    func (s InstanceGroupStatus) GoString() string
    func (s *InstanceGroupStatus) SetState(v string) *InstanceGroupStatus
    func (s *InstanceGroupStatus) SetStateChangeReason(v *InstanceGroupStateChangeReason) *InstanceGroupStatus
    func (s *InstanceGroupStatus) SetTimeline(v *InstanceGroupTimeline) *InstanceGroupStatus
    func (s InstanceGroupStatus) String() string
type InstanceGroupTimeline
    func (s InstanceGroupTimeline) GoString() string
    func (s *InstanceGroupTimeline) SetCreationDateTime(v time.Time) *InstanceGroupTimeline
    func (s *InstanceGroupTimeline) SetEndDateTime(v time.Time) *InstanceGroupTimeline
    func (s *InstanceGroupTimeline) SetReadyDateTime(v time.Time) *InstanceGroupTimeline
    func (s InstanceGroupTimeline) String() string
type InstanceResizePolicy
    func (s InstanceResizePolicy) GoString() string
    func (s *InstanceResizePolicy) SetInstanceTerminationTimeout(v int64) *InstanceResizePolicy
    func (s *InstanceResizePolicy) SetInstancesToProtect(v []*string) *InstanceResizePolicy
    func (s *InstanceResizePolicy) SetInstancesToTerminate(v []*string) *InstanceResizePolicy
    func (s InstanceResizePolicy) String() string
type InstanceStateChangeReason
    func (s InstanceStateChangeReason) GoString() string
    func (s *InstanceStateChangeReason) SetCode(v string) *InstanceStateChangeReason
    func (s *InstanceStateChangeReason) SetMessage(v string) *InstanceStateChangeReason
    func (s InstanceStateChangeReason) String() string
type InstanceStatus
    func (s InstanceStatus) GoString() string
    func (s *InstanceStatus) SetState(v string) *InstanceStatus
    func (s *InstanceStatus) SetStateChangeReason(v *InstanceStateChangeReason) *InstanceStatus
    func (s *InstanceStatus) SetTimeline(v *InstanceTimeline) *InstanceStatus
    func (s InstanceStatus) String() string
type InstanceTimeline
    func (s InstanceTimeline) GoString() string
    func (s *InstanceTimeline) SetCreationDateTime(v time.Time) *InstanceTimeline
    func (s *InstanceTimeline) SetEndDateTime(v time.Time) *InstanceTimeline
    func (s *InstanceTimeline) SetReadyDateTime(v time.Time) *InstanceTimeline
    func (s InstanceTimeline) String() string
type InstanceTypeConfig
    func (s InstanceTypeConfig) GoString() string
    func (s *InstanceTypeConfig) SetBidPrice(v string) *InstanceTypeConfig
    func (s *InstanceTypeConfig) SetBidPriceAsPercentageOfOnDemandPrice(v float64) *InstanceTypeConfig
    func (s *InstanceTypeConfig) SetConfigurations(v []*Configuration) *InstanceTypeConfig
    func (s *InstanceTypeConfig) SetEbsConfiguration(v *EbsConfiguration) *InstanceTypeConfig
    func (s *InstanceTypeConfig) SetInstanceType(v string) *InstanceTypeConfig
    func (s *InstanceTypeConfig) SetWeightedCapacity(v int64) *InstanceTypeConfig
    func (s InstanceTypeConfig) String() string
    func (s *InstanceTypeConfig) Validate() error
type InstanceTypeSpecification
    func (s InstanceTypeSpecification) GoString() string
    func (s *InstanceTypeSpecification) SetBidPrice(v string) *InstanceTypeSpecification
    func (s *InstanceTypeSpecification) SetBidPriceAsPercentageOfOnDemandPrice(v float64) *InstanceTypeSpecification
    func (s *InstanceTypeSpecification) SetConfigurations(v []*Configuration) *InstanceTypeSpecification
    func (s *InstanceTypeSpecification) SetEbsBlockDevices(v []*EbsBlockDevice) *InstanceTypeSpecification
    func (s *InstanceTypeSpecification) SetEbsOptimized(v bool) *InstanceTypeSpecification
    func (s *InstanceTypeSpecification) SetInstanceType(v string) *InstanceTypeSpecification
    func (s *InstanceTypeSpecification) SetWeightedCapacity(v int64) *InstanceTypeSpecification
    func (s InstanceTypeSpecification) String() string
type JobFlowDetail
    func (s JobFlowDetail) GoString() string
    func (s *JobFlowDetail) SetAmiVersion(v string) *JobFlowDetail
    func (s *JobFlowDetail) SetAutoScalingRole(v string) *JobFlowDetail
    func (s *JobFlowDetail) SetBootstrapActions(v []*BootstrapActionDetail) *JobFlowDetail
    func (s *JobFlowDetail) SetExecutionStatusDetail(v *JobFlowExecutionStatusDetail) *JobFlowDetail
    func (s *JobFlowDetail) SetInstances(v *JobFlowInstancesDetail) *JobFlowDetail
    func (s *JobFlowDetail) SetJobFlowId(v string) *JobFlowDetail
    func (s *JobFlowDetail) SetJobFlowRole(v string) *JobFlowDetail
    func (s *JobFlowDetail) SetLogUri(v string) *JobFlowDetail
    func (s *JobFlowDetail) SetName(v string) *JobFlowDetail
    func (s *JobFlowDetail) SetScaleDownBehavior(v string) *JobFlowDetail
    func (s *JobFlowDetail) SetServiceRole(v string) *JobFlowDetail
    func (s *JobFlowDetail) SetSteps(v []*StepDetail) *JobFlowDetail
    func (s *JobFlowDetail) SetSupportedProducts(v []*string) *JobFlowDetail
    func (s *JobFlowDetail) SetVisibleToAllUsers(v bool) *JobFlowDetail
    func (s JobFlowDetail) String() string
type JobFlowExecutionStatusDetail
    func (s JobFlowExecutionStatusDetail) GoString() string
    func (s *JobFlowExecutionStatusDetail) SetCreationDateTime(v time.Time) *JobFlowExecutionStatusDetail
    func (s *JobFlowExecutionStatusDetail) SetEndDateTime(v time.Time) *JobFlowExecutionStatusDetail
    func (s *JobFlowExecutionStatusDetail) SetLastStateChangeReason(v string) *JobFlowExecutionStatusDetail
    func (s *JobFlowExecutionStatusDetail) SetReadyDateTime(v time.Time) *JobFlowExecutionStatusDetail
    func (s *JobFlowExecutionStatusDetail) SetStartDateTime(v time.Time) *JobFlowExecutionStatusDetail
    func (s *JobFlowExecutionStatusDetail) SetState(v string) *JobFlowExecutionStatusDetail
    func (s JobFlowExecutionStatusDetail) String() string
type JobFlowInstancesConfig
    func (s JobFlowInstancesConfig) GoString() string
    func (s *JobFlowInstancesConfig) SetAdditionalMasterSecurityGroups(v []*string) *JobFlowInstancesConfig
    func (s *JobFlowInstancesConfig) SetAdditionalSlaveSecurityGroups(v []*string) *JobFlowInstancesConfig
    func (s *JobFlowInstancesConfig) SetEc2KeyName(v string) *JobFlowInstancesConfig
    func (s *JobFlowInstancesConfig) SetEc2SubnetId(v string) *JobFlowInstancesConfig
    func (s *JobFlowInstancesConfig) SetEc2SubnetIds(v []*string) *JobFlowInstancesConfig
    func (s *JobFlowInstancesConfig) SetEmrManagedMasterSecurityGroup(v string) *JobFlowInstancesConfig
    func (s *JobFlowInstancesConfig) SetEmrManagedSlaveSecurityGroup(v string) *JobFlowInstancesConfig
    func (s *JobFlowInstancesConfig) SetHadoopVersion(v string) *JobFlowInstancesConfig
    func (s *JobFlowInstancesConfig) SetInstanceCount(v int64) *JobFlowInstancesConfig
    func (s *JobFlowInstancesConfig) SetInstanceFleets(v []*InstanceFleetConfig) *JobFlowInstancesConfig
    func (s *JobFlowInstancesConfig) SetInstanceGroups(v []*InstanceGroupConfig) *JobFlowInstancesConfig
    func (s *JobFlowInstancesConfig) SetKeepJobFlowAliveWhenNoSteps(v bool) *JobFlowInstancesConfig
    func (s *JobFlowInstancesConfig) SetMasterInstanceType(v string) *JobFlowInstancesConfig
    func (s *JobFlowInstancesConfig) SetPlacement(v *PlacementType) *JobFlowInstancesConfig
    func (s *JobFlowInstancesConfig) SetServiceAccessSecurityGroup(v string) *JobFlowInstancesConfig
    func (s *JobFlowInstancesConfig) SetSlaveInstanceType(v string) *JobFlowInstancesConfig
    func (s *JobFlowInstancesConfig) SetTerminationProtected(v bool) *JobFlowInstancesConfig
    func (s JobFlowInstancesConfig) String() string
    func (s *JobFlowInstancesConfig) Validate() error
type JobFlowInstancesDetail
    func (s JobFlowInstancesDetail) GoString() string
    func (s *JobFlowInstancesDetail) SetEc2KeyName(v string) *JobFlowInstancesDetail
    func (s *JobFlowInstancesDetail) SetEc2SubnetId(v string) *JobFlowInstancesDetail
    func (s *JobFlowInstancesDetail) SetHadoopVersion(v string) *JobFlowInstancesDetail
    func (s *JobFlowInstancesDetail) SetInstanceCount(v int64) *JobFlowInstancesDetail
    func (s *JobFlowInstancesDetail) SetInstanceGroups(v []*InstanceGroupDetail) *JobFlowInstancesDetail
    func (s *JobFlowInstancesDetail) SetKeepJobFlowAliveWhenNoSteps(v bool) *JobFlowInstancesDetail
    func (s *JobFlowInstancesDetail) SetMasterInstanceId(v string) *JobFlowInstancesDetail
    func (s *JobFlowInstancesDetail) SetMasterInstanceType(v string) *JobFlowInstancesDetail
    func (s *JobFlowInstancesDetail) SetMasterPublicDnsName(v string) *JobFlowInstancesDetail
    func (s *JobFlowInstancesDetail) SetNormalizedInstanceHours(v int64) *JobFlowInstancesDetail
    func (s *JobFlowInstancesDetail) SetPlacement(v *PlacementType) *JobFlowInstancesDetail
    func (s *JobFlowInstancesDetail) SetSlaveInstanceType(v string) *JobFlowInstancesDetail
    func (s *JobFlowInstancesDetail) SetTerminationProtected(v bool) *JobFlowInstancesDetail
    func (s JobFlowInstancesDetail) String() string
type KeyValue
    func (s KeyValue) GoString() string
    func (s *KeyValue) SetKey(v string) *KeyValue
    func (s *KeyValue) SetValue(v string) *KeyValue
    func (s KeyValue) String() string
type ListBootstrapActionsInput
    func (s ListBootstrapActionsInput) GoString() string
    func (s *ListBootstrapActionsInput) SetClusterId(v string) *ListBootstrapActionsInput
    func (s *ListBootstrapActionsInput) SetMarker(v string) *ListBootstrapActionsInput
    func (s ListBootstrapActionsInput) String() string
    func (s *ListBootstrapActionsInput) Validate() error
type ListBootstrapActionsOutput
    func (s ListBootstrapActionsOutput) GoString() string
    func (s *ListBootstrapActionsOutput) SetBootstrapActions(v []*Command) *ListBootstrapActionsOutput
    func (s *ListBootstrapActionsOutput) SetMarker(v string) *ListBootstrapActionsOutput
    func (s ListBootstrapActionsOutput) String() string
type ListClustersInput
    func (s ListClustersInput) GoString() string
    func (s *ListClustersInput) SetClusterStates(v []*string) *ListClustersInput
    func (s *ListClustersInput) SetCreatedAfter(v time.Time) *ListClustersInput
    func (s *ListClustersInput) SetCreatedBefore(v time.Time) *ListClustersInput
    func (s *ListClustersInput) SetMarker(v string) *ListClustersInput
    func (s ListClustersInput) String() string
type ListClustersOutput
    func (s ListClustersOutput) GoString() string
    func (s *ListClustersOutput) SetClusters(v []*ClusterSummary) *ListClustersOutput
    func (s *ListClustersOutput) SetMarker(v string) *ListClustersOutput
    func (s ListClustersOutput) String() string
type ListInstanceFleetsInput
    func (s ListInstanceFleetsInput) GoString() string
    func (s *ListInstanceFleetsInput) SetClusterId(v string) *ListInstanceFleetsInput
    func (s *ListInstanceFleetsInput) SetMarker(v string) *ListInstanceFleetsInput
    func (s ListInstanceFleetsInput) String() string
    func (s *ListInstanceFleetsInput) Validate() error
type ListInstanceFleetsOutput
    func (s ListInstanceFleetsOutput) GoString() string
    func (s *ListInstanceFleetsOutput) SetInstanceFleets(v []*InstanceFleet) *ListInstanceFleetsOutput
    func (s *ListInstanceFleetsOutput) SetMarker(v string) *ListInstanceFleetsOutput
    func (s ListInstanceFleetsOutput) String() string
type ListInstanceGroupsInput
    func (s ListInstanceGroupsInput) GoString() string
    func (s *ListInstanceGroupsInput) SetClusterId(v string) *ListInstanceGroupsInput
    func (s *ListInstanceGroupsInput) SetMarker(v string) *ListInstanceGroupsInput
    func (s ListInstanceGroupsInput) String() string
    func (s *ListInstanceGroupsInput) Validate() error
type ListInstanceGroupsOutput
    func (s ListInstanceGroupsOutput) GoString() string
    func (s *ListInstanceGroupsOutput) SetInstanceGroups(v []*InstanceGroup) *ListInstanceGroupsOutput
    func (s *ListInstanceGroupsOutput) SetMarker(v string) *ListInstanceGroupsOutput
    func (s ListInstanceGroupsOutput) String() string
type ListInstancesInput
    func (s ListInstancesInput) GoString() string
    func (s *ListInstancesInput) SetClusterId(v string) *ListInstancesInput
    func (s *ListInstancesInput) SetInstanceFleetId(v string) *ListInstancesInput
    func (s *ListInstancesInput) SetInstanceFleetType(v string) *ListInstancesInput
    func (s *ListInstancesInput) SetInstanceGroupId(v string) *ListInstancesInput
    func (s *ListInstancesInput) SetInstanceGroupTypes(v []*string) *ListInstancesInput
    func (s *ListInstancesInput) SetInstanceStates(v []*string) *ListInstancesInput
    func (s *ListInstancesInput) SetMarker(v string) *ListInstancesInput
    func (s ListInstancesInput) String() string
    func (s *ListInstancesInput) Validate() error
type ListInstancesOutput
    func (s ListInstancesOutput) GoString() string
    func (s *ListInstancesOutput) SetInstances(v []*Instance) *ListInstancesOutput
    func (s *ListInstancesOutput) SetMarker(v string) *ListInstancesOutput
    func (s ListInstancesOutput) String() string
type ListSecurityConfigurationsInput
    func (s ListSecurityConfigurationsInput) GoString() string
    func (s *ListSecurityConfigurationsInput) SetMarker(v string) *ListSecurityConfigurationsInput
    func (s ListSecurityConfigurationsInput) String() string
type ListSecurityConfigurationsOutput
    func (s ListSecurityConfigurationsOutput) GoString() string
    func (s *ListSecurityConfigurationsOutput) SetMarker(v string) *ListSecurityConfigurationsOutput
    func (s *ListSecurityConfigurationsOutput) SetSecurityConfigurations(v []*SecurityConfigurationSummary) *ListSecurityConfigurationsOutput
    func (s ListSecurityConfigurationsOutput) String() string
type ListStepsInput
    func (s ListStepsInput) GoString() string
    func (s *ListStepsInput) SetClusterId(v string) *ListStepsInput
    func (s *ListStepsInput) SetMarker(v string) *ListStepsInput
    func (s *ListStepsInput) SetStepIds(v []*string) *ListStepsInput
    func (s *ListStepsInput) SetStepStates(v []*string) *ListStepsInput
    func (s ListStepsInput) String() string
    func (s *ListStepsInput) Validate() error
type ListStepsOutput
    func (s ListStepsOutput) GoString() string
    func (s *ListStepsOutput) SetMarker(v string) *ListStepsOutput
    func (s *ListStepsOutput) SetSteps(v []*StepSummary) *ListStepsOutput
    func (s ListStepsOutput) String() string
type MetricDimension
    func (s MetricDimension) GoString() string
    func (s *MetricDimension) SetKey(v string) *MetricDimension
    func (s *MetricDimension) SetValue(v string) *MetricDimension
    func (s MetricDimension) String() string
type ModifyInstanceFleetInput
    func (s ModifyInstanceFleetInput) GoString() string
    func (s *ModifyInstanceFleetInput) SetClusterId(v string) *ModifyInstanceFleetInput
    func (s *ModifyInstanceFleetInput) SetInstanceFleet(v *InstanceFleetModifyConfig) *ModifyInstanceFleetInput
    func (s ModifyInstanceFleetInput) String() string
    func (s *ModifyInstanceFleetInput) Validate() error
type ModifyInstanceFleetOutput
    func (s ModifyInstanceFleetOutput) GoString() string
    func (s ModifyInstanceFleetOutput) String() string
type ModifyInstanceGroupsInput
    func (s ModifyInstanceGroupsInput) GoString() string
    func (s *ModifyInstanceGroupsInput) SetClusterId(v string) *ModifyInstanceGroupsInput
    func (s *ModifyInstanceGroupsInput) SetInstanceGroups(v []*InstanceGroupModifyConfig) *ModifyInstanceGroupsInput
    func (s ModifyInstanceGroupsInput) String() string
    func (s *ModifyInstanceGroupsInput) Validate() error
type ModifyInstanceGroupsOutput
    func (s ModifyInstanceGroupsOutput) GoString() string
    func (s ModifyInstanceGroupsOutput) String() string
type PlacementType
    func (s PlacementType) GoString() string
    func (s *PlacementType) SetAvailabilityZone(v string) *PlacementType
    func (s *PlacementType) SetAvailabilityZones(v []*string) *PlacementType
    func (s PlacementType) String() string
type PutAutoScalingPolicyInput
    func (s PutAutoScalingPolicyInput) GoString() string
    func (s *PutAutoScalingPolicyInput) SetAutoScalingPolicy(v *AutoScalingPolicy) *PutAutoScalingPolicyInput
    func (s *PutAutoScalingPolicyInput) SetClusterId(v string) *PutAutoScalingPolicyInput
    func (s *PutAutoScalingPolicyInput) SetInstanceGroupId(v string) *PutAutoScalingPolicyInput
    func (s PutAutoScalingPolicyInput) String() string
    func (s *PutAutoScalingPolicyInput) Validate() error
type PutAutoScalingPolicyOutput
    func (s PutAutoScalingPolicyOutput) GoString() string
    func (s *PutAutoScalingPolicyOutput) SetAutoScalingPolicy(v *AutoScalingPolicyDescription) *PutAutoScalingPolicyOutput
    func (s *PutAutoScalingPolicyOutput) SetClusterId(v string) *PutAutoScalingPolicyOutput
    func (s *PutAutoScalingPolicyOutput) SetInstanceGroupId(v string) *PutAutoScalingPolicyOutput
    func (s PutAutoScalingPolicyOutput) String() string
type RemoveAutoScalingPolicyInput
    func (s RemoveAutoScalingPolicyInput) GoString() string
    func (s *RemoveAutoScalingPolicyInput) SetClusterId(v string) *RemoveAutoScalingPolicyInput
    func (s *RemoveAutoScalingPolicyInput) SetInstanceGroupId(v string) *RemoveAutoScalingPolicyInput
    func (s RemoveAutoScalingPolicyInput) String() string
    func (s *RemoveAutoScalingPolicyInput) Validate() error
type RemoveAutoScalingPolicyOutput
    func (s RemoveAutoScalingPolicyOutput) GoString() string
    func (s RemoveAutoScalingPolicyOutput) String() string
type RemoveTagsInput
    func (s RemoveTagsInput) GoString() string
    func (s *RemoveTagsInput) SetResourceId(v string) *RemoveTagsInput
    func (s *RemoveTagsInput) SetTagKeys(v []*string) *RemoveTagsInput
    func (s RemoveTagsInput) String() string
    func (s *RemoveTagsInput) Validate() error
type RemoveTagsOutput
    func (s RemoveTagsOutput) GoString() string
    func (s RemoveTagsOutput) String() string
type RunJobFlowInput
    func (s RunJobFlowInput) GoString() string
    func (s *RunJobFlowInput) SetAdditionalInfo(v string) *RunJobFlowInput
    func (s *RunJobFlowInput) SetAmiVersion(v string) *RunJobFlowInput
    func (s *RunJobFlowInput) SetApplications(v []*Application) *RunJobFlowInput
    func (s *RunJobFlowInput) SetAutoScalingRole(v string) *RunJobFlowInput
    func (s *RunJobFlowInput) SetBootstrapActions(v []*BootstrapActionConfig) *RunJobFlowInput
    func (s *RunJobFlowInput) SetConfigurations(v []*Configuration) *RunJobFlowInput
    func (s *RunJobFlowInput) SetInstances(v *JobFlowInstancesConfig) *RunJobFlowInput
    func (s *RunJobFlowInput) SetJobFlowRole(v string) *RunJobFlowInput
    func (s *RunJobFlowInput) SetLogUri(v string) *RunJobFlowInput
    func (s *RunJobFlowInput) SetName(v string) *RunJobFlowInput
    func (s *RunJobFlowInput) SetNewSupportedProducts(v []*SupportedProductConfig) *RunJobFlowInput
    func (s *RunJobFlowInput) SetReleaseLabel(v string) *RunJobFlowInput
    func (s *RunJobFlowInput) SetScaleDownBehavior(v string) *RunJobFlowInput
    func (s *RunJobFlowInput) SetSecurityConfiguration(v string) *RunJobFlowInput
    func (s *RunJobFlowInput) SetServiceRole(v string) *RunJobFlowInput
    func (s *RunJobFlowInput) SetSteps(v []*StepConfig) *RunJobFlowInput
    func (s *RunJobFlowInput) SetSupportedProducts(v []*string) *RunJobFlowInput
    func (s *RunJobFlowInput) SetTags(v []*Tag) *RunJobFlowInput
    func (s *RunJobFlowInput) SetVisibleToAllUsers(v bool) *RunJobFlowInput
    func (s RunJobFlowInput) String() string
    func (s *RunJobFlowInput) Validate() error
type RunJobFlowOutput
    func (s RunJobFlowOutput) GoString() string
    func (s *RunJobFlowOutput) SetJobFlowId(v string) *RunJobFlowOutput
    func (s RunJobFlowOutput) String() string
type ScalingAction
    func (s ScalingAction) GoString() string
    func (s *ScalingAction) SetMarket(v string) *ScalingAction
    func (s *ScalingAction) SetSimpleScalingPolicyConfiguration(v *SimpleScalingPolicyConfiguration) *ScalingAction
    func (s ScalingAction) String() string
    func (s *ScalingAction) Validate() error
type ScalingConstraints
    func (s ScalingConstraints) GoString() string
    func (s *ScalingConstraints) SetMaxCapacity(v int64) *ScalingConstraints
    func (s *ScalingConstraints) SetMinCapacity(v int64) *ScalingConstraints
    func (s ScalingConstraints) String() string
    func (s *ScalingConstraints) Validate() error
type ScalingRule
    func (s ScalingRule) GoString() string
    func (s *ScalingRule) SetAction(v *ScalingAction) *ScalingRule
    func (s *ScalingRule) SetDescription(v string) *ScalingRule
    func (s *ScalingRule) SetName(v string) *ScalingRule
    func (s *ScalingRule) SetTrigger(v *ScalingTrigger) *ScalingRule
    func (s ScalingRule) String() string
    func (s *ScalingRule) Validate() error
type ScalingTrigger
    func (s ScalingTrigger) GoString() string
    func (s *ScalingTrigger) SetCloudWatchAlarmDefinition(v *CloudWatchAlarmDefinition) *ScalingTrigger
    func (s ScalingTrigger) String() string
    func (s *ScalingTrigger) Validate() error
type ScriptBootstrapActionConfig
    func (s ScriptBootstrapActionConfig) GoString() string
    func (s *ScriptBootstrapActionConfig) SetArgs(v []*string) *ScriptBootstrapActionConfig
    func (s *ScriptBootstrapActionConfig) SetPath(v string) *ScriptBootstrapActionConfig
    func (s ScriptBootstrapActionConfig) String() string
    func (s *ScriptBootstrapActionConfig) Validate() error
type SecurityConfigurationSummary
    func (s SecurityConfigurationSummary) GoString() string
    func (s *SecurityConfigurationSummary) SetCreationDateTime(v time.Time) *SecurityConfigurationSummary
    func (s *SecurityConfigurationSummary) SetName(v string) *SecurityConfigurationSummary
    func (s SecurityConfigurationSummary) String() string
type SetTerminationProtectionInput
    func (s SetTerminationProtectionInput) GoString() string
    func (s *SetTerminationProtectionInput) SetJobFlowIds(v []*string) *SetTerminationProtectionInput
    func (s *SetTerminationProtectionInput) SetTerminationProtected(v bool) *SetTerminationProtectionInput
    func (s SetTerminationProtectionInput) String() string
    func (s *SetTerminationProtectionInput) Validate() error
type SetTerminationProtectionOutput
    func (s SetTerminationProtectionOutput) GoString() string
    func (s SetTerminationProtectionOutput) String() string
type SetVisibleToAllUsersInput
    func (s SetVisibleToAllUsersInput) GoString() string
    func (s *SetVisibleToAllUsersInput) SetJobFlowIds(v []*string) *SetVisibleToAllUsersInput
    func (s *SetVisibleToAllUsersInput) SetVisibleToAllUsers(v bool) *SetVisibleToAllUsersInput
    func (s SetVisibleToAllUsersInput) String() string
    func (s *SetVisibleToAllUsersInput) Validate() error
type SetVisibleToAllUsersOutput
    func (s SetVisibleToAllUsersOutput) GoString() string
    func (s SetVisibleToAllUsersOutput) String() string
type ShrinkPolicy
    func (s ShrinkPolicy) GoString() string
    func (s *ShrinkPolicy) SetDecommissionTimeout(v int64) *ShrinkPolicy
    func (s *ShrinkPolicy) SetInstanceResizePolicy(v *InstanceResizePolicy) *ShrinkPolicy
    func (s ShrinkPolicy) String() string
type SimpleScalingPolicyConfiguration
    func (s SimpleScalingPolicyConfiguration) GoString() string
    func (s *SimpleScalingPolicyConfiguration) SetAdjustmentType(v string) *SimpleScalingPolicyConfiguration
    func (s *SimpleScalingPolicyConfiguration) SetCoolDown(v int64) *SimpleScalingPolicyConfiguration
    func (s *SimpleScalingPolicyConfiguration) SetScalingAdjustment(v int64) *SimpleScalingPolicyConfiguration
    func (s SimpleScalingPolicyConfiguration) String() string
    func (s *SimpleScalingPolicyConfiguration) Validate() error
type SpotProvisioningSpecification
    func (s SpotProvisioningSpecification) GoString() string
    func (s *SpotProvisioningSpecification) SetBlockDurationMinutes(v int64) *SpotProvisioningSpecification
    func (s *SpotProvisioningSpecification) SetTimeoutAction(v string) *SpotProvisioningSpecification
    func (s *SpotProvisioningSpecification) SetTimeoutDurationMinutes(v int64) *SpotProvisioningSpecification
    func (s SpotProvisioningSpecification) String() string
    func (s *SpotProvisioningSpecification) Validate() error
type Step
    func (s Step) GoString() string
    func (s *Step) SetActionOnFailure(v string) *Step
    func (s *Step) SetConfig(v *HadoopStepConfig) *Step
    func (s *Step) SetId(v string) *Step
    func (s *Step) SetName(v string) *Step
    func (s *Step) SetStatus(v *StepStatus) *Step
    func (s Step) String() string
type StepConfig
    func (s StepConfig) GoString() string
    func (s *StepConfig) SetActionOnFailure(v string) *StepConfig
    func (s *StepConfig) SetHadoopJarStep(v *HadoopJarStepConfig) *StepConfig
    func (s *StepConfig) SetName(v string) *StepConfig
    func (s StepConfig) String() string
    func (s *StepConfig) Validate() error
type StepDetail
    func (s StepDetail) GoString() string
    func (s *StepDetail) SetExecutionStatusDetail(v *StepExecutionStatusDetail) *StepDetail
    func (s *StepDetail) SetStepConfig(v *StepConfig) *StepDetail
    func (s StepDetail) String() string
type StepExecutionStatusDetail
    func (s StepExecutionStatusDetail) GoString() string
    func (s *StepExecutionStatusDetail) SetCreationDateTime(v time.Time) *StepExecutionStatusDetail
    func (s *StepExecutionStatusDetail) SetEndDateTime(v time.Time) *StepExecutionStatusDetail
    func (s *StepExecutionStatusDetail) SetLastStateChangeReason(v string) *StepExecutionStatusDetail
    func (s *StepExecutionStatusDetail) SetStartDateTime(v time.Time) *StepExecutionStatusDetail
    func (s *StepExecutionStatusDetail) SetState(v string) *StepExecutionStatusDetail
    func (s StepExecutionStatusDetail) String() string
type StepStateChangeReason
    func (s StepStateChangeReason) GoString() string
    func (s *StepStateChangeReason) SetCode(v string) *StepStateChangeReason
    func (s *StepStateChangeReason) SetMessage(v string) *StepStateChangeReason
    func (s StepStateChangeReason) String() string
type StepStatus
    func (s StepStatus) GoString() string
    func (s *StepStatus) SetFailureDetails(v *FailureDetails) *StepStatus
    func (s *StepStatus) SetState(v string) *StepStatus
    func (s *StepStatus) SetStateChangeReason(v *StepStateChangeReason) *StepStatus
    func (s *StepStatus) SetTimeline(v *StepTimeline) *StepStatus
    func (s StepStatus) String() string
type StepSummary
    func (s StepSummary) GoString() string
    func (s *StepSummary) SetActionOnFailure(v string) *StepSummary
    func (s *StepSummary) SetConfig(v *HadoopStepConfig) *StepSummary
    func (s *StepSummary) SetId(v string) *StepSummary
    func (s *StepSummary) SetName(v string) *StepSummary
    func (s *StepSummary) SetStatus(v *StepStatus) *StepSummary
    func (s StepSummary) String() string
type StepTimeline
    func (s StepTimeline) GoString() string
    func (s *StepTimeline) SetCreationDateTime(v time.Time) *StepTimeline
    func (s *StepTimeline) SetEndDateTime(v time.Time) *StepTimeline
    func (s *StepTimeline) SetStartDateTime(v time.Time) *StepTimeline
    func (s StepTimeline) String() string
type SupportedProductConfig
    func (s SupportedProductConfig) GoString() string
    func (s *SupportedProductConfig) SetArgs(v []*string) *SupportedProductConfig
    func (s *SupportedProductConfig) SetName(v string) *SupportedProductConfig
    func (s SupportedProductConfig) String() string
type Tag
    func (s Tag) GoString() string
    func (s *Tag) SetKey(v string) *Tag
    func (s *Tag) SetValue(v string) *Tag
    func (s Tag) String() string
type TerminateJobFlowsInput
    func (s TerminateJobFlowsInput) GoString() string
    func (s *TerminateJobFlowsInput) SetJobFlowIds(v []*string) *TerminateJobFlowsInput
    func (s TerminateJobFlowsInput) String() string
    func (s *TerminateJobFlowsInput) Validate() error
type TerminateJobFlowsOutput
    func (s TerminateJobFlowsOutput) GoString() string
    func (s TerminateJobFlowsOutput) String() string
type VolumeSpecification
    func (s VolumeSpecification) GoString() string
    func (s *VolumeSpecification) SetIops(v int64) *VolumeSpecification
    func (s *VolumeSpecification) SetSizeInGB(v int64) *VolumeSpecification
    func (s *VolumeSpecification) SetVolumeType(v string) *VolumeSpecification
    func (s VolumeSpecification) String() string
    func (s *VolumeSpecification) Validate() error

Package files

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

Constants

const (
    // ActionOnFailureTerminateJobFlow is a ActionOnFailure enum value
    ActionOnFailureTerminateJobFlow = "TERMINATE_JOB_FLOW"

    // ActionOnFailureTerminateCluster is a ActionOnFailure enum value
    ActionOnFailureTerminateCluster = "TERMINATE_CLUSTER"

    // ActionOnFailureCancelAndWait is a ActionOnFailure enum value
    ActionOnFailureCancelAndWait = "CANCEL_AND_WAIT"

    // ActionOnFailureContinue is a ActionOnFailure enum value
    ActionOnFailureContinue = "CONTINUE"
)
const (
    // AdjustmentTypeChangeInCapacity is a AdjustmentType enum value
    AdjustmentTypeChangeInCapacity = "CHANGE_IN_CAPACITY"

    // AdjustmentTypePercentChangeInCapacity is a AdjustmentType enum value
    AdjustmentTypePercentChangeInCapacity = "PERCENT_CHANGE_IN_CAPACITY"

    // AdjustmentTypeExactCapacity is a AdjustmentType enum value
    AdjustmentTypeExactCapacity = "EXACT_CAPACITY"
)
const (
    // AutoScalingPolicyStatePending is a AutoScalingPolicyState enum value
    AutoScalingPolicyStatePending = "PENDING"

    // AutoScalingPolicyStateAttaching is a AutoScalingPolicyState enum value
    AutoScalingPolicyStateAttaching = "ATTACHING"

    // AutoScalingPolicyStateAttached is a AutoScalingPolicyState enum value
    AutoScalingPolicyStateAttached = "ATTACHED"

    // AutoScalingPolicyStateDetaching is a AutoScalingPolicyState enum value
    AutoScalingPolicyStateDetaching = "DETACHING"

    // AutoScalingPolicyStateDetached is a AutoScalingPolicyState enum value
    AutoScalingPolicyStateDetached = "DETACHED"

    // AutoScalingPolicyStateFailed is a AutoScalingPolicyState enum value
    AutoScalingPolicyStateFailed = "FAILED"
)
const (
    // AutoScalingPolicyStateChangeReasonCodeUserRequest is a AutoScalingPolicyStateChangeReasonCode enum value
    AutoScalingPolicyStateChangeReasonCodeUserRequest = "USER_REQUEST"

    // AutoScalingPolicyStateChangeReasonCodeProvisionFailure is a AutoScalingPolicyStateChangeReasonCode enum value
    AutoScalingPolicyStateChangeReasonCodeProvisionFailure = "PROVISION_FAILURE"

    // AutoScalingPolicyStateChangeReasonCodeCleanupFailure is a AutoScalingPolicyStateChangeReasonCode enum value
    AutoScalingPolicyStateChangeReasonCodeCleanupFailure = "CLEANUP_FAILURE"
)
const (
    // CancelStepsRequestStatusSubmitted is a CancelStepsRequestStatus enum value
    CancelStepsRequestStatusSubmitted = "SUBMITTED"

    // CancelStepsRequestStatusFailed is a CancelStepsRequestStatus enum value
    CancelStepsRequestStatusFailed = "FAILED"
)
const (
    // ClusterStateStarting is a ClusterState enum value
    ClusterStateStarting = "STARTING"

    // ClusterStateBootstrapping is a ClusterState enum value
    ClusterStateBootstrapping = "BOOTSTRAPPING"

    // ClusterStateRunning is a ClusterState enum value
    ClusterStateRunning = "RUNNING"

    // ClusterStateWaiting is a ClusterState enum value
    ClusterStateWaiting = "WAITING"

    // ClusterStateTerminating is a ClusterState enum value
    ClusterStateTerminating = "TERMINATING"

    // ClusterStateTerminated is a ClusterState enum value
    ClusterStateTerminated = "TERMINATED"

    // ClusterStateTerminatedWithErrors is a ClusterState enum value
    ClusterStateTerminatedWithErrors = "TERMINATED_WITH_ERRORS"
)
const (
    // ClusterStateChangeReasonCodeInternalError is a ClusterStateChangeReasonCode enum value
    ClusterStateChangeReasonCodeInternalError = "INTERNAL_ERROR"

    // ClusterStateChangeReasonCodeValidationError is a ClusterStateChangeReasonCode enum value
    ClusterStateChangeReasonCodeValidationError = "VALIDATION_ERROR"

    // ClusterStateChangeReasonCodeInstanceFailure is a ClusterStateChangeReasonCode enum value
    ClusterStateChangeReasonCodeInstanceFailure = "INSTANCE_FAILURE"

    // ClusterStateChangeReasonCodeBootstrapFailure is a ClusterStateChangeReasonCode enum value
    ClusterStateChangeReasonCodeBootstrapFailure = "BOOTSTRAP_FAILURE"

    // ClusterStateChangeReasonCodeUserRequest is a ClusterStateChangeReasonCode enum value
    ClusterStateChangeReasonCodeUserRequest = "USER_REQUEST"

    // ClusterStateChangeReasonCodeStepFailure is a ClusterStateChangeReasonCode enum value
    ClusterStateChangeReasonCodeStepFailure = "STEP_FAILURE"

    // ClusterStateChangeReasonCodeAllStepsCompleted is a ClusterStateChangeReasonCode enum value
    ClusterStateChangeReasonCodeAllStepsCompleted = "ALL_STEPS_COMPLETED"
)
const (
    // ComparisonOperatorGreaterThanOrEqual is a ComparisonOperator enum value
    ComparisonOperatorGreaterThanOrEqual = "GREATER_THAN_OR_EQUAL"

    // ComparisonOperatorGreaterThan is a ComparisonOperator enum value
    ComparisonOperatorGreaterThan = "GREATER_THAN"

    // ComparisonOperatorLessThan is a ComparisonOperator enum value
    ComparisonOperatorLessThan = "LESS_THAN"

    // ComparisonOperatorLessThanOrEqual is a ComparisonOperator enum value
    ComparisonOperatorLessThanOrEqual = "LESS_THAN_OR_EQUAL"
)
const (
    // InstanceCollectionTypeInstanceFleet is a InstanceCollectionType enum value
    InstanceCollectionTypeInstanceFleet = "INSTANCE_FLEET"

    // InstanceCollectionTypeInstanceGroup is a InstanceCollectionType enum value
    InstanceCollectionTypeInstanceGroup = "INSTANCE_GROUP"
)
const (
    // InstanceFleetStateProvisioning is a InstanceFleetState enum value
    InstanceFleetStateProvisioning = "PROVISIONING"

    // InstanceFleetStateBootstrapping is a InstanceFleetState enum value
    InstanceFleetStateBootstrapping = "BOOTSTRAPPING"

    // InstanceFleetStateRunning is a InstanceFleetState enum value
    InstanceFleetStateRunning = "RUNNING"

    // InstanceFleetStateResizing is a InstanceFleetState enum value
    InstanceFleetStateResizing = "RESIZING"

    // InstanceFleetStateSuspended is a InstanceFleetState enum value
    InstanceFleetStateSuspended = "SUSPENDED"

    // InstanceFleetStateTerminating is a InstanceFleetState enum value
    InstanceFleetStateTerminating = "TERMINATING"

    // InstanceFleetStateTerminated is a InstanceFleetState enum value
    InstanceFleetStateTerminated = "TERMINATED"
)
const (
    // InstanceFleetStateChangeReasonCodeInternalError is a InstanceFleetStateChangeReasonCode enum value
    InstanceFleetStateChangeReasonCodeInternalError = "INTERNAL_ERROR"

    // InstanceFleetStateChangeReasonCodeValidationError is a InstanceFleetStateChangeReasonCode enum value
    InstanceFleetStateChangeReasonCodeValidationError = "VALIDATION_ERROR"

    // InstanceFleetStateChangeReasonCodeInstanceFailure is a InstanceFleetStateChangeReasonCode enum value
    InstanceFleetStateChangeReasonCodeInstanceFailure = "INSTANCE_FAILURE"

    // InstanceFleetStateChangeReasonCodeClusterTerminated is a InstanceFleetStateChangeReasonCode enum value
    InstanceFleetStateChangeReasonCodeClusterTerminated = "CLUSTER_TERMINATED"
)
const (
    // InstanceFleetTypeMaster is a InstanceFleetType enum value
    InstanceFleetTypeMaster = "MASTER"

    // InstanceFleetTypeCore is a InstanceFleetType enum value
    InstanceFleetTypeCore = "CORE"

    // InstanceFleetTypeTask is a InstanceFleetType enum value
    InstanceFleetTypeTask = "TASK"
)
const (
    // InstanceGroupStateProvisioning is a InstanceGroupState enum value
    InstanceGroupStateProvisioning = "PROVISIONING"

    // InstanceGroupStateBootstrapping is a InstanceGroupState enum value
    InstanceGroupStateBootstrapping = "BOOTSTRAPPING"

    // InstanceGroupStateRunning is a InstanceGroupState enum value
    InstanceGroupStateRunning = "RUNNING"

    // InstanceGroupStateResizing is a InstanceGroupState enum value
    InstanceGroupStateResizing = "RESIZING"

    // InstanceGroupStateSuspended is a InstanceGroupState enum value
    InstanceGroupStateSuspended = "SUSPENDED"

    // InstanceGroupStateTerminating is a InstanceGroupState enum value
    InstanceGroupStateTerminating = "TERMINATING"

    // InstanceGroupStateTerminated is a InstanceGroupState enum value
    InstanceGroupStateTerminated = "TERMINATED"

    // InstanceGroupStateArrested is a InstanceGroupState enum value
    InstanceGroupStateArrested = "ARRESTED"

    // InstanceGroupStateShuttingDown is a InstanceGroupState enum value
    InstanceGroupStateShuttingDown = "SHUTTING_DOWN"

    // InstanceGroupStateEnded is a InstanceGroupState enum value
    InstanceGroupStateEnded = "ENDED"
)
const (
    // InstanceGroupStateChangeReasonCodeInternalError is a InstanceGroupStateChangeReasonCode enum value
    InstanceGroupStateChangeReasonCodeInternalError = "INTERNAL_ERROR"

    // InstanceGroupStateChangeReasonCodeValidationError is a InstanceGroupStateChangeReasonCode enum value
    InstanceGroupStateChangeReasonCodeValidationError = "VALIDATION_ERROR"

    // InstanceGroupStateChangeReasonCodeInstanceFailure is a InstanceGroupStateChangeReasonCode enum value
    InstanceGroupStateChangeReasonCodeInstanceFailure = "INSTANCE_FAILURE"

    // InstanceGroupStateChangeReasonCodeClusterTerminated is a InstanceGroupStateChangeReasonCode enum value
    InstanceGroupStateChangeReasonCodeClusterTerminated = "CLUSTER_TERMINATED"
)
const (
    // InstanceGroupTypeMaster is a InstanceGroupType enum value
    InstanceGroupTypeMaster = "MASTER"

    // InstanceGroupTypeCore is a InstanceGroupType enum value
    InstanceGroupTypeCore = "CORE"

    // InstanceGroupTypeTask is a InstanceGroupType enum value
    InstanceGroupTypeTask = "TASK"
)
const (
    // InstanceRoleTypeMaster is a InstanceRoleType enum value
    InstanceRoleTypeMaster = "MASTER"

    // InstanceRoleTypeCore is a InstanceRoleType enum value
    InstanceRoleTypeCore = "CORE"

    // InstanceRoleTypeTask is a InstanceRoleType enum value
    InstanceRoleTypeTask = "TASK"
)
const (
    // InstanceStateAwaitingFulfillment is a InstanceState enum value
    InstanceStateAwaitingFulfillment = "AWAITING_FULFILLMENT"

    // InstanceStateProvisioning is a InstanceState enum value
    InstanceStateProvisioning = "PROVISIONING"

    // InstanceStateBootstrapping is a InstanceState enum value
    InstanceStateBootstrapping = "BOOTSTRAPPING"

    // InstanceStateRunning is a InstanceState enum value
    InstanceStateRunning = "RUNNING"

    // InstanceStateTerminated is a InstanceState enum value
    InstanceStateTerminated = "TERMINATED"
)
const (
    // InstanceStateChangeReasonCodeInternalError is a InstanceStateChangeReasonCode enum value
    InstanceStateChangeReasonCodeInternalError = "INTERNAL_ERROR"

    // InstanceStateChangeReasonCodeValidationError is a InstanceStateChangeReasonCode enum value
    InstanceStateChangeReasonCodeValidationError = "VALIDATION_ERROR"

    // InstanceStateChangeReasonCodeInstanceFailure is a InstanceStateChangeReasonCode enum value
    InstanceStateChangeReasonCodeInstanceFailure = "INSTANCE_FAILURE"

    // InstanceStateChangeReasonCodeBootstrapFailure is a InstanceStateChangeReasonCode enum value
    InstanceStateChangeReasonCodeBootstrapFailure = "BOOTSTRAP_FAILURE"

    // InstanceStateChangeReasonCodeClusterTerminated is a InstanceStateChangeReasonCode enum value
    InstanceStateChangeReasonCodeClusterTerminated = "CLUSTER_TERMINATED"
)

The type of instance.

const (
    // JobFlowExecutionStateStarting is a JobFlowExecutionState enum value
    JobFlowExecutionStateStarting = "STARTING"

    // JobFlowExecutionStateBootstrapping is a JobFlowExecutionState enum value
    JobFlowExecutionStateBootstrapping = "BOOTSTRAPPING"

    // JobFlowExecutionStateRunning is a JobFlowExecutionState enum value
    JobFlowExecutionStateRunning = "RUNNING"

    // JobFlowExecutionStateWaiting is a JobFlowExecutionState enum value
    JobFlowExecutionStateWaiting = "WAITING"

    // JobFlowExecutionStateShuttingDown is a JobFlowExecutionState enum value
    JobFlowExecutionStateShuttingDown = "SHUTTING_DOWN"

    // JobFlowExecutionStateTerminated is a JobFlowExecutionState enum value
    JobFlowExecutionStateTerminated = "TERMINATED"

    // JobFlowExecutionStateCompleted is a JobFlowExecutionState enum value
    JobFlowExecutionStateCompleted = "COMPLETED"

    // JobFlowExecutionStateFailed is a JobFlowExecutionState enum value
    JobFlowExecutionStateFailed = "FAILED"
)
const (
    // MarketTypeOnDemand is a MarketType enum value
    MarketTypeOnDemand = "ON_DEMAND"

    // MarketTypeSpot is a MarketType enum value
    MarketTypeSpot = "SPOT"
)
const (
    // ScaleDownBehaviorTerminateAtInstanceHour is a ScaleDownBehavior enum value
    ScaleDownBehaviorTerminateAtInstanceHour = "TERMINATE_AT_INSTANCE_HOUR"

    // ScaleDownBehaviorTerminateAtTaskCompletion is a ScaleDownBehavior enum value
    ScaleDownBehaviorTerminateAtTaskCompletion = "TERMINATE_AT_TASK_COMPLETION"
)
const (
    // SpotProvisioningTimeoutActionSwitchToOnDemand is a SpotProvisioningTimeoutAction enum value
    SpotProvisioningTimeoutActionSwitchToOnDemand = "SWITCH_TO_ON_DEMAND"

    // SpotProvisioningTimeoutActionTerminateCluster is a SpotProvisioningTimeoutAction enum value
    SpotProvisioningTimeoutActionTerminateCluster = "TERMINATE_CLUSTER"
)
const (
    // StatisticSampleCount is a Statistic enum value
    StatisticSampleCount = "SAMPLE_COUNT"

    // StatisticAverage is a Statistic enum value
    StatisticAverage = "AVERAGE"

    // StatisticSum is a Statistic enum value
    StatisticSum = "SUM"

    // StatisticMinimum is a Statistic enum value
    StatisticMinimum = "MINIMUM"

    // StatisticMaximum is a Statistic enum value
    StatisticMaximum = "MAXIMUM"
)
const (
    // StepExecutionStatePending is a StepExecutionState enum value
    StepExecutionStatePending = "PENDING"

    // StepExecutionStateRunning is a StepExecutionState enum value
    StepExecutionStateRunning = "RUNNING"

    // StepExecutionStateContinue is a StepExecutionState enum value
    StepExecutionStateContinue = "CONTINUE"

    // StepExecutionStateCompleted is a StepExecutionState enum value
    StepExecutionStateCompleted = "COMPLETED"

    // StepExecutionStateCancelled is a StepExecutionState enum value
    StepExecutionStateCancelled = "CANCELLED"

    // StepExecutionStateFailed is a StepExecutionState enum value
    StepExecutionStateFailed = "FAILED"

    // StepExecutionStateInterrupted is a StepExecutionState enum value
    StepExecutionStateInterrupted = "INTERRUPTED"
)
const (
    // StepStatePending is a StepState enum value
    StepStatePending = "PENDING"

    // StepStateCancelPending is a StepState enum value
    StepStateCancelPending = "CANCEL_PENDING"

    // StepStateRunning is a StepState enum value
    StepStateRunning = "RUNNING"

    // StepStateCompleted is a StepState enum value
    StepStateCompleted = "COMPLETED"

    // StepStateCancelled is a StepState enum value
    StepStateCancelled = "CANCELLED"

    // StepStateFailed is a StepState enum value
    StepStateFailed = "FAILED"

    // StepStateInterrupted is a StepState enum value
    StepStateInterrupted = "INTERRUPTED"
)
const (
    // UnitNone is a Unit enum value
    UnitNone = "NONE"

    // UnitSeconds is a Unit enum value
    UnitSeconds = "SECONDS"

    // UnitMicroSeconds is a Unit enum value
    UnitMicroSeconds = "MICRO_SECONDS"

    // UnitMilliSeconds is a Unit enum value
    UnitMilliSeconds = "MILLI_SECONDS"

    // UnitBytes is a Unit enum value
    UnitBytes = "BYTES"

    // UnitKiloBytes is a Unit enum value
    UnitKiloBytes = "KILO_BYTES"

    // UnitMegaBytes is a Unit enum value
    UnitMegaBytes = "MEGA_BYTES"

    // UnitGigaBytes is a Unit enum value
    UnitGigaBytes = "GIGA_BYTES"

    // UnitTeraBytes is a Unit enum value
    UnitTeraBytes = "TERA_BYTES"

    // UnitBits is a Unit enum value
    UnitBits = "BITS"

    // UnitKiloBits is a Unit enum value
    UnitKiloBits = "KILO_BITS"

    // UnitMegaBits is a Unit enum value
    UnitMegaBits = "MEGA_BITS"

    // UnitGigaBits is a Unit enum value
    UnitGigaBits = "GIGA_BITS"

    // UnitTeraBits is a Unit enum value
    UnitTeraBits = "TERA_BITS"

    // UnitPercent is a Unit enum value
    UnitPercent = "PERCENT"

    // UnitCount is a Unit enum value
    UnitCount = "COUNT"

    // UnitBytesPerSecond is a Unit enum value
    UnitBytesPerSecond = "BYTES_PER_SECOND"

    // UnitKiloBytesPerSecond is a Unit enum value
    UnitKiloBytesPerSecond = "KILO_BYTES_PER_SECOND"

    // UnitMegaBytesPerSecond is a Unit enum value
    UnitMegaBytesPerSecond = "MEGA_BYTES_PER_SECOND"

    // UnitGigaBytesPerSecond is a Unit enum value
    UnitGigaBytesPerSecond = "GIGA_BYTES_PER_SECOND"

    // UnitTeraBytesPerSecond is a Unit enum value
    UnitTeraBytesPerSecond = "TERA_BYTES_PER_SECOND"

    // UnitBitsPerSecond is a Unit enum value
    UnitBitsPerSecond = "BITS_PER_SECOND"

    // UnitKiloBitsPerSecond is a Unit enum value
    UnitKiloBitsPerSecond = "KILO_BITS_PER_SECOND"

    // UnitMegaBitsPerSecond is a Unit enum value
    UnitMegaBitsPerSecond = "MEGA_BITS_PER_SECOND"

    // UnitGigaBitsPerSecond is a Unit enum value
    UnitGigaBitsPerSecond = "GIGA_BITS_PER_SECOND"

    // UnitTeraBitsPerSecond is a Unit enum value
    UnitTeraBitsPerSecond = "TERA_BITS_PER_SECOND"

    // UnitCountPerSecond is a Unit enum value
    UnitCountPerSecond = "COUNT_PER_SECOND"
)
const (

    // ErrCodeInternalServerError for service response error code
    // "InternalServerError".
    //
    // Indicates that an error occurred while processing the request and that the
    // request was not completed.
    ErrCodeInternalServerError = "InternalServerError"

    // ErrCodeInternalServerException for service response error code
    // "InternalServerException".
    //
    // This exception occurs when there is an internal failure in the EMR service.
    ErrCodeInternalServerException = "InternalServerException"

    // ErrCodeInvalidRequestException for service response error code
    // "InvalidRequestException".
    //
    // This exception occurs when there is something wrong with user input.
    ErrCodeInvalidRequestException = "InvalidRequestException"
)

Service information constants

const (
    ServiceName = "elasticmapreduce" // Service endpoint prefix API calls made to.
    EndpointsID = ServiceName        // Service ID for Regions and Endpoints metadata.
)
const (
    // StepStateChangeReasonCodeNone is a StepStateChangeReasonCode enum value
    StepStateChangeReasonCodeNone = "NONE"
)

type AddInstanceFleetInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AddInstanceFleetInput

type AddInstanceFleetInput struct {

    // The unique identifier of the cluster.
    //
    // ClusterId is a required field
    ClusterId *string `type:"string" required:"true"`

    // Specifies the configuration of the instance fleet.
    //
    // InstanceFleet is a required field
    InstanceFleet *InstanceFleetConfig `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (AddInstanceFleetInput) GoString

func (s AddInstanceFleetInput) GoString() string

GoString returns the string representation

func (*AddInstanceFleetInput) SetClusterId

func (s *AddInstanceFleetInput) SetClusterId(v string) *AddInstanceFleetInput

SetClusterId sets the ClusterId field's value.

func (*AddInstanceFleetInput) SetInstanceFleet

func (s *AddInstanceFleetInput) SetInstanceFleet(v *InstanceFleetConfig) *AddInstanceFleetInput

SetInstanceFleet sets the InstanceFleet field's value.

func (AddInstanceFleetInput) String

func (s AddInstanceFleetInput) String() string

String returns the string representation

func (*AddInstanceFleetInput) Validate

func (s *AddInstanceFleetInput) Validate() error

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

type AddInstanceFleetOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AddInstanceFleetOutput

type AddInstanceFleetOutput struct {

    // The unique identifier of the cluster.
    ClusterId *string `type:"string"`

    // The unique identifier of the instance fleet.
    InstanceFleetId *string `type:"string"`
    // contains filtered or unexported fields
}

func (AddInstanceFleetOutput) GoString

func (s AddInstanceFleetOutput) GoString() string

GoString returns the string representation

func (*AddInstanceFleetOutput) SetClusterId

func (s *AddInstanceFleetOutput) SetClusterId(v string) *AddInstanceFleetOutput

SetClusterId sets the ClusterId field's value.

func (*AddInstanceFleetOutput) SetInstanceFleetId

func (s *AddInstanceFleetOutput) SetInstanceFleetId(v string) *AddInstanceFleetOutput

SetInstanceFleetId sets the InstanceFleetId field's value.

func (AddInstanceFleetOutput) String

func (s AddInstanceFleetOutput) String() string

String returns the string representation

type AddInstanceGroupsInput

Input to an AddInstanceGroups call. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AddInstanceGroupsInput

type AddInstanceGroupsInput struct {

    // Instance groups to add.
    //
    // InstanceGroups is a required field
    InstanceGroups []*InstanceGroupConfig `type:"list" required:"true"`

    // Job flow in which to add the instance groups.
    //
    // JobFlowId is a required field
    JobFlowId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (AddInstanceGroupsInput) GoString

func (s AddInstanceGroupsInput) GoString() string

GoString returns the string representation

func (*AddInstanceGroupsInput) SetInstanceGroups

func (s *AddInstanceGroupsInput) SetInstanceGroups(v []*InstanceGroupConfig) *AddInstanceGroupsInput

SetInstanceGroups sets the InstanceGroups field's value.

func (*AddInstanceGroupsInput) SetJobFlowId

func (s *AddInstanceGroupsInput) SetJobFlowId(v string) *AddInstanceGroupsInput

SetJobFlowId sets the JobFlowId field's value.

func (AddInstanceGroupsInput) String

func (s AddInstanceGroupsInput) String() string

String returns the string representation

func (*AddInstanceGroupsInput) Validate

func (s *AddInstanceGroupsInput) Validate() error

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

type AddInstanceGroupsOutput

Output from an AddInstanceGroups call. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AddInstanceGroupsOutput

type AddInstanceGroupsOutput struct {

    // Instance group IDs of the newly created instance groups.
    InstanceGroupIds []*string `type:"list"`

    // The job flow ID in which the instance groups are added.
    JobFlowId *string `type:"string"`
    // contains filtered or unexported fields
}

func (AddInstanceGroupsOutput) GoString

func (s AddInstanceGroupsOutput) GoString() string

GoString returns the string representation

func (*AddInstanceGroupsOutput) SetInstanceGroupIds

func (s *AddInstanceGroupsOutput) SetInstanceGroupIds(v []*string) *AddInstanceGroupsOutput

SetInstanceGroupIds sets the InstanceGroupIds field's value.

func (*AddInstanceGroupsOutput) SetJobFlowId

func (s *AddInstanceGroupsOutput) SetJobFlowId(v string) *AddInstanceGroupsOutput

SetJobFlowId sets the JobFlowId field's value.

func (AddInstanceGroupsOutput) String

func (s AddInstanceGroupsOutput) String() string

String returns the string representation

type AddJobFlowStepsInput

The input argument to the AddJobFlowSteps operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AddJobFlowStepsInput

type AddJobFlowStepsInput struct {

    // A string that uniquely identifies the job flow. This identifier is returned
    // by RunJobFlow and can also be obtained from ListClusters.
    //
    // JobFlowId is a required field
    JobFlowId *string `type:"string" required:"true"`

    // A list of StepConfig to be executed by the job flow.
    //
    // Steps is a required field
    Steps []*StepConfig `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (AddJobFlowStepsInput) GoString

func (s AddJobFlowStepsInput) GoString() string

GoString returns the string representation

func (*AddJobFlowStepsInput) SetJobFlowId

func (s *AddJobFlowStepsInput) SetJobFlowId(v string) *AddJobFlowStepsInput

SetJobFlowId sets the JobFlowId field's value.

func (*AddJobFlowStepsInput) SetSteps

func (s *AddJobFlowStepsInput) SetSteps(v []*StepConfig) *AddJobFlowStepsInput

SetSteps sets the Steps field's value.

func (AddJobFlowStepsInput) String

func (s AddJobFlowStepsInput) String() string

String returns the string representation

func (*AddJobFlowStepsInput) Validate

func (s *AddJobFlowStepsInput) Validate() error

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

type AddJobFlowStepsOutput

The output for the AddJobFlowSteps operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AddJobFlowStepsOutput

type AddJobFlowStepsOutput struct {

    // The identifiers of the list of steps added to the job flow.
    StepIds []*string `type:"list"`
    // contains filtered or unexported fields
}

func (AddJobFlowStepsOutput) GoString

func (s AddJobFlowStepsOutput) GoString() string

GoString returns the string representation

func (*AddJobFlowStepsOutput) SetStepIds

func (s *AddJobFlowStepsOutput) SetStepIds(v []*string) *AddJobFlowStepsOutput

SetStepIds sets the StepIds field's value.

func (AddJobFlowStepsOutput) String

func (s AddJobFlowStepsOutput) String() string

String returns the string representation

type AddTagsInput

This input identifies a cluster and a list of tags to attach. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AddTagsInput

type AddTagsInput struct {

    // The Amazon EMR resource identifier to which tags will be added. This value
    // must be a cluster identifier.
    //
    // ResourceId is a required field
    ResourceId *string `type:"string" required:"true"`

    // A list of tags to associate with a cluster and propagate to EC2 instances.
    // Tags are user-defined key/value pairs that consist of a required key string
    // with a maximum of 128 characters, and an optional value string with a maximum
    // of 256 characters.
    //
    // Tags is a required field
    Tags []*Tag `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (AddTagsInput) GoString

func (s AddTagsInput) GoString() string

GoString returns the string representation

func (*AddTagsInput) SetResourceId

func (s *AddTagsInput) SetResourceId(v string) *AddTagsInput

SetResourceId sets the ResourceId field's value.

func (*AddTagsInput) SetTags

func (s *AddTagsInput) SetTags(v []*Tag) *AddTagsInput

SetTags sets the Tags field's value.

func (AddTagsInput) String

func (s AddTagsInput) String() string

String returns the string representation

func (*AddTagsInput) Validate

func (s *AddTagsInput) Validate() error

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

type AddTagsOutput

This output indicates the result of adding tags to a resource. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AddTagsOutput

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

func (AddTagsOutput) GoString

func (s AddTagsOutput) GoString() string

GoString returns the string representation

func (AddTagsOutput) String

func (s AddTagsOutput) String() string

String returns the string representation

type Application

An application is any Amazon or third-party software that you can add to the cluster. This structure contains a list of strings that indicates the software to use with the cluster and accepts a user argument list. Amazon EMR accepts and forwards the argument list to the corresponding installation script as bootstrap action argument. For more information, see Using the MapR Distribution for Hadoop (http://docs.aws.amazon.com/ElasticMapReduce/latest/ManagementGuide/emr-mapr.html). Currently supported values are:

* "mapr-m3" - launch the cluster using MapR M3 Edition.

* "mapr-m5" - launch the cluster using MapR M5 Edition.

* "mapr" with the user arguments specifying "--edition,m3" or "--edition,m5"
- launch the cluster using MapR M3 or M5 Edition, respectively.

In Amazon EMR releases 4.0 and greater, the only accepted parameter is the application name. To pass arguments to applications, you supply a configuration for each application. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/Application

type Application struct {

    // This option is for advanced users only. This is meta information about third-party
    // applications that third-party vendors use for testing purposes.
    AdditionalInfo map[string]*string `type:"map"`

    // Arguments for Amazon EMR to pass to the application.
    Args []*string `type:"list"`

    // The name of the application.
    Name *string `type:"string"`

    // The version of the application.
    Version *string `type:"string"`
    // contains filtered or unexported fields
}

func (Application) GoString

func (s Application) GoString() string

GoString returns the string representation

func (*Application) SetAdditionalInfo

func (s *Application) SetAdditionalInfo(v map[string]*string) *Application

SetAdditionalInfo sets the AdditionalInfo field's value.

func (*Application) SetArgs

func (s *Application) SetArgs(v []*string) *Application

SetArgs sets the Args field's value.

func (*Application) SetName

func (s *Application) SetName(v string) *Application

SetName sets the Name field's value.

func (*Application) SetVersion

func (s *Application) SetVersion(v string) *Application

SetVersion sets the Version field's value.

func (Application) String

func (s Application) String() string

String returns the string representation

type AutoScalingPolicy

An automatic scaling policy for a core instance group or task instance group in an Amazon EMR cluster. An automatic scaling policy defines how an instance group dynamically adds and terminates EC2 instances in response to the value of a CloudWatch metric. See PutAutoScalingPolicy. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AutoScalingPolicy

type AutoScalingPolicy struct {

    // The upper and lower EC2 instance limits for an automatic scaling policy.
    // Automatic scaling activity will not cause an instance group to grow above
    // or below these limits.
    //
    // Constraints is a required field
    Constraints *ScalingConstraints `type:"structure" required:"true"`

    // The scale-in and scale-out rules that comprise the automatic scaling policy.
    //
    // Rules is a required field
    Rules []*ScalingRule `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (AutoScalingPolicy) GoString

func (s AutoScalingPolicy) GoString() string

GoString returns the string representation

func (*AutoScalingPolicy) SetConstraints

func (s *AutoScalingPolicy) SetConstraints(v *ScalingConstraints) *AutoScalingPolicy

SetConstraints sets the Constraints field's value.

func (*AutoScalingPolicy) SetRules

func (s *AutoScalingPolicy) SetRules(v []*ScalingRule) *AutoScalingPolicy

SetRules sets the Rules field's value.

func (AutoScalingPolicy) String

func (s AutoScalingPolicy) String() string

String returns the string representation

func (*AutoScalingPolicy) Validate

func (s *AutoScalingPolicy) Validate() error

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

type AutoScalingPolicyDescription

An automatic scaling policy for a core instance group or task instance group in an Amazon EMR cluster. The automatic scaling policy defines how an instance group dynamically adds and terminates EC2 instances in response to the value of a CloudWatch metric. See PutAutoScalingPolicy. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AutoScalingPolicyDescription

type AutoScalingPolicyDescription struct {

    // The upper and lower EC2 instance limits for an automatic scaling policy.
    // Automatic scaling activity will not cause an instance group to grow above
    // or below these limits.
    Constraints *ScalingConstraints `type:"structure"`

    // The scale-in and scale-out rules that comprise the automatic scaling policy.
    Rules []*ScalingRule `type:"list"`

    // The status of an automatic scaling policy.
    Status *AutoScalingPolicyStatus `type:"structure"`
    // contains filtered or unexported fields
}

func (AutoScalingPolicyDescription) GoString

func (s AutoScalingPolicyDescription) GoString() string

GoString returns the string representation

func (*AutoScalingPolicyDescription) SetConstraints

func (s *AutoScalingPolicyDescription) SetConstraints(v *ScalingConstraints) *AutoScalingPolicyDescription

SetConstraints sets the Constraints field's value.

func (*AutoScalingPolicyDescription) SetRules

func (s *AutoScalingPolicyDescription) SetRules(v []*ScalingRule) *AutoScalingPolicyDescription

SetRules sets the Rules field's value.

func (*AutoScalingPolicyDescription) SetStatus

func (s *AutoScalingPolicyDescription) SetStatus(v *AutoScalingPolicyStatus) *AutoScalingPolicyDescription

SetStatus sets the Status field's value.

func (AutoScalingPolicyDescription) String

func (s AutoScalingPolicyDescription) String() string

String returns the string representation

type AutoScalingPolicyStateChangeReason

The reason for an AutoScalingPolicyStatus change. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AutoScalingPolicyStateChangeReason

type AutoScalingPolicyStateChangeReason struct {

    // The code indicating the reason for the change in status.USER_REQUEST indicates
    // that the scaling policy status was changed by a user. PROVISION_FAILURE indicates
    // that the status change was because the policy failed to provision. CLEANUP_FAILURE
    // indicates an error.
    Code *string `type:"string" enum:"AutoScalingPolicyStateChangeReasonCode"`

    // A friendly, more verbose message that accompanies an automatic scaling policy
    // state change.
    Message *string `type:"string"`
    // contains filtered or unexported fields
}

func (AutoScalingPolicyStateChangeReason) GoString

func (s AutoScalingPolicyStateChangeReason) GoString() string

GoString returns the string representation

func (*AutoScalingPolicyStateChangeReason) SetCode

func (s *AutoScalingPolicyStateChangeReason) SetCode(v string) *AutoScalingPolicyStateChangeReason

SetCode sets the Code field's value.

func (*AutoScalingPolicyStateChangeReason) SetMessage

func (s *AutoScalingPolicyStateChangeReason) SetMessage(v string) *AutoScalingPolicyStateChangeReason

SetMessage sets the Message field's value.

func (AutoScalingPolicyStateChangeReason) String

func (s AutoScalingPolicyStateChangeReason) String() string

String returns the string representation

type AutoScalingPolicyStatus

The status of an automatic scaling policy. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AutoScalingPolicyStatus

type AutoScalingPolicyStatus struct {

    // Indicates the status of the automatic scaling policy.
    State *string `type:"string" enum:"AutoScalingPolicyState"`

    // The reason for a change in status.
    StateChangeReason *AutoScalingPolicyStateChangeReason `type:"structure"`
    // contains filtered or unexported fields
}

func (AutoScalingPolicyStatus) GoString

func (s AutoScalingPolicyStatus) GoString() string

GoString returns the string representation

func (*AutoScalingPolicyStatus) SetState

func (s *AutoScalingPolicyStatus) SetState(v string) *AutoScalingPolicyStatus

SetState sets the State field's value.

func (*AutoScalingPolicyStatus) SetStateChangeReason

func (s *AutoScalingPolicyStatus) SetStateChangeReason(v *AutoScalingPolicyStateChangeReason) *AutoScalingPolicyStatus

SetStateChangeReason sets the StateChangeReason field's value.

func (AutoScalingPolicyStatus) String

func (s AutoScalingPolicyStatus) String() string

String returns the string representation

type BootstrapActionConfig

Configuration of a bootstrap action. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/BootstrapActionConfig

type BootstrapActionConfig struct {

    // The name of the bootstrap action.
    //
    // Name is a required field
    Name *string `type:"string" required:"true"`

    // The script run by the bootstrap action.
    //
    // ScriptBootstrapAction is a required field
    ScriptBootstrapAction *ScriptBootstrapActionConfig `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (BootstrapActionConfig) GoString

func (s BootstrapActionConfig) GoString() string

GoString returns the string representation

func (*BootstrapActionConfig) SetName

func (s *BootstrapActionConfig) SetName(v string) *BootstrapActionConfig

SetName sets the Name field's value.

func (*BootstrapActionConfig) SetScriptBootstrapAction

func (s *BootstrapActionConfig) SetScriptBootstrapAction(v *ScriptBootstrapActionConfig) *BootstrapActionConfig

SetScriptBootstrapAction sets the ScriptBootstrapAction field's value.

func (BootstrapActionConfig) String

func (s BootstrapActionConfig) String() string

String returns the string representation

func (*BootstrapActionConfig) Validate

func (s *BootstrapActionConfig) Validate() error

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

type BootstrapActionDetail

Reports the configuration of a bootstrap action in a cluster (job flow). Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/BootstrapActionDetail

type BootstrapActionDetail struct {

    // A description of the bootstrap action.
    BootstrapActionConfig *BootstrapActionConfig `type:"structure"`
    // contains filtered or unexported fields
}

func (BootstrapActionDetail) GoString

func (s BootstrapActionDetail) GoString() string

GoString returns the string representation

func (*BootstrapActionDetail) SetBootstrapActionConfig

func (s *BootstrapActionDetail) SetBootstrapActionConfig(v *BootstrapActionConfig) *BootstrapActionDetail

SetBootstrapActionConfig sets the BootstrapActionConfig field's value.

func (BootstrapActionDetail) String

func (s BootstrapActionDetail) String() string

String returns the string representation

type CancelStepsInfo

Specification of the status of a CancelSteps request. Available only in Amazon EMR version 4.8.0 and later, excluding version 5.0.0. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CancelStepsInfo

type CancelStepsInfo struct {

    // The reason for the failure if the CancelSteps request fails.
    Reason *string `type:"string"`

    // The status of a CancelSteps Request. The value may be SUBMITTED or FAILED.
    Status *string `type:"string" enum:"CancelStepsRequestStatus"`

    // The encrypted StepId of a step.
    StepId *string `type:"string"`
    // contains filtered or unexported fields
}

func (CancelStepsInfo) GoString

func (s CancelStepsInfo) GoString() string

GoString returns the string representation

func (*CancelStepsInfo) SetReason

func (s *CancelStepsInfo) SetReason(v string) *CancelStepsInfo

SetReason sets the Reason field's value.

func (*CancelStepsInfo) SetStatus

func (s *CancelStepsInfo) SetStatus(v string) *CancelStepsInfo

SetStatus sets the Status field's value.

func (*CancelStepsInfo) SetStepId

func (s *CancelStepsInfo) SetStepId(v string) *CancelStepsInfo

SetStepId sets the StepId field's value.

func (CancelStepsInfo) String

func (s CancelStepsInfo) String() string

String returns the string representation

type CancelStepsInput

The input argument to the CancelSteps operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CancelStepsInput

type CancelStepsInput struct {

    // The ClusterID for which specified steps will be canceled. Use RunJobFlow
    // and ListClusters to get ClusterIDs.
    ClusterId *string `type:"string"`

    // The list of StepIDs to cancel. Use ListSteps to get steps and their states
    // for the specified cluster.
    StepIds []*string `type:"list"`
    // contains filtered or unexported fields
}

func (CancelStepsInput) GoString

func (s CancelStepsInput) GoString() string

GoString returns the string representation

func (*CancelStepsInput) SetClusterId

func (s *CancelStepsInput) SetClusterId(v string) *CancelStepsInput

SetClusterId sets the ClusterId field's value.

func (*CancelStepsInput) SetStepIds

func (s *CancelStepsInput) SetStepIds(v []*string) *CancelStepsInput

SetStepIds sets the StepIds field's value.

func (CancelStepsInput) String

func (s CancelStepsInput) String() string

String returns the string representation

type CancelStepsOutput

The output for the CancelSteps operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CancelStepsOutput

type CancelStepsOutput struct {

    // A list of CancelStepsInfo, which shows the status of specified cancel requests
    // for each StepID specified.
    CancelStepsInfoList []*CancelStepsInfo `type:"list"`
    // contains filtered or unexported fields
}

func (CancelStepsOutput) GoString

func (s CancelStepsOutput) GoString() string

GoString returns the string representation

func (*CancelStepsOutput) SetCancelStepsInfoList

func (s *CancelStepsOutput) SetCancelStepsInfoList(v []*CancelStepsInfo) *CancelStepsOutput

SetCancelStepsInfoList sets the CancelStepsInfoList field's value.

func (CancelStepsOutput) String

func (s CancelStepsOutput) String() string

String returns the string representation

type CloudWatchAlarmDefinition

The definition of a CloudWatch metric alarm, which determines when an automatic scaling activity is triggered. When the defined alarm conditions are satisfied, scaling activity begins. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CloudWatchAlarmDefinition

type CloudWatchAlarmDefinition struct {

    // Determines how the metric specified by MetricName is compared to the value
    // specified by Threshold.
    //
    // ComparisonOperator is a required field
    ComparisonOperator *string `type:"string" required:"true" enum:"ComparisonOperator"`

    // A CloudWatch metric dimension.
    Dimensions []*MetricDimension `type:"list"`

    // The number of periods, expressed in seconds using Period, during which the
    // alarm condition must exist before the alarm triggers automatic scaling activity.
    // The default value is 1.
    EvaluationPeriods *int64 `type:"integer"`

    // The name of the CloudWatch metric that is watched to determine an alarm condition.
    //
    // MetricName is a required field
    MetricName *string `type:"string" required:"true"`

    // The namespace for the CloudWatch metric. The default is AWS/ElasticMapReduce.
    Namespace *string `type:"string"`

    // The period, in seconds, over which the statistic is applied. EMR CloudWatch
    // metrics are emitted every five minutes (300 seconds), so if an EMR CloudWatch
    // metric is specified, specify 300.
    //
    // Period is a required field
    Period *int64 `type:"integer" required:"true"`

    // The statistic to apply to the metric associated with the alarm. The default
    // is AVERAGE.
    Statistic *string `type:"string" enum:"Statistic"`

    // The value against which the specified statistic is compared.
    //
    // Threshold is a required field
    Threshold *float64 `type:"double" required:"true"`

    // The unit of measure associated with the CloudWatch metric being watched.
    // The value specified for Unit must correspond to the units specified in the
    // CloudWatch metric.
    Unit *string `type:"string" enum:"Unit"`
    // contains filtered or unexported fields
}

func (CloudWatchAlarmDefinition) GoString

func (s CloudWatchAlarmDefinition) GoString() string

GoString returns the string representation

func (*CloudWatchAlarmDefinition) SetComparisonOperator

func (s *CloudWatchAlarmDefinition) SetComparisonOperator(v string) *CloudWatchAlarmDefinition

SetComparisonOperator sets the ComparisonOperator field's value.

func (*CloudWatchAlarmDefinition) SetDimensions

func (s *CloudWatchAlarmDefinition) SetDimensions(v []*MetricDimension) *CloudWatchAlarmDefinition

SetDimensions sets the Dimensions field's value.

func (*CloudWatchAlarmDefinition) SetEvaluationPeriods

func (s *CloudWatchAlarmDefinition) SetEvaluationPeriods(v int64) *CloudWatchAlarmDefinition

SetEvaluationPeriods sets the EvaluationPeriods field's value.

func (*CloudWatchAlarmDefinition) SetMetricName

func (s *CloudWatchAlarmDefinition) SetMetricName(v string) *CloudWatchAlarmDefinition

SetMetricName sets the MetricName field's value.

func (*CloudWatchAlarmDefinition) SetNamespace

func (s *CloudWatchAlarmDefinition) SetNamespace(v string) *CloudWatchAlarmDefinition

SetNamespace sets the Namespace field's value.

func (*CloudWatchAlarmDefinition) SetPeriod

func (s *CloudWatchAlarmDefinition) SetPeriod(v int64) *CloudWatchAlarmDefinition

SetPeriod sets the Period field's value.

func (*CloudWatchAlarmDefinition) SetStatistic

func (s *CloudWatchAlarmDefinition) SetStatistic(v string) *CloudWatchAlarmDefinition

SetStatistic sets the Statistic field's value.

func (*CloudWatchAlarmDefinition) SetThreshold

func (s *CloudWatchAlarmDefinition) SetThreshold(v float64) *CloudWatchAlarmDefinition

SetThreshold sets the Threshold field's value.

func (*CloudWatchAlarmDefinition) SetUnit

func (s *CloudWatchAlarmDefinition) SetUnit(v string) *CloudWatchAlarmDefinition

SetUnit sets the Unit field's value.

func (CloudWatchAlarmDefinition) String

func (s CloudWatchAlarmDefinition) String() string

String returns the string representation

func (*CloudWatchAlarmDefinition) Validate

func (s *CloudWatchAlarmDefinition) Validate() error

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

type Cluster

The detailed description of the cluster. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/Cluster

type Cluster struct {

    // The applications installed on this cluster.
    Applications []*Application `type:"list"`

    // An IAM role for automatic scaling policies. The default role is EMR_AutoScaling_DefaultRole.
    // The IAM role provides permissions that the automatic scaling feature requires
    // to launch and terminate EC2 instances in an instance group.
    AutoScalingRole *string `type:"string"`

    // Specifies whether the cluster should terminate after completing all steps.
    AutoTerminate *bool `type:"boolean"`

    // Amazon EMR releases 4.x or later.
    //
    // The list of Configurations supplied to the EMR cluster.
    Configurations []*Configuration `type:"list"`

    // Provides information about the EC2 instances in a cluster grouped by category.
    // For example, key name, subnet ID, IAM instance profile, and so on.
    Ec2InstanceAttributes *Ec2InstanceAttributes `type:"structure"`

    // The unique identifier for the cluster.
    Id *string `type:"string"`

    // The instance fleet configuration is available only in Amazon EMR versions
    // 4.8.0 and later, excluding 5.0.x versions.
    //
    // The instance group configuration of the cluster. A value of INSTANCE_GROUP
    // indicates a uniform instance group configuration. A value of INSTANCE_FLEET
    // indicates an instance fleets configuration.
    InstanceCollectionType *string `type:"string" enum:"InstanceCollectionType"`

    // The path to the Amazon S3 location where logs for this cluster are stored.
    LogUri *string `type:"string"`

    // The public DNS name of the master EC2 instance.
    MasterPublicDnsName *string `type:"string"`

    // The name of the cluster.
    Name *string `type:"string"`

    // An approximation of the cost of the cluster, represented in m1.small/hours.
    // This value is incremented one time for every hour an m1.small instance runs.
    // Larger instances are weighted more, so an EC2 instance that is roughly four
    // times more expensive would result in the normalized instance hours being
    // incremented by four. This result is only an approximation and does not reflect
    // the actual billing rate.
    NormalizedInstanceHours *int64 `type:"integer"`

    // The release label for the Amazon EMR release. For Amazon EMR 3.x and 2.x
    // AMIs, use amiVersion instead instead of ReleaseLabel.
    ReleaseLabel *string `type:"string"`

    // The AMI version requested for this cluster.
    RequestedAmiVersion *string `type:"string"`

    // The AMI version running on this cluster.
    RunningAmiVersion *string `type:"string"`

    // The way that individual Amazon EC2 instances terminate when an automatic
    // scale-in activity occurs or an instance group is resized. TERMINATE_AT_INSTANCE_HOUR
    // indicates that Amazon EMR terminates nodes at the instance-hour boundary,
    // regardless of when the request to terminate the instance was submitted. This
    // option is only available with Amazon EMR 5.1.0 and later and is the default
    // for clusters created using that version. TERMINATE_AT_TASK_COMPLETION indicates
    // that Amazon EMR blacklists and drains tasks from nodes before terminating
    // the Amazon EC2 instances, regardless of the instance-hour boundary. With
    // either behavior, Amazon EMR removes the least active nodes first and blocks
    // instance termination if it could lead to HDFS corruption. TERMINATE_AT_TASK_COMPLETION
    // is available only in Amazon EMR version 4.1.0 and later, and is the default
    // for versions of Amazon EMR earlier than 5.1.0.
    ScaleDownBehavior *string `type:"string" enum:"ScaleDownBehavior"`

    // The name of the security configuration applied to the cluster.
    SecurityConfiguration *string `type:"string"`

    // The IAM role that will be assumed by the Amazon EMR service to access AWS
    // resources on your behalf.
    ServiceRole *string `type:"string"`

    // The current status details about the cluster.
    Status *ClusterStatus `type:"structure"`

    // A list of tags associated with a cluster.
    Tags []*Tag `type:"list"`

    // Indicates whether Amazon EMR will lock the cluster to prevent the EC2 instances
    // from being terminated by an API call or user intervention, or in the event
    // of a cluster error.
    TerminationProtected *bool `type:"boolean"`

    // Indicates whether the cluster is visible to all IAM users of the AWS account
    // associated with the cluster. If this value is set to true, all IAM users
    // of that AWS account can view and manage the cluster if they have the proper
    // policy permissions set. If this value is false, only the IAM user that created
    // the cluster can view and manage it. This value can be changed using the SetVisibleToAllUsers
    // action.
    VisibleToAllUsers *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (Cluster) GoString

func (s Cluster) GoString() string

GoString returns the string representation

func (*Cluster) SetApplications

func (s *Cluster) SetApplications(v []*Application) *Cluster

SetApplications sets the Applications field's value.

func (*Cluster) SetAutoScalingRole

func (s *Cluster) SetAutoScalingRole(v string) *Cluster

SetAutoScalingRole sets the AutoScalingRole field's value.

func (*Cluster) SetAutoTerminate

func (s *Cluster) SetAutoTerminate(v bool) *Cluster

SetAutoTerminate sets the AutoTerminate field's value.

func (*Cluster) SetConfigurations

func (s *Cluster) SetConfigurations(v []*Configuration) *Cluster

SetConfigurations sets the Configurations field's value.

func (*Cluster) SetEc2InstanceAttributes

func (s *Cluster) SetEc2InstanceAttributes(v *Ec2InstanceAttributes) *Cluster

SetEc2InstanceAttributes sets the Ec2InstanceAttributes field's value.

func (*Cluster) SetId

func (s *Cluster) SetId(v string) *Cluster

SetId sets the Id field's value.

func (*Cluster) SetInstanceCollectionType

func (s *Cluster) SetInstanceCollectionType(v string) *Cluster

SetInstanceCollectionType sets the InstanceCollectionType field's value.

func (*Cluster) SetLogUri

func (s *Cluster) SetLogUri(v string) *Cluster

SetLogUri sets the LogUri field's value.

func (*Cluster) SetMasterPublicDnsName

func (s *Cluster) SetMasterPublicDnsName(v string) *Cluster

SetMasterPublicDnsName sets the MasterPublicDnsName field's value.

func (*Cluster) SetName

func (s *Cluster) SetName(v string) *Cluster

SetName sets the Name field's value.

func (*Cluster) SetNormalizedInstanceHours

func (s *Cluster) SetNormalizedInstanceHours(v int64) *Cluster

SetNormalizedInstanceHours sets the NormalizedInstanceHours field's value.

func (*Cluster) SetReleaseLabel

func (s *Cluster) SetReleaseLabel(v string) *Cluster

SetReleaseLabel sets the ReleaseLabel field's value.

func (*Cluster) SetRequestedAmiVersion

func (s *Cluster) SetRequestedAmiVersion(v string) *Cluster

SetRequestedAmiVersion sets the RequestedAmiVersion field's value.

func (*Cluster) SetRunningAmiVersion

func (s *Cluster) SetRunningAmiVersion(v string) *Cluster

SetRunningAmiVersion sets the RunningAmiVersion field's value.

func (*Cluster) SetScaleDownBehavior

func (s *Cluster) SetScaleDownBehavior(v string) *Cluster

SetScaleDownBehavior sets the ScaleDownBehavior field's value.

func (*Cluster) SetSecurityConfiguration

func (s *Cluster) SetSecurityConfiguration(v string) *Cluster

SetSecurityConfiguration sets the SecurityConfiguration field's value.

func (*Cluster) SetServiceRole

func (s *Cluster) SetServiceRole(v string) *Cluster

SetServiceRole sets the ServiceRole field's value.

func (*Cluster) SetStatus

func (s *Cluster) SetStatus(v *ClusterStatus) *Cluster

SetStatus sets the Status field's value.

func (*Cluster) SetTags

func (s *Cluster) SetTags(v []*Tag) *Cluster

SetTags sets the Tags field's value.

func (*Cluster) SetTerminationProtected

func (s *Cluster) SetTerminationProtected(v bool) *Cluster

SetTerminationProtected sets the TerminationProtected field's value.

func (*Cluster) SetVisibleToAllUsers

func (s *Cluster) SetVisibleToAllUsers(v bool) *Cluster

SetVisibleToAllUsers sets the VisibleToAllUsers field's value.

func (Cluster) String

func (s Cluster) String() string

String returns the string representation

type ClusterStateChangeReason

The reason that the cluster changed to its current state. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ClusterStateChangeReason

type ClusterStateChangeReason struct {

    // The programmatic code for the state change reason.
    Code *string `type:"string" enum:"ClusterStateChangeReasonCode"`

    // The descriptive message for the state change reason.
    Message *string `type:"string"`
    // contains filtered or unexported fields
}

func (ClusterStateChangeReason) GoString

func (s ClusterStateChangeReason) GoString() string

GoString returns the string representation

func (*ClusterStateChangeReason) SetCode

func (s *ClusterStateChangeReason) SetCode(v string) *ClusterStateChangeReason

SetCode sets the Code field's value.

func (*ClusterStateChangeReason) SetMessage

func (s *ClusterStateChangeReason) SetMessage(v string) *ClusterStateChangeReason

SetMessage sets the Message field's value.

func (ClusterStateChangeReason) String

func (s ClusterStateChangeReason) String() string

String returns the string representation

type ClusterStatus

The detailed status of the cluster. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ClusterStatus

type ClusterStatus struct {

    // The current state of the cluster.
    State *string `type:"string" enum:"ClusterState"`

    // The reason for the cluster status change.
    StateChangeReason *ClusterStateChangeReason `type:"structure"`

    // A timeline that represents the status of a cluster over the lifetime of the
    // cluster.
    Timeline *ClusterTimeline `type:"structure"`
    // contains filtered or unexported fields
}

func (ClusterStatus) GoString

func (s ClusterStatus) GoString() string

GoString returns the string representation

func (*ClusterStatus) SetState

func (s *ClusterStatus) SetState(v string) *ClusterStatus

SetState sets the State field's value.

func (*ClusterStatus) SetStateChangeReason

func (s *ClusterStatus) SetStateChangeReason(v *ClusterStateChangeReason) *ClusterStatus

SetStateChangeReason sets the StateChangeReason field's value.

func (*ClusterStatus) SetTimeline

func (s *ClusterStatus) SetTimeline(v *ClusterTimeline) *ClusterStatus

SetTimeline sets the Timeline field's value.

func (ClusterStatus) String

func (s ClusterStatus) String() string

String returns the string representation

type ClusterSummary

The summary description of the cluster. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ClusterSummary

type ClusterSummary struct {

    // The unique identifier for the cluster.
    Id *string `type:"string"`

    // The name of the cluster.
    Name *string `type:"string"`

    // An approximation of the cost of the cluster, represented in m1.small/hours.
    // This value is incremented one time for every hour an m1.small instance runs.
    // Larger instances are weighted more, so an EC2 instance that is roughly four
    // times more expensive would result in the normalized instance hours being
    // incremented by four. This result is only an approximation and does not reflect
    // the actual billing rate.
    NormalizedInstanceHours *int64 `type:"integer"`

    // The details about the current status of the cluster.
    Status *ClusterStatus `type:"structure"`
    // contains filtered or unexported fields
}

func (ClusterSummary) GoString

func (s ClusterSummary) GoString() string

GoString returns the string representation

func (*ClusterSummary) SetId

func (s *ClusterSummary) SetId(v string) *ClusterSummary

SetId sets the Id field's value.

func (*ClusterSummary) SetName

func (s *ClusterSummary) SetName(v string) *ClusterSummary

SetName sets the Name field's value.

func (*ClusterSummary) SetNormalizedInstanceHours

func (s *ClusterSummary) SetNormalizedInstanceHours(v int64) *ClusterSummary

SetNormalizedInstanceHours sets the NormalizedInstanceHours field's value.

func (*ClusterSummary) SetStatus

func (s *ClusterSummary) SetStatus(v *ClusterStatus) *ClusterSummary

SetStatus sets the Status field's value.

func (ClusterSummary) String

func (s ClusterSummary) String() string

String returns the string representation

type ClusterTimeline

Represents the timeline of the cluster's lifecycle. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ClusterTimeline

type ClusterTimeline struct {

    // The creation date and time of the cluster.
    CreationDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The date and time when the cluster was terminated.
    EndDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The date and time when the cluster was ready to execute steps.
    ReadyDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`
    // contains filtered or unexported fields
}

func (ClusterTimeline) GoString

func (s ClusterTimeline) GoString() string

GoString returns the string representation

func (*ClusterTimeline) SetCreationDateTime

func (s *ClusterTimeline) SetCreationDateTime(v time.Time) *ClusterTimeline

SetCreationDateTime sets the CreationDateTime field's value.

func (*ClusterTimeline) SetEndDateTime

func (s *ClusterTimeline) SetEndDateTime(v time.Time) *ClusterTimeline

SetEndDateTime sets the EndDateTime field's value.

func (*ClusterTimeline) SetReadyDateTime

func (s *ClusterTimeline) SetReadyDateTime(v time.Time) *ClusterTimeline

SetReadyDateTime sets the ReadyDateTime field's value.

func (ClusterTimeline) String

func (s ClusterTimeline) String() string

String returns the string representation

type Command

An entity describing an executable that runs on a cluster. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/Command

type Command struct {

    // Arguments for Amazon EMR to pass to the command for execution.
    Args []*string `type:"list"`

    // The name of the command.
    Name *string `type:"string"`

    // The Amazon S3 location of the command script.
    ScriptPath *string `type:"string"`
    // contains filtered or unexported fields
}

func (Command) GoString

func (s Command) GoString() string

GoString returns the string representation

func (*Command) SetArgs

func (s *Command) SetArgs(v []*string) *Command

SetArgs sets the Args field's value.

func (*Command) SetName

func (s *Command) SetName(v string) *Command

SetName sets the Name field's value.

func (*Command) SetScriptPath

func (s *Command) SetScriptPath(v string) *Command

SetScriptPath sets the ScriptPath field's value.

func (Command) String

func (s Command) String() string

String returns the string representation

type Configuration

Amazon EMR releases 4.x or later.

An optional configuration specification to be used when provisioning cluster instances, which can include configurations for applications and software bundled with Amazon EMR. A configuration consists of a classification, properties, and optional nested configurations. A classification refers to an application-specific configuration file. Properties are the settings you want to change in that file. For more information, see Configuring Applications (http://docs.aws.amazon.com/emr/latest/ReleaseGuide/emr-configure-apps.html). Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/Configuration

type Configuration struct {

    // The classification within a configuration.
    Classification *string `type:"string"`

    // A list of additional configurations to apply within a configuration object.
    Configurations []*Configuration `type:"list"`

    // A set of properties specified within a configuration classification.
    Properties map[string]*string `type:"map"`
    // contains filtered or unexported fields
}

func (Configuration) GoString

func (s Configuration) GoString() string

GoString returns the string representation

func (*Configuration) SetClassification

func (s *Configuration) SetClassification(v string) *Configuration

SetClassification sets the Classification field's value.

func (*Configuration) SetConfigurations

func (s *Configuration) SetConfigurations(v []*Configuration) *Configuration

SetConfigurations sets the Configurations field's value.

func (*Configuration) SetProperties

func (s *Configuration) SetProperties(v map[string]*string) *Configuration

SetProperties sets the Properties field's value.

func (Configuration) String

func (s Configuration) String() string

String returns the string representation

type CreateSecurityConfigurationInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CreateSecurityConfigurationInput

type CreateSecurityConfigurationInput struct {

    // The name of the security configuration.
    //
    // Name is a required field
    Name *string `type:"string" required:"true"`

    // The security configuration details in JSON format.
    //
    // SecurityConfiguration is a required field
    SecurityConfiguration *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateSecurityConfigurationInput) GoString

func (s CreateSecurityConfigurationInput) GoString() string

GoString returns the string representation

func (*CreateSecurityConfigurationInput) SetName

func (s *CreateSecurityConfigurationInput) SetName(v string) *CreateSecurityConfigurationInput

SetName sets the Name field's value.

func (*CreateSecurityConfigurationInput) SetSecurityConfiguration

func (s *CreateSecurityConfigurationInput) SetSecurityConfiguration(v string) *CreateSecurityConfigurationInput

SetSecurityConfiguration sets the SecurityConfiguration field's value.

func (CreateSecurityConfigurationInput) String

func (s CreateSecurityConfigurationInput) String() string

String returns the string representation

func (*CreateSecurityConfigurationInput) Validate

func (s *CreateSecurityConfigurationInput) Validate() error

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

type CreateSecurityConfigurationOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CreateSecurityConfigurationOutput

type CreateSecurityConfigurationOutput struct {

    // The date and time the security configuration was created.
    //
    // CreationDateTime is a required field
    CreationDateTime *time.Time `type:"timestamp" timestampFormat:"unix" required:"true"`

    // The name of the security configuration.
    //
    // Name is a required field
    Name *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateSecurityConfigurationOutput) GoString

func (s CreateSecurityConfigurationOutput) GoString() string

GoString returns the string representation

func (*CreateSecurityConfigurationOutput) SetCreationDateTime

func (s *CreateSecurityConfigurationOutput) SetCreationDateTime(v time.Time) *CreateSecurityConfigurationOutput

SetCreationDateTime sets the CreationDateTime field's value.

func (*CreateSecurityConfigurationOutput) SetName

func (s *CreateSecurityConfigurationOutput) SetName(v string) *CreateSecurityConfigurationOutput

SetName sets the Name field's value.

func (CreateSecurityConfigurationOutput) String

func (s CreateSecurityConfigurationOutput) String() string

String returns the string representation

type DeleteSecurityConfigurationInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DeleteSecurityConfigurationInput

type DeleteSecurityConfigurationInput struct {

    // The name of the security configuration.
    //
    // Name is a required field
    Name *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteSecurityConfigurationInput) GoString

func (s DeleteSecurityConfigurationInput) GoString() string

GoString returns the string representation

func (*DeleteSecurityConfigurationInput) SetName

func (s *DeleteSecurityConfigurationInput) SetName(v string) *DeleteSecurityConfigurationInput

SetName sets the Name field's value.

func (DeleteSecurityConfigurationInput) String

func (s DeleteSecurityConfigurationInput) String() string

String returns the string representation

func (*DeleteSecurityConfigurationInput) Validate

func (s *DeleteSecurityConfigurationInput) Validate() error

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

type DeleteSecurityConfigurationOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DeleteSecurityConfigurationOutput

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

func (DeleteSecurityConfigurationOutput) GoString

func (s DeleteSecurityConfigurationOutput) GoString() string

GoString returns the string representation

func (DeleteSecurityConfigurationOutput) String

func (s DeleteSecurityConfigurationOutput) String() string

String returns the string representation

type DescribeClusterInput

This input determines which cluster to describe. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeClusterInput

type DescribeClusterInput struct {

    // The identifier of the cluster to describe.
    //
    // ClusterId is a required field
    ClusterId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeClusterInput) GoString

func (s DescribeClusterInput) GoString() string

GoString returns the string representation

func (*DescribeClusterInput) SetClusterId

func (s *DescribeClusterInput) SetClusterId(v string) *DescribeClusterInput

SetClusterId sets the ClusterId field's value.

func (DescribeClusterInput) String

func (s DescribeClusterInput) String() string

String returns the string representation

func (*DescribeClusterInput) Validate

func (s *DescribeClusterInput) Validate() error

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

type DescribeClusterOutput

This output contains the description of the cluster. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeClusterOutput

type DescribeClusterOutput struct {

    // This output contains the details for the requested cluster.
    Cluster *Cluster `type:"structure"`
    // contains filtered or unexported fields
}

func (DescribeClusterOutput) GoString

func (s DescribeClusterOutput) GoString() string

GoString returns the string representation

func (*DescribeClusterOutput) SetCluster

func (s *DescribeClusterOutput) SetCluster(v *Cluster) *DescribeClusterOutput

SetCluster sets the Cluster field's value.

func (DescribeClusterOutput) String

func (s DescribeClusterOutput) String() string

String returns the string representation

type DescribeJobFlowsInput

The input for the DescribeJobFlows operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeJobFlowsInput

type DescribeJobFlowsInput struct {

    // Return only job flows created after this date and time.
    CreatedAfter *time.Time `type:"timestamp" timestampFormat:"unix"`

    // Return only job flows created before this date and time.
    CreatedBefore *time.Time `type:"timestamp" timestampFormat:"unix"`

    // Return only job flows whose job flow ID is contained in this list.
    JobFlowIds []*string `type:"list"`

    // Return only job flows whose state is contained in this list.
    JobFlowStates []*string `type:"list"`
    // contains filtered or unexported fields
}

func (DescribeJobFlowsInput) GoString

func (s DescribeJobFlowsInput) GoString() string

GoString returns the string representation

func (*DescribeJobFlowsInput) SetCreatedAfter

func (s *DescribeJobFlowsInput) SetCreatedAfter(v time.Time) *DescribeJobFlowsInput

SetCreatedAfter sets the CreatedAfter field's value.

func (*DescribeJobFlowsInput) SetCreatedBefore

func (s *DescribeJobFlowsInput) SetCreatedBefore(v time.Time) *DescribeJobFlowsInput

SetCreatedBefore sets the CreatedBefore field's value.

func (*DescribeJobFlowsInput) SetJobFlowIds

func (s *DescribeJobFlowsInput) SetJobFlowIds(v []*string) *DescribeJobFlowsInput

SetJobFlowIds sets the JobFlowIds field's value.

func (*DescribeJobFlowsInput) SetJobFlowStates

func (s *DescribeJobFlowsInput) SetJobFlowStates(v []*string) *DescribeJobFlowsInput

SetJobFlowStates sets the JobFlowStates field's value.

func (DescribeJobFlowsInput) String

func (s DescribeJobFlowsInput) String() string

String returns the string representation

type DescribeJobFlowsOutput

The output for the DescribeJobFlows operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeJobFlowsOutput

type DescribeJobFlowsOutput struct {

    // A list of job flows matching the parameters supplied.
    JobFlows []*JobFlowDetail `type:"list"`
    // contains filtered or unexported fields
}

func (DescribeJobFlowsOutput) GoString

func (s DescribeJobFlowsOutput) GoString() string

GoString returns the string representation

func (*DescribeJobFlowsOutput) SetJobFlows

func (s *DescribeJobFlowsOutput) SetJobFlows(v []*JobFlowDetail) *DescribeJobFlowsOutput

SetJobFlows sets the JobFlows field's value.

func (DescribeJobFlowsOutput) String

func (s DescribeJobFlowsOutput) String() string

String returns the string representation

type DescribeSecurityConfigurationInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeSecurityConfigurationInput

type DescribeSecurityConfigurationInput struct {

    // The name of the security configuration.
    //
    // Name is a required field
    Name *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeSecurityConfigurationInput) GoString

func (s DescribeSecurityConfigurationInput) GoString() string

GoString returns the string representation

func (*DescribeSecurityConfigurationInput) SetName

func (s *DescribeSecurityConfigurationInput) SetName(v string) *DescribeSecurityConfigurationInput

SetName sets the Name field's value.

func (DescribeSecurityConfigurationInput) String

func (s DescribeSecurityConfigurationInput) String() string

String returns the string representation

func (*DescribeSecurityConfigurationInput) Validate

func (s *DescribeSecurityConfigurationInput) Validate() error

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

type DescribeSecurityConfigurationOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeSecurityConfigurationOutput

type DescribeSecurityConfigurationOutput struct {

    // The date and time the security configuration was created
    CreationDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The name of the security configuration.
    Name *string `type:"string"`

    // The security configuration details in JSON format.
    SecurityConfiguration *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeSecurityConfigurationOutput) GoString

func (s DescribeSecurityConfigurationOutput) GoString() string

GoString returns the string representation

func (*DescribeSecurityConfigurationOutput) SetCreationDateTime

func (s *DescribeSecurityConfigurationOutput) SetCreationDateTime(v time.Time) *DescribeSecurityConfigurationOutput

SetCreationDateTime sets the CreationDateTime field's value.

func (*DescribeSecurityConfigurationOutput) SetName

func (s *DescribeSecurityConfigurationOutput) SetName(v string) *DescribeSecurityConfigurationOutput

SetName sets the Name field's value.

func (*DescribeSecurityConfigurationOutput) SetSecurityConfiguration

func (s *DescribeSecurityConfigurationOutput) SetSecurityConfiguration(v string) *DescribeSecurityConfigurationOutput

SetSecurityConfiguration sets the SecurityConfiguration field's value.

func (DescribeSecurityConfigurationOutput) String

func (s DescribeSecurityConfigurationOutput) String() string

String returns the string representation

type DescribeStepInput

This input determines which step to describe. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeStepInput

type DescribeStepInput struct {

    // The identifier of the cluster with steps to describe.
    //
    // ClusterId is a required field
    ClusterId *string `type:"string" required:"true"`

    // The identifier of the step to describe.
    //
    // StepId is a required field
    StepId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeStepInput) GoString

func (s DescribeStepInput) GoString() string

GoString returns the string representation

func (*DescribeStepInput) SetClusterId

func (s *DescribeStepInput) SetClusterId(v string) *DescribeStepInput

SetClusterId sets the ClusterId field's value.

func (*DescribeStepInput) SetStepId

func (s *DescribeStepInput) SetStepId(v string) *DescribeStepInput

SetStepId sets the StepId field's value.

func (DescribeStepInput) String

func (s DescribeStepInput) String() string

String returns the string representation

func (*DescribeStepInput) Validate

func (s *DescribeStepInput) Validate() error

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

type DescribeStepOutput

This output contains the description of the cluster step. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeStepOutput

type DescribeStepOutput struct {

    // The step details for the requested step identifier.
    Step *Step `type:"structure"`
    // contains filtered or unexported fields
}

func (DescribeStepOutput) GoString

func (s DescribeStepOutput) GoString() string

GoString returns the string representation

func (*DescribeStepOutput) SetStep

func (s *DescribeStepOutput) SetStep(v *Step) *DescribeStepOutput

SetStep sets the Step field's value.

func (DescribeStepOutput) String

func (s DescribeStepOutput) String() string

String returns the string representation

type EMR

EMR provides the API operation methods for making requests to Amazon Elastic MapReduce. See this package's package overview docs for details on the service.

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

type EMR struct {
    *client.Client
}

func New

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

New creates a new instance of the EMR 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 EMR client from just a session.
svc := emr.New(mySession)

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

func (*EMR) AddInstanceFleet

func (c *EMR) AddInstanceFleet(input *AddInstanceFleetInput) (*AddInstanceFleetOutput, error)

AddInstanceFleet API operation for Amazon Elastic MapReduce.

Adds an instance fleet to a running cluster.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x.

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 Amazon Elastic MapReduce's API operation AddInstanceFleet for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
This exception occurs when there is an internal failure in the EMR service.

* ErrCodeInvalidRequestException "InvalidRequestException"
This exception occurs when there is something wrong with user input.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AddInstanceFleet

func (*EMR) AddInstanceFleetRequest

func (c *EMR) AddInstanceFleetRequest(input *AddInstanceFleetInput) (req *request.Request, output *AddInstanceFleetOutput)

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

See AddInstanceFleet 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 AddInstanceFleet 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 AddInstanceFleetRequest method.
req, resp := client.AddInstanceFleetRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AddInstanceFleet

func (*EMR) AddInstanceFleetWithContext

func (c *EMR) AddInstanceFleetWithContext(ctx aws.Context, input *AddInstanceFleetInput, opts ...request.Option) (*AddInstanceFleetOutput, error)

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

See AddInstanceFleet 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 (*EMR) AddInstanceGroups

func (c *EMR) AddInstanceGroups(input *AddInstanceGroupsInput) (*AddInstanceGroupsOutput, error)

AddInstanceGroups API operation for Amazon Elastic MapReduce.

Adds one or more instance groups to a running cluster.

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 Amazon Elastic MapReduce's API operation AddInstanceGroups for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerError "InternalServerError"
Indicates that an error occurred while processing the request and that the
request was not completed.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AddInstanceGroups

func (*EMR) AddInstanceGroupsRequest

func (c *EMR) AddInstanceGroupsRequest(input *AddInstanceGroupsInput) (req *request.Request, output *AddInstanceGroupsOutput)

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

See AddInstanceGroups 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 AddInstanceGroups 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 AddInstanceGroupsRequest method.
req, resp := client.AddInstanceGroupsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AddInstanceGroups

func (*EMR) AddInstanceGroupsWithContext

func (c *EMR) AddInstanceGroupsWithContext(ctx aws.Context, input *AddInstanceGroupsInput, opts ...request.Option) (*AddInstanceGroupsOutput, error)

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

See AddInstanceGroups 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 (*EMR) AddJobFlowSteps

func (c *EMR) AddJobFlowSteps(input *AddJobFlowStepsInput) (*AddJobFlowStepsOutput, error)

AddJobFlowSteps API operation for Amazon Elastic MapReduce.

AddJobFlowSteps adds new steps to a running cluster. A maximum of 256 steps are allowed in each job flow.

If your cluster is long-running (such as a Hive data warehouse) or complex, you may require more than 256 steps to process your data. You can bypass the 256-step limitation in various ways, including using SSH to connect to the master node and submitting queries directly to the software running on the master node, such as Hive and Hadoop. For more information on how to do this, see Add More than 256 Steps to a Cluster (http://docs.aws.amazon.com/ElasticMapReduce/latest/ManagementGuide/AddMoreThan256Steps.html) in the Amazon EMR Management Guide.

A step specifies the location of a JAR file stored either on the master node of the cluster or in Amazon S3. Each step is performed by the main function of the main class of the JAR file. The main class can be specified either in the manifest of the JAR or by using the MainFunction parameter of the step.

Amazon EMR executes each step in the order listed. For a step to be considered complete, the main function must exit with a zero exit code and all Hadoop jobs started while the step was running must have completed and run successfully.

You can only add steps to a cluster that is in one of the following states: STARTING, BOOTSTRAPPING, RUNNING, or WAITING.

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 Amazon Elastic MapReduce's API operation AddJobFlowSteps for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerError "InternalServerError"
Indicates that an error occurred while processing the request and that the
request was not completed.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AddJobFlowSteps

func (*EMR) AddJobFlowStepsRequest

func (c *EMR) AddJobFlowStepsRequest(input *AddJobFlowStepsInput) (req *request.Request, output *AddJobFlowStepsOutput)

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

See AddJobFlowSteps 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 AddJobFlowSteps 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 AddJobFlowStepsRequest method.
req, resp := client.AddJobFlowStepsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AddJobFlowSteps

func (*EMR) AddJobFlowStepsWithContext

func (c *EMR) AddJobFlowStepsWithContext(ctx aws.Context, input *AddJobFlowStepsInput, opts ...request.Option) (*AddJobFlowStepsOutput, error)

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

See AddJobFlowSteps 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 (*EMR) AddTags

func (c *EMR) AddTags(input *AddTagsInput) (*AddTagsOutput, error)

AddTags API operation for Amazon Elastic MapReduce.

Adds tags to an Amazon EMR resource. Tags make it easier to associate clusters in various ways, such as grouping clusters to track your Amazon EMR resource allocation costs. For more information, see Tagging Amazon EMR Resources (http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/emr-plan-tags.html).

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 Amazon Elastic MapReduce's API operation AddTags for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
This exception occurs when there is an internal failure in the EMR service.

* ErrCodeInvalidRequestException "InvalidRequestException"
This exception occurs when there is something wrong with user input.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AddTags

func (*EMR) AddTagsRequest

func (c *EMR) AddTagsRequest(input *AddTagsInput) (req *request.Request, output *AddTagsOutput)

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

See AddTags 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 AddTags 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 AddTagsRequest method.
req, resp := client.AddTagsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AddTags

func (*EMR) AddTagsWithContext

func (c *EMR) AddTagsWithContext(ctx aws.Context, input *AddTagsInput, opts ...request.Option) (*AddTagsOutput, error)

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

See AddTags 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 (*EMR) CancelSteps

func (c *EMR) CancelSteps(input *CancelStepsInput) (*CancelStepsOutput, error)

CancelSteps API operation for Amazon Elastic MapReduce.

Cancels a pending step or steps in a running cluster. Available only in Amazon EMR versions 4.8.0 and later, excluding version 5.0.0. A maximum of 256 steps are allowed in each CancelSteps request. CancelSteps is idempotent but asynchronous; it does not guarantee a step will be canceled, even if the request is successfully submitted. You can only cancel steps that are in a PENDING state.

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 Amazon Elastic MapReduce's API operation CancelSteps for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerError "InternalServerError"
Indicates that an error occurred while processing the request and that the
request was not completed.

* ErrCodeInvalidRequestException "InvalidRequestException"
This exception occurs when there is something wrong with user input.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CancelSteps

func (*EMR) CancelStepsRequest

func (c *EMR) CancelStepsRequest(input *CancelStepsInput) (req *request.Request, output *CancelStepsOutput)

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

See CancelSteps 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 CancelSteps 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 CancelStepsRequest method.
req, resp := client.CancelStepsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CancelSteps

func (*EMR) CancelStepsWithContext

func (c *EMR) CancelStepsWithContext(ctx aws.Context, input *CancelStepsInput, opts ...request.Option) (*CancelStepsOutput, error)

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

See CancelSteps 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 (*EMR) CreateSecurityConfiguration

func (c *EMR) CreateSecurityConfiguration(input *CreateSecurityConfigurationInput) (*CreateSecurityConfigurationOutput, error)

CreateSecurityConfiguration API operation for Amazon Elastic MapReduce.

Creates a security configuration, which is stored in the service and can be specified when a cluster is created.

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 Amazon Elastic MapReduce's API operation CreateSecurityConfiguration for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
This exception occurs when there is an internal failure in the EMR service.

* ErrCodeInvalidRequestException "InvalidRequestException"
This exception occurs when there is something wrong with user input.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CreateSecurityConfiguration

func (*EMR) CreateSecurityConfigurationRequest

func (c *EMR) CreateSecurityConfigurationRequest(input *CreateSecurityConfigurationInput) (req *request.Request, output *CreateSecurityConfigurationOutput)

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

See CreateSecurityConfiguration 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 CreateSecurityConfiguration 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 CreateSecurityConfigurationRequest method.
req, resp := client.CreateSecurityConfigurationRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CreateSecurityConfiguration

func (*EMR) CreateSecurityConfigurationWithContext

func (c *EMR) CreateSecurityConfigurationWithContext(ctx aws.Context, input *CreateSecurityConfigurationInput, opts ...request.Option) (*CreateSecurityConfigurationOutput, error)

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

See CreateSecurityConfiguration 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 (*EMR) DeleteSecurityConfiguration

func (c *EMR) DeleteSecurityConfiguration(input *DeleteSecurityConfigurationInput) (*DeleteSecurityConfigurationOutput, error)

DeleteSecurityConfiguration API operation for Amazon Elastic MapReduce.

Deletes a security configuration.

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 Amazon Elastic MapReduce's API operation DeleteSecurityConfiguration for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
This exception occurs when there is an internal failure in the EMR service.

* ErrCodeInvalidRequestException "InvalidRequestException"
This exception occurs when there is something wrong with user input.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DeleteSecurityConfiguration

func (*EMR) DeleteSecurityConfigurationRequest

func (c *EMR) DeleteSecurityConfigurationRequest(input *DeleteSecurityConfigurationInput) (req *request.Request, output *DeleteSecurityConfigurationOutput)

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

See DeleteSecurityConfiguration 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 DeleteSecurityConfiguration 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 DeleteSecurityConfigurationRequest method.
req, resp := client.DeleteSecurityConfigurationRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DeleteSecurityConfiguration

func (*EMR) DeleteSecurityConfigurationWithContext

func (c *EMR) DeleteSecurityConfigurationWithContext(ctx aws.Context, input *DeleteSecurityConfigurationInput, opts ...request.Option) (*DeleteSecurityConfigurationOutput, error)

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

See DeleteSecurityConfiguration 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 (*EMR) DescribeCluster

func (c *EMR) DescribeCluster(input *DescribeClusterInput) (*DescribeClusterOutput, error)

DescribeCluster API operation for Amazon Elastic MapReduce.

Provides cluster-level details including status, hardware and software configuration, VPC settings, and so on. For information about the cluster steps, see ListSteps.

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 Amazon Elastic MapReduce's API operation DescribeCluster for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
This exception occurs when there is an internal failure in the EMR service.

* ErrCodeInvalidRequestException "InvalidRequestException"
This exception occurs when there is something wrong with user input.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeCluster

func (*EMR) DescribeClusterRequest

func (c *EMR) DescribeClusterRequest(input *DescribeClusterInput) (req *request.Request, output *DescribeClusterOutput)

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

See DescribeCluster 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 DescribeCluster 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 DescribeClusterRequest method.
req, resp := client.DescribeClusterRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeCluster

func (*EMR) DescribeClusterWithContext

func (c *EMR) DescribeClusterWithContext(ctx aws.Context, input *DescribeClusterInput, opts ...request.Option) (*DescribeClusterOutput, error)

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

See DescribeCluster 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 (*EMR) DescribeJobFlows

func (c *EMR) DescribeJobFlows(input *DescribeJobFlowsInput) (*DescribeJobFlowsOutput, error)

DescribeJobFlows API operation for Amazon Elastic MapReduce.

This API is deprecated and will eventually be removed. We recommend you use ListClusters, DescribeCluster, ListSteps, ListInstanceGroups and ListBootstrapActions instead.

DescribeJobFlows returns a list of job flows that match all of the supplied parameters. The parameters can include a list of job flow IDs, job flow states, and restrictions on job flow creation date and time.

Regardless of supplied parameters, only job flows created within the last two months are returned.

If no parameters are supplied, then job flows matching either of the following criteria are returned:

* Job flows created and completed in the last two weeks

*  Job flows created within the last two months that are in one of the
following states: RUNNING, WAITING, SHUTTING_DOWN, STARTING

Amazon EMR can return a maximum of 512 job flow descriptions.

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 Amazon Elastic MapReduce's API operation DescribeJobFlows for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerError "InternalServerError"
Indicates that an error occurred while processing the request and that the
request was not completed.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeJobFlows

func (*EMR) DescribeJobFlowsRequest

func (c *EMR) DescribeJobFlowsRequest(input *DescribeJobFlowsInput) (req *request.Request, output *DescribeJobFlowsOutput)

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

See DescribeJobFlows 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 DescribeJobFlows 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 DescribeJobFlowsRequest method.
req, resp := client.DescribeJobFlowsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeJobFlows

func (*EMR) DescribeJobFlowsWithContext

func (c *EMR) DescribeJobFlowsWithContext(ctx aws.Context, input *DescribeJobFlowsInput, opts ...request.Option) (*DescribeJobFlowsOutput, error)

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

See DescribeJobFlows 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 (*EMR) DescribeSecurityConfiguration

func (c *EMR) DescribeSecurityConfiguration(input *DescribeSecurityConfigurationInput) (*DescribeSecurityConfigurationOutput, error)

DescribeSecurityConfiguration API operation for Amazon Elastic MapReduce.

Provides the details of a security configuration by returning the configuration JSON.

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 Amazon Elastic MapReduce's API operation DescribeSecurityConfiguration for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
This exception occurs when there is an internal failure in the EMR service.

* ErrCodeInvalidRequestException "InvalidRequestException"
This exception occurs when there is something wrong with user input.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeSecurityConfiguration

func (*EMR) DescribeSecurityConfigurationRequest

func (c *EMR) DescribeSecurityConfigurationRequest(input *DescribeSecurityConfigurationInput) (req *request.Request, output *DescribeSecurityConfigurationOutput)

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

See DescribeSecurityConfiguration 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 DescribeSecurityConfiguration 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 DescribeSecurityConfigurationRequest method.
req, resp := client.DescribeSecurityConfigurationRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeSecurityConfiguration

func (*EMR) DescribeSecurityConfigurationWithContext

func (c *EMR) DescribeSecurityConfigurationWithContext(ctx aws.Context, input *DescribeSecurityConfigurationInput, opts ...request.Option) (*DescribeSecurityConfigurationOutput, error)

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

See DescribeSecurityConfiguration 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 (*EMR) DescribeStep

func (c *EMR) DescribeStep(input *DescribeStepInput) (*DescribeStepOutput, error)

DescribeStep API operation for Amazon Elastic MapReduce.

Provides more detail about the cluster step.

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 Amazon Elastic MapReduce's API operation DescribeStep for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
This exception occurs when there is an internal failure in the EMR service.

* ErrCodeInvalidRequestException "InvalidRequestException"
This exception occurs when there is something wrong with user input.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeStep

func (*EMR) DescribeStepRequest

func (c *EMR) DescribeStepRequest(input *DescribeStepInput) (req *request.Request, output *DescribeStepOutput)

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

See DescribeStep 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 DescribeStep 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 DescribeStepRequest method.
req, resp := client.DescribeStepRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeStep

func (*EMR) DescribeStepWithContext

func (c *EMR) DescribeStepWithContext(ctx aws.Context, input *DescribeStepInput, opts ...request.Option) (*DescribeStepOutput, error)

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

See DescribeStep 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 (*EMR) ListBootstrapActions

func (c *EMR) ListBootstrapActions(input *ListBootstrapActionsInput) (*ListBootstrapActionsOutput, error)

ListBootstrapActions API operation for Amazon Elastic MapReduce.

Provides information about the bootstrap actions associated with a cluster.

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 Amazon Elastic MapReduce's API operation ListBootstrapActions for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
This exception occurs when there is an internal failure in the EMR service.

* ErrCodeInvalidRequestException "InvalidRequestException"
This exception occurs when there is something wrong with user input.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListBootstrapActions

func (*EMR) ListBootstrapActionsPages

func (c *EMR) ListBootstrapActionsPages(input *ListBootstrapActionsInput, fn func(*ListBootstrapActionsOutput, bool) bool) error

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

See ListBootstrapActions 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 ListBootstrapActions operation.
pageNum := 0
err := client.ListBootstrapActionsPages(params,
    func(page *ListBootstrapActionsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*EMR) ListBootstrapActionsPagesWithContext

func (c *EMR) ListBootstrapActionsPagesWithContext(ctx aws.Context, input *ListBootstrapActionsInput, fn func(*ListBootstrapActionsOutput, bool) bool, opts ...request.Option) error

ListBootstrapActionsPagesWithContext same as ListBootstrapActionsPages 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 (*EMR) ListBootstrapActionsRequest

func (c *EMR) ListBootstrapActionsRequest(input *ListBootstrapActionsInput) (req *request.Request, output *ListBootstrapActionsOutput)

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

See ListBootstrapActions 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 ListBootstrapActions 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 ListBootstrapActionsRequest method.
req, resp := client.ListBootstrapActionsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListBootstrapActions

func (*EMR) ListBootstrapActionsWithContext

func (c *EMR) ListBootstrapActionsWithContext(ctx aws.Context, input *ListBootstrapActionsInput, opts ...request.Option) (*ListBootstrapActionsOutput, error)

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

See ListBootstrapActions 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 (*EMR) ListClusters

func (c *EMR) ListClusters(input *ListClustersInput) (*ListClustersOutput, error)

ListClusters API operation for Amazon Elastic MapReduce.

Provides the status of all clusters visible to this AWS account. Allows you to filter the list of clusters based on certain criteria; for example, filtering by cluster creation date and time or by status. This call returns a maximum of 50 clusters per call, but returns a marker to track the paging of the cluster list across multiple ListClusters calls.

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 Amazon Elastic MapReduce's API operation ListClusters for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
This exception occurs when there is an internal failure in the EMR service.

* ErrCodeInvalidRequestException "InvalidRequestException"
This exception occurs when there is something wrong with user input.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListClusters

func (*EMR) ListClustersPages

func (c *EMR) ListClustersPages(input *ListClustersInput, fn func(*ListClustersOutput, bool) bool) error

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

See ListClusters 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 ListClusters operation.
pageNum := 0
err := client.ListClustersPages(params,
    func(page *ListClustersOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*EMR) ListClustersPagesWithContext

func (c *EMR) ListClustersPagesWithContext(ctx aws.Context, input *ListClustersInput, fn func(*ListClustersOutput, bool) bool, opts ...request.Option) error

ListClustersPagesWithContext same as ListClustersPages 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 (*EMR) ListClustersRequest

func (c *EMR) ListClustersRequest(input *ListClustersInput) (req *request.Request, output *ListClustersOutput)

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

See ListClusters 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 ListClusters 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 ListClustersRequest method.
req, resp := client.ListClustersRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListClusters

func (*EMR) ListClustersWithContext

func (c *EMR) ListClustersWithContext(ctx aws.Context, input *ListClustersInput, opts ...request.Option) (*ListClustersOutput, error)

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

See ListClusters 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 (*EMR) ListInstanceFleets

func (c *EMR) ListInstanceFleets(input *ListInstanceFleetsInput) (*ListInstanceFleetsOutput, error)

ListInstanceFleets API operation for Amazon Elastic MapReduce.

Lists all available details about the instance fleets in a cluster.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions.

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 Amazon Elastic MapReduce's API operation ListInstanceFleets for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
This exception occurs when there is an internal failure in the EMR service.

* ErrCodeInvalidRequestException "InvalidRequestException"
This exception occurs when there is something wrong with user input.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListInstanceFleets

func (*EMR) ListInstanceFleetsPages

func (c *EMR) ListInstanceFleetsPages(input *ListInstanceFleetsInput, fn func(*ListInstanceFleetsOutput, bool) bool) error

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

See ListInstanceFleets 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 ListInstanceFleets operation.
pageNum := 0
err := client.ListInstanceFleetsPages(params,
    func(page *ListInstanceFleetsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*EMR) ListInstanceFleetsPagesWithContext

func (c *EMR) ListInstanceFleetsPagesWithContext(ctx aws.Context, input *ListInstanceFleetsInput, fn func(*ListInstanceFleetsOutput, bool) bool, opts ...request.Option) error

ListInstanceFleetsPagesWithContext same as ListInstanceFleetsPages 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 (*EMR) ListInstanceFleetsRequest

func (c *EMR) ListInstanceFleetsRequest(input *ListInstanceFleetsInput) (req *request.Request, output *ListInstanceFleetsOutput)

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

See ListInstanceFleets 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 ListInstanceFleets 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 ListInstanceFleetsRequest method.
req, resp := client.ListInstanceFleetsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListInstanceFleets

func (*EMR) ListInstanceFleetsWithContext

func (c *EMR) ListInstanceFleetsWithContext(ctx aws.Context, input *ListInstanceFleetsInput, opts ...request.Option) (*ListInstanceFleetsOutput, error)

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

See ListInstanceFleets 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 (*EMR) ListInstanceGroups

func (c *EMR) ListInstanceGroups(input *ListInstanceGroupsInput) (*ListInstanceGroupsOutput, error)

ListInstanceGroups API operation for Amazon Elastic MapReduce.

Provides all available details about the instance groups in a cluster.

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 Amazon Elastic MapReduce's API operation ListInstanceGroups for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
This exception occurs when there is an internal failure in the EMR service.

* ErrCodeInvalidRequestException "InvalidRequestException"
This exception occurs when there is something wrong with user input.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListInstanceGroups

func (*EMR) ListInstanceGroupsPages

func (c *EMR) ListInstanceGroupsPages(input *ListInstanceGroupsInput, fn func(*ListInstanceGroupsOutput, bool) bool) error

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

See ListInstanceGroups 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 ListInstanceGroups operation.
pageNum := 0
err := client.ListInstanceGroupsPages(params,
    func(page *ListInstanceGroupsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*EMR) ListInstanceGroupsPagesWithContext

func (c *EMR) ListInstanceGroupsPagesWithContext(ctx aws.Context, input *ListInstanceGroupsInput, fn func(*ListInstanceGroupsOutput, bool) bool, opts ...request.Option) error

ListInstanceGroupsPagesWithContext same as ListInstanceGroupsPages 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 (*EMR) ListInstanceGroupsRequest

func (c *EMR) ListInstanceGroupsRequest(input *ListInstanceGroupsInput) (req *request.Request, output *ListInstanceGroupsOutput)

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

See ListInstanceGroups 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 ListInstanceGroups 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 ListInstanceGroupsRequest method.
req, resp := client.ListInstanceGroupsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListInstanceGroups

func (*EMR) ListInstanceGroupsWithContext

func (c *EMR) ListInstanceGroupsWithContext(ctx aws.Context, input *ListInstanceGroupsInput, opts ...request.Option) (*ListInstanceGroupsOutput, error)

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

See ListInstanceGroups 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 (*EMR) ListInstances

func (c *EMR) ListInstances(input *ListInstancesInput) (*ListInstancesOutput, error)

ListInstances API operation for Amazon Elastic MapReduce.

Provides information about the cluster instances that Amazon EMR provisions on behalf of a user when it creates the cluster. For example, this operation indicates when the EC2 instances reach the Ready state, when instances become available to Amazon EMR to use for jobs, and the IP addresses for cluster instances, etc.

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 Amazon Elastic MapReduce's API operation ListInstances for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
This exception occurs when there is an internal failure in the EMR service.

* ErrCodeInvalidRequestException "InvalidRequestException"
This exception occurs when there is something wrong with user input.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListInstances

func (*EMR) ListInstancesPages

func (c *EMR) ListInstancesPages(input *ListInstancesInput, fn func(*ListInstancesOutput, bool) bool) error

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

See ListInstances 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 ListInstances operation.
pageNum := 0
err := client.ListInstancesPages(params,
    func(page *ListInstancesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*EMR) ListInstancesPagesWithContext

func (c *EMR) ListInstancesPagesWithContext(ctx aws.Context, input *ListInstancesInput, fn func(*ListInstancesOutput, bool) bool, opts ...request.Option) error

ListInstancesPagesWithContext same as ListInstancesPages 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 (*EMR) ListInstancesRequest

func (c *EMR) ListInstancesRequest(input *ListInstancesInput) (req *request.Request, output *ListInstancesOutput)

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

See ListInstances 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 ListInstances 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 ListInstancesRequest method.
req, resp := client.ListInstancesRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListInstances

func (*EMR) ListInstancesWithContext

func (c *EMR) ListInstancesWithContext(ctx aws.Context, input *ListInstancesInput, opts ...request.Option) (*ListInstancesOutput, error)

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

See ListInstances 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 (*EMR) ListSecurityConfigurations

func (c *EMR) ListSecurityConfigurations(input *ListSecurityConfigurationsInput) (*ListSecurityConfigurationsOutput, error)

ListSecurityConfigurations API operation for Amazon Elastic MapReduce.

Lists all the security configurations visible to this account, providing their creation dates and times, and their names. This call returns a maximum of 50 clusters per call, but returns a marker to track the paging of the cluster list across multiple ListSecurityConfigurations calls.

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 Amazon Elastic MapReduce's API operation ListSecurityConfigurations for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
This exception occurs when there is an internal failure in the EMR service.

* ErrCodeInvalidRequestException "InvalidRequestException"
This exception occurs when there is something wrong with user input.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListSecurityConfigurations

func (*EMR) ListSecurityConfigurationsRequest

func (c *EMR) ListSecurityConfigurationsRequest(input *ListSecurityConfigurationsInput) (req *request.Request, output *ListSecurityConfigurationsOutput)

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

See ListSecurityConfigurations 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 ListSecurityConfigurations 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 ListSecurityConfigurationsRequest method.
req, resp := client.ListSecurityConfigurationsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListSecurityConfigurations

func (*EMR) ListSecurityConfigurationsWithContext

func (c *EMR) ListSecurityConfigurationsWithContext(ctx aws.Context, input *ListSecurityConfigurationsInput, opts ...request.Option) (*ListSecurityConfigurationsOutput, error)

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

See ListSecurityConfigurations 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 (*EMR) ListSteps

func (c *EMR) ListSteps(input *ListStepsInput) (*ListStepsOutput, error)

ListSteps API operation for Amazon Elastic MapReduce.

Provides a list of steps for the cluster in reverse order unless you specify stepIds with the request.

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 Amazon Elastic MapReduce's API operation ListSteps for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
This exception occurs when there is an internal failure in the EMR service.

* ErrCodeInvalidRequestException "InvalidRequestException"
This exception occurs when there is something wrong with user input.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListSteps

func (*EMR) ListStepsPages

func (c *EMR) ListStepsPages(input *ListStepsInput, fn func(*ListStepsOutput, bool) bool) error

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

See ListSteps 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 ListSteps operation.
pageNum := 0
err := client.ListStepsPages(params,
    func(page *ListStepsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*EMR) ListStepsPagesWithContext

func (c *EMR) ListStepsPagesWithContext(ctx aws.Context, input *ListStepsInput, fn func(*ListStepsOutput, bool) bool, opts ...request.Option) error

ListStepsPagesWithContext same as ListStepsPages 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 (*EMR) ListStepsRequest

func (c *EMR) ListStepsRequest(input *ListStepsInput) (req *request.Request, output *ListStepsOutput)

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

See ListSteps 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 ListSteps 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 ListStepsRequest method.
req, resp := client.ListStepsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListSteps

func (*EMR) ListStepsWithContext

func (c *EMR) ListStepsWithContext(ctx aws.Context, input *ListStepsInput, opts ...request.Option) (*ListStepsOutput, error)

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

See ListSteps 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 (*EMR) ModifyInstanceFleet

func (c *EMR) ModifyInstanceFleet(input *ModifyInstanceFleetInput) (*ModifyInstanceFleetOutput, error)

ModifyInstanceFleet API operation for Amazon Elastic MapReduce.

Modifies the target On-Demand and target Spot capacities for the instance fleet with the specified InstanceFleetID within the cluster specified using ClusterID. The call either succeeds or fails atomically.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions.

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 Amazon Elastic MapReduce's API operation ModifyInstanceFleet for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
This exception occurs when there is an internal failure in the EMR service.

* ErrCodeInvalidRequestException "InvalidRequestException"
This exception occurs when there is something wrong with user input.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ModifyInstanceFleet

func (*EMR) ModifyInstanceFleetRequest

func (c *EMR) ModifyInstanceFleetRequest(input *ModifyInstanceFleetInput) (req *request.Request, output *ModifyInstanceFleetOutput)

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

See ModifyInstanceFleet 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 ModifyInstanceFleet 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 ModifyInstanceFleetRequest method.
req, resp := client.ModifyInstanceFleetRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ModifyInstanceFleet

func (*EMR) ModifyInstanceFleetWithContext

func (c *EMR) ModifyInstanceFleetWithContext(ctx aws.Context, input *ModifyInstanceFleetInput, opts ...request.Option) (*ModifyInstanceFleetOutput, error)

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

See ModifyInstanceFleet 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 (*EMR) ModifyInstanceGroups

func (c *EMR) ModifyInstanceGroups(input *ModifyInstanceGroupsInput) (*ModifyInstanceGroupsOutput, error)

ModifyInstanceGroups API operation for Amazon Elastic MapReduce.

ModifyInstanceGroups modifies the number of nodes and configuration settings of an instance group. The input parameters include the new target instance count for the group and the instance group ID. The call will either succeed or fail atomically.

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 Amazon Elastic MapReduce's API operation ModifyInstanceGroups for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerError "InternalServerError"
Indicates that an error occurred while processing the request and that the
request was not completed.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ModifyInstanceGroups

func (*EMR) ModifyInstanceGroupsRequest

func (c *EMR) ModifyInstanceGroupsRequest(input *ModifyInstanceGroupsInput) (req *request.Request, output *ModifyInstanceGroupsOutput)

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

See ModifyInstanceGroups 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 ModifyInstanceGroups 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 ModifyInstanceGroupsRequest method.
req, resp := client.ModifyInstanceGroupsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ModifyInstanceGroups

func (*EMR) ModifyInstanceGroupsWithContext

func (c *EMR) ModifyInstanceGroupsWithContext(ctx aws.Context, input *ModifyInstanceGroupsInput, opts ...request.Option) (*ModifyInstanceGroupsOutput, error)

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

See ModifyInstanceGroups 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 (*EMR) PutAutoScalingPolicy

func (c *EMR) PutAutoScalingPolicy(input *PutAutoScalingPolicyInput) (*PutAutoScalingPolicyOutput, error)

PutAutoScalingPolicy API operation for Amazon Elastic MapReduce.

Creates or updates an automatic scaling policy for a core instance group or task instance group in an Amazon EMR cluster. The automatic scaling policy defines how an instance group dynamically adds and terminates EC2 instances in response to the value of a CloudWatch metric.

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 Amazon Elastic MapReduce's API operation PutAutoScalingPolicy for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/PutAutoScalingPolicy

func (*EMR) PutAutoScalingPolicyRequest

func (c *EMR) PutAutoScalingPolicyRequest(input *PutAutoScalingPolicyInput) (req *request.Request, output *PutAutoScalingPolicyOutput)

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

See PutAutoScalingPolicy 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 PutAutoScalingPolicy 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 PutAutoScalingPolicyRequest method.
req, resp := client.PutAutoScalingPolicyRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/PutAutoScalingPolicy

func (*EMR) PutAutoScalingPolicyWithContext

func (c *EMR) PutAutoScalingPolicyWithContext(ctx aws.Context, input *PutAutoScalingPolicyInput, opts ...request.Option) (*PutAutoScalingPolicyOutput, error)

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

See PutAutoScalingPolicy 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 (*EMR) RemoveAutoScalingPolicy

func (c *EMR) RemoveAutoScalingPolicy(input *RemoveAutoScalingPolicyInput) (*RemoveAutoScalingPolicyOutput, error)

RemoveAutoScalingPolicy API operation for Amazon Elastic MapReduce.

Removes an automatic scaling policy from a specified instance group within an EMR cluster.

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 Amazon Elastic MapReduce's API operation RemoveAutoScalingPolicy for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RemoveAutoScalingPolicy

func (*EMR) RemoveAutoScalingPolicyRequest

func (c *EMR) RemoveAutoScalingPolicyRequest(input *RemoveAutoScalingPolicyInput) (req *request.Request, output *RemoveAutoScalingPolicyOutput)

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

See RemoveAutoScalingPolicy 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 RemoveAutoScalingPolicy 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 RemoveAutoScalingPolicyRequest method.
req, resp := client.RemoveAutoScalingPolicyRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RemoveAutoScalingPolicy

func (*EMR) RemoveAutoScalingPolicyWithContext

func (c *EMR) RemoveAutoScalingPolicyWithContext(ctx aws.Context, input *RemoveAutoScalingPolicyInput, opts ...request.Option) (*RemoveAutoScalingPolicyOutput, error)

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

See RemoveAutoScalingPolicy 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 (*EMR) RemoveTags

func (c *EMR) RemoveTags(input *RemoveTagsInput) (*RemoveTagsOutput, error)

RemoveTags API operation for Amazon Elastic MapReduce.

Removes tags from an Amazon EMR resource. Tags make it easier to associate clusters in various ways, such as grouping clusters to track your Amazon EMR resource allocation costs. For more information, see Tagging Amazon EMR Resources (http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/emr-plan-tags.html).

The following example removes the stack tag with value Prod from a cluster:

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 Amazon Elastic MapReduce's API operation RemoveTags for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
This exception occurs when there is an internal failure in the EMR service.

* ErrCodeInvalidRequestException "InvalidRequestException"
This exception occurs when there is something wrong with user input.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RemoveTags

func (*EMR) RemoveTagsRequest

func (c *EMR) RemoveTagsRequest(input *RemoveTagsInput) (req *request.Request, output *RemoveTagsOutput)

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

See RemoveTags 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 RemoveTags 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 RemoveTagsRequest method.
req, resp := client.RemoveTagsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RemoveTags

func (*EMR) RemoveTagsWithContext

func (c *EMR) RemoveTagsWithContext(ctx aws.Context, input *RemoveTagsInput, opts ...request.Option) (*RemoveTagsOutput, error)

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

See RemoveTags 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 (*EMR) RunJobFlow

func (c *EMR) RunJobFlow(input *RunJobFlowInput) (*RunJobFlowOutput, error)

RunJobFlow API operation for Amazon Elastic MapReduce.

RunJobFlow creates and starts running a new cluster (job flow). The cluster runs the steps specified. After the steps complete, the cluster stops and the HDFS partition is lost. To prevent loss of data, configure the last step of the job flow to store results in Amazon S3. If the JobFlowInstancesConfigKeepJobFlowAliveWhenNoSteps parameter is set to TRUE, the cluster transitions to the WAITING state rather than shutting down after the steps have completed.

For additional protection, you can set the JobFlowInstancesConfigTerminationProtected parameter to TRUE to lock the cluster and prevent it from being terminated by API call, user intervention, or in the event of a job flow error.

A maximum of 256 steps are allowed in each job flow.

If your cluster is long-running (such as a Hive data warehouse) or complex, you may require more than 256 steps to process your data. You can bypass the 256-step limitation in various ways, including using the SSH shell to connect to the master node and submitting queries directly to the software running on the master node, such as Hive and Hadoop. For more information on how to do this, see Add More than 256 Steps to a Cluster (http://docs.aws.amazon.com/ElasticMapReduce/latest/Management/Guide/AddMoreThan256Steps.html) in the Amazon EMR Management Guide.

For long running clusters, we recommend that you periodically store your results.

The instance fleets configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. The RunJobFlow request can contain InstanceFleets parameters or InstanceGroups parameters, but not both.

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 Amazon Elastic MapReduce's API operation RunJobFlow for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerError "InternalServerError"
Indicates that an error occurred while processing the request and that the
request was not completed.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RunJobFlow

func (*EMR) RunJobFlowRequest

func (c *EMR) RunJobFlowRequest(input *RunJobFlowInput) (req *request.Request, output *RunJobFlowOutput)

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

See RunJobFlow 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 RunJobFlow 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 RunJobFlowRequest method.
req, resp := client.RunJobFlowRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RunJobFlow

func (*EMR) RunJobFlowWithContext

func (c *EMR) RunJobFlowWithContext(ctx aws.Context, input *RunJobFlowInput, opts ...request.Option) (*RunJobFlowOutput, error)

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

See RunJobFlow 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 (*EMR) SetTerminationProtection

func (c *EMR) SetTerminationProtection(input *SetTerminationProtectionInput) (*SetTerminationProtectionOutput, error)

SetTerminationProtection API operation for Amazon Elastic MapReduce.

SetTerminationProtection locks a cluster (job flow) so the EC2 instances in the cluster cannot be terminated by user intervention, an API call, or in the event of a job-flow error. The cluster still terminates upon successful completion of the job flow. Calling SetTerminationProtection on a cluster is similar to calling the Amazon EC2 DisableAPITermination API on all EC2 instances in a cluster.

SetTerminationProtection is used to prevent accidental termination of a cluster and to ensure that in the event of an error, the instances persist so that you can recover any data stored in their ephemeral instance storage.

To terminate a cluster that has been locked by setting SetTerminationProtection to true, you must first unlock the job flow by a subsequent call to SetTerminationProtection in which you set the value to false.

For more information, seeManaging Cluster Termination (http://docs.aws.amazon.com/emr/latest/ManagementGuide/UsingEMR_TerminationProtection.html) in the Amazon EMR Management 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 Amazon Elastic MapReduce's API operation SetTerminationProtection for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerError "InternalServerError"
Indicates that an error occurred while processing the request and that the
request was not completed.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/SetTerminationProtection

func (*EMR) SetTerminationProtectionRequest

func (c *EMR) SetTerminationProtectionRequest(input *SetTerminationProtectionInput) (req *request.Request, output *SetTerminationProtectionOutput)

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

See SetTerminationProtection 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 SetTerminationProtection 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 SetTerminationProtectionRequest method.
req, resp := client.SetTerminationProtectionRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/SetTerminationProtection

func (*EMR) SetTerminationProtectionWithContext

func (c *EMR) SetTerminationProtectionWithContext(ctx aws.Context, input *SetTerminationProtectionInput, opts ...request.Option) (*SetTerminationProtectionOutput, error)

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

See SetTerminationProtection 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 (*EMR) SetVisibleToAllUsers

func (c *EMR) SetVisibleToAllUsers(input *SetVisibleToAllUsersInput) (*SetVisibleToAllUsersOutput, error)

SetVisibleToAllUsers API operation for Amazon Elastic MapReduce.

Sets whether all AWS Identity and Access Management (IAM) users under your account can access the specified clusters (job flows). This action works on running clusters. You can also set the visibility of a cluster when you launch it using the VisibleToAllUsers parameter of RunJobFlow. The SetVisibleToAllUsers action can be called only by an IAM user who created the cluster or the AWS account that owns the cluster.

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 Amazon Elastic MapReduce's API operation SetVisibleToAllUsers for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerError "InternalServerError"
Indicates that an error occurred while processing the request and that the
request was not completed.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/SetVisibleToAllUsers

func (*EMR) SetVisibleToAllUsersRequest

func (c *EMR) SetVisibleToAllUsersRequest(input *SetVisibleToAllUsersInput) (req *request.Request, output *SetVisibleToAllUsersOutput)

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

See SetVisibleToAllUsers 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 SetVisibleToAllUsers 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 SetVisibleToAllUsersRequest method.
req, resp := client.SetVisibleToAllUsersRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/SetVisibleToAllUsers

func (*EMR) SetVisibleToAllUsersWithContext

func (c *EMR) SetVisibleToAllUsersWithContext(ctx aws.Context, input *SetVisibleToAllUsersInput, opts ...request.Option) (*SetVisibleToAllUsersOutput, error)

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

See SetVisibleToAllUsers 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 (*EMR) TerminateJobFlows

func (c *EMR) TerminateJobFlows(input *TerminateJobFlowsInput) (*TerminateJobFlowsOutput, error)

TerminateJobFlows API operation for Amazon Elastic MapReduce.

TerminateJobFlows shuts a list of clusters (job flows) down. When a job flow is shut down, any step not yet completed is canceled and the EC2 instances on which the cluster is running are stopped. Any log files not already saved are uploaded to Amazon S3 if a LogUri was specified when the cluster was created.

The maximum number of clusters allowed is 10. The call to TerminateJobFlows is asynchronous. Depending on the configuration of the cluster, it may take up to 1-5 minutes for the cluster to completely terminate and release allocated resources, such as Amazon EC2 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 Amazon Elastic MapReduce's API operation TerminateJobFlows for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerError "InternalServerError"
Indicates that an error occurred while processing the request and that the
request was not completed.

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/TerminateJobFlows

func (*EMR) TerminateJobFlowsRequest

func (c *EMR) TerminateJobFlowsRequest(input *TerminateJobFlowsInput) (req *request.Request, output *TerminateJobFlowsOutput)

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

See TerminateJobFlows 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 TerminateJobFlows 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 TerminateJobFlowsRequest method.
req, resp := client.TerminateJobFlowsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/TerminateJobFlows

func (*EMR) TerminateJobFlowsWithContext

func (c *EMR) TerminateJobFlowsWithContext(ctx aws.Context, input *TerminateJobFlowsInput, opts ...request.Option) (*TerminateJobFlowsOutput, error)

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

See TerminateJobFlows 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 (*EMR) WaitUntilClusterRunning

func (c *EMR) WaitUntilClusterRunning(input *DescribeClusterInput) error

WaitUntilClusterRunning uses the Amazon EMR API operation DescribeCluster 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 (*EMR) WaitUntilClusterRunningWithContext

func (c *EMR) WaitUntilClusterRunningWithContext(ctx aws.Context, input *DescribeClusterInput, opts ...request.WaiterOption) error

WaitUntilClusterRunningWithContext is an extended version of WaitUntilClusterRunning. 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 (*EMR) WaitUntilClusterTerminated

func (c *EMR) WaitUntilClusterTerminated(input *DescribeClusterInput) error

WaitUntilClusterTerminated uses the Amazon EMR API operation DescribeCluster 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 (*EMR) WaitUntilClusterTerminatedWithContext

func (c *EMR) WaitUntilClusterTerminatedWithContext(ctx aws.Context, input *DescribeClusterInput, opts ...request.WaiterOption) error

WaitUntilClusterTerminatedWithContext is an extended version of WaitUntilClusterTerminated. 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 (*EMR) WaitUntilStepComplete

func (c *EMR) WaitUntilStepComplete(input *DescribeStepInput) error

WaitUntilStepComplete uses the Amazon EMR API operation DescribeStep 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 (*EMR) WaitUntilStepCompleteWithContext

func (c *EMR) WaitUntilStepCompleteWithContext(ctx aws.Context, input *DescribeStepInput, opts ...request.WaiterOption) error

WaitUntilStepCompleteWithContext is an extended version of WaitUntilStepComplete. 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 EbsBlockDevice

Configuration of requested EBS block device associated with the instance group. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/EbsBlockDevice

type EbsBlockDevice struct {

    // The device name that is exposed to the instance, such as /dev/sdh.
    Device *string `type:"string"`

    // EBS volume specifications such as volume type, IOPS, and size (GiB) that
    // will be requested for the EBS volume attached to an EC2 instance in the cluster.
    VolumeSpecification *VolumeSpecification `type:"structure"`
    // contains filtered or unexported fields
}

func (EbsBlockDevice) GoString

func (s EbsBlockDevice) GoString() string

GoString returns the string representation

func (*EbsBlockDevice) SetDevice

func (s *EbsBlockDevice) SetDevice(v string) *EbsBlockDevice

SetDevice sets the Device field's value.

func (*EbsBlockDevice) SetVolumeSpecification

func (s *EbsBlockDevice) SetVolumeSpecification(v *VolumeSpecification) *EbsBlockDevice

SetVolumeSpecification sets the VolumeSpecification field's value.

func (EbsBlockDevice) String

func (s EbsBlockDevice) String() string

String returns the string representation

type EbsBlockDeviceConfig

Configuration of requested EBS block device associated with the instance group with count of volumes that will be associated to every instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/EbsBlockDeviceConfig

type EbsBlockDeviceConfig struct {

    // EBS volume specifications such as volume type, IOPS, and size (GiB) that
    // will be requested for the EBS volume attached to an EC2 instance in the cluster.
    //
    // VolumeSpecification is a required field
    VolumeSpecification *VolumeSpecification `type:"structure" required:"true"`

    // Number of EBS volumes with a specific volume configuration that will be associated
    // with every instance in the instance group
    VolumesPerInstance *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (EbsBlockDeviceConfig) GoString

func (s EbsBlockDeviceConfig) GoString() string

GoString returns the string representation

func (*EbsBlockDeviceConfig) SetVolumeSpecification

func (s *EbsBlockDeviceConfig) SetVolumeSpecification(v *VolumeSpecification) *EbsBlockDeviceConfig

SetVolumeSpecification sets the VolumeSpecification field's value.

func (*EbsBlockDeviceConfig) SetVolumesPerInstance

func (s *EbsBlockDeviceConfig) SetVolumesPerInstance(v int64) *EbsBlockDeviceConfig

SetVolumesPerInstance sets the VolumesPerInstance field's value.

func (EbsBlockDeviceConfig) String

func (s EbsBlockDeviceConfig) String() string

String returns the string representation

func (*EbsBlockDeviceConfig) Validate

func (s *EbsBlockDeviceConfig) Validate() error

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

type EbsConfiguration

The Amazon EBS configuration of a cluster instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/EbsConfiguration

type EbsConfiguration struct {

    // An array of Amazon EBS volume specifications attached to a cluster instance.
    EbsBlockDeviceConfigs []*EbsBlockDeviceConfig `type:"list"`

    // Indicates whether an Amazon EBS volume is EBS-optimized.
    EbsOptimized *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (EbsConfiguration) GoString

func (s EbsConfiguration) GoString() string

GoString returns the string representation

func (*EbsConfiguration) SetEbsBlockDeviceConfigs

func (s *EbsConfiguration) SetEbsBlockDeviceConfigs(v []*EbsBlockDeviceConfig) *EbsConfiguration

SetEbsBlockDeviceConfigs sets the EbsBlockDeviceConfigs field's value.

func (*EbsConfiguration) SetEbsOptimized

func (s *EbsConfiguration) SetEbsOptimized(v bool) *EbsConfiguration

SetEbsOptimized sets the EbsOptimized field's value.

func (EbsConfiguration) String

func (s EbsConfiguration) String() string

String returns the string representation

func (*EbsConfiguration) Validate

func (s *EbsConfiguration) Validate() error

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

type EbsVolume

EBS block device that's attached to an EC2 instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/EbsVolume

type EbsVolume struct {

    // The device name that is exposed to the instance, such as /dev/sdh.
    Device *string `type:"string"`

    // The volume identifier of the EBS volume.
    VolumeId *string `type:"string"`
    // contains filtered or unexported fields
}

func (EbsVolume) GoString

func (s EbsVolume) GoString() string

GoString returns the string representation

func (*EbsVolume) SetDevice

func (s *EbsVolume) SetDevice(v string) *EbsVolume

SetDevice sets the Device field's value.

func (*EbsVolume) SetVolumeId

func (s *EbsVolume) SetVolumeId(v string) *EbsVolume

SetVolumeId sets the VolumeId field's value.

func (EbsVolume) String

func (s EbsVolume) String() string

String returns the string representation

type Ec2InstanceAttributes

Provides information about the EC2 instances in a cluster grouped by category. For example, key name, subnet ID, IAM instance profile, and so on. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/Ec2InstanceAttributes

type Ec2InstanceAttributes struct {

    // A list of additional Amazon EC2 security group IDs for the master node.
    AdditionalMasterSecurityGroups []*string `type:"list"`

    // A list of additional Amazon EC2 security group IDs for the slave nodes.
    AdditionalSlaveSecurityGroups []*string `type:"list"`

    // The Availability Zone in which the cluster will run.
    Ec2AvailabilityZone *string `type:"string"`

    // The name of the Amazon EC2 key pair to use when connecting with SSH into
    // the master node as a user named "hadoop".
    Ec2KeyName *string `type:"string"`

    // To launch the cluster in Amazon VPC, set this parameter to the identifier
    // of the Amazon VPC subnet where you want the cluster to launch. If you do
    // not specify this value, the cluster is launched in the normal AWS cloud,
    // outside of a VPC.
    //
    // Amazon VPC currently does not support cluster compute quadruple extra large
    // (cc1.4xlarge) instances. Thus, you cannot specify the cc1.4xlarge instance
    // type for nodes of a cluster launched in a VPC.
    Ec2SubnetId *string `type:"string"`

    // The identifier of the Amazon EC2 security group for the master node.
    EmrManagedMasterSecurityGroup *string `type:"string"`

    // The identifier of the Amazon EC2 security group for the slave nodes.
    EmrManagedSlaveSecurityGroup *string `type:"string"`

    // The IAM role that was specified when the cluster was launched. The EC2 instances
    // of the cluster assume this role.
    IamInstanceProfile *string `type:"string"`

    // Applies to clusters configured with the The list of availability zones to
    // choose from. The service will choose the availability zone with the best
    // mix of available capacity and lowest cost to launch the cluster. If you do
    // not specify this value, the cluster is launched in any availability zone
    // that the customer account has access to.
    RequestedEc2AvailabilityZones []*string `type:"list"`

    // Applies to clusters configured with the instance fleets option. Specifies
    // the unique identifier of one or more Amazon EC2 subnets in which to launch
    // EC2 cluster instances. Amazon EMR chooses the EC2 subnet with the best performance
    // and cost characteristics from among the list of RequestedEc2SubnetIds and
    // launches all cluster instances within that subnet. If this value is not specified,
    // and the account supports EC2-Classic networks, the cluster launches instances
    // in the EC2-Classic network and uses Requested
    RequestedEc2SubnetIds []*string `type:"list"`

    // The identifier of the Amazon EC2 security group for the Amazon EMR service
    // to access clusters in VPC private subnets.
    ServiceAccessSecurityGroup *string `type:"string"`
    // contains filtered or unexported fields
}

func (Ec2InstanceAttributes) GoString

func (s Ec2InstanceAttributes) GoString() string

GoString returns the string representation

func (*Ec2InstanceAttributes) SetAdditionalMasterSecurityGroups

func (s *Ec2InstanceAttributes) SetAdditionalMasterSecurityGroups(v []*string) *Ec2InstanceAttributes

SetAdditionalMasterSecurityGroups sets the AdditionalMasterSecurityGroups field's value.

func (*Ec2InstanceAttributes) SetAdditionalSlaveSecurityGroups

func (s *Ec2InstanceAttributes) SetAdditionalSlaveSecurityGroups(v []*string) *Ec2InstanceAttributes

SetAdditionalSlaveSecurityGroups sets the AdditionalSlaveSecurityGroups field's value.

func (*Ec2InstanceAttributes) SetEc2AvailabilityZone

func (s *Ec2InstanceAttributes) SetEc2AvailabilityZone(v string) *Ec2InstanceAttributes

SetEc2AvailabilityZone sets the Ec2AvailabilityZone field's value.

func (*Ec2InstanceAttributes) SetEc2KeyName

func (s *Ec2InstanceAttributes) SetEc2KeyName(v string) *Ec2InstanceAttributes

SetEc2KeyName sets the Ec2KeyName field's value.

func (*Ec2InstanceAttributes) SetEc2SubnetId

func (s *Ec2InstanceAttributes) SetEc2SubnetId(v string) *Ec2InstanceAttributes

SetEc2SubnetId sets the Ec2SubnetId field's value.

func (*Ec2InstanceAttributes) SetEmrManagedMasterSecurityGroup

func (s *Ec2InstanceAttributes) SetEmrManagedMasterSecurityGroup(v string) *Ec2InstanceAttributes

SetEmrManagedMasterSecurityGroup sets the EmrManagedMasterSecurityGroup field's value.

func (*Ec2InstanceAttributes) SetEmrManagedSlaveSecurityGroup

func (s *Ec2InstanceAttributes) SetEmrManagedSlaveSecurityGroup(v string) *Ec2InstanceAttributes

SetEmrManagedSlaveSecurityGroup sets the EmrManagedSlaveSecurityGroup field's value.

func (*Ec2InstanceAttributes) SetIamInstanceProfile

func (s *Ec2InstanceAttributes) SetIamInstanceProfile(v string) *Ec2InstanceAttributes

SetIamInstanceProfile sets the IamInstanceProfile field's value.

func (*Ec2InstanceAttributes) SetRequestedEc2AvailabilityZones

func (s *Ec2InstanceAttributes) SetRequestedEc2AvailabilityZones(v []*string) *Ec2InstanceAttributes

SetRequestedEc2AvailabilityZones sets the RequestedEc2AvailabilityZones field's value.

func (*Ec2InstanceAttributes) SetRequestedEc2SubnetIds

func (s *Ec2InstanceAttributes) SetRequestedEc2SubnetIds(v []*string) *Ec2InstanceAttributes

SetRequestedEc2SubnetIds sets the RequestedEc2SubnetIds field's value.

func (*Ec2InstanceAttributes) SetServiceAccessSecurityGroup

func (s *Ec2InstanceAttributes) SetServiceAccessSecurityGroup(v string) *Ec2InstanceAttributes

SetServiceAccessSecurityGroup sets the ServiceAccessSecurityGroup field's value.

func (Ec2InstanceAttributes) String

func (s Ec2InstanceAttributes) String() string

String returns the string representation

type FailureDetails

The details of the step failure. The service attempts to detect the root cause for many common failures. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/FailureDetails

type FailureDetails struct {

    // The path to the log file where the step failure root cause was originally
    // recorded.
    LogFile *string `type:"string"`

    // The descriptive message including the error the EMR service has identified
    // as the cause of step failure. This is text from an error log that describes
    // the root cause of the failure.
    Message *string `type:"string"`

    // The reason for the step failure. In the case where the service cannot successfully
    // determine the root cause of the failure, it returns "Unknown Error" as a
    // reason.
    Reason *string `type:"string"`
    // contains filtered or unexported fields
}

func (FailureDetails) GoString

func (s FailureDetails) GoString() string

GoString returns the string representation

func (*FailureDetails) SetLogFile

func (s *FailureDetails) SetLogFile(v string) *FailureDetails

SetLogFile sets the LogFile field's value.

func (*FailureDetails) SetMessage

func (s *FailureDetails) SetMessage(v string) *FailureDetails

SetMessage sets the Message field's value.

func (*FailureDetails) SetReason

func (s *FailureDetails) SetReason(v string) *FailureDetails

SetReason sets the Reason field's value.

func (FailureDetails) String

func (s FailureDetails) String() string

String returns the string representation

type HadoopJarStepConfig

A job flow step consisting of a JAR file whose main function will be executed. The main function submits a job for Hadoop to execute and waits for the job to finish or fail. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/HadoopJarStepConfig

type HadoopJarStepConfig struct {

    // A list of command line arguments passed to the JAR file's main function when
    // executed.
    Args []*string `type:"list"`

    // A path to a JAR file run during the step.
    //
    // Jar is a required field
    Jar *string `type:"string" required:"true"`

    // The name of the main class in the specified Java file. If not specified,
    // the JAR file should specify a Main-Class in its manifest file.
    MainClass *string `type:"string"`

    // A list of Java properties that are set when the step runs. You can use these
    // properties to pass key value pairs to your main function.
    Properties []*KeyValue `type:"list"`
    // contains filtered or unexported fields
}

func (HadoopJarStepConfig) GoString

func (s HadoopJarStepConfig) GoString() string

GoString returns the string representation

func (*HadoopJarStepConfig) SetArgs

func (s *HadoopJarStepConfig) SetArgs(v []*string) *HadoopJarStepConfig

SetArgs sets the Args field's value.

func (*HadoopJarStepConfig) SetJar

func (s *HadoopJarStepConfig) SetJar(v string) *HadoopJarStepConfig

SetJar sets the Jar field's value.

func (*HadoopJarStepConfig) SetMainClass

func (s *HadoopJarStepConfig) SetMainClass(v string) *HadoopJarStepConfig

SetMainClass sets the MainClass field's value.

func (*HadoopJarStepConfig) SetProperties

func (s *HadoopJarStepConfig) SetProperties(v []*KeyValue) *HadoopJarStepConfig

SetProperties sets the Properties field's value.

func (HadoopJarStepConfig) String

func (s HadoopJarStepConfig) String() string

String returns the string representation

func (*HadoopJarStepConfig) Validate

func (s *HadoopJarStepConfig) Validate() error

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

type HadoopStepConfig

A cluster step consisting of a JAR file whose main function will be executed. The main function submits a job for Hadoop to execute and waits for the job to finish or fail. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/HadoopStepConfig

type HadoopStepConfig struct {

    // The list of command line arguments to pass to the JAR file's main function
    // for execution.
    Args []*string `type:"list"`

    // The path to the JAR file that runs during the step.
    Jar *string `type:"string"`

    // The name of the main class in the specified Java file. If not specified,
    // the JAR file should specify a main class in its manifest file.
    MainClass *string `type:"string"`

    // The list of Java properties that are set when the step runs. You can use
    // these properties to pass key value pairs to your main function.
    Properties map[string]*string `type:"map"`
    // contains filtered or unexported fields
}

func (HadoopStepConfig) GoString

func (s HadoopStepConfig) GoString() string

GoString returns the string representation

func (*HadoopStepConfig) SetArgs

func (s *HadoopStepConfig) SetArgs(v []*string) *HadoopStepConfig

SetArgs sets the Args field's value.

func (*HadoopStepConfig) SetJar

func (s *HadoopStepConfig) SetJar(v string) *HadoopStepConfig

SetJar sets the Jar field's value.

func (*HadoopStepConfig) SetMainClass

func (s *HadoopStepConfig) SetMainClass(v string) *HadoopStepConfig

SetMainClass sets the MainClass field's value.

func (*HadoopStepConfig) SetProperties

func (s *HadoopStepConfig) SetProperties(v map[string]*string) *HadoopStepConfig

SetProperties sets the Properties field's value.

func (HadoopStepConfig) String

func (s HadoopStepConfig) String() string

String returns the string representation

type Instance

Represents an EC2 instance provisioned as part of cluster. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/Instance

type Instance struct {

    // The list of EBS volumes that are attached to this instance.
    EbsVolumes []*EbsVolume `type:"list"`

    // The unique identifier of the instance in Amazon EC2.
    Ec2InstanceId *string `type:"string"`

    // The unique identifier for the instance in Amazon EMR.
    Id *string `type:"string"`

    // The unique identifier of the instance fleet to which an EC2 instance belongs.
    InstanceFleetId *string `type:"string"`

    // The identifier of the instance group to which this instance belongs.
    InstanceGroupId *string `type:"string"`

    // The EC2 instance type, for example m3.xlarge.
    InstanceType *string `min:"1" type:"string"`

    // The instance purchasing option. Valid values are ON_DEMAND or SPOT.
    Market *string `type:"string" enum:"MarketType"`

    // The private DNS name of the instance.
    PrivateDnsName *string `type:"string"`

    // The private IP address of the instance.
    PrivateIpAddress *string `type:"string"`

    // The public DNS name of the instance.
    PublicDnsName *string `type:"string"`

    // The public IP address of the instance.
    PublicIpAddress *string `type:"string"`

    // The current status of the instance.
    Status *InstanceStatus `type:"structure"`
    // contains filtered or unexported fields
}

func (Instance) GoString

func (s Instance) GoString() string

GoString returns the string representation

func (*Instance) SetEbsVolumes

func (s *Instance) SetEbsVolumes(v []*EbsVolume) *Instance

SetEbsVolumes sets the EbsVolumes field's value.

func (*Instance) SetEc2InstanceId

func (s *Instance) SetEc2InstanceId(v string) *Instance

SetEc2InstanceId sets the Ec2InstanceId field's value.

func (*Instance) SetId

func (s *Instance) SetId(v string) *Instance

SetId sets the Id field's value.

func (*Instance) SetInstanceFleetId

func (s *Instance) SetInstanceFleetId(v string) *Instance

SetInstanceFleetId sets the InstanceFleetId field's value.

func (*Instance) SetInstanceGroupId

func (s *Instance) SetInstanceGroupId(v string) *Instance

SetInstanceGroupId sets the InstanceGroupId field's value.

func (*Instance) SetInstanceType

func (s *Instance) SetInstanceType(v string) *Instance

SetInstanceType sets the InstanceType field's value.

func (*Instance) SetMarket

func (s *Instance) SetMarket(v string) *Instance

SetMarket sets the Market field's value.

func (*Instance) SetPrivateDnsName

func (s *Instance) SetPrivateDnsName(v string) *Instance

SetPrivateDnsName sets the PrivateDnsName field's value.

func (*Instance) SetPrivateIpAddress

func (s *Instance) SetPrivateIpAddress(v string) *Instance

SetPrivateIpAddress sets the PrivateIpAddress field's value.

func (*Instance) SetPublicDnsName

func (s *Instance) SetPublicDnsName(v string) *Instance

SetPublicDnsName sets the PublicDnsName field's value.

func (*Instance) SetPublicIpAddress

func (s *Instance) SetPublicIpAddress(v string) *Instance

SetPublicIpAddress sets the PublicIpAddress field's value.

func (*Instance) SetStatus

func (s *Instance) SetStatus(v *InstanceStatus) *Instance

SetStatus sets the Status field's value.

func (Instance) String

func (s Instance) String() string

String returns the string representation

type InstanceFleet

Describes an instance fleet, which is a group of EC2 instances that host a particular node type (master, core, or task) in an Amazon EMR cluster. Instance fleets can consist of a mix of instance types and On-Demand and Spot instances, which are provisioned to meet a defined target capacity.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceFleet

type InstanceFleet struct {

    // The unique identifier of the instance fleet.
    Id *string `type:"string"`

    // The node type that the instance fleet hosts. Valid values are MASTER, CORE,
    // or TASK.
    InstanceFleetType *string `type:"string" enum:"InstanceFleetType"`

    // The specification for the instance types that comprise an instance fleet.
    // Up to five unique instance specifications may be defined for each instance
    // fleet.
    InstanceTypeSpecifications []*InstanceTypeSpecification `type:"list"`

    // Describes the launch specification for an instance fleet.
    LaunchSpecifications *InstanceFleetProvisioningSpecifications `type:"structure"`

    // A friendly name for the instance fleet.
    Name *string `type:"string"`

    // The number of On-Demand units that have been provisioned for the instance
    // fleet to fulfill TargetOnDemandCapacity. This provisioned capacity might
    // be less than or greater than TargetOnDemandCapacity.
    ProvisionedOnDemandCapacity *int64 `type:"integer"`

    // The number of Spot units that have been provisioned for this instance fleet
    // to fulfill TargetSpotCapacity. This provisioned capacity might be less than
    // or greater than TargetSpotCapacity.
    ProvisionedSpotCapacity *int64 `type:"integer"`

    // The current status of the instance fleet.
    Status *InstanceFleetStatus `type:"structure"`

    // The target capacity of On-Demand units for the instance fleet, which determines
    // how many On-Demand instances to provision. When the instance fleet launches,
    // Amazon EMR tries to provision On-Demand instances as specified by InstanceTypeConfig.
    // Each instance configuration has a specified WeightedCapacity. When an On-Demand
    // instance is provisioned, the WeightedCapacity units count toward the target
    // capacity. Amazon EMR provisions instances until the target capacity is totally
    // fulfilled, even if this results in an overage. For example, if there are
    // 2 units remaining to fulfill capacity, and Amazon EMR can only provision
    // an instance with a WeightedCapacity of 5 units, the instance is provisioned,
    // and the target capacity is exceeded by 3 units. You can use InstanceFleet$ProvisionedOnDemandCapacity
    // to determine the Spot capacity units that have been provisioned for the instance
    // fleet.
    //
    // If not specified or set to 0, only Spot instances are provisioned for the
    // instance fleet using TargetSpotCapacity. At least one of TargetSpotCapacity
    // and TargetOnDemandCapacity should be greater than 0. For a master instance
    // fleet, only one of TargetSpotCapacity and TargetOnDemandCapacity can be specified,
    // and its value must be 1.
    TargetOnDemandCapacity *int64 `type:"integer"`

    // The target capacity of Spot units for the instance fleet, which determines
    // how many Spot instances to provision. When the instance fleet launches, Amazon
    // EMR tries to provision Spot instances as specified by InstanceTypeConfig.
    // Each instance configuration has a specified WeightedCapacity. When a Spot
    // instance is provisioned, the WeightedCapacity units count toward the target
    // capacity. Amazon EMR provisions instances until the target capacity is totally
    // fulfilled, even if this results in an overage. For example, if there are
    // 2 units remaining to fulfill capacity, and Amazon EMR can only provision
    // an instance with a WeightedCapacity of 5 units, the instance is provisioned,
    // and the target capacity is exceeded by 3 units. You can use InstanceFleet$ProvisionedSpotCapacity
    // to determine the Spot capacity units that have been provisioned for the instance
    // fleet.
    //
    // If not specified or set to 0, only On-Demand instances are provisioned for
    // the instance fleet. At least one of TargetSpotCapacity and TargetOnDemandCapacity
    // should be greater than 0. For a master instance fleet, only one of TargetSpotCapacity
    // and TargetOnDemandCapacity can be specified, and its value must be 1.
    TargetSpotCapacity *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (InstanceFleet) GoString

func (s InstanceFleet) GoString() string

GoString returns the string representation

func (*InstanceFleet) SetId

func (s *InstanceFleet) SetId(v string) *InstanceFleet

SetId sets the Id field's value.

func (*InstanceFleet) SetInstanceFleetType

func (s *InstanceFleet) SetInstanceFleetType(v string) *InstanceFleet

SetInstanceFleetType sets the InstanceFleetType field's value.

func (*InstanceFleet) SetInstanceTypeSpecifications

func (s *InstanceFleet) SetInstanceTypeSpecifications(v []*InstanceTypeSpecification) *InstanceFleet

SetInstanceTypeSpecifications sets the InstanceTypeSpecifications field's value.

func (*InstanceFleet) SetLaunchSpecifications

func (s *InstanceFleet) SetLaunchSpecifications(v *InstanceFleetProvisioningSpecifications) *InstanceFleet

SetLaunchSpecifications sets the LaunchSpecifications field's value.

func (*InstanceFleet) SetName

func (s *InstanceFleet) SetName(v string) *InstanceFleet

SetName sets the Name field's value.

func (*InstanceFleet) SetProvisionedOnDemandCapacity

func (s *InstanceFleet) SetProvisionedOnDemandCapacity(v int64) *InstanceFleet

SetProvisionedOnDemandCapacity sets the ProvisionedOnDemandCapacity field's value.

func (*InstanceFleet) SetProvisionedSpotCapacity

func (s *InstanceFleet) SetProvisionedSpotCapacity(v int64) *InstanceFleet

SetProvisionedSpotCapacity sets the ProvisionedSpotCapacity field's value.

func (*InstanceFleet) SetStatus

func (s *InstanceFleet) SetStatus(v *InstanceFleetStatus) *InstanceFleet

SetStatus sets the Status field's value.

func (*InstanceFleet) SetTargetOnDemandCapacity

func (s *InstanceFleet) SetTargetOnDemandCapacity(v int64) *InstanceFleet

SetTargetOnDemandCapacity sets the TargetOnDemandCapacity field's value.

func (*InstanceFleet) SetTargetSpotCapacity

func (s *InstanceFleet) SetTargetSpotCapacity(v int64) *InstanceFleet

SetTargetSpotCapacity sets the TargetSpotCapacity field's value.

func (InstanceFleet) String

func (s InstanceFleet) String() string

String returns the string representation

type InstanceFleetConfig

The configuration that defines an instance fleet.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceFleetConfig

type InstanceFleetConfig struct {

    // The node type that the instance fleet hosts. Valid values are MASTER,CORE,and
    // TASK.
    //
    // InstanceFleetType is a required field
    InstanceFleetType *string `type:"string" required:"true" enum:"InstanceFleetType"`

    // The instance type configurations that define the EC2 instances in the instance
    // fleet.
    InstanceTypeConfigs []*InstanceTypeConfig `type:"list"`

    // The launch specification for the instance fleet.
    LaunchSpecifications *InstanceFleetProvisioningSpecifications `type:"structure"`

    // The friendly name of the instance fleet.
    Name *string `type:"string"`

    // The target capacity of On-Demand units for the instance fleet, which determines
    // how many On-Demand instances to provision. When the instance fleet launches,
    // Amazon EMR tries to provision On-Demand instances as specified by InstanceTypeConfig.
    // Each instance configuration has a specified WeightedCapacity. When an On-Demand
    // instance is provisioned, the WeightedCapacity units count toward the target
    // capacity. Amazon EMR provisions instances until the target capacity is totally
    // fulfilled, even if this results in an overage. For example, if there are
    // 2 units remaining to fulfill capacity, and Amazon EMR can only provision
    // an instance with a WeightedCapacity of 5 units, the instance is provisioned,
    // and the target capacity is exceeded by 3 units.
    //
    // If not specified or set to 0, only Spot instances are provisioned for the
    // instance fleet using TargetSpotCapacity. At least one of TargetSpotCapacity
    // and TargetOnDemandCapacity should be greater than 0. For a master instance
    // fleet, only one of TargetSpotCapacity and TargetOnDemandCapacity can be specified,
    // and its value must be 1.
    TargetOnDemandCapacity *int64 `type:"integer"`

    // The target capacity of Spot units for the instance fleet, which determines
    // how many Spot instances to provision. When the instance fleet launches, Amazon
    // EMR tries to provision Spot instances as specified by InstanceTypeConfig.
    // Each instance configuration has a specified WeightedCapacity. When a Spot
    // instance is provisioned, the WeightedCapacity units count toward the target
    // capacity. Amazon EMR provisions instances until the target capacity is totally
    // fulfilled, even if this results in an overage. For example, if there are
    // 2 units remaining to fulfill capacity, and Amazon EMR can only provision
    // an instance with a WeightedCapacity of 5 units, the instance is provisioned,
    // and the target capacity is exceeded by 3 units.
    //
    // If not specified or set to 0, only On-Demand instances are provisioned for
    // the instance fleet. At least one of TargetSpotCapacity and TargetOnDemandCapacity
    // should be greater than 0. For a master instance fleet, only one of TargetSpotCapacity
    // and TargetOnDemandCapacity can be specified, and its value must be 1.
    TargetSpotCapacity *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (InstanceFleetConfig) GoString

func (s InstanceFleetConfig) GoString() string

GoString returns the string representation

func (*InstanceFleetConfig) SetInstanceFleetType

func (s *InstanceFleetConfig) SetInstanceFleetType(v string) *InstanceFleetConfig

SetInstanceFleetType sets the InstanceFleetType field's value.

func (*InstanceFleetConfig) SetInstanceTypeConfigs

func (s *InstanceFleetConfig) SetInstanceTypeConfigs(v []*InstanceTypeConfig) *InstanceFleetConfig

SetInstanceTypeConfigs sets the InstanceTypeConfigs field's value.

func (*InstanceFleetConfig) SetLaunchSpecifications

func (s *InstanceFleetConfig) SetLaunchSpecifications(v *InstanceFleetProvisioningSpecifications) *InstanceFleetConfig

SetLaunchSpecifications sets the LaunchSpecifications field's value.

func (*InstanceFleetConfig) SetName

func (s *InstanceFleetConfig) SetName(v string) *InstanceFleetConfig

SetName sets the Name field's value.

func (*InstanceFleetConfig) SetTargetOnDemandCapacity

func (s *InstanceFleetConfig) SetTargetOnDemandCapacity(v int64) *InstanceFleetConfig

SetTargetOnDemandCapacity sets the TargetOnDemandCapacity field's value.

func (*InstanceFleetConfig) SetTargetSpotCapacity

func (s *InstanceFleetConfig) SetTargetSpotCapacity(v int64) *InstanceFleetConfig

SetTargetSpotCapacity sets the TargetSpotCapacity field's value.

func (InstanceFleetConfig) String

func (s InstanceFleetConfig) String() string

String returns the string representation

func (*InstanceFleetConfig) Validate

func (s *InstanceFleetConfig) Validate() error

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

type InstanceFleetModifyConfig

Configuration parameters for an instance fleet modification request.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceFleetModifyConfig

type InstanceFleetModifyConfig struct {

    // A unique identifier for the instance fleet.
    //
    // InstanceFleetId is a required field
    InstanceFleetId *string `type:"string" required:"true"`

    // The target capacity of On-Demand units for the instance fleet. For more information
    // see InstanceFleetConfig$TargetOnDemandCapacity.
    TargetOnDemandCapacity *int64 `type:"integer"`

    // The target capacity of Spot units for the instance fleet. For more information,
    // see InstanceFleetConfig$TargetSpotCapacity.
    TargetSpotCapacity *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (InstanceFleetModifyConfig) GoString

func (s InstanceFleetModifyConfig) GoString() string

GoString returns the string representation

func (*InstanceFleetModifyConfig) SetInstanceFleetId

func (s *InstanceFleetModifyConfig) SetInstanceFleetId(v string) *InstanceFleetModifyConfig

SetInstanceFleetId sets the InstanceFleetId field's value.

func (*InstanceFleetModifyConfig) SetTargetOnDemandCapacity

func (s *InstanceFleetModifyConfig) SetTargetOnDemandCapacity(v int64) *InstanceFleetModifyConfig

SetTargetOnDemandCapacity sets the TargetOnDemandCapacity field's value.

func (*InstanceFleetModifyConfig) SetTargetSpotCapacity

func (s *InstanceFleetModifyConfig) SetTargetSpotCapacity(v int64) *InstanceFleetModifyConfig

SetTargetSpotCapacity sets the TargetSpotCapacity field's value.

func (InstanceFleetModifyConfig) String

func (s InstanceFleetModifyConfig) String() string

String returns the string representation

func (*InstanceFleetModifyConfig) Validate

func (s *InstanceFleetModifyConfig) Validate() error

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

type InstanceFleetProvisioningSpecifications

The launch specification for Spot instances in the fleet, which determines the defined duration and provisioning timeout behavior.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceFleetProvisioningSpecifications

type InstanceFleetProvisioningSpecifications struct {

    // The launch specification for Spot instances in the fleet, which determines
    // the defined duration and provisioning timeout behavior.
    //
    // SpotSpecification is a required field
    SpotSpecification *SpotProvisioningSpecification `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (InstanceFleetProvisioningSpecifications) GoString

func (s InstanceFleetProvisioningSpecifications) GoString() string

GoString returns the string representation

func (*InstanceFleetProvisioningSpecifications) SetSpotSpecification

func (s *InstanceFleetProvisioningSpecifications) SetSpotSpecification(v *SpotProvisioningSpecification) *InstanceFleetProvisioningSpecifications

SetSpotSpecification sets the SpotSpecification field's value.

func (InstanceFleetProvisioningSpecifications) String

func (s InstanceFleetProvisioningSpecifications) String() string

String returns the string representation

func (*InstanceFleetProvisioningSpecifications) Validate

func (s *InstanceFleetProvisioningSpecifications) Validate() error

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

type InstanceFleetStateChangeReason

Provides status change reason details for the instance fleet.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceFleetStateChangeReason

type InstanceFleetStateChangeReason struct {

    // A code corresponding to the reason the state change occurred.
    Code *string `type:"string" enum:"InstanceFleetStateChangeReasonCode"`

    // An explanatory message.
    Message *string `type:"string"`
    // contains filtered or unexported fields
}

func (InstanceFleetStateChangeReason) GoString

func (s InstanceFleetStateChangeReason) GoString() string

GoString returns the string representation

func (*InstanceFleetStateChangeReason) SetCode

func (s *InstanceFleetStateChangeReason) SetCode(v string) *InstanceFleetStateChangeReason

SetCode sets the Code field's value.

func (*InstanceFleetStateChangeReason) SetMessage

func (s *InstanceFleetStateChangeReason) SetMessage(v string) *InstanceFleetStateChangeReason

SetMessage sets the Message field's value.

func (InstanceFleetStateChangeReason) String

func (s InstanceFleetStateChangeReason) String() string

String returns the string representation

type InstanceFleetStatus

The status of the instance fleet.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceFleetStatus

type InstanceFleetStatus struct {

    // A code representing the instance fleet status.
    State *string `type:"string" enum:"InstanceFleetState"`

    // Provides status change reason details for the instance fleet.
    StateChangeReason *InstanceFleetStateChangeReason `type:"structure"`

    // Provides historical timestamps for the instance fleet, including the time
    // of creation, the time it became ready to run jobs, and the time of termination.
    Timeline *InstanceFleetTimeline `type:"structure"`
    // contains filtered or unexported fields
}

func (InstanceFleetStatus) GoString

func (s InstanceFleetStatus) GoString() string

GoString returns the string representation

func (*InstanceFleetStatus) SetState

func (s *InstanceFleetStatus) SetState(v string) *InstanceFleetStatus

SetState sets the State field's value.

func (*InstanceFleetStatus) SetStateChangeReason

func (s *InstanceFleetStatus) SetStateChangeReason(v *InstanceFleetStateChangeReason) *InstanceFleetStatus

SetStateChangeReason sets the StateChangeReason field's value.

func (*InstanceFleetStatus) SetTimeline

func (s *InstanceFleetStatus) SetTimeline(v *InstanceFleetTimeline) *InstanceFleetStatus

SetTimeline sets the Timeline field's value.

func (InstanceFleetStatus) String

func (s InstanceFleetStatus) String() string

String returns the string representation

type InstanceFleetTimeline

Provides historical timestamps for the instance fleet, including the time of creation, the time it became ready to run jobs, and the time of termination.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceFleetTimeline

type InstanceFleetTimeline struct {

    // The time and date the instance fleet was created.
    CreationDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The time and date the instance fleet terminated.
    EndDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The time and date the instance fleet was ready to run jobs.
    ReadyDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`
    // contains filtered or unexported fields
}

func (InstanceFleetTimeline) GoString

func (s InstanceFleetTimeline) GoString() string

GoString returns the string representation

func (*InstanceFleetTimeline) SetCreationDateTime

func (s *InstanceFleetTimeline) SetCreationDateTime(v time.Time) *InstanceFleetTimeline

SetCreationDateTime sets the CreationDateTime field's value.

func (*InstanceFleetTimeline) SetEndDateTime

func (s *InstanceFleetTimeline) SetEndDateTime(v time.Time) *InstanceFleetTimeline

SetEndDateTime sets the EndDateTime field's value.

func (*InstanceFleetTimeline) SetReadyDateTime

func (s *InstanceFleetTimeline) SetReadyDateTime(v time.Time) *InstanceFleetTimeline

SetReadyDateTime sets the ReadyDateTime field's value.

func (InstanceFleetTimeline) String

func (s InstanceFleetTimeline) String() string

String returns the string representation

type InstanceGroup

This entity represents an instance group, which is a group of instances that have common purpose. For example, CORE instance group is used for HDFS. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceGroup

type InstanceGroup struct {

    // An automatic scaling policy for a core instance group or task instance group
    // in an Amazon EMR cluster. The automatic scaling policy defines how an instance
    // group dynamically adds and terminates EC2 instances in response to the value
    // of a CloudWatch metric. See PutAutoScalingPolicy.
    AutoScalingPolicy *AutoScalingPolicyDescription `type:"structure"`

    // The bid price for each EC2 instance in the instance group when launching
    // nodes as Spot Instances, expressed in USD.
    BidPrice *string `type:"string"`

    // Amazon EMR releases 4.x or later.
    //
    // The list of configurations supplied for an EMR cluster instance group. You
    // can specify a separate configuration for each instance group (master, core,
    // and task).
    Configurations []*Configuration `type:"list"`

    // The EBS block devices that are mapped to this instance group.
    EbsBlockDevices []*EbsBlockDevice `type:"list"`

    // If the instance group is EBS-optimized. An Amazon EBS-optimized instance
    // uses an optimized configuration stack and provides additional, dedicated
    // capacity for Amazon EBS I/O.
    EbsOptimized *bool `type:"boolean"`

    // The identifier of the instance group.
    Id *string `type:"string"`

    // The type of the instance group. Valid values are MASTER, CORE or TASK.
    InstanceGroupType *string `type:"string" enum:"InstanceGroupType"`

    // The EC2 instance type for all instances in the instance group.
    InstanceType *string `min:"1" type:"string"`

    // The marketplace to provision instances for this group. Valid values are ON_DEMAND
    // or SPOT.
    Market *string `type:"string" enum:"MarketType"`

    // The name of the instance group.
    Name *string `type:"string"`

    // The target number of instances for the instance group.
    RequestedInstanceCount *int64 `type:"integer"`

    // The number of instances currently running in this instance group.
    RunningInstanceCount *int64 `type:"integer"`

    // Policy for customizing shrink operations.
    ShrinkPolicy *ShrinkPolicy `type:"structure"`

    // The current status of the instance group.
    Status *InstanceGroupStatus `type:"structure"`
    // contains filtered or unexported fields
}

func (InstanceGroup) GoString

func (s InstanceGroup) GoString() string

GoString returns the string representation

func (*InstanceGroup) SetAutoScalingPolicy

func (s *InstanceGroup) SetAutoScalingPolicy(v *AutoScalingPolicyDescription) *InstanceGroup

SetAutoScalingPolicy sets the AutoScalingPolicy field's value.

func (*InstanceGroup) SetBidPrice

func (s *InstanceGroup) SetBidPrice(v string) *InstanceGroup

SetBidPrice sets the BidPrice field's value.

func (*InstanceGroup) SetConfigurations

func (s *InstanceGroup) SetConfigurations(v []*Configuration) *InstanceGroup

SetConfigurations sets the Configurations field's value.

func (*InstanceGroup) SetEbsBlockDevices

func (s *InstanceGroup) SetEbsBlockDevices(v []*EbsBlockDevice) *InstanceGroup

SetEbsBlockDevices sets the EbsBlockDevices field's value.

func (*InstanceGroup) SetEbsOptimized

func (s *InstanceGroup) SetEbsOptimized(v bool) *InstanceGroup

SetEbsOptimized sets the EbsOptimized field's value.

func (*InstanceGroup) SetId

func (s *InstanceGroup) SetId(v string) *InstanceGroup

SetId sets the Id field's value.

func (*InstanceGroup) SetInstanceGroupType

func (s *InstanceGroup) SetInstanceGroupType(v string) *InstanceGroup

SetInstanceGroupType sets the InstanceGroupType field's value.

func (*InstanceGroup) SetInstanceType

func (s *InstanceGroup) SetInstanceType(v string) *InstanceGroup

SetInstanceType sets the InstanceType field's value.

func (*InstanceGroup) SetMarket

func (s *InstanceGroup) SetMarket(v string) *InstanceGroup

SetMarket sets the Market field's value.

func (*InstanceGroup) SetName

func (s *InstanceGroup) SetName(v string) *InstanceGroup

SetName sets the Name field's value.

func (*InstanceGroup) SetRequestedInstanceCount

func (s *InstanceGroup) SetRequestedInstanceCount(v int64) *InstanceGroup

SetRequestedInstanceCount sets the RequestedInstanceCount field's value.

func (*InstanceGroup) SetRunningInstanceCount

func (s *InstanceGroup) SetRunningInstanceCount(v int64) *InstanceGroup

SetRunningInstanceCount sets the RunningInstanceCount field's value.

func (*InstanceGroup) SetShrinkPolicy

func (s *InstanceGroup) SetShrinkPolicy(v *ShrinkPolicy) *InstanceGroup

SetShrinkPolicy sets the ShrinkPolicy field's value.

func (*InstanceGroup) SetStatus

func (s *InstanceGroup) SetStatus(v *InstanceGroupStatus) *InstanceGroup

SetStatus sets the Status field's value.

func (InstanceGroup) String

func (s InstanceGroup) String() string

String returns the string representation

type InstanceGroupConfig

Configuration defining a new instance group. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceGroupConfig

type InstanceGroupConfig struct {

    // An automatic scaling policy for a core instance group or task instance group
    // in an Amazon EMR cluster. The automatic scaling policy defines how an instance
    // group dynamically adds and terminates EC2 instances in response to the value
    // of a CloudWatch metric. See PutAutoScalingPolicy.
    AutoScalingPolicy *AutoScalingPolicy `type:"structure"`

    // Bid price for each EC2 instance in the instance group when launching nodes
    // as Spot Instances, expressed in USD.
    BidPrice *string `type:"string"`

    // Amazon EMR releases 4.x or later.
    //
    // The list of configurations supplied for an EMR cluster instance group. You
    // can specify a separate configuration for each instance group (master, core,
    // and task).
    Configurations []*Configuration `type:"list"`

    // EBS configurations that will be attached to each EC2 instance in the instance
    // group.
    EbsConfiguration *EbsConfiguration `type:"structure"`

    // Target number of instances for the instance group.
    //
    // InstanceCount is a required field
    InstanceCount *int64 `type:"integer" required:"true"`

    // The role of the instance group in the cluster.
    //
    // InstanceRole is a required field
    InstanceRole *string `type:"string" required:"true" enum:"InstanceRoleType"`

    // The EC2 instance type for all instances in the instance group.
    //
    // InstanceType is a required field
    InstanceType *string `min:"1" type:"string" required:"true"`

    // Market type of the EC2 instances used to create a cluster node.
    Market *string `type:"string" enum:"MarketType"`

    // Friendly name given to the instance group.
    Name *string `type:"string"`
    // contains filtered or unexported fields
}

func (InstanceGroupConfig) GoString

func (s InstanceGroupConfig) GoString() string

GoString returns the string representation

func (*InstanceGroupConfig) SetAutoScalingPolicy

func (s *InstanceGroupConfig) SetAutoScalingPolicy(v *AutoScalingPolicy) *InstanceGroupConfig

SetAutoScalingPolicy sets the AutoScalingPolicy field's value.

func (*InstanceGroupConfig) SetBidPrice

func (s *InstanceGroupConfig) SetBidPrice(v string) *InstanceGroupConfig

SetBidPrice sets the BidPrice field's value.

func (*InstanceGroupConfig) SetConfigurations

func (s *InstanceGroupConfig) SetConfigurations(v []*Configuration) *InstanceGroupConfig

SetConfigurations sets the Configurations field's value.

func (*InstanceGroupConfig) SetEbsConfiguration

func (s *InstanceGroupConfig) SetEbsConfiguration(v *EbsConfiguration) *InstanceGroupConfig

SetEbsConfiguration sets the EbsConfiguration field's value.

func (*InstanceGroupConfig) SetInstanceCount

func (s *InstanceGroupConfig) SetInstanceCount(v int64) *InstanceGroupConfig

SetInstanceCount sets the InstanceCount field's value.

func (*InstanceGroupConfig) SetInstanceRole

func (s *InstanceGroupConfig) SetInstanceRole(v string) *InstanceGroupConfig

SetInstanceRole sets the InstanceRole field's value.

func (*InstanceGroupConfig) SetInstanceType

func (s *InstanceGroupConfig) SetInstanceType(v string) *InstanceGroupConfig

SetInstanceType sets the InstanceType field's value.

func (*InstanceGroupConfig) SetMarket

func (s *InstanceGroupConfig) SetMarket(v string) *InstanceGroupConfig

SetMarket sets the Market field's value.

func (*InstanceGroupConfig) SetName

func (s *InstanceGroupConfig) SetName(v string) *InstanceGroupConfig

SetName sets the Name field's value.

func (InstanceGroupConfig) String

func (s InstanceGroupConfig) String() string

String returns the string representation

func (*InstanceGroupConfig) Validate

func (s *InstanceGroupConfig) Validate() error

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

type InstanceGroupDetail

Detailed information about an instance group. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceGroupDetail

type InstanceGroupDetail struct {

    // Bid price for EC2 Instances when launching nodes as Spot Instances, expressed
    // in USD.
    BidPrice *string `type:"string"`

    // The date/time the instance group was created.
    //
    // CreationDateTime is a required field
    CreationDateTime *time.Time `type:"timestamp" timestampFormat:"unix" required:"true"`

    // The date/time the instance group was terminated.
    EndDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // Unique identifier for the instance group.
    InstanceGroupId *string `type:"string"`

    // Target number of instances to run in the instance group.
    //
    // InstanceRequestCount is a required field
    InstanceRequestCount *int64 `type:"integer" required:"true"`

    // Instance group role in the cluster
    //
    // InstanceRole is a required field
    InstanceRole *string `type:"string" required:"true" enum:"InstanceRoleType"`

    // Actual count of running instances.
    //
    // InstanceRunningCount is a required field
    InstanceRunningCount *int64 `type:"integer" required:"true"`

    // EC2 instance type.
    //
    // InstanceType is a required field
    InstanceType *string `min:"1" type:"string" required:"true"`

    // Details regarding the state of the instance group.
    LastStateChangeReason *string `type:"string"`

    // Market type of the EC2 instances used to create a cluster node.
    //
    // Market is a required field
    Market *string `type:"string" required:"true" enum:"MarketType"`

    // Friendly name for the instance group.
    Name *string `type:"string"`

    // The date/time the instance group was available to the cluster.
    ReadyDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The date/time the instance group was started.
    StartDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // State of instance group. The following values are deprecated: STARTING, TERMINATED,
    // and FAILED.
    //
    // State is a required field
    State *string `type:"string" required:"true" enum:"InstanceGroupState"`
    // contains filtered or unexported fields
}

func (InstanceGroupDetail) GoString

func (s InstanceGroupDetail) GoString() string

GoString returns the string representation

func (*InstanceGroupDetail) SetBidPrice

func (s *InstanceGroupDetail) SetBidPrice(v string) *InstanceGroupDetail

SetBidPrice sets the BidPrice field's value.

func (*InstanceGroupDetail) SetCreationDateTime

func (s *InstanceGroupDetail) SetCreationDateTime(v time.Time) *InstanceGroupDetail

SetCreationDateTime sets the CreationDateTime field's value.

func (*InstanceGroupDetail) SetEndDateTime

func (s *InstanceGroupDetail) SetEndDateTime(v time.Time) *InstanceGroupDetail

SetEndDateTime sets the EndDateTime field's value.

func (*InstanceGroupDetail) SetInstanceGroupId

func (s *InstanceGroupDetail) SetInstanceGroupId(v string) *InstanceGroupDetail

SetInstanceGroupId sets the InstanceGroupId field's value.

func (*InstanceGroupDetail) SetInstanceRequestCount

func (s *InstanceGroupDetail) SetInstanceRequestCount(v int64) *InstanceGroupDetail

SetInstanceRequestCount sets the InstanceRequestCount field's value.

func (*InstanceGroupDetail) SetInstanceRole

func (s *InstanceGroupDetail) SetInstanceRole(v string) *InstanceGroupDetail

SetInstanceRole sets the InstanceRole field's value.

func (*InstanceGroupDetail) SetInstanceRunningCount

func (s *InstanceGroupDetail) SetInstanceRunningCount(v int64) *InstanceGroupDetail

SetInstanceRunningCount sets the InstanceRunningCount field's value.

func (*InstanceGroupDetail) SetInstanceType

func (s *InstanceGroupDetail) SetInstanceType(v string) *InstanceGroupDetail

SetInstanceType sets the InstanceType field's value.

func (*InstanceGroupDetail) SetLastStateChangeReason

func (s *InstanceGroupDetail) SetLastStateChangeReason(v string) *InstanceGroupDetail

SetLastStateChangeReason sets the LastStateChangeReason field's value.

func (*InstanceGroupDetail) SetMarket

func (s *InstanceGroupDetail) SetMarket(v string) *InstanceGroupDetail

SetMarket sets the Market field's value.

func (*InstanceGroupDetail) SetName

func (s *InstanceGroupDetail) SetName(v string) *InstanceGroupDetail

SetName sets the Name field's value.

func (*InstanceGroupDetail) SetReadyDateTime

func (s *InstanceGroupDetail) SetReadyDateTime(v time.Time) *InstanceGroupDetail

SetReadyDateTime sets the ReadyDateTime field's value.

func (*InstanceGroupDetail) SetStartDateTime

func (s *InstanceGroupDetail) SetStartDateTime(v time.Time) *InstanceGroupDetail

SetStartDateTime sets the StartDateTime field's value.

func (*InstanceGroupDetail) SetState

func (s *InstanceGroupDetail) SetState(v string) *InstanceGroupDetail

SetState sets the State field's value.

func (InstanceGroupDetail) String

func (s InstanceGroupDetail) String() string

String returns the string representation

type InstanceGroupModifyConfig

Modify an instance group size. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceGroupModifyConfig

type InstanceGroupModifyConfig struct {

    // The EC2 InstanceIds to terminate. After you terminate the instances, the
    // instance group will not return to its original requested size.
    EC2InstanceIdsToTerminate []*string `type:"list"`

    // Target size for the instance group.
    InstanceCount *int64 `type:"integer"`

    // Unique ID of the instance group to expand or shrink.
    //
    // InstanceGroupId is a required field
    InstanceGroupId *string `type:"string" required:"true"`

    // Policy for customizing shrink operations.
    ShrinkPolicy *ShrinkPolicy `type:"structure"`
    // contains filtered or unexported fields
}

func (InstanceGroupModifyConfig) GoString

func (s InstanceGroupModifyConfig) GoString() string

GoString returns the string representation

func (*InstanceGroupModifyConfig) SetEC2InstanceIdsToTerminate

func (s *InstanceGroupModifyConfig) SetEC2InstanceIdsToTerminate(v []*string) *InstanceGroupModifyConfig

SetEC2InstanceIdsToTerminate sets the EC2InstanceIdsToTerminate field's value.

func (*InstanceGroupModifyConfig) SetInstanceCount

func (s *InstanceGroupModifyConfig) SetInstanceCount(v int64) *InstanceGroupModifyConfig

SetInstanceCount sets the InstanceCount field's value.

func (*InstanceGroupModifyConfig) SetInstanceGroupId

func (s *InstanceGroupModifyConfig) SetInstanceGroupId(v string) *InstanceGroupModifyConfig

SetInstanceGroupId sets the InstanceGroupId field's value.

func (*InstanceGroupModifyConfig) SetShrinkPolicy

func (s *InstanceGroupModifyConfig) SetShrinkPolicy(v *ShrinkPolicy) *InstanceGroupModifyConfig

SetShrinkPolicy sets the ShrinkPolicy field's value.

func (InstanceGroupModifyConfig) String

func (s InstanceGroupModifyConfig) String() string

String returns the string representation

func (*InstanceGroupModifyConfig) Validate

func (s *InstanceGroupModifyConfig) Validate() error

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

type InstanceGroupStateChangeReason

The status change reason details for the instance group. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceGroupStateChangeReason

type InstanceGroupStateChangeReason struct {

    // The programmable code for the state change reason.
    Code *string `type:"string" enum:"InstanceGroupStateChangeReasonCode"`

    // The status change reason description.
    Message *string `type:"string"`
    // contains filtered or unexported fields
}

func (InstanceGroupStateChangeReason) GoString

func (s InstanceGroupStateChangeReason) GoString() string

GoString returns the string representation

func (*InstanceGroupStateChangeReason) SetCode

func (s *InstanceGroupStateChangeReason) SetCode(v string) *InstanceGroupStateChangeReason

SetCode sets the Code field's value.

func (*InstanceGroupStateChangeReason) SetMessage

func (s *InstanceGroupStateChangeReason) SetMessage(v string) *InstanceGroupStateChangeReason

SetMessage sets the Message field's value.

func (InstanceGroupStateChangeReason) String

func (s InstanceGroupStateChangeReason) String() string

String returns the string representation

type InstanceGroupStatus

The details of the instance group status. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceGroupStatus

type InstanceGroupStatus struct {

    // The current state of the instance group.
    State *string `type:"string" enum:"InstanceGroupState"`

    // The status change reason details for the instance group.
    StateChangeReason *InstanceGroupStateChangeReason `type:"structure"`

    // The timeline of the instance group status over time.
    Timeline *InstanceGroupTimeline `type:"structure"`
    // contains filtered or unexported fields
}

func (InstanceGroupStatus) GoString

func (s InstanceGroupStatus) GoString() string

GoString returns the string representation

func (*InstanceGroupStatus) SetState

func (s *InstanceGroupStatus) SetState(v string) *InstanceGroupStatus

SetState sets the State field's value.

func (*InstanceGroupStatus) SetStateChangeReason

func (s *InstanceGroupStatus) SetStateChangeReason(v *InstanceGroupStateChangeReason) *InstanceGroupStatus

SetStateChangeReason sets the StateChangeReason field's value.

func (*InstanceGroupStatus) SetTimeline

func (s *InstanceGroupStatus) SetTimeline(v *InstanceGroupTimeline) *InstanceGroupStatus

SetTimeline sets the Timeline field's value.

func (InstanceGroupStatus) String

func (s InstanceGroupStatus) String() string

String returns the string representation

type InstanceGroupTimeline

The timeline of the instance group lifecycle. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceGroupTimeline

type InstanceGroupTimeline struct {

    // The creation date and time of the instance group.
    CreationDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The date and time when the instance group terminated.
    EndDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The date and time when the instance group became ready to perform tasks.
    ReadyDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`
    // contains filtered or unexported fields
}

func (InstanceGroupTimeline) GoString

func (s InstanceGroupTimeline) GoString() string

GoString returns the string representation

func (*InstanceGroupTimeline) SetCreationDateTime

func (s *InstanceGroupTimeline) SetCreationDateTime(v time.Time) *InstanceGroupTimeline

SetCreationDateTime sets the CreationDateTime field's value.

func (*InstanceGroupTimeline) SetEndDateTime

func (s *InstanceGroupTimeline) SetEndDateTime(v time.Time) *InstanceGroupTimeline

SetEndDateTime sets the EndDateTime field's value.

func (*InstanceGroupTimeline) SetReadyDateTime

func (s *InstanceGroupTimeline) SetReadyDateTime(v time.Time) *InstanceGroupTimeline

SetReadyDateTime sets the ReadyDateTime field's value.

func (InstanceGroupTimeline) String

func (s InstanceGroupTimeline) String() string

String returns the string representation

type InstanceResizePolicy

Custom policy for requesting termination protection or termination of specific instances when shrinking an instance group. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceResizePolicy

type InstanceResizePolicy struct {

    // Decommissioning timeout override for the specific list of instances to be
    // terminated.
    InstanceTerminationTimeout *int64 `type:"integer"`

    // Specific list of instances to be protected when shrinking an instance group.
    InstancesToProtect []*string `type:"list"`

    // Specific list of instances to be terminated when shrinking an instance group.
    InstancesToTerminate []*string `type:"list"`
    // contains filtered or unexported fields
}

func (InstanceResizePolicy) GoString

func (s InstanceResizePolicy) GoString() string

GoString returns the string representation

func (*InstanceResizePolicy) SetInstanceTerminationTimeout

func (s *InstanceResizePolicy) SetInstanceTerminationTimeout(v int64) *InstanceResizePolicy

SetInstanceTerminationTimeout sets the InstanceTerminationTimeout field's value.

func (*InstanceResizePolicy) SetInstancesToProtect

func (s *InstanceResizePolicy) SetInstancesToProtect(v []*string) *InstanceResizePolicy

SetInstancesToProtect sets the InstancesToProtect field's value.

func (*InstanceResizePolicy) SetInstancesToTerminate

func (s *InstanceResizePolicy) SetInstancesToTerminate(v []*string) *InstanceResizePolicy

SetInstancesToTerminate sets the InstancesToTerminate field's value.

func (InstanceResizePolicy) String

func (s InstanceResizePolicy) String() string

String returns the string representation

type InstanceStateChangeReason

The details of the status change reason for the instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceStateChangeReason

type InstanceStateChangeReason struct {

    // The programmable code for the state change reason.
    Code *string `type:"string" enum:"InstanceStateChangeReasonCode"`

    // The status change reason description.
    Message *string `type:"string"`
    // contains filtered or unexported fields
}

func (InstanceStateChangeReason) GoString

func (s InstanceStateChangeReason) GoString() string

GoString returns the string representation

func (*InstanceStateChangeReason) SetCode

func (s *InstanceStateChangeReason) SetCode(v string) *InstanceStateChangeReason

SetCode sets the Code field's value.

func (*InstanceStateChangeReason) SetMessage

func (s *InstanceStateChangeReason) SetMessage(v string) *InstanceStateChangeReason

SetMessage sets the Message field's value.

func (InstanceStateChangeReason) String

func (s InstanceStateChangeReason) String() string

String returns the string representation

type InstanceStatus

The instance status details. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceStatus

type InstanceStatus struct {

    // The current state of the instance.
    State *string `type:"string" enum:"InstanceState"`

    // The details of the status change reason for the instance.
    StateChangeReason *InstanceStateChangeReason `type:"structure"`

    // The timeline of the instance status over time.
    Timeline *InstanceTimeline `type:"structure"`
    // contains filtered or unexported fields
}

func (InstanceStatus) GoString

func (s InstanceStatus) GoString() string

GoString returns the string representation

func (*InstanceStatus) SetState

func (s *InstanceStatus) SetState(v string) *InstanceStatus

SetState sets the State field's value.

func (*InstanceStatus) SetStateChangeReason

func (s *InstanceStatus) SetStateChangeReason(v *InstanceStateChangeReason) *InstanceStatus

SetStateChangeReason sets the StateChangeReason field's value.

func (*InstanceStatus) SetTimeline

func (s *InstanceStatus) SetTimeline(v *InstanceTimeline) *InstanceStatus

SetTimeline sets the Timeline field's value.

func (InstanceStatus) String

func (s InstanceStatus) String() string

String returns the string representation

type InstanceTimeline

The timeline of the instance lifecycle. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceTimeline

type InstanceTimeline struct {

    // The creation date and time of the instance.
    CreationDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The date and time when the instance was terminated.
    EndDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The date and time when the instance was ready to perform tasks.
    ReadyDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`
    // contains filtered or unexported fields
}

func (InstanceTimeline) GoString

func (s InstanceTimeline) GoString() string

GoString returns the string representation

func (*InstanceTimeline) SetCreationDateTime

func (s *InstanceTimeline) SetCreationDateTime(v time.Time) *InstanceTimeline

SetCreationDateTime sets the CreationDateTime field's value.

func (*InstanceTimeline) SetEndDateTime

func (s *InstanceTimeline) SetEndDateTime(v time.Time) *InstanceTimeline

SetEndDateTime sets the EndDateTime field's value.

func (*InstanceTimeline) SetReadyDateTime

func (s *InstanceTimeline) SetReadyDateTime(v time.Time) *InstanceTimeline

SetReadyDateTime sets the ReadyDateTime field's value.

func (InstanceTimeline) String

func (s InstanceTimeline) String() string

String returns the string representation

type InstanceTypeConfig

An instance type configuration for each instance type in an instance fleet, which determines the EC2 instances Amazon EMR attempts to provision to fulfill On-Demand and Spot target capacities. There can be a maximum of 5 instance type configurations in a fleet.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceTypeConfig

type InstanceTypeConfig struct {

    // The bid price for each EC2 Spot instance type as defined by InstanceType.
    // Expressed in USD. If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice
    // is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%.
    BidPrice *string `type:"string"`

    // The bid price, as a percentage of On-Demand price, for each EC2 Spot instance
    // as defined by InstanceType. Expressed as a number between 0 and 1000 (for
    // example, 20 specifies 20%). If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice
    // is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%.
    BidPriceAsPercentageOfOnDemandPrice *float64 `type:"double"`

    // A configuration classification that applies when provisioning cluster instances,
    // which can include configurations for applications and software that run on
    // the cluster.
    Configurations []*Configuration `type:"list"`

    // The configuration of Amazon Elastic Block Storage (EBS) attached to each
    // instance as defined by InstanceType.
    EbsConfiguration *EbsConfiguration `type:"structure"`

    // An EC2 instance type, such as m3.xlarge.
    //
    // InstanceType is a required field
    InstanceType *string `min:"1" type:"string" required:"true"`

    // The number of units that a provisioned instance of this type provides toward
    // fulfilling the target capacities defined in InstanceFleetConfig. This value
    // is 1 for a master instance fleet, and must be greater than 0 for core and
    // task instance fleets.
    WeightedCapacity *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (InstanceTypeConfig) GoString

func (s InstanceTypeConfig) GoString() string

GoString returns the string representation

func (*InstanceTypeConfig) SetBidPrice

func (s *InstanceTypeConfig) SetBidPrice(v string) *InstanceTypeConfig

SetBidPrice sets the BidPrice field's value.

func (*InstanceTypeConfig) SetBidPriceAsPercentageOfOnDemandPrice

func (s *InstanceTypeConfig) SetBidPriceAsPercentageOfOnDemandPrice(v float64) *InstanceTypeConfig

SetBidPriceAsPercentageOfOnDemandPrice sets the BidPriceAsPercentageOfOnDemandPrice field's value.

func (*InstanceTypeConfig) SetConfigurations

func (s *InstanceTypeConfig) SetConfigurations(v []*Configuration) *InstanceTypeConfig

SetConfigurations sets the Configurations field's value.

func (*InstanceTypeConfig) SetEbsConfiguration

func (s *InstanceTypeConfig) SetEbsConfiguration(v *EbsConfiguration) *InstanceTypeConfig

SetEbsConfiguration sets the EbsConfiguration field's value.

func (*InstanceTypeConfig) SetInstanceType

func (s *InstanceTypeConfig) SetInstanceType(v string) *InstanceTypeConfig

SetInstanceType sets the InstanceType field's value.

func (*InstanceTypeConfig) SetWeightedCapacity

func (s *InstanceTypeConfig) SetWeightedCapacity(v int64) *InstanceTypeConfig

SetWeightedCapacity sets the WeightedCapacity field's value.

func (InstanceTypeConfig) String

func (s InstanceTypeConfig) String() string

String returns the string representation

func (*InstanceTypeConfig) Validate

func (s *InstanceTypeConfig) Validate() error

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

type InstanceTypeSpecification

The configuration specification for each instance type in an instance fleet.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceTypeSpecification

type InstanceTypeSpecification struct {

    // The bid price for each EC2 Spot instance type as defined by InstanceType.
    // Expressed in USD.
    BidPrice *string `type:"string"`

    // The bid price, as a percentage of On-Demand price, for each EC2 Spot instance
    // as defined by InstanceType. Expressed as a number (for example, 20 specifies
    // 20%).
    BidPriceAsPercentageOfOnDemandPrice *float64 `type:"double"`

    // A configuration classification that applies when provisioning cluster instances,
    // which can include configurations for applications and software bundled with
    // Amazon EMR.
    Configurations []*Configuration `type:"list"`

    // The configuration of Amazon Elastic Block Storage (EBS) attached to each
    // instance as defined by InstanceType.
    EbsBlockDevices []*EbsBlockDevice `type:"list"`

    // Evaluates to TRUE when the specified InstanceType is EBS-optimized.
    EbsOptimized *bool `type:"boolean"`

    // The EC2 instance type, for example m3.xlarge.
    InstanceType *string `min:"1" type:"string"`

    // The number of units that a provisioned instance of this type provides toward
    // fulfilling the target capacities defined in InstanceFleetConfig. Capacity
    // values represent performance characteristics such as vCPUs, memory, or I/O.
    // If not specified, the default value is 1.
    WeightedCapacity *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (InstanceTypeSpecification) GoString

func (s InstanceTypeSpecification) GoString() string

GoString returns the string representation

func (*InstanceTypeSpecification) SetBidPrice

func (s *InstanceTypeSpecification) SetBidPrice(v string) *InstanceTypeSpecification

SetBidPrice sets the BidPrice field's value.

func (*InstanceTypeSpecification) SetBidPriceAsPercentageOfOnDemandPrice

func (s *InstanceTypeSpecification) SetBidPriceAsPercentageOfOnDemandPrice(v float64) *InstanceTypeSpecification

SetBidPriceAsPercentageOfOnDemandPrice sets the BidPriceAsPercentageOfOnDemandPrice field's value.

func (*InstanceTypeSpecification) SetConfigurations

func (s *InstanceTypeSpecification) SetConfigurations(v []*Configuration) *InstanceTypeSpecification

SetConfigurations sets the Configurations field's value.

func (*InstanceTypeSpecification) SetEbsBlockDevices

func (s *InstanceTypeSpecification) SetEbsBlockDevices(v []*EbsBlockDevice) *InstanceTypeSpecification

SetEbsBlockDevices sets the EbsBlockDevices field's value.

func (*InstanceTypeSpecification) SetEbsOptimized

func (s *InstanceTypeSpecification) SetEbsOptimized(v bool) *InstanceTypeSpecification

SetEbsOptimized sets the EbsOptimized field's value.

func (*InstanceTypeSpecification) SetInstanceType

func (s *InstanceTypeSpecification) SetInstanceType(v string) *InstanceTypeSpecification

SetInstanceType sets the InstanceType field's value.

func (*InstanceTypeSpecification) SetWeightedCapacity

func (s *InstanceTypeSpecification) SetWeightedCapacity(v int64) *InstanceTypeSpecification

SetWeightedCapacity sets the WeightedCapacity field's value.

func (InstanceTypeSpecification) String

func (s InstanceTypeSpecification) String() string

String returns the string representation

type JobFlowDetail

A description of a cluster (job flow). Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/JobFlowDetail

type JobFlowDetail struct {

    // The version of the AMI used to initialize Amazon EC2 instances in the job
    // flow. For a list of AMI versions currently supported by Amazon EMR, see AMI
    // Versions Supported in EMR (http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/EnvironmentConfig_AMIVersion.html#ami-versions-supported)
    // in the Amazon EMR Developer Guide.
    AmiVersion *string `type:"string"`

    // An IAM role for automatic scaling policies. The default role is EMR_AutoScaling_DefaultRole.
    // The IAM role provides a way for the automatic scaling feature to get the
    // required permissions it needs to launch and terminate EC2 instances in an
    // instance group.
    AutoScalingRole *string `type:"string"`

    // A list of the bootstrap actions run by the job flow.
    BootstrapActions []*BootstrapActionDetail `type:"list"`

    // Describes the execution status of the job flow.
    //
    // ExecutionStatusDetail is a required field
    ExecutionStatusDetail *JobFlowExecutionStatusDetail `type:"structure" required:"true"`

    // Describes the Amazon EC2 instances of the job flow.
    //
    // Instances is a required field
    Instances *JobFlowInstancesDetail `type:"structure" required:"true"`

    // The job flow identifier.
    //
    // JobFlowId is a required field
    JobFlowId *string `type:"string" required:"true"`

    // The IAM role that was specified when the job flow was launched. The EC2 instances
    // of the job flow assume this role.
    JobFlowRole *string `type:"string"`

    // The location in Amazon S3 where log files for the job are stored.
    LogUri *string `type:"string"`

    // The name of the job flow.
    //
    // Name is a required field
    Name *string `type:"string" required:"true"`

    // The way that individual Amazon EC2 instances terminate when an automatic
    // scale-in activity occurs or an instance group is resized. TERMINATE_AT_INSTANCE_HOUR
    // indicates that Amazon EMR terminates nodes at the instance-hour boundary,
    // regardless of when the request to terminate the instance was submitted. This
    // option is only available with Amazon EMR 5.1.0 and later and is the default
    // for clusters created using that version. TERMINATE_AT_TASK_COMPLETION indicates
    // that Amazon EMR blacklists and drains tasks from nodes before terminating
    // the Amazon EC2 instances, regardless of the instance-hour boundary. With
    // either behavior, Amazon EMR removes the least active nodes first and blocks
    // instance termination if it could lead to HDFS corruption. TERMINATE_AT_TASK_COMPLETION
    // available only in Amazon EMR version 4.1.0 and later, and is the default
    // for versions of Amazon EMR earlier than 5.1.0.
    ScaleDownBehavior *string `type:"string" enum:"ScaleDownBehavior"`

    // The IAM role that will be assumed by the Amazon EMR service to access AWS
    // resources on your behalf.
    ServiceRole *string `type:"string"`

    // A list of steps run by the job flow.
    Steps []*StepDetail `type:"list"`

    // A list of strings set by third party software when the job flow is launched.
    // If you are not using third party software to manage the job flow this value
    // is empty.
    SupportedProducts []*string `type:"list"`

    // Specifies whether the cluster is visible to all IAM users of the AWS account
    // associated with the cluster. If this value is set to true, all IAM users
    // of that AWS account can view and (if they have the proper policy permissions
    // set) manage the cluster. If it is set to false, only the IAM user that created
    // the cluster can view and manage it. This value can be changed using the SetVisibleToAllUsers
    // action.
    VisibleToAllUsers *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (JobFlowDetail) GoString

func (s JobFlowDetail) GoString() string

GoString returns the string representation

func (*JobFlowDetail) SetAmiVersion

func (s *JobFlowDetail) SetAmiVersion(v string) *JobFlowDetail

SetAmiVersion sets the AmiVersion field's value.

func (*JobFlowDetail) SetAutoScalingRole

func (s *JobFlowDetail) SetAutoScalingRole(v string) *JobFlowDetail

SetAutoScalingRole sets the AutoScalingRole field's value.

func (*JobFlowDetail) SetBootstrapActions

func (s *JobFlowDetail) SetBootstrapActions(v []*BootstrapActionDetail) *JobFlowDetail

SetBootstrapActions sets the BootstrapActions field's value.

func (*JobFlowDetail) SetExecutionStatusDetail

func (s *JobFlowDetail) SetExecutionStatusDetail(v *JobFlowExecutionStatusDetail) *JobFlowDetail

SetExecutionStatusDetail sets the ExecutionStatusDetail field's value.

func (*JobFlowDetail) SetInstances

func (s *JobFlowDetail) SetInstances(v *JobFlowInstancesDetail) *JobFlowDetail

SetInstances sets the Instances field's value.

func (*JobFlowDetail) SetJobFlowId

func (s *JobFlowDetail) SetJobFlowId(v string) *JobFlowDetail

SetJobFlowId sets the JobFlowId field's value.

func (*JobFlowDetail) SetJobFlowRole

func (s *JobFlowDetail) SetJobFlowRole(v string) *JobFlowDetail

SetJobFlowRole sets the JobFlowRole field's value.

func (*JobFlowDetail) SetLogUri

func (s *JobFlowDetail) SetLogUri(v string) *JobFlowDetail

SetLogUri sets the LogUri field's value.

func (*JobFlowDetail) SetName

func (s *JobFlowDetail) SetName(v string) *JobFlowDetail

SetName sets the Name field's value.

func (*JobFlowDetail) SetScaleDownBehavior

func (s *JobFlowDetail) SetScaleDownBehavior(v string) *JobFlowDetail

SetScaleDownBehavior sets the ScaleDownBehavior field's value.

func (*JobFlowDetail) SetServiceRole

func (s *JobFlowDetail) SetServiceRole(v string) *JobFlowDetail

SetServiceRole sets the ServiceRole field's value.

func (*JobFlowDetail) SetSteps

func (s *JobFlowDetail) SetSteps(v []*StepDetail) *JobFlowDetail

SetSteps sets the Steps field's value.

func (*JobFlowDetail) SetSupportedProducts

func (s *JobFlowDetail) SetSupportedProducts(v []*string) *JobFlowDetail

SetSupportedProducts sets the SupportedProducts field's value.

func (*JobFlowDetail) SetVisibleToAllUsers

func (s *JobFlowDetail) SetVisibleToAllUsers(v bool) *JobFlowDetail

SetVisibleToAllUsers sets the VisibleToAllUsers field's value.

func (JobFlowDetail) String

func (s JobFlowDetail) String() string

String returns the string representation

type JobFlowExecutionStatusDetail

Describes the status of the cluster (job flow). Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/JobFlowExecutionStatusDetail

type JobFlowExecutionStatusDetail struct {

    // The creation date and time of the job flow.
    //
    // CreationDateTime is a required field
    CreationDateTime *time.Time `type:"timestamp" timestampFormat:"unix" required:"true"`

    // The completion date and time of the job flow.
    EndDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // Description of the job flow last changed state.
    LastStateChangeReason *string `type:"string"`

    // The date and time when the job flow was ready to start running bootstrap
    // actions.
    ReadyDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The start date and time of the job flow.
    StartDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The state of the job flow.
    //
    // State is a required field
    State *string `type:"string" required:"true" enum:"JobFlowExecutionState"`
    // contains filtered or unexported fields
}

func (JobFlowExecutionStatusDetail) GoString

func (s JobFlowExecutionStatusDetail) GoString() string

GoString returns the string representation

func (*JobFlowExecutionStatusDetail) SetCreationDateTime

func (s *JobFlowExecutionStatusDetail) SetCreationDateTime(v time.Time) *JobFlowExecutionStatusDetail

SetCreationDateTime sets the CreationDateTime field's value.

func (*JobFlowExecutionStatusDetail) SetEndDateTime

func (s *JobFlowExecutionStatusDetail) SetEndDateTime(v time.Time) *JobFlowExecutionStatusDetail

SetEndDateTime sets the EndDateTime field's value.

func (*JobFlowExecutionStatusDetail) SetLastStateChangeReason

func (s *JobFlowExecutionStatusDetail) SetLastStateChangeReason(v string) *JobFlowExecutionStatusDetail

SetLastStateChangeReason sets the LastStateChangeReason field's value.

func (*JobFlowExecutionStatusDetail) SetReadyDateTime

func (s *JobFlowExecutionStatusDetail) SetReadyDateTime(v time.Time) *JobFlowExecutionStatusDetail

SetReadyDateTime sets the ReadyDateTime field's value.

func (*JobFlowExecutionStatusDetail) SetStartDateTime

func (s *JobFlowExecutionStatusDetail) SetStartDateTime(v time.Time) *JobFlowExecutionStatusDetail

SetStartDateTime sets the StartDateTime field's value.

func (*JobFlowExecutionStatusDetail) SetState

func (s *JobFlowExecutionStatusDetail) SetState(v string) *JobFlowExecutionStatusDetail

SetState sets the State field's value.

func (JobFlowExecutionStatusDetail) String

func (s JobFlowExecutionStatusDetail) String() string

String returns the string representation

type JobFlowInstancesConfig

A description of the Amazon EC2 instance on which the cluster (job flow) runs. A valid JobFlowInstancesConfig must contain either InstanceGroups or InstanceFleets, which is the recommended configuration. They cannot be used together. You may also have MasterInstanceType, SlaveInstanceType, and InstanceCount (all three must be present), but we don't recommend this configuration. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/JobFlowInstancesConfig

type JobFlowInstancesConfig struct {

    // A list of additional Amazon EC2 security group IDs for the master node.
    AdditionalMasterSecurityGroups []*string `type:"list"`

    // A list of additional Amazon EC2 security group IDs for the slave nodes.
    AdditionalSlaveSecurityGroups []*string `type:"list"`

    // The name of the EC2 key pair that can be used to ssh to the master node as
    // the user called "hadoop."
    Ec2KeyName *string `type:"string"`

    // Applies to clusters that use the uniform instance group configuration. To
    // launch the cluster in Amazon Virtual Private Cloud (Amazon VPC), set this
    // parameter to the identifier of the Amazon VPC subnet where you want the cluster
    // to launch. If you do not specify this value, the cluster launches in the
    // normal Amazon Web Services cloud, outside of an Amazon VPC, if the account
    // launching the cluster supports EC2 Classic networks in the region where the
    // cluster launches.
    //
    // Amazon VPC currently does not support cluster compute quadruple extra large
    // (cc1.4xlarge) instances. Thus you cannot specify the cc1.4xlarge instance
    // type for clusters launched in an Amazon VPC.
    Ec2SubnetId *string `type:"string"`

    // Applies to clusters that use the instance fleet configuration. When multiple
    // EC2 subnet IDs are specified, Amazon EMR evaluates them and launches instances
    // in the optimal subnet.
    //
    // The instance fleet configuration is available only in Amazon EMR versions
    // 4.8.0 and later, excluding 5.0.x versions.
    Ec2SubnetIds []*string `type:"list"`

    // The identifier of the Amazon EC2 security group for the master node.
    EmrManagedMasterSecurityGroup *string `type:"string"`

    // The identifier of the Amazon EC2 security group for the slave nodes.
    EmrManagedSlaveSecurityGroup *string `type:"string"`

    // The Hadoop version for the cluster. Valid inputs are "0.18" (deprecated),
    // "0.20" (deprecated), "0.20.205" (deprecated), "1.0.3", "2.2.0", or "2.4.0".
    // If you do not set this value, the default of 0.18 is used, unless the AmiVersion
    // parameter is set in the RunJobFlow call, in which case the default version
    // of Hadoop for that AMI version is used.
    HadoopVersion *string `type:"string"`

    // The number of EC2 instances in the cluster.
    InstanceCount *int64 `type:"integer"`

    // The instance fleet configuration is available only in Amazon EMR versions
    // 4.8.0 and later, excluding 5.0.x versions.
    //
    // Describes the EC2 instances and instance configurations for clusters that
    // use the instance fleet configuration.
    InstanceFleets []*InstanceFleetConfig `type:"list"`

    // Configuration for the instance groups in a cluster.
    InstanceGroups []*InstanceGroupConfig `type:"list"`

    // Specifies whether the cluster should remain available after completing all
    // steps.
    KeepJobFlowAliveWhenNoSteps *bool `type:"boolean"`

    // The EC2 instance type of the master node.
    MasterInstanceType *string `min:"1" type:"string"`

    // The Availability Zone in which the cluster runs.
    Placement *PlacementType `type:"structure"`

    // The identifier of the Amazon EC2 security group for the Amazon EMR service
    // to access clusters in VPC private subnets.
    ServiceAccessSecurityGroup *string `type:"string"`

    // The EC2 instance type of the slave nodes.
    SlaveInstanceType *string `min:"1" type:"string"`

    // Specifies whether to lock the cluster to prevent the Amazon EC2 instances
    // from being terminated by API call, user intervention, or in the event of
    // a job-flow error.
    TerminationProtected *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (JobFlowInstancesConfig) GoString

func (s JobFlowInstancesConfig) GoString() string

GoString returns the string representation

func (*JobFlowInstancesConfig) SetAdditionalMasterSecurityGroups

func (s *JobFlowInstancesConfig) SetAdditionalMasterSecurityGroups(v []*string) *JobFlowInstancesConfig

SetAdditionalMasterSecurityGroups sets the AdditionalMasterSecurityGroups field's value.

func (*JobFlowInstancesConfig) SetAdditionalSlaveSecurityGroups

func (s *JobFlowInstancesConfig) SetAdditionalSlaveSecurityGroups(v []*string) *JobFlowInstancesConfig

SetAdditionalSlaveSecurityGroups sets the AdditionalSlaveSecurityGroups field's value.

func (*JobFlowInstancesConfig) SetEc2KeyName

func (s *JobFlowInstancesConfig) SetEc2KeyName(v string) *JobFlowInstancesConfig

SetEc2KeyName sets the Ec2KeyName field's value.

func (*JobFlowInstancesConfig) SetEc2SubnetId

func (s *JobFlowInstancesConfig) SetEc2SubnetId(v string) *JobFlowInstancesConfig

SetEc2SubnetId sets the Ec2SubnetId field's value.

func (*JobFlowInstancesConfig) SetEc2SubnetIds

func (s *JobFlowInstancesConfig) SetEc2SubnetIds(v []*string) *JobFlowInstancesConfig

SetEc2SubnetIds sets the Ec2SubnetIds field's value.

func (*JobFlowInstancesConfig) SetEmrManagedMasterSecurityGroup

func (s *JobFlowInstancesConfig) SetEmrManagedMasterSecurityGroup(v string) *JobFlowInstancesConfig

SetEmrManagedMasterSecurityGroup sets the EmrManagedMasterSecurityGroup field's value.

func (*JobFlowInstancesConfig) SetEmrManagedSlaveSecurityGroup

func (s *JobFlowInstancesConfig) SetEmrManagedSlaveSecurityGroup(v string) *JobFlowInstancesConfig

SetEmrManagedSlaveSecurityGroup sets the EmrManagedSlaveSecurityGroup field's value.

func (*JobFlowInstancesConfig) SetHadoopVersion

func (s *JobFlowInstancesConfig) SetHadoopVersion(v string) *JobFlowInstancesConfig

SetHadoopVersion sets the HadoopVersion field's value.

func (*JobFlowInstancesConfig) SetInstanceCount

func (s *JobFlowInstancesConfig) SetInstanceCount(v int64) *JobFlowInstancesConfig

SetInstanceCount sets the InstanceCount field's value.

func (*JobFlowInstancesConfig) SetInstanceFleets

func (s *JobFlowInstancesConfig) SetInstanceFleets(v []*InstanceFleetConfig) *JobFlowInstancesConfig

SetInstanceFleets sets the InstanceFleets field's value.

func (*JobFlowInstancesConfig) SetInstanceGroups

func (s *JobFlowInstancesConfig) SetInstanceGroups(v []*InstanceGroupConfig) *JobFlowInstancesConfig

SetInstanceGroups sets the InstanceGroups field's value.

func (*JobFlowInstancesConfig) SetKeepJobFlowAliveWhenNoSteps

func (s *JobFlowInstancesConfig) SetKeepJobFlowAliveWhenNoSteps(v bool) *JobFlowInstancesConfig

SetKeepJobFlowAliveWhenNoSteps sets the KeepJobFlowAliveWhenNoSteps field's value.

func (*JobFlowInstancesConfig) SetMasterInstanceType

func (s *JobFlowInstancesConfig) SetMasterInstanceType(v string) *JobFlowInstancesConfig

SetMasterInstanceType sets the MasterInstanceType field's value.

func (*JobFlowInstancesConfig) SetPlacement

func (s *JobFlowInstancesConfig) SetPlacement(v *PlacementType) *JobFlowInstancesConfig

SetPlacement sets the Placement field's value.

func (*JobFlowInstancesConfig) SetServiceAccessSecurityGroup

func (s *JobFlowInstancesConfig) SetServiceAccessSecurityGroup(v string) *JobFlowInstancesConfig

SetServiceAccessSecurityGroup sets the ServiceAccessSecurityGroup field's value.

func (*JobFlowInstancesConfig) SetSlaveInstanceType

func (s *JobFlowInstancesConfig) SetSlaveInstanceType(v string) *JobFlowInstancesConfig

SetSlaveInstanceType sets the SlaveInstanceType field's value.

func (*JobFlowInstancesConfig) SetTerminationProtected

func (s *JobFlowInstancesConfig) SetTerminationProtected(v bool) *JobFlowInstancesConfig

SetTerminationProtected sets the TerminationProtected field's value.

func (JobFlowInstancesConfig) String

func (s JobFlowInstancesConfig) String() string

String returns the string representation

func (*JobFlowInstancesConfig) Validate

func (s *JobFlowInstancesConfig) Validate() error

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

type JobFlowInstancesDetail

Specify the type of Amazon EC2 instances that the cluster (job flow) runs on. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/JobFlowInstancesDetail

type JobFlowInstancesDetail struct {

    // The name of an Amazon EC2 key pair that can be used to ssh to the master
    // node.
    Ec2KeyName *string `type:"string"`

    // For clusters launched within Amazon Virtual Private Cloud, this is the identifier
    // of the subnet where the cluster was launched.
    Ec2SubnetId *string `type:"string"`

    // The Hadoop version for the cluster.
    HadoopVersion *string `type:"string"`

    // The number of Amazon EC2 instances in the cluster. If the value is 1, the
    // same instance serves as both the master and slave node. If the value is greater
    // than 1, one instance is the master node and all others are slave nodes.
    //
    // InstanceCount is a required field
    InstanceCount *int64 `type:"integer" required:"true"`

    // Details about the instance groups in a cluster.
    InstanceGroups []*InstanceGroupDetail `type:"list"`

    // Specifies whether the cluster should remain available after completing all
    // steps.
    KeepJobFlowAliveWhenNoSteps *bool `type:"boolean"`

    // The Amazon EC2 instance identifier of the master node.
    MasterInstanceId *string `type:"string"`

    // The Amazon EC2 master node instance type.
    //
    // MasterInstanceType is a required field
    MasterInstanceType *string `min:"1" type:"string" required:"true"`

    // The DNS name of the master node.
    MasterPublicDnsName *string `type:"string"`

    // An approximation of the cost of the cluster, represented in m1.small/hours.
    // This value is incremented one time for every hour that an m1.small runs.
    // Larger instances are weighted more, so an Amazon EC2 instance that is roughly
    // four times more expensive would result in the normalized instance hours being
    // incremented by four. This result is only an approximation and does not reflect
    // the actual billing rate.
    NormalizedInstanceHours *int64 `type:"integer"`

    // The Amazon EC2 Availability Zone for the cluster.
    Placement *PlacementType `type:"structure"`

    // The Amazon EC2 slave node instance type.
    //
    // SlaveInstanceType is a required field
    SlaveInstanceType *string `min:"1" type:"string" required:"true"`

    // Specifies whether the Amazon EC2 instances in the cluster are protected from
    // termination by API calls, user intervention, or in the event of a job-flow
    // error.
    TerminationProtected *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (JobFlowInstancesDetail) GoString

func (s JobFlowInstancesDetail) GoString() string

GoString returns the string representation

func (*JobFlowInstancesDetail) SetEc2KeyName

func (s *JobFlowInstancesDetail) SetEc2KeyName(v string) *JobFlowInstancesDetail

SetEc2KeyName sets the Ec2KeyName field's value.

func (*JobFlowInstancesDetail) SetEc2SubnetId

func (s *JobFlowInstancesDetail) SetEc2SubnetId(v string) *JobFlowInstancesDetail

SetEc2SubnetId sets the Ec2SubnetId field's value.

func (*JobFlowInstancesDetail) SetHadoopVersion

func (s *JobFlowInstancesDetail) SetHadoopVersion(v string) *JobFlowInstancesDetail

SetHadoopVersion sets the HadoopVersion field's value.

func (*JobFlowInstancesDetail) SetInstanceCount

func (s *JobFlowInstancesDetail) SetInstanceCount(v int64) *JobFlowInstancesDetail

SetInstanceCount sets the InstanceCount field's value.

func (*JobFlowInstancesDetail) SetInstanceGroups

func (s *JobFlowInstancesDetail) SetInstanceGroups(v []*InstanceGroupDetail) *JobFlowInstancesDetail

SetInstanceGroups sets the InstanceGroups field's value.

func (*JobFlowInstancesDetail) SetKeepJobFlowAliveWhenNoSteps

func (s *JobFlowInstancesDetail) SetKeepJobFlowAliveWhenNoSteps(v bool) *JobFlowInstancesDetail

SetKeepJobFlowAliveWhenNoSteps sets the KeepJobFlowAliveWhenNoSteps field's value.

func (*JobFlowInstancesDetail) SetMasterInstanceId

func (s *JobFlowInstancesDetail) SetMasterInstanceId(v string) *JobFlowInstancesDetail

SetMasterInstanceId sets the MasterInstanceId field's value.

func (*JobFlowInstancesDetail) SetMasterInstanceType

func (s *JobFlowInstancesDetail) SetMasterInstanceType(v string) *JobFlowInstancesDetail

SetMasterInstanceType sets the MasterInstanceType field's value.

func (*JobFlowInstancesDetail) SetMasterPublicDnsName

func (s *JobFlowInstancesDetail) SetMasterPublicDnsName(v string) *JobFlowInstancesDetail

SetMasterPublicDnsName sets the MasterPublicDnsName field's value.

func (*JobFlowInstancesDetail) SetNormalizedInstanceHours

func (s *JobFlowInstancesDetail) SetNormalizedInstanceHours(v int64) *JobFlowInstancesDetail

SetNormalizedInstanceHours sets the NormalizedInstanceHours field's value.

func (*JobFlowInstancesDetail) SetPlacement

func (s *JobFlowInstancesDetail) SetPlacement(v *PlacementType) *JobFlowInstancesDetail

SetPlacement sets the Placement field's value.

func (*JobFlowInstancesDetail) SetSlaveInstanceType

func (s *JobFlowInstancesDetail) SetSlaveInstanceType(v string) *JobFlowInstancesDetail

SetSlaveInstanceType sets the SlaveInstanceType field's value.

func (*JobFlowInstancesDetail) SetTerminationProtected

func (s *JobFlowInstancesDetail) SetTerminationProtected(v bool) *JobFlowInstancesDetail

SetTerminationProtected sets the TerminationProtected field's value.

func (JobFlowInstancesDetail) String

func (s JobFlowInstancesDetail) String() string

String returns the string representation

type KeyValue

A key value pair. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/KeyValue

type KeyValue struct {

    // The unique identifier of a key value pair.
    Key *string `type:"string"`

    // The value part of the identified key.
    Value *string `type:"string"`
    // contains filtered or unexported fields
}

func (KeyValue) GoString

func (s KeyValue) GoString() string

GoString returns the string representation

func (*KeyValue) SetKey

func (s *KeyValue) SetKey(v string) *KeyValue

SetKey sets the Key field's value.

func (*KeyValue) SetValue

func (s *KeyValue) SetValue(v string) *KeyValue

SetValue sets the Value field's value.

func (KeyValue) String

func (s KeyValue) String() string

String returns the string representation

type ListBootstrapActionsInput

This input determines which bootstrap actions to retrieve. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListBootstrapActionsInput

type ListBootstrapActionsInput struct {

    // The cluster identifier for the bootstrap actions to list.
    //
    // ClusterId is a required field
    ClusterId *string `type:"string" required:"true"`

    // The pagination token that indicates the next set of results to retrieve.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListBootstrapActionsInput) GoString

func (s ListBootstrapActionsInput) GoString() string

GoString returns the string representation

func (*ListBootstrapActionsInput) SetClusterId

func (s *ListBootstrapActionsInput) SetClusterId(v string) *ListBootstrapActionsInput

SetClusterId sets the ClusterId field's value.

func (*ListBootstrapActionsInput) SetMarker

func (s *ListBootstrapActionsInput) SetMarker(v string) *ListBootstrapActionsInput

SetMarker sets the Marker field's value.

func (ListBootstrapActionsInput) String

func (s ListBootstrapActionsInput) String() string

String returns the string representation

func (*ListBootstrapActionsInput) Validate

func (s *ListBootstrapActionsInput) Validate() error

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

type ListBootstrapActionsOutput

This output contains the bootstrap actions detail. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListBootstrapActionsOutput

type ListBootstrapActionsOutput struct {

    // The bootstrap actions associated with the cluster.
    BootstrapActions []*Command `type:"list"`

    // The pagination token that indicates the next set of results to retrieve.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListBootstrapActionsOutput) GoString

func (s ListBootstrapActionsOutput) GoString() string

GoString returns the string representation

func (*ListBootstrapActionsOutput) SetBootstrapActions

func (s *ListBootstrapActionsOutput) SetBootstrapActions(v []*Command) *ListBootstrapActionsOutput

SetBootstrapActions sets the BootstrapActions field's value.

func (*ListBootstrapActionsOutput) SetMarker

func (s *ListBootstrapActionsOutput) SetMarker(v string) *ListBootstrapActionsOutput

SetMarker sets the Marker field's value.

func (ListBootstrapActionsOutput) String

func (s ListBootstrapActionsOutput) String() string

String returns the string representation

type ListClustersInput

This input determines how the ListClusters action filters the list of clusters that it returns. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListClustersInput

type ListClustersInput struct {

    // The cluster state filters to apply when listing clusters.
    ClusterStates []*string `type:"list"`

    // The creation date and time beginning value filter for listing clusters.
    CreatedAfter *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The creation date and time end value filter for listing clusters.
    CreatedBefore *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The pagination token that indicates the next set of results to retrieve.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListClustersInput) GoString

func (s ListClustersInput) GoString() string

GoString returns the string representation

func (*ListClustersInput) SetClusterStates

func (s *ListClustersInput) SetClusterStates(v []*string) *ListClustersInput

SetClusterStates sets the ClusterStates field's value.

func (*ListClustersInput) SetCreatedAfter

func (s *ListClustersInput) SetCreatedAfter(v time.Time) *ListClustersInput

SetCreatedAfter sets the CreatedAfter field's value.

func (*ListClustersInput) SetCreatedBefore

func (s *ListClustersInput) SetCreatedBefore(v time.Time) *ListClustersInput

SetCreatedBefore sets the CreatedBefore field's value.

func (*ListClustersInput) SetMarker

func (s *ListClustersInput) SetMarker(v string) *ListClustersInput

SetMarker sets the Marker field's value.

func (ListClustersInput) String

func (s ListClustersInput) String() string

String returns the string representation

type ListClustersOutput

This contains a ClusterSummaryList with the cluster details; for example, the cluster IDs, names, and status. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListClustersOutput

type ListClustersOutput struct {

    // The list of clusters for the account based on the given filters.
    Clusters []*ClusterSummary `type:"list"`

    // The pagination token that indicates the next set of results to retrieve.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListClustersOutput) GoString

func (s ListClustersOutput) GoString() string

GoString returns the string representation

func (*ListClustersOutput) SetClusters

func (s *ListClustersOutput) SetClusters(v []*ClusterSummary) *ListClustersOutput

SetClusters sets the Clusters field's value.

func (*ListClustersOutput) SetMarker

func (s *ListClustersOutput) SetMarker(v string) *ListClustersOutput

SetMarker sets the Marker field's value.

func (ListClustersOutput) String

func (s ListClustersOutput) String() string

String returns the string representation

type ListInstanceFleetsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListInstanceFleetsInput

type ListInstanceFleetsInput struct {

    // The unique identifier of the cluster.
    //
    // ClusterId is a required field
    ClusterId *string `type:"string" required:"true"`

    // The pagination token that indicates the next set of results to retrieve.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListInstanceFleetsInput) GoString

func (s ListInstanceFleetsInput) GoString() string

GoString returns the string representation

func (*ListInstanceFleetsInput) SetClusterId

func (s *ListInstanceFleetsInput) SetClusterId(v string) *ListInstanceFleetsInput

SetClusterId sets the ClusterId field's value.

func (*ListInstanceFleetsInput) SetMarker

func (s *ListInstanceFleetsInput) SetMarker(v string) *ListInstanceFleetsInput

SetMarker sets the Marker field's value.

func (ListInstanceFleetsInput) String

func (s ListInstanceFleetsInput) String() string

String returns the string representation

func (*ListInstanceFleetsInput) Validate

func (s *ListInstanceFleetsInput) Validate() error

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

type ListInstanceFleetsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListInstanceFleetsOutput

type ListInstanceFleetsOutput struct {

    // The list of instance fleets for the cluster and given filters.
    InstanceFleets []*InstanceFleet `type:"list"`

    // The pagination token that indicates the next set of results to retrieve.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListInstanceFleetsOutput) GoString

func (s ListInstanceFleetsOutput) GoString() string

GoString returns the string representation

func (*ListInstanceFleetsOutput) SetInstanceFleets

func (s *ListInstanceFleetsOutput) SetInstanceFleets(v []*InstanceFleet) *ListInstanceFleetsOutput

SetInstanceFleets sets the InstanceFleets field's value.

func (*ListInstanceFleetsOutput) SetMarker

func (s *ListInstanceFleetsOutput) SetMarker(v string) *ListInstanceFleetsOutput

SetMarker sets the Marker field's value.

func (ListInstanceFleetsOutput) String

func (s ListInstanceFleetsOutput) String() string

String returns the string representation

type ListInstanceGroupsInput

This input determines which instance groups to retrieve. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListInstanceGroupsInput

type ListInstanceGroupsInput struct {

    // The identifier of the cluster for which to list the instance groups.
    //
    // ClusterId is a required field
    ClusterId *string `type:"string" required:"true"`

    // The pagination token that indicates the next set of results to retrieve.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListInstanceGroupsInput) GoString

func (s ListInstanceGroupsInput) GoString() string

GoString returns the string representation

func (*ListInstanceGroupsInput) SetClusterId

func (s *ListInstanceGroupsInput) SetClusterId(v string) *ListInstanceGroupsInput

SetClusterId sets the ClusterId field's value.

func (*ListInstanceGroupsInput) SetMarker

func (s *ListInstanceGroupsInput) SetMarker(v string) *ListInstanceGroupsInput

SetMarker sets the Marker field's value.

func (ListInstanceGroupsInput) String

func (s ListInstanceGroupsInput) String() string

String returns the string representation

func (*ListInstanceGroupsInput) Validate

func (s *ListInstanceGroupsInput) Validate() error

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

type ListInstanceGroupsOutput

This input determines which instance groups to retrieve. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListInstanceGroupsOutput

type ListInstanceGroupsOutput struct {

    // The list of instance groups for the cluster and given filters.
    InstanceGroups []*InstanceGroup `type:"list"`

    // The pagination token that indicates the next set of results to retrieve.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListInstanceGroupsOutput) GoString

func (s ListInstanceGroupsOutput) GoString() string

GoString returns the string representation

func (*ListInstanceGroupsOutput) SetInstanceGroups

func (s *ListInstanceGroupsOutput) SetInstanceGroups(v []*InstanceGroup) *ListInstanceGroupsOutput

SetInstanceGroups sets the InstanceGroups field's value.

func (*ListInstanceGroupsOutput) SetMarker

func (s *ListInstanceGroupsOutput) SetMarker(v string) *ListInstanceGroupsOutput

SetMarker sets the Marker field's value.

func (ListInstanceGroupsOutput) String

func (s ListInstanceGroupsOutput) String() string

String returns the string representation

type ListInstancesInput

This input determines which instances to list. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListInstancesInput

type ListInstancesInput struct {

    // The identifier of the cluster for which to list the instances.
    //
    // ClusterId is a required field
    ClusterId *string `type:"string" required:"true"`

    // The unique identifier of the instance fleet.
    InstanceFleetId *string `type:"string"`

    // The node type of the instance fleet. For example MASTER, CORE, or TASK.
    InstanceFleetType *string `type:"string" enum:"InstanceFleetType"`

    // The identifier of the instance group for which to list the instances.
    InstanceGroupId *string `type:"string"`

    // The type of instance group for which to list the instances.
    InstanceGroupTypes []*string `type:"list"`

    // A list of instance states that will filter the instances returned with this
    // request.
    InstanceStates []*string `type:"list"`

    // The pagination token that indicates the next set of results to retrieve.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListInstancesInput) GoString

func (s ListInstancesInput) GoString() string

GoString returns the string representation

func (*ListInstancesInput) SetClusterId

func (s *ListInstancesInput) SetClusterId(v string) *ListInstancesInput

SetClusterId sets the ClusterId field's value.

func (*ListInstancesInput) SetInstanceFleetId

func (s *ListInstancesInput) SetInstanceFleetId(v string) *ListInstancesInput

SetInstanceFleetId sets the InstanceFleetId field's value.

func (*ListInstancesInput) SetInstanceFleetType

func (s *ListInstancesInput) SetInstanceFleetType(v string) *ListInstancesInput

SetInstanceFleetType sets the InstanceFleetType field's value.

func (*ListInstancesInput) SetInstanceGroupId

func (s *ListInstancesInput) SetInstanceGroupId(v string) *ListInstancesInput

SetInstanceGroupId sets the InstanceGroupId field's value.

func (*ListInstancesInput) SetInstanceGroupTypes

func (s *ListInstancesInput) SetInstanceGroupTypes(v []*string) *ListInstancesInput

SetInstanceGroupTypes sets the InstanceGroupTypes field's value.

func (*ListInstancesInput) SetInstanceStates

func (s *ListInstancesInput) SetInstanceStates(v []*string) *ListInstancesInput

SetInstanceStates sets the InstanceStates field's value.

func (*ListInstancesInput) SetMarker

func (s *ListInstancesInput) SetMarker(v string) *ListInstancesInput

SetMarker sets the Marker field's value.

func (ListInstancesInput) String

func (s ListInstancesInput) String() string

String returns the string representation

func (*ListInstancesInput) Validate

func (s *ListInstancesInput) Validate() error

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

type ListInstancesOutput

This output contains the list of instances. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListInstancesOutput

type ListInstancesOutput struct {

    // The list of instances for the cluster and given filters.
    Instances []*Instance `type:"list"`

    // The pagination token that indicates the next set of results to retrieve.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListInstancesOutput) GoString

func (s ListInstancesOutput) GoString() string

GoString returns the string representation

func (*ListInstancesOutput) SetInstances

func (s *ListInstancesOutput) SetInstances(v []*Instance) *ListInstancesOutput

SetInstances sets the Instances field's value.

func (*ListInstancesOutput) SetMarker

func (s *ListInstancesOutput) SetMarker(v string) *ListInstancesOutput

SetMarker sets the Marker field's value.

func (ListInstancesOutput) String

func (s ListInstancesOutput) String() string

String returns the string representation

type ListSecurityConfigurationsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListSecurityConfigurationsInput

type ListSecurityConfigurationsInput struct {

    // The pagination token that indicates the set of results to retrieve.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListSecurityConfigurationsInput) GoString

func (s ListSecurityConfigurationsInput) GoString() string

GoString returns the string representation

func (*ListSecurityConfigurationsInput) SetMarker

func (s *ListSecurityConfigurationsInput) SetMarker(v string) *ListSecurityConfigurationsInput

SetMarker sets the Marker field's value.

func (ListSecurityConfigurationsInput) String

func (s ListSecurityConfigurationsInput) String() string

String returns the string representation

type ListSecurityConfigurationsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListSecurityConfigurationsOutput

type ListSecurityConfigurationsOutput struct {

    // A pagination token that indicates the next set of results to retrieve. Include
    // the marker in the next ListSecurityConfiguration call to retrieve the next
    // page of results, if required.
    Marker *string `type:"string"`

    // The creation date and time, and name, of each security configuration.
    SecurityConfigurations []*SecurityConfigurationSummary `type:"list"`
    // contains filtered or unexported fields
}

func (ListSecurityConfigurationsOutput) GoString

func (s ListSecurityConfigurationsOutput) GoString() string

GoString returns the string representation

func (*ListSecurityConfigurationsOutput) SetMarker

func (s *ListSecurityConfigurationsOutput) SetMarker(v string) *ListSecurityConfigurationsOutput

SetMarker sets the Marker field's value.

func (*ListSecurityConfigurationsOutput) SetSecurityConfigurations

func (s *ListSecurityConfigurationsOutput) SetSecurityConfigurations(v []*SecurityConfigurationSummary) *ListSecurityConfigurationsOutput

SetSecurityConfigurations sets the SecurityConfigurations field's value.

func (ListSecurityConfigurationsOutput) String

func (s ListSecurityConfigurationsOutput) String() string

String returns the string representation

type ListStepsInput

This input determines which steps to list. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListStepsInput

type ListStepsInput struct {

    // The identifier of the cluster for which to list the steps.
    //
    // ClusterId is a required field
    ClusterId *string `type:"string" required:"true"`

    // The pagination token that indicates the next set of results to retrieve.
    Marker *string `type:"string"`

    // The filter to limit the step list based on the identifier of the steps.
    StepIds []*string `type:"list"`

    // The filter to limit the step list based on certain states.
    StepStates []*string `type:"list"`
    // contains filtered or unexported fields
}

func (ListStepsInput) GoString

func (s ListStepsInput) GoString() string

GoString returns the string representation

func (*ListStepsInput) SetClusterId

func (s *ListStepsInput) SetClusterId(v string) *ListStepsInput

SetClusterId sets the ClusterId field's value.

func (*ListStepsInput) SetMarker

func (s *ListStepsInput) SetMarker(v string) *ListStepsInput

SetMarker sets the Marker field's value.

func (*ListStepsInput) SetStepIds

func (s *ListStepsInput) SetStepIds(v []*string) *ListStepsInput

SetStepIds sets the StepIds field's value.

func (*ListStepsInput) SetStepStates

func (s *ListStepsInput) SetStepStates(v []*string) *ListStepsInput

SetStepStates sets the StepStates field's value.

func (ListStepsInput) String

func (s ListStepsInput) String() string

String returns the string representation

func (*ListStepsInput) Validate

func (s *ListStepsInput) Validate() error

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

type ListStepsOutput

This output contains the list of steps returned in reverse order. This means that the last step is the first element in the list. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListStepsOutput

type ListStepsOutput struct {

    // The pagination token that indicates the next set of results to retrieve.
    Marker *string `type:"string"`

    // The filtered list of steps for the cluster.
    Steps []*StepSummary `type:"list"`
    // contains filtered or unexported fields
}

func (ListStepsOutput) GoString

func (s ListStepsOutput) GoString() string

GoString returns the string representation

func (*ListStepsOutput) SetMarker

func (s *ListStepsOutput) SetMarker(v string) *ListStepsOutput

SetMarker sets the Marker field's value.

func (*ListStepsOutput) SetSteps

func (s *ListStepsOutput) SetSteps(v []*StepSummary) *ListStepsOutput

SetSteps sets the Steps field's value.

func (ListStepsOutput) String

func (s ListStepsOutput) String() string

String returns the string representation

type MetricDimension

A CloudWatch dimension, which is specified using a Key (known as a Name in CloudWatch), Value pair. By default, Amazon EMR uses one dimension whose Key is JobFlowID and Value is a variable representing the cluster ID, which is ${emr.clusterId}. This enables the rule to bootstrap when the cluster ID becomes available. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/MetricDimension

type MetricDimension struct {

    // The dimension name.
    Key *string `type:"string"`

    // The dimension value.
    Value *string `type:"string"`
    // contains filtered or unexported fields
}

func (MetricDimension) GoString

func (s MetricDimension) GoString() string

GoString returns the string representation

func (*MetricDimension) SetKey

func (s *MetricDimension) SetKey(v string) *MetricDimension

SetKey sets the Key field's value.

func (*MetricDimension) SetValue

func (s *MetricDimension) SetValue(v string) *MetricDimension

SetValue sets the Value field's value.

func (MetricDimension) String

func (s MetricDimension) String() string

String returns the string representation

type ModifyInstanceFleetInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ModifyInstanceFleetInput

type ModifyInstanceFleetInput struct {

    // The unique identifier of the cluster.
    //
    // ClusterId is a required field
    ClusterId *string `type:"string" required:"true"`

    // The unique identifier of the instance fleet.
    //
    // InstanceFleet is a required field
    InstanceFleet *InstanceFleetModifyConfig `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ModifyInstanceFleetInput) GoString

func (s ModifyInstanceFleetInput) GoString() string

GoString returns the string representation

func (*ModifyInstanceFleetInput) SetClusterId

func (s *ModifyInstanceFleetInput) SetClusterId(v string) *ModifyInstanceFleetInput

SetClusterId sets the ClusterId field's value.

func (*ModifyInstanceFleetInput) SetInstanceFleet

func (s *ModifyInstanceFleetInput) SetInstanceFleet(v *InstanceFleetModifyConfig) *ModifyInstanceFleetInput

SetInstanceFleet sets the InstanceFleet field's value.

func (ModifyInstanceFleetInput) String

func (s ModifyInstanceFleetInput) String() string

String returns the string representation

func (*ModifyInstanceFleetInput) Validate

func (s *ModifyInstanceFleetInput) Validate() error

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

type ModifyInstanceFleetOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ModifyInstanceFleetOutput

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

func (ModifyInstanceFleetOutput) GoString

func (s ModifyInstanceFleetOutput) GoString() string

GoString returns the string representation

func (ModifyInstanceFleetOutput) String

func (s ModifyInstanceFleetOutput) String() string

String returns the string representation

type ModifyInstanceGroupsInput

Change the size of some instance groups. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ModifyInstanceGroupsInput

type ModifyInstanceGroupsInput struct {

    // The ID of the cluster to which the instance group belongs.
    ClusterId *string `type:"string"`

    // Instance groups to change.
    InstanceGroups []*InstanceGroupModifyConfig `type:"list"`
    // contains filtered or unexported fields
}

func (ModifyInstanceGroupsInput) GoString

func (s ModifyInstanceGroupsInput) GoString() string

GoString returns the string representation

func (*ModifyInstanceGroupsInput) SetClusterId

func (s *ModifyInstanceGroupsInput) SetClusterId(v string) *ModifyInstanceGroupsInput

SetClusterId sets the ClusterId field's value.

func (*ModifyInstanceGroupsInput) SetInstanceGroups

func (s *ModifyInstanceGroupsInput) SetInstanceGroups(v []*InstanceGroupModifyConfig) *ModifyInstanceGroupsInput

SetInstanceGroups sets the InstanceGroups field's value.

func (ModifyInstanceGroupsInput) String

func (s ModifyInstanceGroupsInput) String() string

String returns the string representation

func (*ModifyInstanceGroupsInput) Validate

func (s *ModifyInstanceGroupsInput) Validate() error

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

type ModifyInstanceGroupsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ModifyInstanceGroupsOutput

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

func (ModifyInstanceGroupsOutput) GoString

func (s ModifyInstanceGroupsOutput) GoString() string

GoString returns the string representation

func (ModifyInstanceGroupsOutput) String

func (s ModifyInstanceGroupsOutput) String() string

String returns the string representation

type PlacementType

The Amazon EC2 Availability Zone configuration of the cluster (job flow). Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/PlacementType

type PlacementType struct {

    // The Amazon EC2 Availability Zone for the cluster. AvailabilityZone is used
    // for uniform instance groups, while AvailabilityZones (plural) is used for
    // instance fleets.
    AvailabilityZone *string `type:"string"`

    // When multiple Availability Zones are specified, Amazon EMR evaluates them
    // and launches instances in the optimal Availability Zone. AvailabilityZones
    // is used for instance fleets, while AvailabilityZone (singular) is used for
    // uniform instance groups.
    //
    // The instance fleet configuration is available only in Amazon EMR versions
    // 4.8.0 and later, excluding 5.0.x versions.
    AvailabilityZones []*string `type:"list"`
    // contains filtered or unexported fields
}

func (PlacementType) GoString

func (s PlacementType) GoString() string

GoString returns the string representation

func (*PlacementType) SetAvailabilityZone

func (s *PlacementType) SetAvailabilityZone(v string) *PlacementType

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*PlacementType) SetAvailabilityZones

func (s *PlacementType) SetAvailabilityZones(v []*string) *PlacementType

SetAvailabilityZones sets the AvailabilityZones field's value.

func (PlacementType) String

func (s PlacementType) String() string

String returns the string representation

type PutAutoScalingPolicyInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/PutAutoScalingPolicyInput

type PutAutoScalingPolicyInput struct {

    // Specifies the definition of the automatic scaling policy.
    //
    // AutoScalingPolicy is a required field
    AutoScalingPolicy *AutoScalingPolicy `type:"structure" required:"true"`

    // Specifies the ID of a cluster. The instance group to which the automatic
    // scaling policy is applied is within this cluster.
    //
    // ClusterId is a required field
    ClusterId *string `type:"string" required:"true"`

    // Specifies the ID of the instance group to which the automatic scaling policy
    // is applied.
    //
    // InstanceGroupId is a required field
    InstanceGroupId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (PutAutoScalingPolicyInput) GoString

func (s PutAutoScalingPolicyInput) GoString() string

GoString returns the string representation

func (*PutAutoScalingPolicyInput) SetAutoScalingPolicy

func (s *PutAutoScalingPolicyInput) SetAutoScalingPolicy(v *AutoScalingPolicy) *PutAutoScalingPolicyInput

SetAutoScalingPolicy sets the AutoScalingPolicy field's value.

func (*PutAutoScalingPolicyInput) SetClusterId

func (s *PutAutoScalingPolicyInput) SetClusterId(v string) *PutAutoScalingPolicyInput

SetClusterId sets the ClusterId field's value.

func (*PutAutoScalingPolicyInput) SetInstanceGroupId

func (s *PutAutoScalingPolicyInput) SetInstanceGroupId(v string) *PutAutoScalingPolicyInput

SetInstanceGroupId sets the InstanceGroupId field's value.

func (PutAutoScalingPolicyInput) String

func (s PutAutoScalingPolicyInput) String() string

String returns the string representation

func (*PutAutoScalingPolicyInput) Validate

func (s *PutAutoScalingPolicyInput) Validate() error

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

type PutAutoScalingPolicyOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/PutAutoScalingPolicyOutput

type PutAutoScalingPolicyOutput struct {

    // The automatic scaling policy definition.
    AutoScalingPolicy *AutoScalingPolicyDescription `type:"structure"`

    // Specifies the ID of a cluster. The instance group to which the automatic
    // scaling policy is applied is within this cluster.
    ClusterId *string `type:"string"`

    // Specifies the ID of the instance group to which the scaling policy is applied.
    InstanceGroupId *string `type:"string"`
    // contains filtered or unexported fields
}

func (PutAutoScalingPolicyOutput) GoString

func (s PutAutoScalingPolicyOutput) GoString() string

GoString returns the string representation

func (*PutAutoScalingPolicyOutput) SetAutoScalingPolicy

func (s *PutAutoScalingPolicyOutput) SetAutoScalingPolicy(v *AutoScalingPolicyDescription) *PutAutoScalingPolicyOutput

SetAutoScalingPolicy sets the AutoScalingPolicy field's value.

func (*PutAutoScalingPolicyOutput) SetClusterId

func (s *PutAutoScalingPolicyOutput) SetClusterId(v string) *PutAutoScalingPolicyOutput

SetClusterId sets the ClusterId field's value.

func (*PutAutoScalingPolicyOutput) SetInstanceGroupId

func (s *PutAutoScalingPolicyOutput) SetInstanceGroupId(v string) *PutAutoScalingPolicyOutput

SetInstanceGroupId sets the InstanceGroupId field's value.

func (PutAutoScalingPolicyOutput) String

func (s PutAutoScalingPolicyOutput) String() string

String returns the string representation

type RemoveAutoScalingPolicyInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RemoveAutoScalingPolicyInput

type RemoveAutoScalingPolicyInput struct {

    // Specifies the ID of a cluster. The instance group to which the automatic
    // scaling policy is applied is within this cluster.
    //
    // ClusterId is a required field
    ClusterId *string `type:"string" required:"true"`

    // Specifies the ID of the instance group to which the scaling policy is applied.
    //
    // InstanceGroupId is a required field
    InstanceGroupId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (RemoveAutoScalingPolicyInput) GoString

func (s RemoveAutoScalingPolicyInput) GoString() string

GoString returns the string representation

func (*RemoveAutoScalingPolicyInput) SetClusterId

func (s *RemoveAutoScalingPolicyInput) SetClusterId(v string) *RemoveAutoScalingPolicyInput

SetClusterId sets the ClusterId field's value.

func (*RemoveAutoScalingPolicyInput) SetInstanceGroupId

func (s *RemoveAutoScalingPolicyInput) SetInstanceGroupId(v string) *RemoveAutoScalingPolicyInput

SetInstanceGroupId sets the InstanceGroupId field's value.

func (RemoveAutoScalingPolicyInput) String

func (s RemoveAutoScalingPolicyInput) String() string

String returns the string representation

func (*RemoveAutoScalingPolicyInput) Validate

func (s *RemoveAutoScalingPolicyInput) Validate() error

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

type RemoveAutoScalingPolicyOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RemoveAutoScalingPolicyOutput

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

func (RemoveAutoScalingPolicyOutput) GoString

func (s RemoveAutoScalingPolicyOutput) GoString() string

GoString returns the string representation

func (RemoveAutoScalingPolicyOutput) String

func (s RemoveAutoScalingPolicyOutput) String() string

String returns the string representation

type RemoveTagsInput

This input identifies a cluster and a list of tags to remove. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RemoveTagsInput

type RemoveTagsInput struct {

    // The Amazon EMR resource identifier from which tags will be removed. This
    // value must be a cluster identifier.
    //
    // ResourceId is a required field
    ResourceId *string `type:"string" required:"true"`

    // A list of tag keys to remove from a resource.
    //
    // TagKeys is a required field
    TagKeys []*string `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (RemoveTagsInput) GoString

func (s RemoveTagsInput) GoString() string

GoString returns the string representation

func (*RemoveTagsInput) SetResourceId

func (s *RemoveTagsInput) SetResourceId(v string) *RemoveTagsInput

SetResourceId sets the ResourceId field's value.

func (*RemoveTagsInput) SetTagKeys

func (s *RemoveTagsInput) SetTagKeys(v []*string) *RemoveTagsInput

SetTagKeys sets the TagKeys field's value.

func (RemoveTagsInput) String

func (s RemoveTagsInput) String() string

String returns the string representation

func (*RemoveTagsInput) Validate

func (s *RemoveTagsInput) Validate() error

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

type RemoveTagsOutput

This output indicates the result of removing tags from a resource. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RemoveTagsOutput

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

func (RemoveTagsOutput) GoString

func (s RemoveTagsOutput) GoString() string

GoString returns the string representation

func (RemoveTagsOutput) String

func (s RemoveTagsOutput) String() string

String returns the string representation

type RunJobFlowInput

Input to the RunJobFlow operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RunJobFlowInput

type RunJobFlowInput struct {

    // A JSON string for selecting additional features.
    AdditionalInfo *string `type:"string"`

    // For Amazon EMR releases 3.x and 2.x. For Amazon EMR releases 4.x and greater,
    // use ReleaseLabel.
    //
    // The version of the Amazon Machine Image (AMI) to use when launching Amazon
    // EC2 instances in the job flow. The following values are valid:
    //
    //    * The version number of the AMI to use, for example, "2.0."
    //
    // If the AMI supports multiple versions of Hadoop (for example, AMI 1.0 supports
    // both Hadoop 0.18 and 0.20) you can use the JobFlowInstancesConfigHadoopVersion
    // parameter to modify the version of Hadoop from the defaults shown above.
    //
    // For details about the AMI versions currently supported by Amazon Elastic
    // MapReduce, see AMI Versions Supported in Elastic MapReduce (http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/EnvironmentConfig_AMIVersion.html#ami-versions-supported)
    // in the Amazon Elastic MapReduce Developer Guide.
    //
    // Previously, the EMR AMI version API parameter options allowed you to use
    // latest for the latest AMI version rather than specify a numerical value.
    // Some regions no longer support this deprecated option as they only have a
    // newer release label version of EMR, which requires you to specify an EMR
    // release label release (EMR 4.x or later).
    AmiVersion *string `type:"string"`

    // Amazon EMR releases 4.x or later.
    //
    // A list of applications for the cluster. Valid values are: "Hadoop", "Hive",
    // "Mahout", "Pig", and "Spark." They are case insensitive.
    Applications []*Application `type:"list"`

    // An IAM role for automatic scaling policies. The default role is EMR_AutoScaling_DefaultRole.
    // The IAM role provides permissions that the automatic scaling feature requires
    // to launch and terminate EC2 instances in an instance group.
    AutoScalingRole *string `type:"string"`

    // A list of bootstrap actions to run before Hadoop starts on the cluster nodes.
    BootstrapActions []*BootstrapActionConfig `type:"list"`

    // Amazon EMR releases 4.x or later.
    //
    // The list of configurations supplied for the EMR cluster you are creating.
    Configurations []*Configuration `type:"list"`

    // A specification of the number and type of Amazon EC2 instances.
    //
    // Instances is a required field
    Instances *JobFlowInstancesConfig `type:"structure" required:"true"`

    // Also called instance profile and EC2 role. An IAM role for an EMR cluster.
    // The EC2 instances of the cluster assume this role. The default role is EMR_EC2_DefaultRole.
    // In order to use the default role, you must have already created it using
    // the CLI or console.
    JobFlowRole *string `type:"string"`

    // The location in Amazon S3 to write the log files of the job flow. If a value
    // is not provided, logs are not created.
    LogUri *string `type:"string"`

    // The name of the job flow.
    //
    // Name is a required field
    Name *string `type:"string" required:"true"`

    // For Amazon EMR releases 3.x and 2.x. For Amazon EMR releases 4.x and greater,
    // use Applications.
    //
    // A list of strings that indicates third-party software to use with the job
    // flow that accepts a user argument list. EMR accepts and forwards the argument
    // list to the corresponding installation script as bootstrap action arguments.
    // For more information, see "Launch a Job Flow on the MapR Distribution for
    // Hadoop" in the Amazon EMR Developer Guide (http://docs.aws.amazon.com/http:/docs.aws.amazon.com/emr/latest/DeveloperGuide/emr-dg.pdf).
    // Supported values are:
    //
    //    * "mapr-m3" - launch the cluster using MapR M3 Edition.
    //
    //    * "mapr-m5" - launch the cluster using MapR M5 Edition.
    //
    //    * "mapr" with the user arguments specifying "--edition,m3" or "--edition,m5"
    //    - launch the job flow using MapR M3 or M5 Edition respectively.
    //
    //    * "mapr-m7" - launch the cluster using MapR M7 Edition.
    //
    //    * "hunk" - launch the cluster with the Hunk Big Data Analtics Platform.
    //
    //    * "hue"- launch the cluster with Hue installed.
    //
    //    * "spark" - launch the cluster with Apache Spark installed.
    //
    //    * "ganglia" - launch the cluster with the Ganglia Monitoring System installed.
    NewSupportedProducts []*SupportedProductConfig `type:"list"`

    // Amazon EMR releases 4.x or later.
    //
    // The release label for the Amazon EMR release. For Amazon EMR 3.x and 2.x
    // AMIs, use amiVersion instead instead of ReleaseLabel.
    ReleaseLabel *string `type:"string"`

    // Specifies the way that individual Amazon EC2 instances terminate when an
    // automatic scale-in activity occurs or an instance group is resized. TERMINATE_AT_INSTANCE_HOUR
    // indicates that Amazon EMR terminates nodes at the instance-hour boundary,
    // regardless of when the request to terminate the instance was submitted. This
    // option is only available with Amazon EMR 5.1.0 and later and is the default
    // for clusters created using that version. TERMINATE_AT_TASK_COMPLETION indicates
    // that Amazon EMR blacklists and drains tasks from nodes before terminating
    // the Amazon EC2 instances, regardless of the instance-hour boundary. With
    // either behavior, Amazon EMR removes the least active nodes first and blocks
    // instance termination if it could lead to HDFS corruption. TERMINATE_AT_TASK_COMPLETION
    // available only in Amazon EMR version 4.1.0 and later, and is the default
    // for versions of Amazon EMR earlier than 5.1.0.
    ScaleDownBehavior *string `type:"string" enum:"ScaleDownBehavior"`

    // The name of a security configuration to apply to the cluster.
    SecurityConfiguration *string `type:"string"`

    // The IAM role that will be assumed by the Amazon EMR service to access AWS
    // resources on your behalf.
    ServiceRole *string `type:"string"`

    // A list of steps to run.
    Steps []*StepConfig `type:"list"`

    // For Amazon EMR releases 3.x and 2.x. For Amazon EMR releases 4.x and greater,
    // use Applications.
    //
    // A list of strings that indicates third-party software to use. For more information,
    // see Use Third Party Applications with Amazon EMR (http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/emr-supported-products.html).
    // Currently supported values are:
    //
    //    * "mapr-m3" - launch the job flow using MapR M3 Edition.
    //
    //    * "mapr-m5" - launch the job flow using MapR M5 Edition.
    SupportedProducts []*string `type:"list"`

    // A list of tags to associate with a cluster and propagate to Amazon EC2 instances.
    Tags []*Tag `type:"list"`

    // Whether the cluster is visible to all IAM users of the AWS account associated
    // with the cluster. If this value is set to true, all IAM users of that AWS
    // account can view and (if they have the proper policy permissions set) manage
    // the cluster. If it is set to false, only the IAM user that created the cluster
    // can view and manage it.
    VisibleToAllUsers *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (RunJobFlowInput) GoString

func (s RunJobFlowInput) GoString() string

GoString returns the string representation

func (*RunJobFlowInput) SetAdditionalInfo

func (s *RunJobFlowInput) SetAdditionalInfo(v string) *RunJobFlowInput

SetAdditionalInfo sets the AdditionalInfo field's value.

func (*RunJobFlowInput) SetAmiVersion

func (s *RunJobFlowInput) SetAmiVersion(v string) *RunJobFlowInput

SetAmiVersion sets the AmiVersion field's value.

func (*RunJobFlowInput) SetApplications

func (s *RunJobFlowInput) SetApplications(v []*Application) *RunJobFlowInput

SetApplications sets the Applications field's value.

func (*RunJobFlowInput) SetAutoScalingRole

func (s *RunJobFlowInput) SetAutoScalingRole(v string) *RunJobFlowInput

SetAutoScalingRole sets the AutoScalingRole field's value.

func (*RunJobFlowInput) SetBootstrapActions

func (s *RunJobFlowInput) SetBootstrapActions(v []*BootstrapActionConfig) *RunJobFlowInput

SetBootstrapActions sets the BootstrapActions field's value.

func (*RunJobFlowInput) SetConfigurations

func (s *RunJobFlowInput) SetConfigurations(v []*Configuration) *RunJobFlowInput

SetConfigurations sets the Configurations field's value.

func (*RunJobFlowInput) SetInstances

func (s *RunJobFlowInput) SetInstances(v *JobFlowInstancesConfig) *RunJobFlowInput

SetInstances sets the Instances field's value.

func (*RunJobFlowInput) SetJobFlowRole

func (s *RunJobFlowInput) SetJobFlowRole(v string) *RunJobFlowInput

SetJobFlowRole sets the JobFlowRole field's value.

func (*RunJobFlowInput) SetLogUri

func (s *RunJobFlowInput) SetLogUri(v string) *RunJobFlowInput

SetLogUri sets the LogUri field's value.

func (*RunJobFlowInput) SetName

func (s *RunJobFlowInput) SetName(v string) *RunJobFlowInput

SetName sets the Name field's value.

func (*RunJobFlowInput) SetNewSupportedProducts

func (s *RunJobFlowInput) SetNewSupportedProducts(v []*SupportedProductConfig) *RunJobFlowInput

SetNewSupportedProducts sets the NewSupportedProducts field's value.

func (*RunJobFlowInput) SetReleaseLabel

func (s *RunJobFlowInput) SetReleaseLabel(v string) *RunJobFlowInput

SetReleaseLabel sets the ReleaseLabel field's value.

func (*RunJobFlowInput) SetScaleDownBehavior

func (s *RunJobFlowInput) SetScaleDownBehavior(v string) *RunJobFlowInput

SetScaleDownBehavior sets the ScaleDownBehavior field's value.

func (*RunJobFlowInput) SetSecurityConfiguration

func (s *RunJobFlowInput) SetSecurityConfiguration(v string) *RunJobFlowInput

SetSecurityConfiguration sets the SecurityConfiguration field's value.

func (*RunJobFlowInput) SetServiceRole

func (s *RunJobFlowInput) SetServiceRole(v string) *RunJobFlowInput

SetServiceRole sets the ServiceRole field's value.

func (*RunJobFlowInput) SetSteps

func (s *RunJobFlowInput) SetSteps(v []*StepConfig) *RunJobFlowInput

SetSteps sets the Steps field's value.

func (*RunJobFlowInput) SetSupportedProducts

func (s *RunJobFlowInput) SetSupportedProducts(v []*string) *RunJobFlowInput

SetSupportedProducts sets the SupportedProducts field's value.

func (*RunJobFlowInput) SetTags

func (s *RunJobFlowInput) SetTags(v []*Tag) *RunJobFlowInput

SetTags sets the Tags field's value.

func (*RunJobFlowInput) SetVisibleToAllUsers

func (s *RunJobFlowInput) SetVisibleToAllUsers(v bool) *RunJobFlowInput

SetVisibleToAllUsers sets the VisibleToAllUsers field's value.

func (RunJobFlowInput) String

func (s RunJobFlowInput) String() string

String returns the string representation

func (*RunJobFlowInput) Validate

func (s *RunJobFlowInput) Validate() error

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

type RunJobFlowOutput

The result of the RunJobFlow operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RunJobFlowOutput

type RunJobFlowOutput struct {

    // An unique identifier for the job flow.
    JobFlowId *string `type:"string"`
    // contains filtered or unexported fields
}

func (RunJobFlowOutput) GoString

func (s RunJobFlowOutput) GoString() string

GoString returns the string representation

func (*RunJobFlowOutput) SetJobFlowId

func (s *RunJobFlowOutput) SetJobFlowId(v string) *RunJobFlowOutput

SetJobFlowId sets the JobFlowId field's value.

func (RunJobFlowOutput) String

func (s RunJobFlowOutput) String() string

String returns the string representation

type ScalingAction

The type of adjustment the automatic scaling activity makes when triggered, and the periodicity of the adjustment. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ScalingAction

type ScalingAction struct {

    // Not available for instance groups. Instance groups use the market type specified
    // for the group.
    Market *string `type:"string" enum:"MarketType"`

    // The type of adjustment the automatic scaling activity makes when triggered,
    // and the periodicity of the adjustment.
    //
    // SimpleScalingPolicyConfiguration is a required field
    SimpleScalingPolicyConfiguration *SimpleScalingPolicyConfiguration `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ScalingAction) GoString

func (s ScalingAction) GoString() string

GoString returns the string representation

func (*ScalingAction) SetMarket

func (s *ScalingAction) SetMarket(v string) *ScalingAction

SetMarket sets the Market field's value.

func (*ScalingAction) SetSimpleScalingPolicyConfiguration

func (s *ScalingAction) SetSimpleScalingPolicyConfiguration(v *SimpleScalingPolicyConfiguration) *ScalingAction

SetSimpleScalingPolicyConfiguration sets the SimpleScalingPolicyConfiguration field's value.

func (ScalingAction) String

func (s ScalingAction) String() string

String returns the string representation

func (*ScalingAction) Validate

func (s *ScalingAction) Validate() error

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

type ScalingConstraints

The upper and lower EC2 instance limits for an automatic scaling policy. Automatic scaling activities triggered by automatic scaling rules will not cause an instance group to grow above or below these limits. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ScalingConstraints

type ScalingConstraints struct {

    // The upper boundary of EC2 instances in an instance group beyond which scaling
    // activities are not allowed to grow. Scale-out activities will not add instances
    // beyond this boundary.
    //
    // MaxCapacity is a required field
    MaxCapacity *int64 `type:"integer" required:"true"`

    // The lower boundary of EC2 instances in an instance group below which scaling
    // activities are not allowed to shrink. Scale-in activities will not terminate
    // instances below this boundary.
    //
    // MinCapacity is a required field
    MinCapacity *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (ScalingConstraints) GoString

func (s ScalingConstraints) GoString() string

GoString returns the string representation

func (*ScalingConstraints) SetMaxCapacity

func (s *ScalingConstraints) SetMaxCapacity(v int64) *ScalingConstraints

SetMaxCapacity sets the MaxCapacity field's value.

func (*ScalingConstraints) SetMinCapacity

func (s *ScalingConstraints) SetMinCapacity(v int64) *ScalingConstraints

SetMinCapacity sets the MinCapacity field's value.

func (ScalingConstraints) String

func (s ScalingConstraints) String() string

String returns the string representation

func (*ScalingConstraints) Validate

func (s *ScalingConstraints) Validate() error

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

type ScalingRule

A scale-in or scale-out rule that defines scaling activity, including the CloudWatch metric alarm that triggers activity, how EC2 instances are added or removed, and the periodicity of adjustments. The automatic scaling policy for an instance group can comprise one or more automatic scaling rules. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ScalingRule

type ScalingRule struct {

    // The conditions that trigger an automatic scaling activity.
    //
    // Action is a required field
    Action *ScalingAction `type:"structure" required:"true"`

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

    // The name used to identify an automatic scaling rule. Rule names must be unique
    // within a scaling policy.
    //
    // Name is a required field
    Name *string `type:"string" required:"true"`

    // The CloudWatch alarm definition that determines when automatic scaling activity
    // is triggered.
    //
    // Trigger is a required field
    Trigger *ScalingTrigger `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ScalingRule) GoString

func (s ScalingRule) GoString() string

GoString returns the string representation

func (*ScalingRule) SetAction

func (s *ScalingRule) SetAction(v *ScalingAction) *ScalingRule

SetAction sets the Action field's value.

func (*ScalingRule) SetDescription

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

SetDescription sets the Description field's value.

func (*ScalingRule) SetName

func (s *ScalingRule) SetName(v string) *ScalingRule

SetName sets the Name field's value.

func (*ScalingRule) SetTrigger

func (s *ScalingRule) SetTrigger(v *ScalingTrigger) *ScalingRule

SetTrigger sets the Trigger field's value.

func (ScalingRule) String

func (s ScalingRule) String() string

String returns the string representation

func (*ScalingRule) Validate

func (s *ScalingRule) Validate() error

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

type ScalingTrigger

The conditions that trigger an automatic scaling activity. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ScalingTrigger

type ScalingTrigger struct {

    // The definition of a CloudWatch metric alarm. When the defined alarm conditions
    // are met along with other trigger parameters, scaling activity begins.
    //
    // CloudWatchAlarmDefinition is a required field
    CloudWatchAlarmDefinition *CloudWatchAlarmDefinition `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ScalingTrigger) GoString

func (s ScalingTrigger) GoString() string

GoString returns the string representation

func (*ScalingTrigger) SetCloudWatchAlarmDefinition

func (s *ScalingTrigger) SetCloudWatchAlarmDefinition(v *CloudWatchAlarmDefinition) *ScalingTrigger

SetCloudWatchAlarmDefinition sets the CloudWatchAlarmDefinition field's value.

func (ScalingTrigger) String

func (s ScalingTrigger) String() string

String returns the string representation

func (*ScalingTrigger) Validate

func (s *ScalingTrigger) Validate() error

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

type ScriptBootstrapActionConfig

Configuration of the script to run during a bootstrap action. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ScriptBootstrapActionConfig

type ScriptBootstrapActionConfig struct {

    // A list of command line arguments to pass to the bootstrap action script.
    Args []*string `type:"list"`

    // Location of the script to run during a bootstrap action. Can be either a
    // location in Amazon S3 or on a local file system.
    //
    // Path is a required field
    Path *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ScriptBootstrapActionConfig) GoString

func (s ScriptBootstrapActionConfig) GoString() string

GoString returns the string representation

func (*ScriptBootstrapActionConfig) SetArgs

func (s *ScriptBootstrapActionConfig) SetArgs(v []*string) *ScriptBootstrapActionConfig

SetArgs sets the Args field's value.

func (*ScriptBootstrapActionConfig) SetPath

func (s *ScriptBootstrapActionConfig) SetPath(v string) *ScriptBootstrapActionConfig

SetPath sets the Path field's value.

func (ScriptBootstrapActionConfig) String

func (s ScriptBootstrapActionConfig) String() string

String returns the string representation

func (*ScriptBootstrapActionConfig) Validate

func (s *ScriptBootstrapActionConfig) Validate() error

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

type SecurityConfigurationSummary

The creation date and time, and name, of a security configuration. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/SecurityConfigurationSummary

type SecurityConfigurationSummary struct {

    // The date and time the security configuration was created.
    CreationDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The name of the security configuration.
    Name *string `type:"string"`
    // contains filtered or unexported fields
}

func (SecurityConfigurationSummary) GoString

func (s SecurityConfigurationSummary) GoString() string

GoString returns the string representation

func (*SecurityConfigurationSummary) SetCreationDateTime

func (s *SecurityConfigurationSummary) SetCreationDateTime(v time.Time) *SecurityConfigurationSummary

SetCreationDateTime sets the CreationDateTime field's value.

func (*SecurityConfigurationSummary) SetName

func (s *SecurityConfigurationSummary) SetName(v string) *SecurityConfigurationSummary

SetName sets the Name field's value.

func (SecurityConfigurationSummary) String

func (s SecurityConfigurationSummary) String() string

String returns the string representation

type SetTerminationProtectionInput

The input argument to the TerminationProtection operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/SetTerminationProtectionInput

type SetTerminationProtectionInput struct {

    // A list of strings that uniquely identify the clusters to protect. This identifier
    // is returned by RunJobFlow and can also be obtained from DescribeJobFlows
    // .
    //
    // JobFlowIds is a required field
    JobFlowIds []*string `type:"list" required:"true"`

    // A Boolean that indicates whether to protect the cluster and prevent the Amazon
    // EC2 instances in the cluster from shutting down due to API calls, user intervention,
    // or job-flow error.
    //
    // TerminationProtected is a required field
    TerminationProtected *bool `type:"boolean" required:"true"`
    // contains filtered or unexported fields
}

func (SetTerminationProtectionInput) GoString

func (s SetTerminationProtectionInput) GoString() string

GoString returns the string representation

func (*SetTerminationProtectionInput) SetJobFlowIds

func (s *SetTerminationProtectionInput) SetJobFlowIds(v []*string) *SetTerminationProtectionInput

SetJobFlowIds sets the JobFlowIds field's value.

func (*SetTerminationProtectionInput) SetTerminationProtected

func (s *SetTerminationProtectionInput) SetTerminationProtected(v bool) *SetTerminationProtectionInput

SetTerminationProtected sets the TerminationProtected field's value.

func (SetTerminationProtectionInput) String

func (s SetTerminationProtectionInput) String() string

String returns the string representation

func (*SetTerminationProtectionInput) Validate

func (s *SetTerminationProtectionInput) Validate() error

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

type SetTerminationProtectionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/SetTerminationProtectionOutput

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

func (SetTerminationProtectionOutput) GoString

func (s SetTerminationProtectionOutput) GoString() string

GoString returns the string representation

func (SetTerminationProtectionOutput) String

func (s SetTerminationProtectionOutput) String() string

String returns the string representation

type SetVisibleToAllUsersInput

The input to the SetVisibleToAllUsers action. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/SetVisibleToAllUsersInput

type SetVisibleToAllUsersInput struct {

    // Identifiers of the job flows to receive the new visibility setting.
    //
    // JobFlowIds is a required field
    JobFlowIds []*string `type:"list" required:"true"`

    // Whether the specified clusters are visible to all IAM users of the AWS account
    // associated with the cluster. If this value is set to True, all IAM users
    // of that AWS account can view and, if they have the proper IAM policy permissions
    // set, manage the clusters. If it is set to False, only the IAM user that created
    // a cluster can view and manage it.
    //
    // VisibleToAllUsers is a required field
    VisibleToAllUsers *bool `type:"boolean" required:"true"`
    // contains filtered or unexported fields
}

func (SetVisibleToAllUsersInput) GoString

func (s SetVisibleToAllUsersInput) GoString() string

GoString returns the string representation

func (*SetVisibleToAllUsersInput) SetJobFlowIds

func (s *SetVisibleToAllUsersInput) SetJobFlowIds(v []*string) *SetVisibleToAllUsersInput

SetJobFlowIds sets the JobFlowIds field's value.

func (*SetVisibleToAllUsersInput) SetVisibleToAllUsers

func (s *SetVisibleToAllUsersInput) SetVisibleToAllUsers(v bool) *SetVisibleToAllUsersInput

SetVisibleToAllUsers sets the VisibleToAllUsers field's value.

func (SetVisibleToAllUsersInput) String

func (s SetVisibleToAllUsersInput) String() string

String returns the string representation

func (*SetVisibleToAllUsersInput) Validate

func (s *SetVisibleToAllUsersInput) Validate() error

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

type SetVisibleToAllUsersOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/SetVisibleToAllUsersOutput

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

func (SetVisibleToAllUsersOutput) GoString

func (s SetVisibleToAllUsersOutput) GoString() string

GoString returns the string representation

func (SetVisibleToAllUsersOutput) String

func (s SetVisibleToAllUsersOutput) String() string

String returns the string representation

type ShrinkPolicy

Policy for customizing shrink operations. Allows configuration of decommissioning timeout and targeted instance shrinking. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ShrinkPolicy

type ShrinkPolicy struct {

    // The desired timeout for decommissioning an instance. Overrides the default
    // YARN decommissioning timeout.
    DecommissionTimeout *int64 `type:"integer"`

    // Custom policy for requesting termination protection or termination of specific
    // instances when shrinking an instance group.
    InstanceResizePolicy *InstanceResizePolicy `type:"structure"`
    // contains filtered or unexported fields
}

func (ShrinkPolicy) GoString

func (s ShrinkPolicy) GoString() string

GoString returns the string representation

func (*ShrinkPolicy) SetDecommissionTimeout

func (s *ShrinkPolicy) SetDecommissionTimeout(v int64) *ShrinkPolicy

SetDecommissionTimeout sets the DecommissionTimeout field's value.

func (*ShrinkPolicy) SetInstanceResizePolicy

func (s *ShrinkPolicy) SetInstanceResizePolicy(v *InstanceResizePolicy) *ShrinkPolicy

SetInstanceResizePolicy sets the InstanceResizePolicy field's value.

func (ShrinkPolicy) String

func (s ShrinkPolicy) String() string

String returns the string representation

type SimpleScalingPolicyConfiguration

An automatic scaling configuration, which describes how the policy adds or removes instances, the cooldown period, and the number of EC2 instances that will be added each time the CloudWatch metric alarm condition is satisfied. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/SimpleScalingPolicyConfiguration

type SimpleScalingPolicyConfiguration struct {

    // The way in which EC2 instances are added (if ScalingAdjustment is a positive
    // number) or terminated (if ScalingAdjustment is a negative number) each time
    // the scaling activity is triggered. CHANGE_IN_CAPACITY is the default. CHANGE_IN_CAPACITY
    // indicates that the EC2 instance count increments or decrements by ScalingAdjustment,
    // which should be expressed as an integer. PERCENT_CHANGE_IN_CAPACITY indicates
    // the instance count increments or decrements by the percentage specified by
    // ScalingAdjustment, which should be expressed as a decimal. For example, 0.20
    // indicates an increase in 20% increments of cluster capacity. EXACT_CAPACITY
    // indicates the scaling activity results in an instance group with the number
    // of EC2 instances specified by ScalingAdjustment, which should be expressed
    // as a positive integer.
    AdjustmentType *string `type:"string" enum:"AdjustmentType"`

    // The amount of time, in seconds, after a scaling activity completes before
    // any further trigger-related scaling activities can start. The default value
    // is 0.
    CoolDown *int64 `type:"integer"`

    // The amount by which to scale in or scale out, based on the specified AdjustmentType.
    // A positive value adds to the instance group's EC2 instance count while a
    // negative number removes instances. If AdjustmentType is set to EXACT_CAPACITY,
    // the number should only be a positive integer. If AdjustmentType is set to
    // PERCENT_CHANGE_IN_CAPACITY, the value should express the percentage as a
    // decimal. For example, -0.20 indicates a decrease in 20% increments of cluster
    // capacity.
    //
    // ScalingAdjustment is a required field
    ScalingAdjustment *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (SimpleScalingPolicyConfiguration) GoString

func (s SimpleScalingPolicyConfiguration) GoString() string

GoString returns the string representation

func (*SimpleScalingPolicyConfiguration) SetAdjustmentType

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

SetAdjustmentType sets the AdjustmentType field's value.

func (*SimpleScalingPolicyConfiguration) SetCoolDown

func (s *SimpleScalingPolicyConfiguration) SetCoolDown(v int64) *SimpleScalingPolicyConfiguration

SetCoolDown sets the CoolDown field's value.

func (*SimpleScalingPolicyConfiguration) SetScalingAdjustment

func (s *SimpleScalingPolicyConfiguration) SetScalingAdjustment(v int64) *SimpleScalingPolicyConfiguration

SetScalingAdjustment sets the ScalingAdjustment field's value.

func (SimpleScalingPolicyConfiguration) String

func (s SimpleScalingPolicyConfiguration) String() string

String returns the string representation

func (*SimpleScalingPolicyConfiguration) Validate

func (s *SimpleScalingPolicyConfiguration) Validate() error

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

type SpotProvisioningSpecification

The launch specification for Spot instances in the instance fleet, which determines the defined duration and provisioning timeout behavior.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/SpotProvisioningSpecification

type SpotProvisioningSpecification struct {

    // The defined duration for Spot instances (also known as Spot blocks) in minutes.
    // When specified, the Spot instance does not terminate before the defined duration
    // expires, and defined duration pricing for Spot instances applies. Valid values
    // are 60, 120, 180, 240, 300, or 360. The duration period starts as soon as
    // a Spot instance receives its instance ID. At the end of the duration, Amazon
    // EC2 marks the Spot instance for termination and provides a Spot instance
    // termination notice, which gives the instance a two-minute warning before
    // it terminates.
    BlockDurationMinutes *int64 `type:"integer"`

    // The action to take when TargetSpotCapacity has not been fulfilled when the
    // TimeoutDurationMinutes has expired. Spot instances are not uprovisioned within
    // the Spot provisioining timeout. Valid values are TERMINATE_CLUSTER and SWITCH_TO_ON_DEMAND
    // to fulfill the remaining capacity.
    //
    // TimeoutAction is a required field
    TimeoutAction *string `type:"string" required:"true" enum:"SpotProvisioningTimeoutAction"`

    // The spot provisioning timeout period in minutes. If Spot instances are not
    // provisioned within this time period, the TimeOutAction is taken. Minimum
    // value is 5 and maximum value is 1440. The timeout applies only during initial
    // provisioning, when the cluster is first created.
    //
    // TimeoutDurationMinutes is a required field
    TimeoutDurationMinutes *int64 `type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (SpotProvisioningSpecification) GoString

func (s SpotProvisioningSpecification) GoString() string

GoString returns the string representation

func (*SpotProvisioningSpecification) SetBlockDurationMinutes

func (s *SpotProvisioningSpecification) SetBlockDurationMinutes(v int64) *SpotProvisioningSpecification

SetBlockDurationMinutes sets the BlockDurationMinutes field's value.

func (*SpotProvisioningSpecification) SetTimeoutAction

func (s *SpotProvisioningSpecification) SetTimeoutAction(v string) *SpotProvisioningSpecification

SetTimeoutAction sets the TimeoutAction field's value.

func (*SpotProvisioningSpecification) SetTimeoutDurationMinutes

func (s *SpotProvisioningSpecification) SetTimeoutDurationMinutes(v int64) *SpotProvisioningSpecification

SetTimeoutDurationMinutes sets the TimeoutDurationMinutes field's value.

func (SpotProvisioningSpecification) String

func (s SpotProvisioningSpecification) String() string

String returns the string representation

func (*SpotProvisioningSpecification) Validate

func (s *SpotProvisioningSpecification) Validate() error

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

type Step

This represents a step in a cluster. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/Step

type Step struct {

    // This specifies what action to take when the cluster step fails. Possible
    // values are TERMINATE_CLUSTER, CANCEL_AND_WAIT, and CONTINUE.
    ActionOnFailure *string `type:"string" enum:"ActionOnFailure"`

    // The Hadoop job configuration of the cluster step.
    Config *HadoopStepConfig `type:"structure"`

    // The identifier of the cluster step.
    Id *string `type:"string"`

    // The name of the cluster step.
    Name *string `type:"string"`

    // The current execution status details of the cluster step.
    Status *StepStatus `type:"structure"`
    // contains filtered or unexported fields
}

func (Step) GoString

func (s Step) GoString() string

GoString returns the string representation

func (*Step) SetActionOnFailure

func (s *Step) SetActionOnFailure(v string) *Step

SetActionOnFailure sets the ActionOnFailure field's value.

func (*Step) SetConfig

func (s *Step) SetConfig(v *HadoopStepConfig) *Step

SetConfig sets the Config field's value.

func (*Step) SetId

func (s *Step) SetId(v string) *Step

SetId sets the Id field's value.

func (*Step) SetName

func (s *Step) SetName(v string) *Step

SetName sets the Name field's value.

func (*Step) SetStatus

func (s *Step) SetStatus(v *StepStatus) *Step

SetStatus sets the Status field's value.

func (Step) String

func (s Step) String() string

String returns the string representation

type StepConfig

Specification of a cluster (job flow) step. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/StepConfig

type StepConfig struct {

    // The action to take if the step fails.
    ActionOnFailure *string `type:"string" enum:"ActionOnFailure"`

    // The JAR file used for the step.
    //
    // HadoopJarStep is a required field
    HadoopJarStep *HadoopJarStepConfig `type:"structure" required:"true"`

    // The name of the step.
    //
    // Name is a required field
    Name *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (StepConfig) GoString

func (s StepConfig) GoString() string

GoString returns the string representation

func (*StepConfig) SetActionOnFailure

func (s *StepConfig) SetActionOnFailure(v string) *StepConfig

SetActionOnFailure sets the ActionOnFailure field's value.

func (*StepConfig) SetHadoopJarStep

func (s *StepConfig) SetHadoopJarStep(v *HadoopJarStepConfig) *StepConfig

SetHadoopJarStep sets the HadoopJarStep field's value.

func (*StepConfig) SetName

func (s *StepConfig) SetName(v string) *StepConfig

SetName sets the Name field's value.

func (StepConfig) String

func (s StepConfig) String() string

String returns the string representation

func (*StepConfig) Validate

func (s *StepConfig) Validate() error

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

type StepDetail

Combines the execution state and configuration of a step. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/StepDetail

type StepDetail struct {

    // The description of the step status.
    //
    // ExecutionStatusDetail is a required field
    ExecutionStatusDetail *StepExecutionStatusDetail `type:"structure" required:"true"`

    // The step configuration.
    //
    // StepConfig is a required field
    StepConfig *StepConfig `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (StepDetail) GoString

func (s StepDetail) GoString() string

GoString returns the string representation

func (*StepDetail) SetExecutionStatusDetail

func (s *StepDetail) SetExecutionStatusDetail(v *StepExecutionStatusDetail) *StepDetail

SetExecutionStatusDetail sets the ExecutionStatusDetail field's value.

func (*StepDetail) SetStepConfig

func (s *StepDetail) SetStepConfig(v *StepConfig) *StepDetail

SetStepConfig sets the StepConfig field's value.

func (StepDetail) String

func (s StepDetail) String() string

String returns the string representation

type StepExecutionStatusDetail

The execution state of a step. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/StepExecutionStatusDetail

type StepExecutionStatusDetail struct {

    // The creation date and time of the step.
    //
    // CreationDateTime is a required field
    CreationDateTime *time.Time `type:"timestamp" timestampFormat:"unix" required:"true"`

    // The completion date and time of the step.
    EndDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // A description of the step's current state.
    LastStateChangeReason *string `type:"string"`

    // The start date and time of the step.
    StartDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The state of the step.
    //
    // State is a required field
    State *string `type:"string" required:"true" enum:"StepExecutionState"`
    // contains filtered or unexported fields
}

func (StepExecutionStatusDetail) GoString

func (s StepExecutionStatusDetail) GoString() string

GoString returns the string representation

func (*StepExecutionStatusDetail) SetCreationDateTime

func (s *StepExecutionStatusDetail) SetCreationDateTime(v time.Time) *StepExecutionStatusDetail

SetCreationDateTime sets the CreationDateTime field's value.

func (*StepExecutionStatusDetail) SetEndDateTime

func (s *StepExecutionStatusDetail) SetEndDateTime(v time.Time) *StepExecutionStatusDetail

SetEndDateTime sets the EndDateTime field's value.

func (*StepExecutionStatusDetail) SetLastStateChangeReason

func (s *StepExecutionStatusDetail) SetLastStateChangeReason(v string) *StepExecutionStatusDetail

SetLastStateChangeReason sets the LastStateChangeReason field's value.

func (*StepExecutionStatusDetail) SetStartDateTime

func (s *StepExecutionStatusDetail) SetStartDateTime(v time.Time) *StepExecutionStatusDetail

SetStartDateTime sets the StartDateTime field's value.

func (*StepExecutionStatusDetail) SetState

func (s *StepExecutionStatusDetail) SetState(v string) *StepExecutionStatusDetail

SetState sets the State field's value.

func (StepExecutionStatusDetail) String

func (s StepExecutionStatusDetail) String() string

String returns the string representation

type StepStateChangeReason

The details of the step state change reason. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/StepStateChangeReason

type StepStateChangeReason struct {

    // The programmable code for the state change reason. Note: Currently, the service
    // provides no code for the state change.
    Code *string `type:"string" enum:"StepStateChangeReasonCode"`

    // The descriptive message for the state change reason.
    Message *string `type:"string"`
    // contains filtered or unexported fields
}

func (StepStateChangeReason) GoString

func (s StepStateChangeReason) GoString() string

GoString returns the string representation

func (*StepStateChangeReason) SetCode

func (s *StepStateChangeReason) SetCode(v string) *StepStateChangeReason

SetCode sets the Code field's value.

func (*StepStateChangeReason) SetMessage

func (s *StepStateChangeReason) SetMessage(v string) *StepStateChangeReason

SetMessage sets the Message field's value.

func (StepStateChangeReason) String

func (s StepStateChangeReason) String() string

String returns the string representation

type StepStatus

The execution status details of the cluster step. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/StepStatus

type StepStatus struct {

    // The details for the step failure including reason, message, and log file
    // path where the root cause was identified.
    FailureDetails *FailureDetails `type:"structure"`

    // The execution state of the cluster step.
    State *string `type:"string" enum:"StepState"`

    // The reason for the step execution status change.
    StateChangeReason *StepStateChangeReason `type:"structure"`

    // The timeline of the cluster step status over time.
    Timeline *StepTimeline `type:"structure"`
    // contains filtered or unexported fields
}

func (StepStatus) GoString

func (s StepStatus) GoString() string

GoString returns the string representation

func (*StepStatus) SetFailureDetails

func (s *StepStatus) SetFailureDetails(v *FailureDetails) *StepStatus

SetFailureDetails sets the FailureDetails field's value.

func (*StepStatus) SetState

func (s *StepStatus) SetState(v string) *StepStatus

SetState sets the State field's value.

func (*StepStatus) SetStateChangeReason

func (s *StepStatus) SetStateChangeReason(v *StepStateChangeReason) *StepStatus

SetStateChangeReason sets the StateChangeReason field's value.

func (*StepStatus) SetTimeline

func (s *StepStatus) SetTimeline(v *StepTimeline) *StepStatus

SetTimeline sets the Timeline field's value.

func (StepStatus) String

func (s StepStatus) String() string

String returns the string representation

type StepSummary

The summary of the cluster step. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/StepSummary

type StepSummary struct {

    // This specifies what action to take when the cluster step fails. Possible
    // values are TERMINATE_CLUSTER, CANCEL_AND_WAIT, and CONTINUE.
    ActionOnFailure *string `type:"string" enum:"ActionOnFailure"`

    // The Hadoop job configuration of the cluster step.
    Config *HadoopStepConfig `type:"structure"`

    // The identifier of the cluster step.
    Id *string `type:"string"`

    // The name of the cluster step.
    Name *string `type:"string"`

    // The current execution status details of the cluster step.
    Status *StepStatus `type:"structure"`
    // contains filtered or unexported fields
}

func (StepSummary) GoString

func (s StepSummary) GoString() string

GoString returns the string representation

func (*StepSummary) SetActionOnFailure

func (s *StepSummary) SetActionOnFailure(v string) *StepSummary

SetActionOnFailure sets the ActionOnFailure field's value.

func (*StepSummary) SetConfig

func (s *StepSummary) SetConfig(v *HadoopStepConfig) *StepSummary

SetConfig sets the Config field's value.

func (*StepSummary) SetId

func (s *StepSummary) SetId(v string) *StepSummary

SetId sets the Id field's value.

func (*StepSummary) SetName

func (s *StepSummary) SetName(v string) *StepSummary

SetName sets the Name field's value.

func (*StepSummary) SetStatus

func (s *StepSummary) SetStatus(v *StepStatus) *StepSummary

SetStatus sets the Status field's value.

func (StepSummary) String

func (s StepSummary) String() string

String returns the string representation

type StepTimeline

The timeline of the cluster step lifecycle. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/StepTimeline

type StepTimeline struct {

    // The date and time when the cluster step was created.
    CreationDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The date and time when the cluster step execution completed or failed.
    EndDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The date and time when the cluster step execution started.
    StartDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`
    // contains filtered or unexported fields
}

func (StepTimeline) GoString

func (s StepTimeline) GoString() string

GoString returns the string representation

func (*StepTimeline) SetCreationDateTime

func (s *StepTimeline) SetCreationDateTime(v time.Time) *StepTimeline

SetCreationDateTime sets the CreationDateTime field's value.

func (*StepTimeline) SetEndDateTime

func (s *StepTimeline) SetEndDateTime(v time.Time) *StepTimeline

SetEndDateTime sets the EndDateTime field's value.

func (*StepTimeline) SetStartDateTime

func (s *StepTimeline) SetStartDateTime(v time.Time) *StepTimeline

SetStartDateTime sets the StartDateTime field's value.

func (StepTimeline) String

func (s StepTimeline) String() string

String returns the string representation

type SupportedProductConfig

The list of supported product configurations which allow user-supplied arguments. EMR accepts these arguments and forwards them to the corresponding installation script as bootstrap action arguments. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/SupportedProductConfig

type SupportedProductConfig struct {

    // The list of user-supplied arguments.
    Args []*string `type:"list"`

    // The name of the product configuration.
    Name *string `type:"string"`
    // contains filtered or unexported fields
}

func (SupportedProductConfig) GoString

func (s SupportedProductConfig) GoString() string

GoString returns the string representation

func (*SupportedProductConfig) SetArgs

func (s *SupportedProductConfig) SetArgs(v []*string) *SupportedProductConfig

SetArgs sets the Args field's value.

func (*SupportedProductConfig) SetName

func (s *SupportedProductConfig) SetName(v string) *SupportedProductConfig

SetName sets the Name field's value.

func (SupportedProductConfig) String

func (s SupportedProductConfig) String() string

String returns the string representation

type Tag

A key/value pair containing user-defined metadata that you can associate with an Amazon EMR resource. Tags make it easier to associate clusters in various ways, such as grouping clusters to track your Amazon EMR resource allocation costs. For more information, see Tagging Amazon EMR Resources (http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/emr-plan-tags.html). Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/Tag

type Tag struct {

    // A user-defined key, which is the minimum required information for a valid
    // tag. For more information, see Tagging Amazon EMR Resources (http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/emr-plan-tags.html).
    Key *string `type:"string"`

    // A user-defined value, which is optional in a tag. For more information, see
    // Tagging Amazon EMR Resources (http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/emr-plan-tags.html).
    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) 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

type TerminateJobFlowsInput

Input to the TerminateJobFlows operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/TerminateJobFlowsInput

type TerminateJobFlowsInput struct {

    // A list of job flows to be shutdown.
    //
    // JobFlowIds is a required field
    JobFlowIds []*string `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (TerminateJobFlowsInput) GoString

func (s TerminateJobFlowsInput) GoString() string

GoString returns the string representation

func (*TerminateJobFlowsInput) SetJobFlowIds

func (s *TerminateJobFlowsInput) SetJobFlowIds(v []*string) *TerminateJobFlowsInput

SetJobFlowIds sets the JobFlowIds field's value.

func (TerminateJobFlowsInput) String

func (s TerminateJobFlowsInput) String() string

String returns the string representation

func (*TerminateJobFlowsInput) Validate

func (s *TerminateJobFlowsInput) Validate() error

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

type TerminateJobFlowsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/TerminateJobFlowsOutput

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

func (TerminateJobFlowsOutput) GoString

func (s TerminateJobFlowsOutput) GoString() string

GoString returns the string representation

func (TerminateJobFlowsOutput) String

func (s TerminateJobFlowsOutput) String() string

String returns the string representation

type VolumeSpecification

EBS volume specifications such as volume type, IOPS, and size (GiB) that will be requested for the EBS volume attached to an EC2 instance in the cluster. Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/VolumeSpecification

type VolumeSpecification struct {

    // The number of I/O operations per second (IOPS) that the volume supports.
    Iops *int64 `type:"integer"`

    // The volume size, in gibibytes (GiB). This can be a number from 1 - 1024.
    // If the volume type is EBS-optimized, the minimum value is 10.
    //
    // SizeInGB is a required field
    SizeInGB *int64 `type:"integer" required:"true"`

    // The volume type. Volume types supported are gp2, io1, standard.
    //
    // VolumeType is a required field
    VolumeType *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (VolumeSpecification) GoString

func (s VolumeSpecification) GoString() string

GoString returns the string representation

func (*VolumeSpecification) SetIops

func (s *VolumeSpecification) SetIops(v int64) *VolumeSpecification

SetIops sets the Iops field's value.

func (*VolumeSpecification) SetSizeInGB

func (s *VolumeSpecification) SetSizeInGB(v int64) *VolumeSpecification

SetSizeInGB sets the SizeInGB field's value.

func (*VolumeSpecification) SetVolumeType

func (s *VolumeSpecification) SetVolumeType(v string) *VolumeSpecification

SetVolumeType sets the VolumeType field's value.

func (VolumeSpecification) String

func (s VolumeSpecification) String() string

String returns the string representation

func (*VolumeSpecification) Validate

func (s *VolumeSpecification) Validate() error

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

Subdirectories

Name Synopsis
..
emriface Package emriface provides an interface to enable mocking the Amazon Elastic MapReduce service client for testing your code.