emr

package
v0.24.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 22, 2020 License: Apache-2.0 Imports: 9 Imported by: 46

Documentation

Overview

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

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 Amazon EMR with the SDK use the New function to create a new service client. With that client you can make API requests to the service. These clients are safe to use concurrently.

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

See aws.Config documentation for more information on configuring SDK clients. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config

See the Amazon EMR client for more information on creating client for this service. https://docs.aws.amazon.com/sdk-for-go/api/service/emr/#New

Index

Constants

View Source
const (
	ServiceName = "Amazon EMR"       // Service's name
	ServiceID   = "EMR"              // Service's identifier
	EndpointsID = "elasticmapreduce" // Service's Endpoint identifier
)
View Source
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"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type ActionOnFailure

type ActionOnFailure string
const (
	ActionOnFailureTerminateJobFlow ActionOnFailure = "TERMINATE_JOB_FLOW"
	ActionOnFailureTerminateCluster ActionOnFailure = "TERMINATE_CLUSTER"
	ActionOnFailureCancelAndWait    ActionOnFailure = "CANCEL_AND_WAIT"
	ActionOnFailureContinue         ActionOnFailure = "CONTINUE"
)

Enum values for ActionOnFailure

func (ActionOnFailure) MarshalValue added in v0.3.0

func (enum ActionOnFailure) MarshalValue() (string, error)

func (ActionOnFailure) MarshalValueBuf added in v0.3.0

func (enum ActionOnFailure) MarshalValueBuf(b []byte) ([]byte, error)

type 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) 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

type AddInstanceFleetOutput struct {

	// The Amazon Resource Name of the cluster.
	ClusterArn *string `min:"20" type:"string"`

	// 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) String

func (s AddInstanceFleetOutput) String() string

String returns the string representation

type AddInstanceFleetRequest

type AddInstanceFleetRequest struct {
	*aws.Request
	Input *AddInstanceFleetInput
	Copy  func(*AddInstanceFleetInput) AddInstanceFleetRequest
}

AddInstanceFleetRequest is the request type for the AddInstanceFleet API operation.

func (AddInstanceFleetRequest) Send

Send marshals and sends the AddInstanceFleet API request.

type AddInstanceFleetResponse added in v0.9.0

type AddInstanceFleetResponse struct {
	*AddInstanceFleetOutput
	// contains filtered or unexported fields
}

AddInstanceFleetResponse is the response type for the AddInstanceFleet API operation.

func (*AddInstanceFleetResponse) SDKResponseMetdata added in v0.9.0

func (r *AddInstanceFleetResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the AddInstanceFleet request.

type 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
}

Input to an AddInstanceGroups call.

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

type AddInstanceGroupsOutput struct {

	// The Amazon Resource Name of the cluster.
	ClusterArn *string `min:"20" type:"string"`

	// 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
}

Output from an AddInstanceGroups call.

func (AddInstanceGroupsOutput) String

func (s AddInstanceGroupsOutput) String() string

String returns the string representation

type AddInstanceGroupsRequest

type AddInstanceGroupsRequest struct {
	*aws.Request
	Input *AddInstanceGroupsInput
	Copy  func(*AddInstanceGroupsInput) AddInstanceGroupsRequest
}

AddInstanceGroupsRequest is the request type for the AddInstanceGroups API operation.

func (AddInstanceGroupsRequest) Send

Send marshals and sends the AddInstanceGroups API request.

type AddInstanceGroupsResponse added in v0.9.0

type AddInstanceGroupsResponse struct {
	*AddInstanceGroupsOutput
	// contains filtered or unexported fields
}

AddInstanceGroupsResponse is the response type for the AddInstanceGroups API operation.

func (*AddInstanceGroupsResponse) SDKResponseMetdata added in v0.9.0

func (r *AddInstanceGroupsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the AddInstanceGroups request.

type 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
}

The input argument to the AddJobFlowSteps operation.

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

type AddJobFlowStepsOutput struct {

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

The output for the AddJobFlowSteps operation.

func (AddJobFlowStepsOutput) String

func (s AddJobFlowStepsOutput) String() string

String returns the string representation

type AddJobFlowStepsRequest

type AddJobFlowStepsRequest struct {
	*aws.Request
	Input *AddJobFlowStepsInput
	Copy  func(*AddJobFlowStepsInput) AddJobFlowStepsRequest
}

AddJobFlowStepsRequest is the request type for the AddJobFlowSteps API operation.

func (AddJobFlowStepsRequest) Send

Send marshals and sends the AddJobFlowSteps API request.

type AddJobFlowStepsResponse added in v0.9.0

type AddJobFlowStepsResponse struct {
	*AddJobFlowStepsOutput
	// contains filtered or unexported fields
}

AddJobFlowStepsResponse is the response type for the AddJobFlowSteps API operation.

func (*AddJobFlowStepsResponse) SDKResponseMetdata added in v0.9.0

func (r *AddJobFlowStepsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the AddJobFlowSteps request.

type 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
}

This input identifies a cluster and a list of tags to attach.

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

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

This output indicates the result of adding tags to a resource.

func (AddTagsOutput) String

func (s AddTagsOutput) String() string

String returns the string representation

type AddTagsRequest

type AddTagsRequest struct {
	*aws.Request
	Input *AddTagsInput
	Copy  func(*AddTagsInput) AddTagsRequest
}

AddTagsRequest is the request type for the AddTags API operation.

func (AddTagsRequest) Send

Send marshals and sends the AddTags API request.

type AddTagsResponse added in v0.9.0

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

AddTagsResponse is the response type for the AddTags API operation.

func (*AddTagsResponse) SDKResponseMetdata added in v0.9.0

func (r *AddTagsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the AddTags request.

type AdjustmentType

type AdjustmentType string
const (
	AdjustmentTypeChangeInCapacity        AdjustmentType = "CHANGE_IN_CAPACITY"
	AdjustmentTypePercentChangeInCapacity AdjustmentType = "PERCENT_CHANGE_IN_CAPACITY"
	AdjustmentTypeExactCapacity           AdjustmentType = "EXACT_CAPACITY"
)

Enum values for AdjustmentType

func (AdjustmentType) MarshalValue added in v0.3.0

func (enum AdjustmentType) MarshalValue() (string, error)

func (AdjustmentType) MarshalValueBuf added in v0.3.0

func (enum AdjustmentType) MarshalValueBuf(b []byte) ([]byte, error)

type 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
}

With Amazon EMR release version 4.0 and later, the only accepted parameter is the application name. To pass arguments to applications, you use configuration classifications specified using configuration JSON objects. For more information, see Configuring Applications (https://docs.aws.amazon.com/emr/latest/ReleaseGuide/emr-configure-apps.html).

With earlier Amazon EMR releases, the 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.

func (Application) String

func (s Application) String() string

String returns the string representation

type 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
}

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.

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

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
}

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.

func (AutoScalingPolicyDescription) String

String returns the string representation

type AutoScalingPolicyState

type AutoScalingPolicyState string
const (
	AutoScalingPolicyStatePending   AutoScalingPolicyState = "PENDING"
	AutoScalingPolicyStateAttaching AutoScalingPolicyState = "ATTACHING"
	AutoScalingPolicyStateAttached  AutoScalingPolicyState = "ATTACHED"
	AutoScalingPolicyStateDetaching AutoScalingPolicyState = "DETACHING"
	AutoScalingPolicyStateDetached  AutoScalingPolicyState = "DETACHED"
	AutoScalingPolicyStateFailed    AutoScalingPolicyState = "FAILED"
)

Enum values for AutoScalingPolicyState

func (AutoScalingPolicyState) MarshalValue added in v0.3.0

func (enum AutoScalingPolicyState) MarshalValue() (string, error)

func (AutoScalingPolicyState) MarshalValueBuf added in v0.3.0

func (enum AutoScalingPolicyState) MarshalValueBuf(b []byte) ([]byte, error)

type 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 AutoScalingPolicyStateChangeReasonCode `type:"string" enum:"true"`

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

The reason for an AutoScalingPolicyStatus change.

func (AutoScalingPolicyStateChangeReason) String

String returns the string representation

type AutoScalingPolicyStateChangeReasonCode

type AutoScalingPolicyStateChangeReasonCode string
const (
	AutoScalingPolicyStateChangeReasonCodeUserRequest      AutoScalingPolicyStateChangeReasonCode = "USER_REQUEST"
	AutoScalingPolicyStateChangeReasonCodeProvisionFailure AutoScalingPolicyStateChangeReasonCode = "PROVISION_FAILURE"
	AutoScalingPolicyStateChangeReasonCodeCleanupFailure   AutoScalingPolicyStateChangeReasonCode = "CLEANUP_FAILURE"
)

Enum values for AutoScalingPolicyStateChangeReasonCode

func (AutoScalingPolicyStateChangeReasonCode) MarshalValue added in v0.3.0

func (enum AutoScalingPolicyStateChangeReasonCode) MarshalValue() (string, error)

func (AutoScalingPolicyStateChangeReasonCode) MarshalValueBuf added in v0.3.0

func (enum AutoScalingPolicyStateChangeReasonCode) MarshalValueBuf(b []byte) ([]byte, error)

type AutoScalingPolicyStatus

type AutoScalingPolicyStatus struct {

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

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

The status of an automatic scaling policy.

func (AutoScalingPolicyStatus) String

func (s AutoScalingPolicyStatus) String() string

String returns the string representation

type BlockPublicAccessConfiguration added in v0.11.0

type BlockPublicAccessConfiguration struct {

	// Indicates whether EMR block public access is enabled (true) or disabled (false).
	// By default, the value is false for accounts that have created EMR clusters
	// before July 2019. For accounts created after this, the default is true.
	//
	// BlockPublicSecurityGroupRules is a required field
	BlockPublicSecurityGroupRules *bool `type:"boolean" required:"true"`

	// Specifies ports and port ranges that are permitted to have security group
	// rules that allow inbound traffic from all public sources. For example, if
	// Port 23 (Telnet) is specified for PermittedPublicSecurityGroupRuleRanges,
	// Amazon EMR allows cluster creation if a security group associated with the
	// cluster has a rule that allows inbound traffic on Port 23 from IPv4 0.0.0.0/0
	// or IPv6 port ::/0 as the source.
	//
	// By default, Port 22, which is used for SSH access to the cluster EC2 instances,
	// is in the list of PermittedPublicSecurityGroupRuleRanges.
	PermittedPublicSecurityGroupRuleRanges []PortRange `type:"list"`
	// contains filtered or unexported fields
}

A configuration for Amazon EMR block public access. When BlockPublicSecurityGroupRules is set to true, Amazon EMR prevents cluster creation if one of the cluster's security groups has a rule that allows inbound traffic from 0.0.0.0/0 or ::/0 on a port, unless the port is specified as an exception using PermittedPublicSecurityGroupRuleRanges.

func (BlockPublicAccessConfiguration) String added in v0.11.0

String returns the string representation

func (*BlockPublicAccessConfiguration) Validate added in v0.11.0

func (s *BlockPublicAccessConfiguration) Validate() error

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

type BlockPublicAccessConfigurationMetadata added in v0.11.0

type BlockPublicAccessConfigurationMetadata struct {

	// The Amazon Resource Name that created or last modified the configuration.
	//
	// CreatedByArn is a required field
	CreatedByArn *string `min:"20" type:"string" required:"true"`

	// The date and time that the configuration was created.
	//
	// CreationDateTime is a required field
	CreationDateTime *time.Time `type:"timestamp" required:"true"`
	// contains filtered or unexported fields
}

Properties that describe the AWS principal that created the BlockPublicAccessConfiguration using the PutBlockPublicAccessConfiguration action as well as the date and time that the configuration was created. Each time a configuration for block public access is updated, Amazon EMR updates this metadata.

func (BlockPublicAccessConfigurationMetadata) String added in v0.11.0

String returns the string representation

type 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
}

Configuration of a bootstrap action.

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

type BootstrapActionDetail struct {

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

Reports the configuration of a bootstrap action in a cluster (job flow).

func (BootstrapActionDetail) String

func (s BootstrapActionDetail) String() string

String returns the string representation

type 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 CancelStepsRequestStatus `type:"string" enum:"true"`

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

Specification of the status of a CancelSteps request. Available only in Amazon EMR version 4.8.0 and later, excluding version 5.0.0.

func (CancelStepsInfo) String

func (s CancelStepsInfo) String() string

String returns the string representation

type CancelStepsInput

type CancelStepsInput struct {

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

	// The option to choose for cancelling RUNNING steps. By default, the value
	// is SEND_INTERRUPT.
	StepCancellationOption StepCancellationOption `type:"string" enum:"true"`

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

The input argument to the CancelSteps operation.

func (CancelStepsInput) String

func (s CancelStepsInput) String() string

String returns the string representation

func (*CancelStepsInput) Validate added in v0.18.0

func (s *CancelStepsInput) Validate() error

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

type 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
}

The output for the CancelSteps operation.

func (CancelStepsOutput) String

func (s CancelStepsOutput) String() string

String returns the string representation

type CancelStepsRequest

type CancelStepsRequest struct {
	*aws.Request
	Input *CancelStepsInput
	Copy  func(*CancelStepsInput) CancelStepsRequest
}

CancelStepsRequest is the request type for the CancelSteps API operation.

func (CancelStepsRequest) Send

Send marshals and sends the CancelSteps API request.

type CancelStepsRequestStatus

type CancelStepsRequestStatus string
const (
	CancelStepsRequestStatusSubmitted CancelStepsRequestStatus = "SUBMITTED"
	CancelStepsRequestStatusFailed    CancelStepsRequestStatus = "FAILED"
)

Enum values for CancelStepsRequestStatus

func (CancelStepsRequestStatus) MarshalValue added in v0.3.0

func (enum CancelStepsRequestStatus) MarshalValue() (string, error)

func (CancelStepsRequestStatus) MarshalValueBuf added in v0.3.0

func (enum CancelStepsRequestStatus) MarshalValueBuf(b []byte) ([]byte, error)

type CancelStepsResponse added in v0.9.0

type CancelStepsResponse struct {
	*CancelStepsOutput
	// contains filtered or unexported fields
}

CancelStepsResponse is the response type for the CancelSteps API operation.

func (*CancelStepsResponse) SDKResponseMetdata added in v0.9.0

func (r *CancelStepsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CancelSteps request.

type Client added in v0.9.0

type Client struct {
	*aws.Client
}

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

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

func New

func New(config aws.Config) *Client

New creates a new instance of the client from the provided Config.

Example:

// Create a client from just a config.
svc := emr.New(myConfig)

func (*Client) AddInstanceFleetRequest added in v0.9.0

func (c *Client) AddInstanceFleetRequest(input *AddInstanceFleetInput) AddInstanceFleetRequest

AddInstanceFleetRequest returns a request value for making 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.

// Example sending a request using AddInstanceFleetRequest.
req := client.AddInstanceFleetRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) AddInstanceGroupsRequest added in v0.9.0

func (c *Client) AddInstanceGroupsRequest(input *AddInstanceGroupsInput) AddInstanceGroupsRequest

AddInstanceGroupsRequest returns a request value for making API operation for Amazon Elastic MapReduce.

Adds one or more instance groups to a running cluster.

// Example sending a request using AddInstanceGroupsRequest.
req := client.AddInstanceGroupsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) AddJobFlowStepsRequest added in v0.9.0

func (c *Client) AddJobFlowStepsRequest(input *AddJobFlowStepsInput) AddJobFlowStepsRequest

AddJobFlowStepsRequest returns a request value for making 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 (https://docs.aws.amazon.com/emr/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.

// Example sending a request using AddJobFlowStepsRequest.
req := client.AddJobFlowStepsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) AddTagsRequest added in v0.9.0

func (c *Client) AddTagsRequest(input *AddTagsInput) AddTagsRequest

AddTagsRequest returns a request value for making 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 Tag Clusters (https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html).

// Example sending a request using AddTagsRequest.
req := client.AddTagsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) CancelStepsRequest added in v0.9.0

func (c *Client) CancelStepsRequest(input *CancelStepsInput) CancelStepsRequest

CancelStepsRequest returns a request value for making 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.

// Example sending a request using CancelStepsRequest.
req := client.CancelStepsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) CreateSecurityConfigurationRequest added in v0.9.0

func (c *Client) CreateSecurityConfigurationRequest(input *CreateSecurityConfigurationInput) CreateSecurityConfigurationRequest

CreateSecurityConfigurationRequest returns a request value for making 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.

// Example sending a request using CreateSecurityConfigurationRequest.
req := client.CreateSecurityConfigurationRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) DeleteSecurityConfigurationRequest added in v0.9.0

func (c *Client) DeleteSecurityConfigurationRequest(input *DeleteSecurityConfigurationInput) DeleteSecurityConfigurationRequest

DeleteSecurityConfigurationRequest returns a request value for making API operation for Amazon Elastic MapReduce.

Deletes a security configuration.

// Example sending a request using DeleteSecurityConfigurationRequest.
req := client.DeleteSecurityConfigurationRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) DescribeClusterRequest added in v0.9.0

func (c *Client) DescribeClusterRequest(input *DescribeClusterInput) DescribeClusterRequest

DescribeClusterRequest returns a request value for making API operation for Amazon Elastic MapReduce.

Provides cluster-level details including status, hardware and software configuration, VPC settings, and so on.

// Example sending a request using DescribeClusterRequest.
req := client.DescribeClusterRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) DescribeJobFlowsRequest added in v0.9.0

func (c *Client) DescribeJobFlowsRequest(input *DescribeJobFlowsInput) DescribeJobFlowsRequest

DescribeJobFlowsRequest returns a request value for making 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.

// Example sending a request using DescribeJobFlowsRequest.
req := client.DescribeJobFlowsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) DescribeSecurityConfigurationRequest added in v0.9.0

func (c *Client) DescribeSecurityConfigurationRequest(input *DescribeSecurityConfigurationInput) DescribeSecurityConfigurationRequest

DescribeSecurityConfigurationRequest returns a request value for making API operation for Amazon Elastic MapReduce.

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

// Example sending a request using DescribeSecurityConfigurationRequest.
req := client.DescribeSecurityConfigurationRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) DescribeStepRequest added in v0.9.0

func (c *Client) DescribeStepRequest(input *DescribeStepInput) DescribeStepRequest

DescribeStepRequest returns a request value for making API operation for Amazon Elastic MapReduce.

Provides more detail about the cluster step.

// Example sending a request using DescribeStepRequest.
req := client.DescribeStepRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) GetBlockPublicAccessConfigurationRequest added in v0.11.0

func (c *Client) GetBlockPublicAccessConfigurationRequest(input *GetBlockPublicAccessConfigurationInput) GetBlockPublicAccessConfigurationRequest

GetBlockPublicAccessConfigurationRequest returns a request value for making API operation for Amazon Elastic MapReduce.

Returns the Amazon EMR block public access configuration for your AWS account in the current Region. For more information see Configure Block Public Access for Amazon EMR (https://docs.aws.amazon.com/emr/latest/ManagementGuide/configure-block-public-access.html) in the Amazon EMR Management Guide.

// Example sending a request using GetBlockPublicAccessConfigurationRequest.
req := client.GetBlockPublicAccessConfigurationRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) GetManagedScalingPolicyRequest added in v0.21.0

func (c *Client) GetManagedScalingPolicyRequest(input *GetManagedScalingPolicyInput) GetManagedScalingPolicyRequest

GetManagedScalingPolicyRequest returns a request value for making API operation for Amazon Elastic MapReduce.

Fetches the attached managed scaling policy for an Amazon EMR cluster.

// Example sending a request using GetManagedScalingPolicyRequest.
req := client.GetManagedScalingPolicyRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) ListBootstrapActionsRequest added in v0.9.0

func (c *Client) ListBootstrapActionsRequest(input *ListBootstrapActionsInput) ListBootstrapActionsRequest

ListBootstrapActionsRequest returns a request value for making API operation for Amazon Elastic MapReduce.

Provides information about the bootstrap actions associated with a cluster.

// Example sending a request using ListBootstrapActionsRequest.
req := client.ListBootstrapActionsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) ListClustersRequest added in v0.9.0

func (c *Client) ListClustersRequest(input *ListClustersInput) ListClustersRequest

ListClustersRequest returns a request value for making 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.

// Example sending a request using ListClustersRequest.
req := client.ListClustersRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) ListInstanceFleetsRequest added in v0.9.0

func (c *Client) ListInstanceFleetsRequest(input *ListInstanceFleetsInput) ListInstanceFleetsRequest

ListInstanceFleetsRequest returns a request value for making 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.

// Example sending a request using ListInstanceFleetsRequest.
req := client.ListInstanceFleetsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) ListInstanceGroupsRequest added in v0.9.0

func (c *Client) ListInstanceGroupsRequest(input *ListInstanceGroupsInput) ListInstanceGroupsRequest

ListInstanceGroupsRequest returns a request value for making API operation for Amazon Elastic MapReduce.

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

// Example sending a request using ListInstanceGroupsRequest.
req := client.ListInstanceGroupsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) ListInstancesRequest added in v0.9.0

func (c *Client) ListInstancesRequest(input *ListInstancesInput) ListInstancesRequest

ListInstancesRequest returns a request value for making API operation for Amazon Elastic MapReduce.

Provides information for all active EC2 instances and EC2 instances terminated in the last 30 days, up to a maximum of 2,000. EC2 instances in any of the following states are considered active: AWAITING_FULFILLMENT, PROVISIONING, BOOTSTRAPPING, RUNNING.

// Example sending a request using ListInstancesRequest.
req := client.ListInstancesRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) ListSecurityConfigurationsRequest added in v0.9.0

func (c *Client) ListSecurityConfigurationsRequest(input *ListSecurityConfigurationsInput) ListSecurityConfigurationsRequest

ListSecurityConfigurationsRequest returns a request value for making 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.

// Example sending a request using ListSecurityConfigurationsRequest.
req := client.ListSecurityConfigurationsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) ListStepsRequest added in v0.9.0

func (c *Client) ListStepsRequest(input *ListStepsInput) ListStepsRequest

ListStepsRequest returns a request value for making API operation for Amazon Elastic MapReduce.

Provides a list of steps for the cluster in reverse order unless you specify stepIds with the request of filter by StepStates. You can specify a maximum of ten stepIDs.

// Example sending a request using ListStepsRequest.
req := client.ListStepsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) ModifyClusterRequest added in v0.18.0

func (c *Client) ModifyClusterRequest(input *ModifyClusterInput) ModifyClusterRequest

ModifyClusterRequest returns a request value for making API operation for Amazon Elastic MapReduce.

Modifies the number of steps that can be executed concurrently for the cluster specified using ClusterID.

// Example sending a request using ModifyClusterRequest.
req := client.ModifyClusterRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) ModifyInstanceFleetRequest added in v0.9.0

func (c *Client) ModifyInstanceFleetRequest(input *ModifyInstanceFleetInput) ModifyInstanceFleetRequest

ModifyInstanceFleetRequest returns a request value for making 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.

// Example sending a request using ModifyInstanceFleetRequest.
req := client.ModifyInstanceFleetRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) ModifyInstanceGroupsRequest added in v0.9.0

func (c *Client) ModifyInstanceGroupsRequest(input *ModifyInstanceGroupsInput) ModifyInstanceGroupsRequest

ModifyInstanceGroupsRequest returns a request value for making 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.

// Example sending a request using ModifyInstanceGroupsRequest.
req := client.ModifyInstanceGroupsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) PutAutoScalingPolicyRequest added in v0.9.0

func (c *Client) PutAutoScalingPolicyRequest(input *PutAutoScalingPolicyInput) PutAutoScalingPolicyRequest

PutAutoScalingPolicyRequest returns a request value for making 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.

// Example sending a request using PutAutoScalingPolicyRequest.
req := client.PutAutoScalingPolicyRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) PutBlockPublicAccessConfigurationRequest added in v0.11.0

func (c *Client) PutBlockPublicAccessConfigurationRequest(input *PutBlockPublicAccessConfigurationInput) PutBlockPublicAccessConfigurationRequest

PutBlockPublicAccessConfigurationRequest returns a request value for making API operation for Amazon Elastic MapReduce.

Creates or updates an Amazon EMR block public access configuration for your AWS account in the current Region. For more information see Configure Block Public Access for Amazon EMR (https://docs.aws.amazon.com/emr/latest/ManagementGuide/configure-block-public-access.html) in the Amazon EMR Management Guide.

// Example sending a request using PutBlockPublicAccessConfigurationRequest.
req := client.PutBlockPublicAccessConfigurationRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) PutManagedScalingPolicyRequest added in v0.21.0

func (c *Client) PutManagedScalingPolicyRequest(input *PutManagedScalingPolicyInput) PutManagedScalingPolicyRequest

PutManagedScalingPolicyRequest returns a request value for making API operation for Amazon Elastic MapReduce.

Creates or updates a managed scaling policy for an Amazon EMR cluster. The managed scaling policy defines the limits for resources, such as EC2 instances that can be added or terminated from a cluster. The policy only applies to the core and task nodes. The master node cannot be scaled after initial configuration.

// Example sending a request using PutManagedScalingPolicyRequest.
req := client.PutManagedScalingPolicyRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) RemoveAutoScalingPolicyRequest added in v0.9.0

func (c *Client) RemoveAutoScalingPolicyRequest(input *RemoveAutoScalingPolicyInput) RemoveAutoScalingPolicyRequest

RemoveAutoScalingPolicyRequest returns a request value for making API operation for Amazon Elastic MapReduce.

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

// Example sending a request using RemoveAutoScalingPolicyRequest.
req := client.RemoveAutoScalingPolicyRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) RemoveManagedScalingPolicyRequest added in v0.21.0

func (c *Client) RemoveManagedScalingPolicyRequest(input *RemoveManagedScalingPolicyInput) RemoveManagedScalingPolicyRequest

RemoveManagedScalingPolicyRequest returns a request value for making API operation for Amazon Elastic MapReduce.

Removes a managed scaling policy from a specified EMR cluster.

// Example sending a request using RemoveManagedScalingPolicyRequest.
req := client.RemoveManagedScalingPolicyRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) RemoveTagsRequest added in v0.9.0

func (c *Client) RemoveTagsRequest(input *RemoveTagsInput) RemoveTagsRequest

RemoveTagsRequest returns a request value for making 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 Tag Clusters (https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html).

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

// Example sending a request using RemoveTagsRequest.
req := client.RemoveTagsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) RunJobFlowRequest added in v0.9.0

func (c *Client) RunJobFlowRequest(input *RunJobFlowInput) RunJobFlowRequest

RunJobFlowRequest returns a request value for making 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 JobFlowInstancesConfig KeepJobFlowAliveWhenNoSteps 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 JobFlowInstancesConfig TerminationProtected 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 (https://docs.aws.amazon.com/emr/latest/ManagementGuide/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.

// Example sending a request using RunJobFlowRequest.
req := client.RunJobFlowRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) SetTerminationProtectionRequest added in v0.9.0

func (c *Client) SetTerminationProtectionRequest(input *SetTerminationProtectionInput) SetTerminationProtectionRequest

SetTerminationProtectionRequest returns a request value for making 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 (https://docs.aws.amazon.com/emr/latest/ManagementGuide/UsingEMR_TerminationProtection.html) in the Amazon EMR Management Guide.

// Example sending a request using SetTerminationProtectionRequest.
req := client.SetTerminationProtectionRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) SetVisibleToAllUsersRequest added in v0.9.0

func (c *Client) SetVisibleToAllUsersRequest(input *SetVisibleToAllUsersInput) SetVisibleToAllUsersRequest

SetVisibleToAllUsersRequest returns a request value for making API operation for Amazon Elastic MapReduce.

Sets the Cluster$VisibleToAllUsers value, which determines whether the cluster is visible to all IAM users of the AWS account associated with the cluster. Only the IAM user who created the cluster or the AWS account root user can call this action. The default value, true, indicates that all IAM users in the AWS account can perform cluster actions if they have the proper IAM policy permissions. If set to false, only the IAM user that created the cluster can perform actions. This action works on running clusters. You can override the default true setting when you create a cluster by using the VisibleToAllUsers parameter with RunJobFlow.

// Example sending a request using SetVisibleToAllUsersRequest.
req := client.SetVisibleToAllUsersRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) TerminateJobFlowsRequest added in v0.9.0

func (c *Client) TerminateJobFlowsRequest(input *TerminateJobFlowsInput) TerminateJobFlowsRequest

TerminateJobFlowsRequest returns a request value for making 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.

// Example sending a request using TerminateJobFlowsRequest.
req := client.TerminateJobFlowsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

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

func (*Client) WaitUntilClusterRunning added in v0.9.0

func (c *Client) WaitUntilClusterRunning(ctx context.Context, input *DescribeClusterInput, opts ...aws.WaiterOption) error

WaitUntilClusterRunning uses the Amazon EMR API operation DescribeCluster to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.

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 (*Client) WaitUntilClusterTerminated added in v0.9.0

func (c *Client) WaitUntilClusterTerminated(ctx context.Context, input *DescribeClusterInput, opts ...aws.WaiterOption) error

WaitUntilClusterTerminated uses the Amazon EMR API operation DescribeCluster to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.

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 (*Client) WaitUntilStepComplete added in v0.9.0

func (c *Client) WaitUntilStepComplete(ctx context.Context, input *DescribeStepInput, opts ...aws.WaiterOption) error

WaitUntilStepComplete uses the Amazon EMR API operation DescribeStep to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.

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 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 ComparisonOperator `type:"string" required:"true" enum:"true"`

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

	// The number of periods, in five-minute increments, 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 Statistic `type:"string" enum:"true"`

	// 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 Unit `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

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.

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

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"`

	// The Amazon Resource Name of the cluster.
	ClusterArn *string `min:"20" type:"string"`

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

	// Available only in Amazon EMR version 5.7.0 and later. The ID of a custom
	// Amazon EBS-backed Linux AMI if the cluster uses a custom AMI.
	CustomAmiId *string `type:"string"`

	// The size, in GiB, of the EBS root device volume of the Linux AMI that is
	// used for each EC2 instance. Available in Amazon EMR version 4.x and later.
	EbsRootVolumeSize *int64 `type:"integer"`

	// 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 InstanceCollectionType `type:"string" enum:"true"`

	// Attributes for Kerberos configuration when Kerberos authentication is enabled
	// using a security configuration. For more information see Use Kerberos Authentication
	// (https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-kerberos.html)
	// in the EMR Management Guide.
	KerberosAttributes *KerberosAttributes `type:"structure"`

	// The AWS KMS customer master key (CMK) used for encrypting log files. This
	// attribute is only available with EMR version 5.30.0 and later, excluding
	// EMR 6.0.0.
	LogEncryptionKmsKeyId *string `type:"string"`

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

	// The DNS name of the master node. If the cluster is on a private subnet, this
	// is the private DNS name. On a public subnet, this is the public DNS name.
	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 Amazon Resource Name (ARN) of the Outpost where the cluster is launched.
	OutpostArn *string `type:"string"`

	// The Amazon EMR release label, which determines the version of open-source
	// application packages installed on the cluster. Release labels are in the
	// form emr-x.x.x, where x.x.x is an Amazon EMR release version such as emr-5.14.0.
	// For more information about Amazon EMR release versions and included application
	// versions and features, see https://docs.aws.amazon.com/emr/latest/ReleaseGuide/
	// (https://docs.aws.amazon.com/emr/latest/ReleaseGuide/). The release label
	// applies only to Amazon EMR releases version 4.0 and later. Earlier versions
	// use AmiVersion.
	ReleaseLabel *string `type:"string"`

	// Applies only when CustomAmiID is used. Specifies the type of updates that
	// are applied from the Amazon Linux AMI package repositories when an instance
	// boots using the AMI.
	RepoUpgradeOnBoot RepoUpgradeOnBoot `type:"string" enum:"true"`

	// 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 ScaleDownBehavior `type:"string" enum:"true"`

	// 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"`

	// Specifies the number of steps that can be executed concurrently.
	StepConcurrencyLevel *int64 `type:"integer"`

	// 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. The default value, true, indicates that all
	// IAM users in the AWS account can perform cluster actions if they have the
	// proper IAM policy permissions. If this value is false, only the IAM user
	// that created the cluster can perform actions. This value can be changed on
	// a running cluster by using the SetVisibleToAllUsers action. You can override
	// the default value of true when you create a cluster by using the VisibleToAllUsers
	// parameter of the RunJobFlow action.
	VisibleToAllUsers *bool `type:"boolean"`
	// contains filtered or unexported fields
}

The detailed description of the cluster.

func (Cluster) String

func (s Cluster) String() string

String returns the string representation

type ClusterState

type ClusterState string
const (
	ClusterStateStarting             ClusterState = "STARTING"
	ClusterStateBootstrapping        ClusterState = "BOOTSTRAPPING"
	ClusterStateRunning              ClusterState = "RUNNING"
	ClusterStateWaiting              ClusterState = "WAITING"
	ClusterStateTerminating          ClusterState = "TERMINATING"
	ClusterStateTerminated           ClusterState = "TERMINATED"
	ClusterStateTerminatedWithErrors ClusterState = "TERMINATED_WITH_ERRORS"
)

Enum values for ClusterState

func (ClusterState) MarshalValue added in v0.3.0

func (enum ClusterState) MarshalValue() (string, error)

func (ClusterState) MarshalValueBuf added in v0.3.0

func (enum ClusterState) MarshalValueBuf(b []byte) ([]byte, error)

type ClusterStateChangeReason

type ClusterStateChangeReason struct {

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

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

The reason that the cluster changed to its current state.

func (ClusterStateChangeReason) String

func (s ClusterStateChangeReason) String() string

String returns the string representation

type ClusterStateChangeReasonCode

type ClusterStateChangeReasonCode string
const (
	ClusterStateChangeReasonCodeInternalError        ClusterStateChangeReasonCode = "INTERNAL_ERROR"
	ClusterStateChangeReasonCodeValidationError      ClusterStateChangeReasonCode = "VALIDATION_ERROR"
	ClusterStateChangeReasonCodeInstanceFailure      ClusterStateChangeReasonCode = "INSTANCE_FAILURE"
	ClusterStateChangeReasonCodeInstanceFleetTimeout ClusterStateChangeReasonCode = "INSTANCE_FLEET_TIMEOUT"
	ClusterStateChangeReasonCodeBootstrapFailure     ClusterStateChangeReasonCode = "BOOTSTRAP_FAILURE"
	ClusterStateChangeReasonCodeUserRequest          ClusterStateChangeReasonCode = "USER_REQUEST"
	ClusterStateChangeReasonCodeStepFailure          ClusterStateChangeReasonCode = "STEP_FAILURE"
	ClusterStateChangeReasonCodeAllStepsCompleted    ClusterStateChangeReasonCode = "ALL_STEPS_COMPLETED"
)

Enum values for ClusterStateChangeReasonCode

func (ClusterStateChangeReasonCode) MarshalValue added in v0.3.0

func (enum ClusterStateChangeReasonCode) MarshalValue() (string, error)

func (ClusterStateChangeReasonCode) MarshalValueBuf added in v0.3.0

func (enum ClusterStateChangeReasonCode) MarshalValueBuf(b []byte) ([]byte, error)

type ClusterStatus

type ClusterStatus struct {

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

	// 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
}

The detailed status of the cluster.

func (ClusterStatus) String

func (s ClusterStatus) String() string

String returns the string representation

type ClusterSummary

type ClusterSummary struct {

	// The Amazon Resource Name of the cluster.
	ClusterArn *string `min:"20" type:"string"`

	// 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 Amazon Resource Name (ARN) of the Outpost where the cluster is launched.
	OutpostArn *string `type:"string"`

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

The summary description of the cluster.

func (ClusterSummary) String

func (s ClusterSummary) String() string

String returns the string representation

type ClusterTimeline

type ClusterTimeline struct {

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

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

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

Represents the timeline of the cluster's lifecycle.

func (ClusterTimeline) String

func (s ClusterTimeline) String() string

String returns the string representation

type 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
}

An entity describing an executable that runs on a cluster.

func (Command) String

func (s Command) String() string

String returns the string representation

type ComparisonOperator

type ComparisonOperator string
const (
	ComparisonOperatorGreaterThanOrEqual ComparisonOperator = "GREATER_THAN_OR_EQUAL"
	ComparisonOperatorGreaterThan        ComparisonOperator = "GREATER_THAN"
	ComparisonOperatorLessThan           ComparisonOperator = "LESS_THAN"
	ComparisonOperatorLessThanOrEqual    ComparisonOperator = "LESS_THAN_OR_EQUAL"
)

Enum values for ComparisonOperator

func (ComparisonOperator) MarshalValue added in v0.3.0

func (enum ComparisonOperator) MarshalValue() (string, error)

func (ComparisonOperator) MarshalValueBuf added in v0.3.0

func (enum ComparisonOperator) MarshalValueBuf(b []byte) ([]byte, error)

type ComputeLimits added in v0.21.0

type ComputeLimits struct {

	// The upper boundary of EC2 units. It is measured through VCPU cores or instances
	// for instance groups and measured through units for instance fleets. Managed
	// scaling activities are not allowed beyond this boundary. The limit only applies
	// to the core and task nodes. The master node cannot be scaled after initial
	// configuration.
	//
	// MaximumCapacityUnits is a required field
	MaximumCapacityUnits *int64 `type:"integer" required:"true"`

	// The upper boundary of EC2 units for core node type in a cluster. It is measured
	// through VCPU cores or instances for instance groups and measured through
	// units for instance fleets. The core units are not allowed to scale beyond
	// this boundary. The parameter is used to split capacity allocation between
	// core and task nodes.
	MaximumCoreCapacityUnits *int64 `type:"integer"`

	// The upper boundary of On-Demand EC2 units. It is measured through VCPU cores
	// or instances for instance groups and measured through units for instance
	// fleets. The On-Demand units are not allowed to scale beyond this boundary.
	// The parameter is used to split capacity allocation between On-Demand and
	// Spot instances.
	MaximumOnDemandCapacityUnits *int64 `type:"integer"`

	// The lower boundary of EC2 units. It is measured through VCPU cores or instances
	// for instance groups and measured through units for instance fleets. Managed
	// scaling activities are not allowed beyond this boundary. The limit only applies
	// to the core and task nodes. The master node cannot be scaled after initial
	// configuration.
	//
	// MinimumCapacityUnits is a required field
	MinimumCapacityUnits *int64 `type:"integer" required:"true"`

	// The unit type used for specifying a managed scaling policy.
	//
	// UnitType is a required field
	UnitType ComputeLimitsUnitType `type:"string" required:"true" enum:"true"`
	// contains filtered or unexported fields
}

The EC2 unit limits for a managed scaling policy. The managed scaling activity of a cluster can not be above or below these limits. The limit only applies to the core and task nodes. The master node cannot be scaled after initial configuration.

func (ComputeLimits) String added in v0.21.0

func (s ComputeLimits) String() string

String returns the string representation

func (*ComputeLimits) Validate added in v0.21.0

func (s *ComputeLimits) Validate() error

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

type ComputeLimitsUnitType added in v0.21.0

type ComputeLimitsUnitType string
const (
	ComputeLimitsUnitTypeInstanceFleetUnits ComputeLimitsUnitType = "InstanceFleetUnits"
	ComputeLimitsUnitTypeInstances          ComputeLimitsUnitType = "Instances"
	ComputeLimitsUnitTypeVcpu               ComputeLimitsUnitType = "VCPU"
)

Enum values for ComputeLimitsUnitType

func (ComputeLimitsUnitType) MarshalValue added in v0.21.0

func (enum ComputeLimitsUnitType) MarshalValue() (string, error)

func (ComputeLimitsUnitType) MarshalValueBuf added in v0.21.0

func (enum ComputeLimitsUnitType) MarshalValueBuf(b []byte) ([]byte, error)

type 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
}

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 (https://docs.aws.amazon.com/emr/latest/ReleaseGuide/emr-configure-apps.html).

func (Configuration) String

func (s Configuration) String() string

String returns the string representation

type 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. For JSON parameters and
	// examples, see Use Security Configurations to Set Up Cluster Security (https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-security-configurations.html)
	// in the Amazon EMR Management Guide.
	//
	// SecurityConfiguration is a required field
	SecurityConfiguration *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (CreateSecurityConfigurationInput) String

String returns the string representation

func (*CreateSecurityConfigurationInput) Validate

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

type CreateSecurityConfigurationOutput

type CreateSecurityConfigurationOutput struct {

	// The date and time the security configuration was created.
	//
	// CreationDateTime is a required field
	CreationDateTime *time.Time `type:"timestamp" 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) String

String returns the string representation

type CreateSecurityConfigurationRequest

type CreateSecurityConfigurationRequest struct {
	*aws.Request
	Input *CreateSecurityConfigurationInput
	Copy  func(*CreateSecurityConfigurationInput) CreateSecurityConfigurationRequest
}

CreateSecurityConfigurationRequest is the request type for the CreateSecurityConfiguration API operation.

func (CreateSecurityConfigurationRequest) Send

Send marshals and sends the CreateSecurityConfiguration API request.

type CreateSecurityConfigurationResponse added in v0.9.0

type CreateSecurityConfigurationResponse struct {
	*CreateSecurityConfigurationOutput
	// contains filtered or unexported fields
}

CreateSecurityConfigurationResponse is the response type for the CreateSecurityConfiguration API operation.

func (*CreateSecurityConfigurationResponse) SDKResponseMetdata added in v0.9.0

func (r *CreateSecurityConfigurationResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CreateSecurityConfiguration request.

type 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) String

String returns the string representation

func (*DeleteSecurityConfigurationInput) Validate

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

type DeleteSecurityConfigurationOutput

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

func (DeleteSecurityConfigurationOutput) String

String returns the string representation

type DeleteSecurityConfigurationRequest

type DeleteSecurityConfigurationRequest struct {
	*aws.Request
	Input *DeleteSecurityConfigurationInput
	Copy  func(*DeleteSecurityConfigurationInput) DeleteSecurityConfigurationRequest
}

DeleteSecurityConfigurationRequest is the request type for the DeleteSecurityConfiguration API operation.

func (DeleteSecurityConfigurationRequest) Send

Send marshals and sends the DeleteSecurityConfiguration API request.

type DeleteSecurityConfigurationResponse added in v0.9.0

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

DeleteSecurityConfigurationResponse is the response type for the DeleteSecurityConfiguration API operation.

func (*DeleteSecurityConfigurationResponse) SDKResponseMetdata added in v0.9.0

func (r *DeleteSecurityConfigurationResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DeleteSecurityConfiguration request.

type 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
}

This input determines which cluster to describe.

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

type DescribeClusterOutput struct {

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

This output contains the description of the cluster.

func (DescribeClusterOutput) String

func (s DescribeClusterOutput) String() string

String returns the string representation

type DescribeClusterRequest

type DescribeClusterRequest struct {
	*aws.Request
	Input *DescribeClusterInput
	Copy  func(*DescribeClusterInput) DescribeClusterRequest
}

DescribeClusterRequest is the request type for the DescribeCluster API operation.

func (DescribeClusterRequest) Send

Send marshals and sends the DescribeCluster API request.

type DescribeClusterResponse added in v0.9.0

type DescribeClusterResponse struct {
	*DescribeClusterOutput
	// contains filtered or unexported fields
}

DescribeClusterResponse is the response type for the DescribeCluster API operation.

func (*DescribeClusterResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeClusterResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeCluster request.

type DescribeJobFlowsInput

type DescribeJobFlowsInput struct {

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

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

	// 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 []JobFlowExecutionState `type:"list"`
	// contains filtered or unexported fields
}

The input for the DescribeJobFlows operation.

func (DescribeJobFlowsInput) String

func (s DescribeJobFlowsInput) String() string

String returns the string representation

type DescribeJobFlowsOutput

type DescribeJobFlowsOutput struct {

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

The output for the DescribeJobFlows operation.

func (DescribeJobFlowsOutput) String

func (s DescribeJobFlowsOutput) String() string

String returns the string representation

type DescribeJobFlowsRequest

type DescribeJobFlowsRequest struct {
	*aws.Request
	Input *DescribeJobFlowsInput
	Copy  func(*DescribeJobFlowsInput) DescribeJobFlowsRequest
}

DescribeJobFlowsRequest is the request type for the DescribeJobFlows API operation.

func (DescribeJobFlowsRequest) Send

Send marshals and sends the DescribeJobFlows API request.

type DescribeJobFlowsResponse added in v0.9.0

type DescribeJobFlowsResponse struct {
	*DescribeJobFlowsOutput
	// contains filtered or unexported fields
}

DescribeJobFlowsResponse is the response type for the DescribeJobFlows API operation.

func (*DescribeJobFlowsResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeJobFlowsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeJobFlows request.

type 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) String

String returns the string representation

func (*DescribeSecurityConfigurationInput) Validate

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

type DescribeSecurityConfigurationOutput

type DescribeSecurityConfigurationOutput struct {

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

	// 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) String

String returns the string representation

type DescribeSecurityConfigurationRequest

type DescribeSecurityConfigurationRequest struct {
	*aws.Request
	Input *DescribeSecurityConfigurationInput
	Copy  func(*DescribeSecurityConfigurationInput) DescribeSecurityConfigurationRequest
}

DescribeSecurityConfigurationRequest is the request type for the DescribeSecurityConfiguration API operation.

func (DescribeSecurityConfigurationRequest) Send

Send marshals and sends the DescribeSecurityConfiguration API request.

type DescribeSecurityConfigurationResponse added in v0.9.0

type DescribeSecurityConfigurationResponse struct {
	*DescribeSecurityConfigurationOutput
	// contains filtered or unexported fields
}

DescribeSecurityConfigurationResponse is the response type for the DescribeSecurityConfiguration API operation.

func (*DescribeSecurityConfigurationResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeSecurityConfigurationResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeSecurityConfiguration request.

type 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
}

This input determines which step to describe.

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

type DescribeStepOutput struct {

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

This output contains the description of the cluster step.

func (DescribeStepOutput) String

func (s DescribeStepOutput) String() string

String returns the string representation

type DescribeStepRequest

type DescribeStepRequest struct {
	*aws.Request
	Input *DescribeStepInput
	Copy  func(*DescribeStepInput) DescribeStepRequest
}

DescribeStepRequest is the request type for the DescribeStep API operation.

func (DescribeStepRequest) Send

Send marshals and sends the DescribeStep API request.

type DescribeStepResponse added in v0.9.0

type DescribeStepResponse struct {
	*DescribeStepOutput
	// contains filtered or unexported fields
}

DescribeStepResponse is the response type for the DescribeStep API operation.

func (*DescribeStepResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeStepResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeStep request.

type 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
}

Configuration of requested EBS block device associated with the instance group.

func (EbsBlockDevice) String

func (s EbsBlockDevice) String() string

String returns the string representation

type 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
}

Configuration of requested EBS block device associated with the instance group with count of volumes that will be associated to every instance.

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

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
}

The Amazon EBS configuration of a cluster instance.

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

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
}

EBS block device that's attached to an EC2 instance.

func (EbsVolume) String

func (s EbsVolume) String() string

String returns the string representation

type 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 core and task
	// 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"`

	// 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, and your account
	// supports EC2-Classic, the cluster launches in EC2-Classic.
	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 core and task 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 instance fleets option. Specifies
	// one or more Availability Zones in which to launch EC2 cluster instances when
	// the EC2-Classic network configuration is supported. Amazon EMR chooses the
	// Availability Zone with the best fit from among the list of RequestedEc2AvailabilityZones,
	// and then launches all cluster instances within that Availability Zone. If
	// you do not specify this value, Amazon EMR chooses the Availability Zone for
	// you. RequestedEc2SubnetIDs and RequestedEc2AvailabilityZones cannot be specified
	// together.
	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. Subnets must exist within the same VPC. Amazon EMR
	// chooses the EC2 subnet with the best fit from among the list of RequestedEc2SubnetIds,
	// and then launches all cluster instances within that Subnet. If this value
	// is not specified, and the account and Region support EC2-Classic networks,
	// the cluster launches instances in the EC2-Classic network and uses RequestedEc2AvailabilityZones
	// instead of this setting. If EC2-Classic is not supported, and no Subnet is
	// specified, Amazon EMR chooses the subnet for you. RequestedEc2SubnetIDs and
	// RequestedEc2AvailabilityZones cannot be specified together.
	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
}

Provides information about the EC2 instances in a cluster grouped by category. For example, key name, subnet ID, IAM instance profile, and so on.

func (Ec2InstanceAttributes) String

func (s Ec2InstanceAttributes) String() string

String returns the string representation

type 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
}

The details of the step failure. The service attempts to detect the root cause for many common failures.

func (FailureDetails) String

func (s FailureDetails) String() string

String returns the string representation

type GetBlockPublicAccessConfigurationInput added in v0.11.0

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

func (GetBlockPublicAccessConfigurationInput) String added in v0.11.0

String returns the string representation

type GetBlockPublicAccessConfigurationOutput added in v0.11.0

type GetBlockPublicAccessConfigurationOutput struct {

	// A configuration for Amazon EMR block public access. The configuration applies
	// to all clusters created in your account for the current Region. The configuration
	// specifies whether block public access is enabled. If block public access
	// is enabled, security groups associated with the cluster cannot have rules
	// that allow inbound traffic from 0.0.0.0/0 or ::/0 on a port, unless the port
	// is specified as an exception using PermittedPublicSecurityGroupRuleRanges
	// in the BlockPublicAccessConfiguration. By default, Port 22 (SSH) is an exception,
	// and public access is allowed on this port. You can change this by updating
	// the block public access configuration to remove the exception.
	//
	// For accounts that created clusters in a Region before November 25, 2019,
	// block public access is disabled by default in that Region. To use this feature,
	// you must manually enable and configure it. For accounts that did not create
	// an EMR cluster in a Region before this date, block public access is enabled
	// by default in that Region.
	//
	// BlockPublicAccessConfiguration is a required field
	BlockPublicAccessConfiguration *BlockPublicAccessConfiguration `type:"structure" required:"true"`

	// Properties that describe the AWS principal that created the BlockPublicAccessConfiguration
	// using the PutBlockPublicAccessConfiguration action as well as the date and
	// time that the configuration was created. Each time a configuration for block
	// public access is updated, Amazon EMR updates this metadata.
	//
	// BlockPublicAccessConfigurationMetadata is a required field
	BlockPublicAccessConfigurationMetadata *BlockPublicAccessConfigurationMetadata `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (GetBlockPublicAccessConfigurationOutput) String added in v0.11.0

String returns the string representation

type GetBlockPublicAccessConfigurationRequest added in v0.11.0

GetBlockPublicAccessConfigurationRequest is the request type for the GetBlockPublicAccessConfiguration API operation.

func (GetBlockPublicAccessConfigurationRequest) Send added in v0.11.0

Send marshals and sends the GetBlockPublicAccessConfiguration API request.

type GetBlockPublicAccessConfigurationResponse added in v0.11.0

type GetBlockPublicAccessConfigurationResponse struct {
	*GetBlockPublicAccessConfigurationOutput
	// contains filtered or unexported fields
}

GetBlockPublicAccessConfigurationResponse is the response type for the GetBlockPublicAccessConfiguration API operation.

func (*GetBlockPublicAccessConfigurationResponse) SDKResponseMetdata added in v0.11.0

func (r *GetBlockPublicAccessConfigurationResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetBlockPublicAccessConfiguration request.

type GetManagedScalingPolicyInput added in v0.21.0

type GetManagedScalingPolicyInput struct {

	// Specifies the ID of the cluster for which the managed scaling policy will
	// be fetched.
	//
	// ClusterId is a required field
	ClusterId *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (GetManagedScalingPolicyInput) String added in v0.21.0

String returns the string representation

func (*GetManagedScalingPolicyInput) Validate added in v0.21.0

func (s *GetManagedScalingPolicyInput) Validate() error

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

type GetManagedScalingPolicyOutput added in v0.21.0

type GetManagedScalingPolicyOutput struct {

	// Specifies the managed scaling policy that is attached to an Amazon EMR cluster.
	ManagedScalingPolicy *ManagedScalingPolicy `type:"structure"`
	// contains filtered or unexported fields
}

func (GetManagedScalingPolicyOutput) String added in v0.21.0

String returns the string representation

type GetManagedScalingPolicyRequest added in v0.21.0

type GetManagedScalingPolicyRequest struct {
	*aws.Request
	Input *GetManagedScalingPolicyInput
	Copy  func(*GetManagedScalingPolicyInput) GetManagedScalingPolicyRequest
}

GetManagedScalingPolicyRequest is the request type for the GetManagedScalingPolicy API operation.

func (GetManagedScalingPolicyRequest) Send added in v0.21.0

Send marshals and sends the GetManagedScalingPolicy API request.

type GetManagedScalingPolicyResponse added in v0.21.0

type GetManagedScalingPolicyResponse struct {
	*GetManagedScalingPolicyOutput
	// contains filtered or unexported fields
}

GetManagedScalingPolicyResponse is the response type for the GetManagedScalingPolicy API operation.

func (*GetManagedScalingPolicyResponse) SDKResponseMetdata added in v0.21.0

func (r *GetManagedScalingPolicyResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetManagedScalingPolicy request.

type 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
}

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.

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

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
}

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.

func (HadoopStepConfig) String

func (s HadoopStepConfig) String() string

String returns the string representation

type 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 MarketType `type:"string" enum:"true"`

	// 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
}

Represents an EC2 instance provisioned as part of cluster.

func (Instance) String

func (s Instance) String() string

String returns the string representation

type InstanceCollectionType

type InstanceCollectionType string
const (
	InstanceCollectionTypeInstanceFleet InstanceCollectionType = "INSTANCE_FLEET"
	InstanceCollectionTypeInstanceGroup InstanceCollectionType = "INSTANCE_GROUP"
)

Enum values for InstanceCollectionType

func (InstanceCollectionType) MarshalValue added in v0.3.0

func (enum InstanceCollectionType) MarshalValue() (string, error)

func (InstanceCollectionType) MarshalValueBuf added in v0.3.0

func (enum InstanceCollectionType) MarshalValueBuf(b []byte) ([]byte, error)

type 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 InstanceFleetType `type:"string" enum:"true"`

	// 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
}

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.

func (InstanceFleet) String

func (s InstanceFleet) String() string

String returns the string representation

type 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 InstanceFleetType `type:"string" required:"true" enum:"true"`

	// 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
}

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.

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

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
}

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.

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

type InstanceFleetProvisioningSpecifications struct {

	// The launch specification for On-Demand instances in the instance fleet, which
	// determines the allocation strategy.
	//
	// The instance fleet configuration is available only in Amazon EMR versions
	// 4.8.0 and later, excluding 5.0.x versions. On-Demand instances allocation
	// strategy is available in Amazon EMR version 5.12.1 and later.
	OnDemandSpecification *OnDemandProvisioningSpecification `type:"structure"`

	// The launch specification for Spot instances in the fleet, which determines
	// the defined duration, provisioning timeout behavior, and allocation strategy.
	SpotSpecification *SpotProvisioningSpecification `type:"structure"`
	// contains filtered or unexported fields
}

The launch specification for Spot instances in the fleet, which determines the defined duration, provisioning timeout behavior, and allocation strategy.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. On-Demand and Spot instance allocation strategies are available in Amazon EMR version 5.12.1 and later.

func (InstanceFleetProvisioningSpecifications) String

String returns the string representation

func (*InstanceFleetProvisioningSpecifications) Validate

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

type InstanceFleetState

type InstanceFleetState string
const (
	InstanceFleetStateProvisioning  InstanceFleetState = "PROVISIONING"
	InstanceFleetStateBootstrapping InstanceFleetState = "BOOTSTRAPPING"
	InstanceFleetStateRunning       InstanceFleetState = "RUNNING"
	InstanceFleetStateResizing      InstanceFleetState = "RESIZING"
	InstanceFleetStateSuspended     InstanceFleetState = "SUSPENDED"
	InstanceFleetStateTerminating   InstanceFleetState = "TERMINATING"
	InstanceFleetStateTerminated    InstanceFleetState = "TERMINATED"
)

Enum values for InstanceFleetState

func (InstanceFleetState) MarshalValue added in v0.3.0

func (enum InstanceFleetState) MarshalValue() (string, error)

func (InstanceFleetState) MarshalValueBuf added in v0.3.0

func (enum InstanceFleetState) MarshalValueBuf(b []byte) ([]byte, error)

type InstanceFleetStateChangeReason

type InstanceFleetStateChangeReason struct {

	// A code corresponding to the reason the state change occurred.
	Code InstanceFleetStateChangeReasonCode `type:"string" enum:"true"`

	// An explanatory message.
	Message *string `type:"string"`
	// contains filtered or unexported fields
}

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.

func (InstanceFleetStateChangeReason) String

String returns the string representation

type InstanceFleetStateChangeReasonCode

type InstanceFleetStateChangeReasonCode string
const (
	InstanceFleetStateChangeReasonCodeInternalError     InstanceFleetStateChangeReasonCode = "INTERNAL_ERROR"
	InstanceFleetStateChangeReasonCodeValidationError   InstanceFleetStateChangeReasonCode = "VALIDATION_ERROR"
	InstanceFleetStateChangeReasonCodeInstanceFailure   InstanceFleetStateChangeReasonCode = "INSTANCE_FAILURE"
	InstanceFleetStateChangeReasonCodeClusterTerminated InstanceFleetStateChangeReasonCode = "CLUSTER_TERMINATED"
)

Enum values for InstanceFleetStateChangeReasonCode

func (InstanceFleetStateChangeReasonCode) MarshalValue added in v0.3.0

func (enum InstanceFleetStateChangeReasonCode) MarshalValue() (string, error)

func (InstanceFleetStateChangeReasonCode) MarshalValueBuf added in v0.3.0

func (enum InstanceFleetStateChangeReasonCode) MarshalValueBuf(b []byte) ([]byte, error)

type InstanceFleetStatus

type InstanceFleetStatus struct {

	// A code representing the instance fleet status.
	//
	//    * PROVISIONING—The instance fleet is provisioning EC2 resources and
	//    is not yet ready to run jobs.
	//
	//    * BOOTSTRAPPING—EC2 instances and other resources have been provisioned
	//    and the bootstrap actions specified for the instances are underway.
	//
	//    * RUNNING—EC2 instances and other resources are running. They are either
	//    executing jobs or waiting to execute jobs.
	//
	//    * RESIZING—A resize operation is underway. EC2 instances are either
	//    being added or removed.
	//
	//    * SUSPENDED—A resize operation could not complete. Existing EC2 instances
	//    are running, but instances can't be added or removed.
	//
	//    * TERMINATING—The instance fleet is terminating EC2 instances.
	//
	//    * TERMINATED—The instance fleet is no longer active, and all EC2 instances
	//    have been terminated.
	State InstanceFleetState `type:"string" enum:"true"`

	// 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
}

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.

func (InstanceFleetStatus) String

func (s InstanceFleetStatus) String() string

String returns the string representation

type InstanceFleetTimeline

type InstanceFleetTimeline struct {

	// The time and date the instance fleet was created.
	CreationDateTime *time.Time `type:"timestamp"`

	// The time and date the instance fleet terminated.
	EndDateTime *time.Time `type:"timestamp"`

	// The time and date the instance fleet was ready to run jobs.
	ReadyDateTime *time.Time `type:"timestamp"`
	// contains filtered or unexported fields
}

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.

func (InstanceFleetTimeline) String

func (s InstanceFleetTimeline) String() string

String returns the string representation

type InstanceFleetType

type InstanceFleetType string
const (
	InstanceFleetTypeMaster InstanceFleetType = "MASTER"
	InstanceFleetTypeCore   InstanceFleetType = "CORE"
	InstanceFleetTypeTask   InstanceFleetType = "TASK"
)

Enum values for InstanceFleetType

func (InstanceFleetType) MarshalValue added in v0.3.0

func (enum InstanceFleetType) MarshalValue() (string, error)

func (InstanceFleetType) MarshalValueBuf added in v0.3.0

func (enum InstanceFleetType) MarshalValueBuf(b []byte) ([]byte, error)

type 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 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"`

	//
	// 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 version number of the requested configuration specification for this
	// instance group.
	ConfigurationsVersion *int64 `type:"long"`

	// 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 InstanceGroupType `type:"string" enum:"true"`

	// The EC2 instance type for all instances in the instance group.
	InstanceType *string `min:"1" type:"string"`

	// A list of configurations that were successfully applied for an instance group
	// last time.
	LastSuccessfullyAppliedConfigurations []Configuration `type:"list"`

	// The version number of a configuration specification that was successfully
	// applied for an instance group last time.
	LastSuccessfullyAppliedConfigurationsVersion *int64 `type:"long"`

	// The marketplace to provision instances for this group. Valid values are ON_DEMAND
	// or SPOT.
	Market MarketType `type:"string" enum:"true"`

	// 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
}

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.

func (InstanceGroup) String

func (s InstanceGroup) String() string

String returns the string representation

type 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"`

	// 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"`

	//
	// 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 InstanceRoleType `type:"string" required:"true" enum:"true"`

	// 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 MarketType `type:"string" enum:"true"`

	// Friendly name given to the instance group.
	Name *string `type:"string"`
	// contains filtered or unexported fields
}

Configuration defining a new instance group.

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

type InstanceGroupDetail 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 date/time the instance group was created.
	//
	// CreationDateTime is a required field
	CreationDateTime *time.Time `type:"timestamp" required:"true"`

	// The date/time the instance group was terminated.
	EndDateTime *time.Time `type:"timestamp"`

	// 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 InstanceRoleType `type:"string" required:"true" enum:"true"`

	// 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 MarketType `type:"string" required:"true" enum:"true"`

	// 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"`

	// The date/time the instance group was started.
	StartDateTime *time.Time `type:"timestamp"`

	// State of instance group. The following values are deprecated: STARTING, TERMINATED,
	// and FAILED.
	//
	// State is a required field
	State InstanceGroupState `type:"string" required:"true" enum:"true"`
	// contains filtered or unexported fields
}

Detailed information about an instance group.

func (InstanceGroupDetail) String

func (s InstanceGroupDetail) String() string

String returns the string representation

type InstanceGroupModifyConfig

type InstanceGroupModifyConfig struct {

	// A list of new or modified configurations to apply for an instance group.
	Configurations []Configuration `type:"list"`

	// 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
}

Modify the size or configurations of an instance group.

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 InstanceGroupState

type InstanceGroupState string
const (
	InstanceGroupStateProvisioning  InstanceGroupState = "PROVISIONING"
	InstanceGroupStateBootstrapping InstanceGroupState = "BOOTSTRAPPING"
	InstanceGroupStateRunning       InstanceGroupState = "RUNNING"
	InstanceGroupStateReconfiguring InstanceGroupState = "RECONFIGURING"
	InstanceGroupStateResizing      InstanceGroupState = "RESIZING"
	InstanceGroupStateSuspended     InstanceGroupState = "SUSPENDED"
	InstanceGroupStateTerminating   InstanceGroupState = "TERMINATING"
	InstanceGroupStateTerminated    InstanceGroupState = "TERMINATED"
	InstanceGroupStateArrested      InstanceGroupState = "ARRESTED"
	InstanceGroupStateShuttingDown  InstanceGroupState = "SHUTTING_DOWN"
	InstanceGroupStateEnded         InstanceGroupState = "ENDED"
)

Enum values for InstanceGroupState

func (InstanceGroupState) MarshalValue added in v0.3.0

func (enum InstanceGroupState) MarshalValue() (string, error)

func (InstanceGroupState) MarshalValueBuf added in v0.3.0

func (enum InstanceGroupState) MarshalValueBuf(b []byte) ([]byte, error)

type InstanceGroupStateChangeReason

type InstanceGroupStateChangeReason struct {

	// The programmable code for the state change reason.
	Code InstanceGroupStateChangeReasonCode `type:"string" enum:"true"`

	// The status change reason description.
	Message *string `type:"string"`
	// contains filtered or unexported fields
}

The status change reason details for the instance group.

func (InstanceGroupStateChangeReason) String

String returns the string representation

type InstanceGroupStateChangeReasonCode

type InstanceGroupStateChangeReasonCode string
const (
	InstanceGroupStateChangeReasonCodeInternalError     InstanceGroupStateChangeReasonCode = "INTERNAL_ERROR"
	InstanceGroupStateChangeReasonCodeValidationError   InstanceGroupStateChangeReasonCode = "VALIDATION_ERROR"
	InstanceGroupStateChangeReasonCodeInstanceFailure   InstanceGroupStateChangeReasonCode = "INSTANCE_FAILURE"
	InstanceGroupStateChangeReasonCodeClusterTerminated InstanceGroupStateChangeReasonCode = "CLUSTER_TERMINATED"
)

Enum values for InstanceGroupStateChangeReasonCode

func (InstanceGroupStateChangeReasonCode) MarshalValue added in v0.3.0

func (enum InstanceGroupStateChangeReasonCode) MarshalValue() (string, error)

func (InstanceGroupStateChangeReasonCode) MarshalValueBuf added in v0.3.0

func (enum InstanceGroupStateChangeReasonCode) MarshalValueBuf(b []byte) ([]byte, error)

type InstanceGroupStatus

type InstanceGroupStatus struct {

	// The current state of the instance group.
	State InstanceGroupState `type:"string" enum:"true"`

	// 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
}

The details of the instance group status.

func (InstanceGroupStatus) String

func (s InstanceGroupStatus) String() string

String returns the string representation

type InstanceGroupTimeline

type InstanceGroupTimeline struct {

	// The creation date and time of the instance group.
	CreationDateTime *time.Time `type:"timestamp"`

	// The date and time when the instance group terminated.
	EndDateTime *time.Time `type:"timestamp"`

	// The date and time when the instance group became ready to perform tasks.
	ReadyDateTime *time.Time `type:"timestamp"`
	// contains filtered or unexported fields
}

The timeline of the instance group lifecycle.

func (InstanceGroupTimeline) String

func (s InstanceGroupTimeline) String() string

String returns the string representation

type InstanceGroupType

type InstanceGroupType string
const (
	InstanceGroupTypeMaster InstanceGroupType = "MASTER"
	InstanceGroupTypeCore   InstanceGroupType = "CORE"
	InstanceGroupTypeTask   InstanceGroupType = "TASK"
)

Enum values for InstanceGroupType

func (InstanceGroupType) MarshalValue added in v0.3.0

func (enum InstanceGroupType) MarshalValue() (string, error)

func (InstanceGroupType) MarshalValueBuf added in v0.3.0

func (enum InstanceGroupType) MarshalValueBuf(b []byte) ([]byte, error)

type 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
}

Custom policy for requesting termination protection or termination of specific instances when shrinking an instance group.

func (InstanceResizePolicy) String

func (s InstanceResizePolicy) String() string

String returns the string representation

type InstanceRoleType

type InstanceRoleType string
const (
	InstanceRoleTypeMaster InstanceRoleType = "MASTER"
	InstanceRoleTypeCore   InstanceRoleType = "CORE"
	InstanceRoleTypeTask   InstanceRoleType = "TASK"
)

Enum values for InstanceRoleType

func (InstanceRoleType) MarshalValue added in v0.3.0

func (enum InstanceRoleType) MarshalValue() (string, error)

func (InstanceRoleType) MarshalValueBuf added in v0.3.0

func (enum InstanceRoleType) MarshalValueBuf(b []byte) ([]byte, error)

type InstanceState

type InstanceState string
const (
	InstanceStateAwaitingFulfillment InstanceState = "AWAITING_FULFILLMENT"
	InstanceStateProvisioning        InstanceState = "PROVISIONING"
	InstanceStateBootstrapping       InstanceState = "BOOTSTRAPPING"
	InstanceStateRunning             InstanceState = "RUNNING"
	InstanceStateTerminated          InstanceState = "TERMINATED"
)

Enum values for InstanceState

func (InstanceState) MarshalValue added in v0.3.0

func (enum InstanceState) MarshalValue() (string, error)

func (InstanceState) MarshalValueBuf added in v0.3.0

func (enum InstanceState) MarshalValueBuf(b []byte) ([]byte, error)

type InstanceStateChangeReason

type InstanceStateChangeReason struct {

	// The programmable code for the state change reason.
	Code InstanceStateChangeReasonCode `type:"string" enum:"true"`

	// The status change reason description.
	Message *string `type:"string"`
	// contains filtered or unexported fields
}

The details of the status change reason for the instance.

func (InstanceStateChangeReason) String

func (s InstanceStateChangeReason) String() string

String returns the string representation

type InstanceStateChangeReasonCode

type InstanceStateChangeReasonCode string
const (
	InstanceStateChangeReasonCodeInternalError     InstanceStateChangeReasonCode = "INTERNAL_ERROR"
	InstanceStateChangeReasonCodeValidationError   InstanceStateChangeReasonCode = "VALIDATION_ERROR"
	InstanceStateChangeReasonCodeInstanceFailure   InstanceStateChangeReasonCode = "INSTANCE_FAILURE"
	InstanceStateChangeReasonCodeBootstrapFailure  InstanceStateChangeReasonCode = "BOOTSTRAP_FAILURE"
	InstanceStateChangeReasonCodeClusterTerminated InstanceStateChangeReasonCode = "CLUSTER_TERMINATED"
)

Enum values for InstanceStateChangeReasonCode

func (InstanceStateChangeReasonCode) MarshalValue added in v0.3.0

func (enum InstanceStateChangeReasonCode) MarshalValue() (string, error)

func (InstanceStateChangeReasonCode) MarshalValueBuf added in v0.3.0

func (enum InstanceStateChangeReasonCode) MarshalValueBuf(b []byte) ([]byte, error)

type InstanceStatus

type InstanceStatus struct {

	// The current state of the instance.
	State InstanceState `type:"string" enum:"true"`

	// 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
}

The instance status details.

func (InstanceStatus) String

func (s InstanceStatus) String() string

String returns the string representation

type InstanceTimeline

type InstanceTimeline struct {

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

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

	// The date and time when the instance was ready to perform tasks.
	ReadyDateTime *time.Time `type:"timestamp"`
	// contains filtered or unexported fields
}

The timeline of the instance lifecycle.

func (InstanceTimeline) String

func (s InstanceTimeline) String() string

String returns the string representation

type 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 (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 1 or greater for core and task
	// instance fleets. Defaults to 1 if not specified.
	WeightedCapacity *int64 `type:"integer"`
	// contains filtered or unexported fields
}

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.

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

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
}

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.

func (InstanceTypeSpecification) String

func (s InstanceTypeSpecification) String() string

String returns the string representation

type JobFlowDetail

type JobFlowDetail struct {

	// Applies only to Amazon EMR AMI versions 3.x and 2.x. For Amazon EMR releases
	// 4.0 and later, ReleaseLabel is used. To specify a custom AMI, use CustomAmiID.
	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 AWS KMS customer master key (CMK) used for encrypting log files. This
	// attribute is only available with EMR version 5.30.0 and later, excluding
	// EMR 6.0.0.
	LogEncryptionKmsKeyId *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 ScaleDownBehavior `type:"string" enum:"true"`

	// 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"`

	// Indicates whether the cluster is visible to all IAM users of the AWS account
	// associated with the cluster. The default value, true, indicates that all
	// IAM users in the AWS account can perform cluster actions if they have the
	// proper IAM policy permissions. If this value is false, only the IAM user
	// that created the cluster can perform actions. This value can be changed on
	// a running cluster by using the SetVisibleToAllUsers action. You can override
	// the default value of true when you create a cluster by using the VisibleToAllUsers
	// parameter of the RunJobFlow action.
	VisibleToAllUsers *bool `type:"boolean"`
	// contains filtered or unexported fields
}

A description of a cluster (job flow).

func (JobFlowDetail) String

func (s JobFlowDetail) String() string

String returns the string representation

type JobFlowExecutionState

type JobFlowExecutionState string

The type of instance.

const (
	JobFlowExecutionStateStarting      JobFlowExecutionState = "STARTING"
	JobFlowExecutionStateBootstrapping JobFlowExecutionState = "BOOTSTRAPPING"
	JobFlowExecutionStateRunning       JobFlowExecutionState = "RUNNING"
	JobFlowExecutionStateWaiting       JobFlowExecutionState = "WAITING"
	JobFlowExecutionStateShuttingDown  JobFlowExecutionState = "SHUTTING_DOWN"
	JobFlowExecutionStateTerminated    JobFlowExecutionState = "TERMINATED"
	JobFlowExecutionStateCompleted     JobFlowExecutionState = "COMPLETED"
	JobFlowExecutionStateFailed        JobFlowExecutionState = "FAILED"
)

Enum values for JobFlowExecutionState

func (JobFlowExecutionState) MarshalValue added in v0.3.0

func (enum JobFlowExecutionState) MarshalValue() (string, error)

func (JobFlowExecutionState) MarshalValueBuf added in v0.3.0

func (enum JobFlowExecutionState) MarshalValueBuf(b []byte) ([]byte, error)

type JobFlowExecutionStatusDetail

type JobFlowExecutionStatusDetail struct {

	// The creation date and time of the job flow.
	//
	// CreationDateTime is a required field
	CreationDateTime *time.Time `type:"timestamp" required:"true"`

	// The completion date and time of the job flow.
	EndDateTime *time.Time `type:"timestamp"`

	// 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"`

	// The start date and time of the job flow.
	StartDateTime *time.Time `type:"timestamp"`

	// The state of the job flow.
	//
	// State is a required field
	State JobFlowExecutionState `type:"string" required:"true" enum:"true"`
	// contains filtered or unexported fields
}

Describes the status of the cluster (job flow).

func (JobFlowExecutionStatusDetail) String

String returns the string representation

type 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 core and task
	// 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 and your account supports EC2-Classic,
	// the cluster launches in EC2-Classic.
	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 core and task nodes.
	EmrManagedSlaveSecurityGroup *string `type:"string"`

	// Applies only to Amazon EMR release versions earlier than 4.0. 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 core and task 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
}

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.

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

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 core and task node. If the value
	// is greater than 1, one instance is the master node and all others are core
	// and task 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. If the cluster is on a private subnet, this
	// is the private DNS name. On a public subnet, this is the public DNS name.
	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 core and task 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
}

Specify the type of Amazon EC2 instances that the cluster (job flow) runs on.

func (JobFlowInstancesDetail) String

func (s JobFlowInstancesDetail) String() string

String returns the string representation

type KerberosAttributes added in v0.2.0

type KerberosAttributes struct {

	// The Active Directory password for ADDomainJoinUser.
	ADDomainJoinPassword *string `type:"string"`

	// Required only when establishing a cross-realm trust with an Active Directory
	// domain. A user with sufficient privileges to join resources to the domain.
	ADDomainJoinUser *string `type:"string"`

	// Required only when establishing a cross-realm trust with a KDC in a different
	// realm. The cross-realm principal password, which must be identical across
	// realms.
	CrossRealmTrustPrincipalPassword *string `type:"string"`

	// The password used within the cluster for the kadmin service on the cluster-dedicated
	// KDC, which maintains Kerberos principals, password policies, and keytabs
	// for the cluster.
	//
	// KdcAdminPassword is a required field
	KdcAdminPassword *string `type:"string" required:"true"`

	// The name of the Kerberos realm to which all nodes in a cluster belong. For
	// example, EC2.INTERNAL.
	//
	// Realm is a required field
	Realm *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Attributes for Kerberos configuration when Kerberos authentication is enabled using a security configuration. For more information see Use Kerberos Authentication (https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-kerberos.html) in the EMR Management Guide.

func (KerberosAttributes) String added in v0.2.0

func (s KerberosAttributes) String() string

String returns the string representation

func (*KerberosAttributes) Validate added in v0.2.0

func (s *KerberosAttributes) Validate() error

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

type 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
}

A key value pair.

func (KeyValue) String

func (s KeyValue) String() string

String returns the string representation

type 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
}

This input determines which bootstrap actions to retrieve.

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

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
}

This output contains the bootstrap actions detail.

func (ListBootstrapActionsOutput) String

String returns the string representation

type ListBootstrapActionsPaginator added in v0.9.0

type ListBootstrapActionsPaginator struct {
	aws.Pager
}

ListBootstrapActionsPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListBootstrapActionsPaginator added in v0.9.0

func NewListBootstrapActionsPaginator(req ListBootstrapActionsRequest) ListBootstrapActionsPaginator

NewListBootstrapActionsRequestPaginator returns a paginator for ListBootstrapActions. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

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

// Example iterating over pages.
req := client.ListBootstrapActionsRequest(input)
p := emr.NewListBootstrapActionsRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListBootstrapActionsPaginator) CurrentPage added in v0.9.0

type ListBootstrapActionsRequest

type ListBootstrapActionsRequest struct {
	*aws.Request
	Input *ListBootstrapActionsInput
	Copy  func(*ListBootstrapActionsInput) ListBootstrapActionsRequest
}

ListBootstrapActionsRequest is the request type for the ListBootstrapActions API operation.

func (ListBootstrapActionsRequest) Send

Send marshals and sends the ListBootstrapActions API request.

type ListBootstrapActionsResponse added in v0.9.0

type ListBootstrapActionsResponse struct {
	*ListBootstrapActionsOutput
	// contains filtered or unexported fields
}

ListBootstrapActionsResponse is the response type for the ListBootstrapActions API operation.

func (*ListBootstrapActionsResponse) SDKResponseMetdata added in v0.9.0

func (r *ListBootstrapActionsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListBootstrapActions request.

type ListClustersInput

type ListClustersInput struct {

	// The cluster state filters to apply when listing clusters.
	ClusterStates []ClusterState `type:"list"`

	// The creation date and time beginning value filter for listing clusters.
	CreatedAfter *time.Time `type:"timestamp"`

	// The creation date and time end value filter for listing clusters.
	CreatedBefore *time.Time `type:"timestamp"`

	// The pagination token that indicates the next set of results to retrieve.
	Marker *string `type:"string"`
	// contains filtered or unexported fields
}

This input determines how the ListClusters action filters the list of clusters that it returns.

func (ListClustersInput) String

func (s ListClustersInput) String() string

String returns the string representation

type 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
}

This contains a ClusterSummaryList with the cluster details; for example, the cluster IDs, names, and status.

func (ListClustersOutput) String

func (s ListClustersOutput) String() string

String returns the string representation

type ListClustersPaginator added in v0.9.0

type ListClustersPaginator struct {
	aws.Pager
}

ListClustersPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListClustersPaginator added in v0.9.0

func NewListClustersPaginator(req ListClustersRequest) ListClustersPaginator

NewListClustersRequestPaginator returns a paginator for ListClusters. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

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

// Example iterating over pages.
req := client.ListClustersRequest(input)
p := emr.NewListClustersRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListClustersPaginator) CurrentPage added in v0.9.0

func (p *ListClustersPaginator) CurrentPage() *ListClustersOutput

type ListClustersRequest

type ListClustersRequest struct {
	*aws.Request
	Input *ListClustersInput
	Copy  func(*ListClustersInput) ListClustersRequest
}

ListClustersRequest is the request type for the ListClusters API operation.

func (ListClustersRequest) Send

Send marshals and sends the ListClusters API request.

type ListClustersResponse added in v0.9.0

type ListClustersResponse struct {
	*ListClustersOutput
	// contains filtered or unexported fields
}

ListClustersResponse is the response type for the ListClusters API operation.

func (*ListClustersResponse) SDKResponseMetdata added in v0.9.0

func (r *ListClustersResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListClusters request.

type 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) 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

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) String

func (s ListInstanceFleetsOutput) String() string

String returns the string representation

type ListInstanceFleetsPaginator added in v0.9.0

type ListInstanceFleetsPaginator struct {
	aws.Pager
}

ListInstanceFleetsPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListInstanceFleetsPaginator added in v0.9.0

func NewListInstanceFleetsPaginator(req ListInstanceFleetsRequest) ListInstanceFleetsPaginator

NewListInstanceFleetsRequestPaginator returns a paginator for ListInstanceFleets. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

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

// Example iterating over pages.
req := client.ListInstanceFleetsRequest(input)
p := emr.NewListInstanceFleetsRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListInstanceFleetsPaginator) CurrentPage added in v0.9.0

type ListInstanceFleetsRequest

type ListInstanceFleetsRequest struct {
	*aws.Request
	Input *ListInstanceFleetsInput
	Copy  func(*ListInstanceFleetsInput) ListInstanceFleetsRequest
}

ListInstanceFleetsRequest is the request type for the ListInstanceFleets API operation.

func (ListInstanceFleetsRequest) Send

Send marshals and sends the ListInstanceFleets API request.

type ListInstanceFleetsResponse added in v0.9.0

type ListInstanceFleetsResponse struct {
	*ListInstanceFleetsOutput
	// contains filtered or unexported fields
}

ListInstanceFleetsResponse is the response type for the ListInstanceFleets API operation.

func (*ListInstanceFleetsResponse) SDKResponseMetdata added in v0.9.0

func (r *ListInstanceFleetsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListInstanceFleets request.

type 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
}

This input determines which instance groups to retrieve.

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

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
}

This input determines which instance groups to retrieve.

func (ListInstanceGroupsOutput) String

func (s ListInstanceGroupsOutput) String() string

String returns the string representation

type ListInstanceGroupsPaginator added in v0.9.0

type ListInstanceGroupsPaginator struct {
	aws.Pager
}

ListInstanceGroupsPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListInstanceGroupsPaginator added in v0.9.0

func NewListInstanceGroupsPaginator(req ListInstanceGroupsRequest) ListInstanceGroupsPaginator

NewListInstanceGroupsRequestPaginator returns a paginator for ListInstanceGroups. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

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

// Example iterating over pages.
req := client.ListInstanceGroupsRequest(input)
p := emr.NewListInstanceGroupsRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListInstanceGroupsPaginator) CurrentPage added in v0.9.0

type ListInstanceGroupsRequest

type ListInstanceGroupsRequest struct {
	*aws.Request
	Input *ListInstanceGroupsInput
	Copy  func(*ListInstanceGroupsInput) ListInstanceGroupsRequest
}

ListInstanceGroupsRequest is the request type for the ListInstanceGroups API operation.

func (ListInstanceGroupsRequest) Send

Send marshals and sends the ListInstanceGroups API request.

type ListInstanceGroupsResponse added in v0.9.0

type ListInstanceGroupsResponse struct {
	*ListInstanceGroupsOutput
	// contains filtered or unexported fields
}

ListInstanceGroupsResponse is the response type for the ListInstanceGroups API operation.

func (*ListInstanceGroupsResponse) SDKResponseMetdata added in v0.9.0

func (r *ListInstanceGroupsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListInstanceGroups request.

type 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 InstanceFleetType `type:"string" enum:"true"`

	// 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 []InstanceGroupType `type:"list"`

	// A list of instance states that will filter the instances returned with this
	// request.
	InstanceStates []InstanceState `type:"list"`

	// The pagination token that indicates the next set of results to retrieve.
	Marker *string `type:"string"`
	// contains filtered or unexported fields
}

This input determines which instances to list.

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

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
}

This output contains the list of instances.

func (ListInstancesOutput) String

func (s ListInstancesOutput) String() string

String returns the string representation

type ListInstancesPaginator added in v0.9.0

type ListInstancesPaginator struct {
	aws.Pager
}

ListInstancesPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListInstancesPaginator added in v0.9.0

func NewListInstancesPaginator(req ListInstancesRequest) ListInstancesPaginator

NewListInstancesRequestPaginator returns a paginator for ListInstances. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

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

// Example iterating over pages.
req := client.ListInstancesRequest(input)
p := emr.NewListInstancesRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListInstancesPaginator) CurrentPage added in v0.9.0

func (p *ListInstancesPaginator) CurrentPage() *ListInstancesOutput

type ListInstancesRequest

type ListInstancesRequest struct {
	*aws.Request
	Input *ListInstancesInput
	Copy  func(*ListInstancesInput) ListInstancesRequest
}

ListInstancesRequest is the request type for the ListInstances API operation.

func (ListInstancesRequest) Send

Send marshals and sends the ListInstances API request.

type ListInstancesResponse added in v0.9.0

type ListInstancesResponse struct {
	*ListInstancesOutput
	// contains filtered or unexported fields
}

ListInstancesResponse is the response type for the ListInstances API operation.

func (*ListInstancesResponse) SDKResponseMetdata added in v0.9.0

func (r *ListInstancesResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListInstances request.

type 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) String

String returns the string representation

type 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) String

String returns the string representation

type ListSecurityConfigurationsPaginator added in v0.9.0

type ListSecurityConfigurationsPaginator struct {
	aws.Pager
}

ListSecurityConfigurationsPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListSecurityConfigurationsPaginator added in v0.9.0

func NewListSecurityConfigurationsPaginator(req ListSecurityConfigurationsRequest) ListSecurityConfigurationsPaginator

NewListSecurityConfigurationsRequestPaginator returns a paginator for ListSecurityConfigurations. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

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

// Example iterating over pages.
req := client.ListSecurityConfigurationsRequest(input)
p := emr.NewListSecurityConfigurationsRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListSecurityConfigurationsPaginator) CurrentPage added in v0.9.0

type ListSecurityConfigurationsRequest

type ListSecurityConfigurationsRequest struct {
	*aws.Request
	Input *ListSecurityConfigurationsInput
	Copy  func(*ListSecurityConfigurationsInput) ListSecurityConfigurationsRequest
}

ListSecurityConfigurationsRequest is the request type for the ListSecurityConfigurations API operation.

func (ListSecurityConfigurationsRequest) Send

Send marshals and sends the ListSecurityConfigurations API request.

type ListSecurityConfigurationsResponse added in v0.9.0

type ListSecurityConfigurationsResponse struct {
	*ListSecurityConfigurationsOutput
	// contains filtered or unexported fields
}

ListSecurityConfigurationsResponse is the response type for the ListSecurityConfigurations API operation.

func (*ListSecurityConfigurationsResponse) SDKResponseMetdata added in v0.9.0

func (r *ListSecurityConfigurationsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListSecurityConfigurations request.

type 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. You
	// can specify a maximum of ten Step IDs. The character constraint applies to
	// the overall length of the array.
	StepIds []string `type:"list"`

	// The filter to limit the step list based on certain states.
	StepStates []StepState `type:"list"`
	// contains filtered or unexported fields
}

This input determines which steps to list.

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

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
}

This output contains the list of steps returned in reverse order. This means that the last step is the first element in the list.

func (ListStepsOutput) String

func (s ListStepsOutput) String() string

String returns the string representation

type ListStepsPaginator added in v0.9.0

type ListStepsPaginator struct {
	aws.Pager
}

ListStepsPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListStepsPaginator added in v0.9.0

func NewListStepsPaginator(req ListStepsRequest) ListStepsPaginator

NewListStepsRequestPaginator returns a paginator for ListSteps. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

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

// Example iterating over pages.
req := client.ListStepsRequest(input)
p := emr.NewListStepsRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListStepsPaginator) CurrentPage added in v0.9.0

func (p *ListStepsPaginator) CurrentPage() *ListStepsOutput

type ListStepsRequest

type ListStepsRequest struct {
	*aws.Request
	Input *ListStepsInput
	Copy  func(*ListStepsInput) ListStepsRequest
}

ListStepsRequest is the request type for the ListSteps API operation.

func (ListStepsRequest) Send

Send marshals and sends the ListSteps API request.

type ListStepsResponse added in v0.9.0

type ListStepsResponse struct {
	*ListStepsOutput
	// contains filtered or unexported fields
}

ListStepsResponse is the response type for the ListSteps API operation.

func (*ListStepsResponse) SDKResponseMetdata added in v0.9.0

func (r *ListStepsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListSteps request.

type ManagedScalingPolicy added in v0.21.0

type ManagedScalingPolicy struct {

	// The EC2 unit limits for a managed scaling policy. The managed scaling activity
	// of a cluster is not allowed to go above or below these limits. The limit
	// only applies to the core and task nodes. The master node cannot be scaled
	// after initial configuration.
	ComputeLimits *ComputeLimits `type:"structure"`
	// contains filtered or unexported fields
}

Managed scaling policy for an Amazon EMR cluster. The policy specifies the limits for resources that can be added or terminated from a cluster. The policy only applies to the core and task nodes. The master node cannot be scaled after initial configuration.

func (ManagedScalingPolicy) String added in v0.21.0

func (s ManagedScalingPolicy) String() string

String returns the string representation

func (*ManagedScalingPolicy) Validate added in v0.21.0

func (s *ManagedScalingPolicy) Validate() error

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

type MarketType

type MarketType string
const (
	MarketTypeOnDemand MarketType = "ON_DEMAND"
	MarketTypeSpot     MarketType = "SPOT"
)

Enum values for MarketType

func (MarketType) MarshalValue added in v0.3.0

func (enum MarketType) MarshalValue() (string, error)

func (MarketType) MarshalValueBuf added in v0.3.0

func (enum MarketType) MarshalValueBuf(b []byte) ([]byte, error)

type MetricDimension

type MetricDimension struct {

	// The dimension name.
	Key *string `type:"string"`

	// The dimension value.
	Value *string `type:"string"`
	// contains filtered or unexported fields
}

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.

func (MetricDimension) String

func (s MetricDimension) String() string

String returns the string representation

type ModifyClusterInput added in v0.18.0

type ModifyClusterInput struct {

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

	// The number of steps that can be executed concurrently. You can specify a
	// maximum of 256 steps.
	StepConcurrencyLevel *int64 `type:"integer"`
	// contains filtered or unexported fields
}

func (ModifyClusterInput) String added in v0.18.0

func (s ModifyClusterInput) String() string

String returns the string representation

func (*ModifyClusterInput) Validate added in v0.18.0

func (s *ModifyClusterInput) Validate() error

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

type ModifyClusterOutput added in v0.18.0

type ModifyClusterOutput struct {

	// The number of steps that can be executed concurrently.
	StepConcurrencyLevel *int64 `type:"integer"`
	// contains filtered or unexported fields
}

func (ModifyClusterOutput) String added in v0.18.0

func (s ModifyClusterOutput) String() string

String returns the string representation

type ModifyClusterRequest added in v0.18.0

type ModifyClusterRequest struct {
	*aws.Request
	Input *ModifyClusterInput
	Copy  func(*ModifyClusterInput) ModifyClusterRequest
}

ModifyClusterRequest is the request type for the ModifyCluster API operation.

func (ModifyClusterRequest) Send added in v0.18.0

Send marshals and sends the ModifyCluster API request.

type ModifyClusterResponse added in v0.18.0

type ModifyClusterResponse struct {
	*ModifyClusterOutput
	// contains filtered or unexported fields
}

ModifyClusterResponse is the response type for the ModifyCluster API operation.

func (*ModifyClusterResponse) SDKResponseMetdata added in v0.18.0

func (r *ModifyClusterResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ModifyCluster request.

type 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) 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

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

func (ModifyInstanceFleetOutput) String

func (s ModifyInstanceFleetOutput) String() string

String returns the string representation

type ModifyInstanceFleetRequest

type ModifyInstanceFleetRequest struct {
	*aws.Request
	Input *ModifyInstanceFleetInput
	Copy  func(*ModifyInstanceFleetInput) ModifyInstanceFleetRequest
}

ModifyInstanceFleetRequest is the request type for the ModifyInstanceFleet API operation.

func (ModifyInstanceFleetRequest) Send

Send marshals and sends the ModifyInstanceFleet API request.

type ModifyInstanceFleetResponse added in v0.9.0

type ModifyInstanceFleetResponse struct {
	*ModifyInstanceFleetOutput
	// contains filtered or unexported fields
}

ModifyInstanceFleetResponse is the response type for the ModifyInstanceFleet API operation.

func (*ModifyInstanceFleetResponse) SDKResponseMetdata added in v0.9.0

func (r *ModifyInstanceFleetResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ModifyInstanceFleet request.

type 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
}

Change the size of some instance groups.

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

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

func (ModifyInstanceGroupsOutput) String

String returns the string representation

type ModifyInstanceGroupsRequest

type ModifyInstanceGroupsRequest struct {
	*aws.Request
	Input *ModifyInstanceGroupsInput
	Copy  func(*ModifyInstanceGroupsInput) ModifyInstanceGroupsRequest
}

ModifyInstanceGroupsRequest is the request type for the ModifyInstanceGroups API operation.

func (ModifyInstanceGroupsRequest) Send

Send marshals and sends the ModifyInstanceGroups API request.

type ModifyInstanceGroupsResponse added in v0.9.0

type ModifyInstanceGroupsResponse struct {
	*ModifyInstanceGroupsOutput
	// contains filtered or unexported fields
}

ModifyInstanceGroupsResponse is the response type for the ModifyInstanceGroups API operation.

func (*ModifyInstanceGroupsResponse) SDKResponseMetdata added in v0.9.0

func (r *ModifyInstanceGroupsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ModifyInstanceGroups request.

type OnDemandProvisioningAllocationStrategy added in v0.24.0

type OnDemandProvisioningAllocationStrategy string
const (
	OnDemandProvisioningAllocationStrategyLowestPrice OnDemandProvisioningAllocationStrategy = "lowest-price"
)

Enum values for OnDemandProvisioningAllocationStrategy

func (OnDemandProvisioningAllocationStrategy) MarshalValue added in v0.24.0

func (enum OnDemandProvisioningAllocationStrategy) MarshalValue() (string, error)

func (OnDemandProvisioningAllocationStrategy) MarshalValueBuf added in v0.24.0

func (enum OnDemandProvisioningAllocationStrategy) MarshalValueBuf(b []byte) ([]byte, error)

type OnDemandProvisioningSpecification added in v0.24.0

type OnDemandProvisioningSpecification struct {

	// Specifies the strategy to use in launching On-Demand instance fleets. Currently,
	// the only option is lowest-price (the default), which launches the lowest
	// price first.
	//
	// AllocationStrategy is a required field
	AllocationStrategy OnDemandProvisioningAllocationStrategy `type:"string" required:"true" enum:"true"`
	// contains filtered or unexported fields
}

The launch specification for On-Demand instances in the instance fleet, which determines the allocation strategy.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. On-Demand instances allocation strategy is available in Amazon EMR version 5.12.1 and later.

func (OnDemandProvisioningSpecification) String added in v0.24.0

String returns the string representation

func (*OnDemandProvisioningSpecification) Validate added in v0.24.0

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

type 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
}

The Amazon EC2 Availability Zone configuration of the cluster (job flow).

func (PlacementType) String

func (s PlacementType) String() string

String returns the string representation

type PortRange added in v0.11.0

type PortRange struct {

	// The smallest port number in a specified range of port numbers.
	MaxRange *int64 `type:"integer"`

	// The smallest port number in a specified range of port numbers.
	//
	// MinRange is a required field
	MinRange *int64 `type:"integer" required:"true"`
	// contains filtered or unexported fields
}

A list of port ranges that are permitted to allow inbound traffic from all public IP addresses. To specify a single port, use the same value for MinRange and MaxRange.

func (PortRange) String added in v0.11.0

func (s PortRange) String() string

String returns the string representation

func (*PortRange) Validate added in v0.11.0

func (s *PortRange) Validate() error

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

type 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) 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

type PutAutoScalingPolicyOutput struct {

	// The automatic scaling policy definition.
	AutoScalingPolicy *AutoScalingPolicyDescription `type:"structure"`

	// The Amazon Resource Name of the cluster.
	ClusterArn *string `min:"20" type:"string"`

	// 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) String

String returns the string representation

type PutAutoScalingPolicyRequest

type PutAutoScalingPolicyRequest struct {
	*aws.Request
	Input *PutAutoScalingPolicyInput
	Copy  func(*PutAutoScalingPolicyInput) PutAutoScalingPolicyRequest
}

PutAutoScalingPolicyRequest is the request type for the PutAutoScalingPolicy API operation.

func (PutAutoScalingPolicyRequest) Send

Send marshals and sends the PutAutoScalingPolicy API request.

type PutAutoScalingPolicyResponse added in v0.9.0

type PutAutoScalingPolicyResponse struct {
	*PutAutoScalingPolicyOutput
	// contains filtered or unexported fields
}

PutAutoScalingPolicyResponse is the response type for the PutAutoScalingPolicy API operation.

func (*PutAutoScalingPolicyResponse) SDKResponseMetdata added in v0.9.0

func (r *PutAutoScalingPolicyResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the PutAutoScalingPolicy request.

type PutBlockPublicAccessConfigurationInput added in v0.11.0

type PutBlockPublicAccessConfigurationInput struct {

	// A configuration for Amazon EMR block public access. The configuration applies
	// to all clusters created in your account for the current Region. The configuration
	// specifies whether block public access is enabled. If block public access
	// is enabled, security groups associated with the cluster cannot have rules
	// that allow inbound traffic from 0.0.0.0/0 or ::/0 on a port, unless the port
	// is specified as an exception using PermittedPublicSecurityGroupRuleRanges
	// in the BlockPublicAccessConfiguration. By default, Port 22 (SSH) is an exception,
	// and public access is allowed on this port. You can change this by updating
	// BlockPublicSecurityGroupRules to remove the exception.
	//
	// For accounts that created clusters in a Region before November 25, 2019,
	// block public access is disabled by default in that Region. To use this feature,
	// you must manually enable and configure it. For accounts that did not create
	// an EMR cluster in a Region before this date, block public access is enabled
	// by default in that Region.
	//
	// BlockPublicAccessConfiguration is a required field
	BlockPublicAccessConfiguration *BlockPublicAccessConfiguration `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (PutBlockPublicAccessConfigurationInput) String added in v0.11.0

String returns the string representation

func (*PutBlockPublicAccessConfigurationInput) Validate added in v0.11.0

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

type PutBlockPublicAccessConfigurationOutput added in v0.11.0

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

func (PutBlockPublicAccessConfigurationOutput) String added in v0.11.0

String returns the string representation

type PutBlockPublicAccessConfigurationRequest added in v0.11.0

PutBlockPublicAccessConfigurationRequest is the request type for the PutBlockPublicAccessConfiguration API operation.

func (PutBlockPublicAccessConfigurationRequest) Send added in v0.11.0

Send marshals and sends the PutBlockPublicAccessConfiguration API request.

type PutBlockPublicAccessConfigurationResponse added in v0.11.0

type PutBlockPublicAccessConfigurationResponse struct {
	*PutBlockPublicAccessConfigurationOutput
	// contains filtered or unexported fields
}

PutBlockPublicAccessConfigurationResponse is the response type for the PutBlockPublicAccessConfiguration API operation.

func (*PutBlockPublicAccessConfigurationResponse) SDKResponseMetdata added in v0.11.0

func (r *PutBlockPublicAccessConfigurationResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the PutBlockPublicAccessConfiguration request.

type PutManagedScalingPolicyInput added in v0.21.0

type PutManagedScalingPolicyInput struct {

	// Specifies the ID of an EMR cluster where the managed scaling policy is attached.
	//
	// ClusterId is a required field
	ClusterId *string `type:"string" required:"true"`

	// Specifies the constraints for the managed scaling policy.
	//
	// ManagedScalingPolicy is a required field
	ManagedScalingPolicy *ManagedScalingPolicy `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (PutManagedScalingPolicyInput) String added in v0.21.0

String returns the string representation

func (*PutManagedScalingPolicyInput) Validate added in v0.21.0

func (s *PutManagedScalingPolicyInput) Validate() error

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

type PutManagedScalingPolicyOutput added in v0.21.0

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

func (PutManagedScalingPolicyOutput) String added in v0.21.0

String returns the string representation

type PutManagedScalingPolicyRequest added in v0.21.0

type PutManagedScalingPolicyRequest struct {
	*aws.Request
	Input *PutManagedScalingPolicyInput
	Copy  func(*PutManagedScalingPolicyInput) PutManagedScalingPolicyRequest
}

PutManagedScalingPolicyRequest is the request type for the PutManagedScalingPolicy API operation.

func (PutManagedScalingPolicyRequest) Send added in v0.21.0

Send marshals and sends the PutManagedScalingPolicy API request.

type PutManagedScalingPolicyResponse added in v0.21.0

type PutManagedScalingPolicyResponse struct {
	*PutManagedScalingPolicyOutput
	// contains filtered or unexported fields
}

PutManagedScalingPolicyResponse is the response type for the PutManagedScalingPolicy API operation.

func (*PutManagedScalingPolicyResponse) SDKResponseMetdata added in v0.21.0

func (r *PutManagedScalingPolicyResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the PutManagedScalingPolicy request.

type 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) 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

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

func (RemoveAutoScalingPolicyOutput) String

String returns the string representation

type RemoveAutoScalingPolicyRequest

type RemoveAutoScalingPolicyRequest struct {
	*aws.Request
	Input *RemoveAutoScalingPolicyInput
	Copy  func(*RemoveAutoScalingPolicyInput) RemoveAutoScalingPolicyRequest
}

RemoveAutoScalingPolicyRequest is the request type for the RemoveAutoScalingPolicy API operation.

func (RemoveAutoScalingPolicyRequest) Send

Send marshals and sends the RemoveAutoScalingPolicy API request.

type RemoveAutoScalingPolicyResponse added in v0.9.0

type RemoveAutoScalingPolicyResponse struct {
	*RemoveAutoScalingPolicyOutput
	// contains filtered or unexported fields
}

RemoveAutoScalingPolicyResponse is the response type for the RemoveAutoScalingPolicy API operation.

func (*RemoveAutoScalingPolicyResponse) SDKResponseMetdata added in v0.9.0

func (r *RemoveAutoScalingPolicyResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the RemoveAutoScalingPolicy request.

type RemoveManagedScalingPolicyInput added in v0.21.0

type RemoveManagedScalingPolicyInput struct {

	// Specifies the ID of the cluster from which the managed scaling policy will
	// be removed.
	//
	// ClusterId is a required field
	ClusterId *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (RemoveManagedScalingPolicyInput) String added in v0.21.0

String returns the string representation

func (*RemoveManagedScalingPolicyInput) Validate added in v0.21.0

func (s *RemoveManagedScalingPolicyInput) Validate() error

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

type RemoveManagedScalingPolicyOutput added in v0.21.0

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

func (RemoveManagedScalingPolicyOutput) String added in v0.21.0

String returns the string representation

type RemoveManagedScalingPolicyRequest added in v0.21.0

type RemoveManagedScalingPolicyRequest struct {
	*aws.Request
	Input *RemoveManagedScalingPolicyInput
	Copy  func(*RemoveManagedScalingPolicyInput) RemoveManagedScalingPolicyRequest
}

RemoveManagedScalingPolicyRequest is the request type for the RemoveManagedScalingPolicy API operation.

func (RemoveManagedScalingPolicyRequest) Send added in v0.21.0

Send marshals and sends the RemoveManagedScalingPolicy API request.

type RemoveManagedScalingPolicyResponse added in v0.21.0

type RemoveManagedScalingPolicyResponse struct {
	*RemoveManagedScalingPolicyOutput
	// contains filtered or unexported fields
}

RemoveManagedScalingPolicyResponse is the response type for the RemoveManagedScalingPolicy API operation.

func (*RemoveManagedScalingPolicyResponse) SDKResponseMetdata added in v0.21.0

func (r *RemoveManagedScalingPolicyResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the RemoveManagedScalingPolicy request.

type 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
}

This input identifies a cluster and a list of tags to remove.

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

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

This output indicates the result of removing tags from a resource.

func (RemoveTagsOutput) String

func (s RemoveTagsOutput) String() string

String returns the string representation

type RemoveTagsRequest

type RemoveTagsRequest struct {
	*aws.Request
	Input *RemoveTagsInput
	Copy  func(*RemoveTagsInput) RemoveTagsRequest
}

RemoveTagsRequest is the request type for the RemoveTags API operation.

func (RemoveTagsRequest) Send

Send marshals and sends the RemoveTags API request.

type RemoveTagsResponse added in v0.9.0

type RemoveTagsResponse struct {
	*RemoveTagsOutput
	// contains filtered or unexported fields
}

RemoveTagsResponse is the response type for the RemoveTags API operation.

func (*RemoveTagsResponse) SDKResponseMetdata added in v0.9.0

func (r *RemoveTagsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the RemoveTags request.

type RepoUpgradeOnBoot

type RepoUpgradeOnBoot string
const (
	RepoUpgradeOnBootSecurity RepoUpgradeOnBoot = "SECURITY"
	RepoUpgradeOnBootNone     RepoUpgradeOnBoot = "NONE"
)

Enum values for RepoUpgradeOnBoot

func (RepoUpgradeOnBoot) MarshalValue added in v0.3.0

func (enum RepoUpgradeOnBoot) MarshalValue() (string, error)

func (RepoUpgradeOnBoot) MarshalValueBuf added in v0.3.0

func (enum RepoUpgradeOnBoot) MarshalValueBuf(b []byte) ([]byte, error)

type RunJobFlowInput

type RunJobFlowInput struct {

	// A JSON string for selecting additional features.
	AdditionalInfo *string `type:"string"`

	// Applies only to Amazon EMR AMI versions 3.x and 2.x. For Amazon EMR releases
	// 4.0 and later, ReleaseLabel is used. To specify a custom AMI, use CustomAmiID.
	AmiVersion *string `type:"string"`

	// Applies to Amazon EMR releases 4.0 and later. A case-insensitive list of
	// applications for Amazon EMR to install and configure when launching the cluster.
	// For a list of applications available for each Amazon EMR release version,
	// see the Amazon EMR Release Guide (https://docs.aws.amazon.com/emr/latest/ReleaseGuide/).
	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"`

	// For Amazon EMR releases 4.0 and later. The list of configurations supplied
	// for the EMR cluster you are creating.
	Configurations []Configuration `type:"list"`

	// Available only in Amazon EMR version 5.7.0 and later. The ID of a custom
	// Amazon EBS-backed Linux AMI. If specified, Amazon EMR uses this AMI when
	// it launches cluster EC2 instances. For more information about custom AMIs
	// in Amazon EMR, see Using a Custom AMI (https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-custom-ami.html)
	// in the Amazon EMR Management Guide. If omitted, the cluster uses the base
	// Linux AMI for the ReleaseLabel specified. For Amazon EMR versions 2.x and
	// 3.x, use AmiVersion instead.
	//
	// For information about creating a custom AMI, see Creating an Amazon EBS-Backed
	// Linux AMI (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami-ebs.html)
	// in the Amazon Elastic Compute Cloud User Guide for Linux Instances. For information
	// about finding an AMI ID, see Finding a Linux AMI (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/finding-an-ami.html).
	CustomAmiId *string `type:"string"`

	// The size, in GiB, of the EBS root device volume of the Linux AMI that is
	// used for each EC2 instance. Available in Amazon EMR version 4.x and later.
	EbsRootVolumeSize *int64 `type:"integer"`

	// 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"`

	// Attributes for Kerberos configuration when Kerberos authentication is enabled
	// using a security configuration. For more information see Use Kerberos Authentication
	// (https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-kerberos.html)
	// in the EMR Management Guide.
	KerberosAttributes *KerberosAttributes `type:"structure"`

	// The AWS KMS customer master key (CMK) used for encrypting log files. If a
	// value is not provided, the logs will remain encrypted by AES-256. This attribute
	// is only available with EMR version 5.30.0 and later, excluding EMR 6.0.0.
	LogEncryptionKmsKeyId *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 specified managed scaling policy for an Amazon EMR cluster.
	ManagedScalingPolicy *ManagedScalingPolicy `type:"structure"`

	// 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 later,
	// 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 (https://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"`

	// The Amazon EMR release label, which determines the version of open-source
	// application packages installed on the cluster. Release labels are in the
	// form emr-x.x.x, where x.x.x is an Amazon EMR release version such as emr-5.14.0.
	// For more information about Amazon EMR release versions and included application
	// versions and features, see https://docs.aws.amazon.com/emr/latest/ReleaseGuide/
	// (https://docs.aws.amazon.com/emr/latest/ReleaseGuide/). The release label
	// applies only to Amazon EMR releases version 4.0 and later. Earlier versions
	// use AmiVersion.
	ReleaseLabel *string `type:"string"`

	// Applies only when CustomAmiID is used. Specifies which updates from the Amazon
	// Linux AMI package repositories to apply automatically when the instance boots
	// using the AMI. If omitted, the default is SECURITY, which indicates that
	// only security updates are applied. If NONE is specified, no updates are applied,
	// and all updates must be applied manually.
	RepoUpgradeOnBoot RepoUpgradeOnBoot `type:"string" enum:"true"`

	// 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 ScaleDownBehavior `type:"string" enum:"true"`

	// 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"`

	// Specifies the number of steps that can be executed concurrently. The default
	// value is 1. The maximum value is 256.
	StepConcurrencyLevel *int64 `type:"integer"`

	// 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 later,
	// use Applications.
	//
	// A list of strings that indicates third-party software to use. For more information,
	// see the Amazon EMR Developer Guide (https://docs.aws.amazon.com/emr/latest/DeveloperGuide/emr-dg.pdf).
	// 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"`

	// A value of true indicates that all IAM users in the AWS account can perform
	// cluster actions if they have the proper IAM policy permissions. This is the
	// default. A value of false indicates that only the IAM user who created the
	// cluster can perform actions.
	VisibleToAllUsers *bool `type:"boolean"`
	// contains filtered or unexported fields
}

Input to the RunJobFlow operation.

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

type RunJobFlowOutput struct {

	// The Amazon Resource Name of the cluster.
	ClusterArn *string `min:"20" type:"string"`

	// An unique identifier for the job flow.
	JobFlowId *string `type:"string"`
	// contains filtered or unexported fields
}

The result of the RunJobFlow operation.

func (RunJobFlowOutput) String

func (s RunJobFlowOutput) String() string

String returns the string representation

type RunJobFlowRequest

type RunJobFlowRequest struct {
	*aws.Request
	Input *RunJobFlowInput
	Copy  func(*RunJobFlowInput) RunJobFlowRequest
}

RunJobFlowRequest is the request type for the RunJobFlow API operation.

func (RunJobFlowRequest) Send

Send marshals and sends the RunJobFlow API request.

type RunJobFlowResponse added in v0.9.0

type RunJobFlowResponse struct {
	*RunJobFlowOutput
	// contains filtered or unexported fields
}

RunJobFlowResponse is the response type for the RunJobFlow API operation.

func (*RunJobFlowResponse) SDKResponseMetdata added in v0.9.0

func (r *RunJobFlowResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the RunJobFlow request.

type ScaleDownBehavior

type ScaleDownBehavior string
const (
	ScaleDownBehaviorTerminateAtInstanceHour   ScaleDownBehavior = "TERMINATE_AT_INSTANCE_HOUR"
	ScaleDownBehaviorTerminateAtTaskCompletion ScaleDownBehavior = "TERMINATE_AT_TASK_COMPLETION"
)

Enum values for ScaleDownBehavior

func (ScaleDownBehavior) MarshalValue added in v0.3.0

func (enum ScaleDownBehavior) MarshalValue() (string, error)

func (ScaleDownBehavior) MarshalValueBuf added in v0.3.0

func (enum ScaleDownBehavior) MarshalValueBuf(b []byte) ([]byte, error)

type ScalingAction

type ScalingAction struct {

	// Not available for instance groups. Instance groups use the market type specified
	// for the group.
	Market MarketType `type:"string" enum:"true"`

	// 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
}

The type of adjustment the automatic scaling activity makes when triggered, and the periodicity of the adjustment.

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

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
}

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.

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

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
}

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.

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

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
}

The conditions that trigger an automatic scaling activity.

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

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
}

Configuration of the script to run during a bootstrap action.

func (ScriptBootstrapActionConfig) 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

type SecurityConfigurationSummary struct {

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

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

The creation date and time, and name, of a security configuration.

func (SecurityConfigurationSummary) String

String returns the string representation

type 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
}

The input argument to the TerminationProtection operation.

func (SetTerminationProtectionInput) 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

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

func (SetTerminationProtectionOutput) String

String returns the string representation

type SetTerminationProtectionRequest

type SetTerminationProtectionRequest struct {
	*aws.Request
	Input *SetTerminationProtectionInput
	Copy  func(*SetTerminationProtectionInput) SetTerminationProtectionRequest
}

SetTerminationProtectionRequest is the request type for the SetTerminationProtection API operation.

func (SetTerminationProtectionRequest) Send

Send marshals and sends the SetTerminationProtection API request.

type SetTerminationProtectionResponse added in v0.9.0

type SetTerminationProtectionResponse struct {
	*SetTerminationProtectionOutput
	// contains filtered or unexported fields
}

SetTerminationProtectionResponse is the response type for the SetTerminationProtection API operation.

func (*SetTerminationProtectionResponse) SDKResponseMetdata added in v0.9.0

func (r *SetTerminationProtectionResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the SetTerminationProtection request.

type SetVisibleToAllUsersInput

type SetVisibleToAllUsersInput struct {

	// The unique identifier of the job flow (cluster).
	//
	// JobFlowIds is a required field
	JobFlowIds []string `type:"list" required:"true"`

	// A value of true indicates that all IAM users in the AWS account can perform
	// cluster actions if they have the proper IAM policy permissions. This is the
	// default. A value of false indicates that only the IAM user who created the
	// cluster can perform actions.
	//
	// VisibleToAllUsers is a required field
	VisibleToAllUsers *bool `type:"boolean" required:"true"`
	// contains filtered or unexported fields
}

The input to the SetVisibleToAllUsers action.

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

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

func (SetVisibleToAllUsersOutput) String

String returns the string representation

type SetVisibleToAllUsersRequest

type SetVisibleToAllUsersRequest struct {
	*aws.Request
	Input *SetVisibleToAllUsersInput
	Copy  func(*SetVisibleToAllUsersInput) SetVisibleToAllUsersRequest
}

SetVisibleToAllUsersRequest is the request type for the SetVisibleToAllUsers API operation.

func (SetVisibleToAllUsersRequest) Send

Send marshals and sends the SetVisibleToAllUsers API request.

type SetVisibleToAllUsersResponse added in v0.9.0

type SetVisibleToAllUsersResponse struct {
	*SetVisibleToAllUsersOutput
	// contains filtered or unexported fields
}

SetVisibleToAllUsersResponse is the response type for the SetVisibleToAllUsers API operation.

func (*SetVisibleToAllUsersResponse) SDKResponseMetdata added in v0.9.0

func (r *SetVisibleToAllUsersResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the SetVisibleToAllUsers request.

type 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
}

Policy for customizing shrink operations. Allows configuration of decommissioning timeout and targeted instance shrinking.

func (ShrinkPolicy) String

func (s ShrinkPolicy) String() string

String returns the string representation

type 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 an integer. For example,
	// 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 AdjustmentType `type:"string" enum:"true"`

	// 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 an
	// integer. For example, -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
}

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.

func (SimpleScalingPolicyConfiguration) String

String returns the string representation

func (*SimpleScalingPolicyConfiguration) Validate

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

type SpotProvisioningAllocationStrategy added in v0.24.0

type SpotProvisioningAllocationStrategy string
const (
	SpotProvisioningAllocationStrategyCapacityOptimized SpotProvisioningAllocationStrategy = "capacity-optimized"
)

Enum values for SpotProvisioningAllocationStrategy

func (SpotProvisioningAllocationStrategy) MarshalValue added in v0.24.0

func (enum SpotProvisioningAllocationStrategy) MarshalValue() (string, error)

func (SpotProvisioningAllocationStrategy) MarshalValueBuf added in v0.24.0

func (enum SpotProvisioningAllocationStrategy) MarshalValueBuf(b []byte) ([]byte, error)

type SpotProvisioningSpecification

type SpotProvisioningSpecification struct {

	// Specifies the strategy to use in launching Spot instance fleets. Currently,
	// the only option is capacity-optimized (the default), which launches instances
	// from Spot instance pools with optimal capacity for the number of instances
	// that are launching.
	AllocationStrategy SpotProvisioningAllocationStrategy `type:"string" enum:"true"`

	// 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; that is, when all Spot instances could
	// not be provisioned within the Spot provisioning timeout. Valid values are
	// TERMINATE_CLUSTER and SWITCH_TO_ON_DEMAND. SWITCH_TO_ON_DEMAND specifies
	// that if no Spot instances are available, On-Demand Instances should be provisioned
	// to fulfill any remaining Spot capacity.
	//
	// TimeoutAction is a required field
	TimeoutAction SpotProvisioningTimeoutAction `type:"string" required:"true" enum:"true"`

	// 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
}

The launch specification for Spot instances in the instance fleet, which determines the defined duration, provisioning timeout behavior, and allocation strategy.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. Spot instance allocation strategy is available in Amazon EMR version 5.12.1 and later.

func (SpotProvisioningSpecification) 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 SpotProvisioningTimeoutAction

type SpotProvisioningTimeoutAction string
const (
	SpotProvisioningTimeoutActionSwitchToOnDemand SpotProvisioningTimeoutAction = "SWITCH_TO_ON_DEMAND"
	SpotProvisioningTimeoutActionTerminateCluster SpotProvisioningTimeoutAction = "TERMINATE_CLUSTER"
)

Enum values for SpotProvisioningTimeoutAction

func (SpotProvisioningTimeoutAction) MarshalValue added in v0.3.0

func (enum SpotProvisioningTimeoutAction) MarshalValue() (string, error)

func (SpotProvisioningTimeoutAction) MarshalValueBuf added in v0.3.0

func (enum SpotProvisioningTimeoutAction) MarshalValueBuf(b []byte) ([]byte, error)

type Statistic

type Statistic string
const (
	StatisticSampleCount Statistic = "SAMPLE_COUNT"
	StatisticAverage     Statistic = "AVERAGE"
	StatisticSum         Statistic = "SUM"
	StatisticMinimum     Statistic = "MINIMUM"
	StatisticMaximum     Statistic = "MAXIMUM"
)

Enum values for Statistic

func (Statistic) MarshalValue added in v0.3.0

func (enum Statistic) MarshalValue() (string, error)

func (Statistic) MarshalValueBuf added in v0.3.0

func (enum Statistic) MarshalValueBuf(b []byte) ([]byte, error)

type Step

type Step struct {

	// The action to take when the cluster step fails. Possible values are TERMINATE_CLUSTER,
	// CANCEL_AND_WAIT, and CONTINUE. TERMINATE_JOB_FLOW is provided for backward
	// compatibility. We recommend using TERMINATE_CLUSTER instead.
	ActionOnFailure ActionOnFailure `type:"string" enum:"true"`

	// 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
}

This represents a step in a cluster.

func (Step) String

func (s Step) String() string

String returns the string representation

type StepCancellationOption added in v0.18.0

type StepCancellationOption string
const (
	StepCancellationOptionSendInterrupt    StepCancellationOption = "SEND_INTERRUPT"
	StepCancellationOptionTerminateProcess StepCancellationOption = "TERMINATE_PROCESS"
)

Enum values for StepCancellationOption

func (StepCancellationOption) MarshalValue added in v0.18.0

func (enum StepCancellationOption) MarshalValue() (string, error)

func (StepCancellationOption) MarshalValueBuf added in v0.18.0

func (enum StepCancellationOption) MarshalValueBuf(b []byte) ([]byte, error)

type StepConfig

type StepConfig struct {

	// The action to take when the cluster step fails. Possible values are TERMINATE_CLUSTER,
	// CANCEL_AND_WAIT, and CONTINUE. TERMINATE_JOB_FLOW is provided for backward
	// compatibility. We recommend using TERMINATE_CLUSTER instead.
	ActionOnFailure ActionOnFailure `type:"string" enum:"true"`

	// 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
}

Specification of a cluster (job flow) step.

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

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
}

Combines the execution state and configuration of a step.

func (StepDetail) String

func (s StepDetail) String() string

String returns the string representation

type StepExecutionState

type StepExecutionState string
const (
	StepExecutionStatePending     StepExecutionState = "PENDING"
	StepExecutionStateRunning     StepExecutionState = "RUNNING"
	StepExecutionStateContinue    StepExecutionState = "CONTINUE"
	StepExecutionStateCompleted   StepExecutionState = "COMPLETED"
	StepExecutionStateCancelled   StepExecutionState = "CANCELLED"
	StepExecutionStateFailed      StepExecutionState = "FAILED"
	StepExecutionStateInterrupted StepExecutionState = "INTERRUPTED"
)

Enum values for StepExecutionState

func (StepExecutionState) MarshalValue added in v0.3.0

func (enum StepExecutionState) MarshalValue() (string, error)

func (StepExecutionState) MarshalValueBuf added in v0.3.0

func (enum StepExecutionState) MarshalValueBuf(b []byte) ([]byte, error)

type StepExecutionStatusDetail

type StepExecutionStatusDetail struct {

	// The creation date and time of the step.
	//
	// CreationDateTime is a required field
	CreationDateTime *time.Time `type:"timestamp" required:"true"`

	// The completion date and time of the step.
	EndDateTime *time.Time `type:"timestamp"`

	// 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"`

	// The state of the step.
	//
	// State is a required field
	State StepExecutionState `type:"string" required:"true" enum:"true"`
	// contains filtered or unexported fields
}

The execution state of a step.

func (StepExecutionStatusDetail) String

func (s StepExecutionStatusDetail) String() string

String returns the string representation

type StepState

type StepState string
const (
	StepStatePending       StepState = "PENDING"
	StepStateCancelPending StepState = "CANCEL_PENDING"
	StepStateRunning       StepState = "RUNNING"
	StepStateCompleted     StepState = "COMPLETED"
	StepStateCancelled     StepState = "CANCELLED"
	StepStateFailed        StepState = "FAILED"
	StepStateInterrupted   StepState = "INTERRUPTED"
)

Enum values for StepState

func (StepState) MarshalValue added in v0.3.0

func (enum StepState) MarshalValue() (string, error)

func (StepState) MarshalValueBuf added in v0.3.0

func (enum StepState) MarshalValueBuf(b []byte) ([]byte, error)

type StepStateChangeReason

type StepStateChangeReason struct {

	// The programmable code for the state change reason. Note: Currently, the service
	// provides no code for the state change.
	Code StepStateChangeReasonCode `type:"string" enum:"true"`

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

The details of the step state change reason.

func (StepStateChangeReason) String

func (s StepStateChangeReason) String() string

String returns the string representation

type StepStateChangeReasonCode

type StepStateChangeReasonCode string
const (
	StepStateChangeReasonCodeNone StepStateChangeReasonCode = "NONE"
)

Enum values for StepStateChangeReasonCode

func (StepStateChangeReasonCode) MarshalValue added in v0.3.0

func (enum StepStateChangeReasonCode) MarshalValue() (string, error)

func (StepStateChangeReasonCode) MarshalValueBuf added in v0.3.0

func (enum StepStateChangeReasonCode) MarshalValueBuf(b []byte) ([]byte, error)

type 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 StepState `type:"string" enum:"true"`

	// 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
}

The execution status details of the cluster step.

func (StepStatus) String

func (s StepStatus) String() string

String returns the string representation

type StepSummary

type StepSummary struct {

	// The action to take when the cluster step fails. Possible values are TERMINATE_CLUSTER,
	// CANCEL_AND_WAIT, and CONTINUE. TERMINATE_JOB_FLOW is available for backward
	// compatibility. We recommend using TERMINATE_CLUSTER instead.
	ActionOnFailure ActionOnFailure `type:"string" enum:"true"`

	// 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
}

The summary of the cluster step.

func (StepSummary) String

func (s StepSummary) String() string

String returns the string representation

type StepTimeline

type StepTimeline struct {

	// The date and time when the cluster step was created.
	CreationDateTime *time.Time `type:"timestamp"`

	// The date and time when the cluster step execution completed or failed.
	EndDateTime *time.Time `type:"timestamp"`

	// The date and time when the cluster step execution started.
	StartDateTime *time.Time `type:"timestamp"`
	// contains filtered or unexported fields
}

The timeline of the cluster step lifecycle.

func (StepTimeline) String

func (s StepTimeline) String() string

String returns the string representation

type 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
}

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.

func (SupportedProductConfig) String

func (s SupportedProductConfig) String() string

String returns the string representation

type Tag

type Tag struct {

	// A user-defined key, which is the minimum required information for a valid
	// tag. For more information, see Tag (https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html).
	Key *string `type:"string"`

	// A user-defined value, which is optional in a tag. For more information, see
	// Tag Clusters (https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html).
	Value *string `type:"string"`
	// contains filtered or unexported fields
}

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 Tag Clusters (https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html).

func (Tag) String

func (s Tag) String() string

String returns the string representation

type 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
}

Input to the TerminateJobFlows operation.

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

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

func (TerminateJobFlowsOutput) String

func (s TerminateJobFlowsOutput) String() string

String returns the string representation

type TerminateJobFlowsRequest

type TerminateJobFlowsRequest struct {
	*aws.Request
	Input *TerminateJobFlowsInput
	Copy  func(*TerminateJobFlowsInput) TerminateJobFlowsRequest
}

TerminateJobFlowsRequest is the request type for the TerminateJobFlows API operation.

func (TerminateJobFlowsRequest) Send

Send marshals and sends the TerminateJobFlows API request.

type TerminateJobFlowsResponse added in v0.9.0

type TerminateJobFlowsResponse struct {
	*TerminateJobFlowsOutput
	// contains filtered or unexported fields
}

TerminateJobFlowsResponse is the response type for the TerminateJobFlows API operation.

func (*TerminateJobFlowsResponse) SDKResponseMetdata added in v0.9.0

func (r *TerminateJobFlowsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the TerminateJobFlows request.

type Unit

type Unit string
const (
	UnitNone               Unit = "NONE"
	UnitSeconds            Unit = "SECONDS"
	UnitMicroSeconds       Unit = "MICRO_SECONDS"
	UnitMilliSeconds       Unit = "MILLI_SECONDS"
	UnitBytes              Unit = "BYTES"
	UnitKiloBytes          Unit = "KILO_BYTES"
	UnitMegaBytes          Unit = "MEGA_BYTES"
	UnitGigaBytes          Unit = "GIGA_BYTES"
	UnitTeraBytes          Unit = "TERA_BYTES"
	UnitBits               Unit = "BITS"
	UnitKiloBits           Unit = "KILO_BITS"
	UnitMegaBits           Unit = "MEGA_BITS"
	UnitGigaBits           Unit = "GIGA_BITS"
	UnitTeraBits           Unit = "TERA_BITS"
	UnitPercent            Unit = "PERCENT"
	UnitCount              Unit = "COUNT"
	UnitBytesPerSecond     Unit = "BYTES_PER_SECOND"
	UnitKiloBytesPerSecond Unit = "KILO_BYTES_PER_SECOND"
	UnitMegaBytesPerSecond Unit = "MEGA_BYTES_PER_SECOND"
	UnitGigaBytesPerSecond Unit = "GIGA_BYTES_PER_SECOND"
	UnitTeraBytesPerSecond Unit = "TERA_BYTES_PER_SECOND"
	UnitBitsPerSecond      Unit = "BITS_PER_SECOND"
	UnitKiloBitsPerSecond  Unit = "KILO_BITS_PER_SECOND"
	UnitMegaBitsPerSecond  Unit = "MEGA_BITS_PER_SECOND"
	UnitGigaBitsPerSecond  Unit = "GIGA_BITS_PER_SECOND"
	UnitTeraBitsPerSecond  Unit = "TERA_BITS_PER_SECOND"
	UnitCountPerSecond     Unit = "COUNT_PER_SECOND"
)

Enum values for Unit

func (Unit) MarshalValue added in v0.3.0

func (enum Unit) MarshalValue() (string, error)

func (Unit) MarshalValueBuf added in v0.3.0

func (enum Unit) MarshalValueBuf(b []byte) ([]byte, error)

type 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
}

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.

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.

Directories

Path Synopsis
Package emriface provides an interface to enable mocking the Amazon Elastic MapReduce service client for testing your code.
Package emriface provides an interface to enable mocking the Amazon Elastic MapReduce service client for testing your code.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL