types

package
v1.28.0 Latest Latest
Warning

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

Go to latest
Published: Apr 24, 2024 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AuthorizationConfiguration added in v1.28.0

type AuthorizationConfiguration struct {

	// Encryption-related configuration input for the security configuration.
	EncryptionConfiguration *EncryptionConfiguration

	// Lake Formation related configuration inputs for the security configuration.
	LakeFormationConfiguration *LakeFormationConfiguration
	// contains filtered or unexported fields
}

Authorization-related configuration inputs for the security configuration.

type Certificate added in v1.8.0

type Certificate struct {

	// The ARN of the certificate generated for managed endpoint.
	CertificateArn *string

	// The base64 encoded PEM certificate data generated for managed endpoint.
	CertificateData *string
	// contains filtered or unexported fields
}

The entity representing certificate data generated for managed endpoint.

type CertificateProviderType added in v1.28.0

type CertificateProviderType string
const (
	CertificateProviderTypePem CertificateProviderType = "PEM"
)

Enum values for CertificateProviderType

func (CertificateProviderType) Values added in v1.28.0

Values returns all known values for CertificateProviderType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type CloudWatchMonitoringConfiguration

type CloudWatchMonitoringConfiguration struct {

	// The name of the log group for log publishing.
	//
	// This member is required.
	LogGroupName *string

	// The specified name prefix for log streams.
	LogStreamNamePrefix *string
	// contains filtered or unexported fields
}

A configuration for CloudWatch monitoring. You can configure your jobs to send log information to CloudWatch Logs.

type Configuration

type Configuration struct {

	// The classification within a configuration.
	//
	// This member is required.
	Classification *string

	// A list of additional configurations to apply within a configuration object.
	Configurations []Configuration

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

A configuration specification to be used when provisioning virtual clusters, which can include configurations for applications and software bundled with Amazon EMR on EKS. 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.

type ConfigurationOverrides

type ConfigurationOverrides struct {

	// The configurations for the application running by the job run.
	ApplicationConfiguration []Configuration

	// The configurations for monitoring.
	MonitoringConfiguration *MonitoringConfiguration
	// contains filtered or unexported fields
}

A configuration specification to be used to override existing configurations.

type ContainerInfo

type ContainerInfo interface {
	// contains filtered or unexported methods
}

The information about the container used for a job run or a managed endpoint.

The following types satisfy this interface:

ContainerInfoMemberEksInfo
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/emrcontainers/types"
)

func main() {
	var union types.ContainerInfo
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.ContainerInfoMemberEksInfo:
		_ = v.Value // Value is types.EksInfo

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}
Output:

type ContainerInfoMemberEksInfo

type ContainerInfoMemberEksInfo struct {
	Value EksInfo
	// contains filtered or unexported fields
}

The information about the Amazon EKS cluster.

type ContainerLogRotationConfiguration added in v1.19.0

type ContainerLogRotationConfiguration struct {

	// The number of files to keep in container after rotation.
	//
	// This member is required.
	MaxFilesToKeep *int32

	// The file size at which to rotate logs. Minimum of 2KB, Maximum of 2GB.
	//
	// This member is required.
	RotationSize *string
	// contains filtered or unexported fields
}

The settings for container log rotation.

type ContainerProvider

type ContainerProvider struct {

	// The ID of the container cluster.
	//
	// This member is required.
	Id *string

	// The type of the container provider. Amazon EKS is the only supported type as of
	// now.
	//
	// This member is required.
	Type ContainerProviderType

	// The information about the container cluster.
	Info ContainerInfo
	// contains filtered or unexported fields
}

The information about the container provider.

type ContainerProviderType

type ContainerProviderType string
const (
	ContainerProviderTypeEks ContainerProviderType = "EKS"
)

Enum values for ContainerProviderType

func (ContainerProviderType) Values

Values returns all known values for ContainerProviderType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type Credentials added in v1.18.0

type Credentials interface {
	// contains filtered or unexported methods
}

The structure containing the session token being returned.

The following types satisfy this interface:

CredentialsMemberToken
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/emrcontainers/types"
)

func main() {
	var union types.Credentials
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.CredentialsMemberToken:
		_ = v.Value // Value is string

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}
Output:

type CredentialsMemberToken added in v1.18.0

type CredentialsMemberToken struct {
	Value string
	// contains filtered or unexported fields
}

The actual session token being returned.

type EKSRequestThrottledException added in v1.27.0

type EKSRequestThrottledException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The request exceeded the Amazon EKS API operation limits.

func (*EKSRequestThrottledException) Error added in v1.27.0

func (*EKSRequestThrottledException) ErrorCode added in v1.27.0

func (e *EKSRequestThrottledException) ErrorCode() string

func (*EKSRequestThrottledException) ErrorFault added in v1.27.0

func (*EKSRequestThrottledException) ErrorMessage added in v1.27.0

func (e *EKSRequestThrottledException) ErrorMessage() string

type EksInfo

type EksInfo struct {

	// The namespaces of the Amazon EKS cluster.
	Namespace *string
	// contains filtered or unexported fields
}

The information about the Amazon EKS cluster.

type EncryptionConfiguration added in v1.28.0

type EncryptionConfiguration struct {

	// In-transit encryption-related input for the security configuration.
	InTransitEncryptionConfiguration *InTransitEncryptionConfiguration
	// contains filtered or unexported fields
}

Configurations related to encryption for the security configuration.

type Endpoint

type Endpoint struct {

	// The ARN of the endpoint.
	Arn *string

	// The certificate ARN of the endpoint. This field is under deprecation and will
	// be removed in future.
	//
	// Deprecated: Customer provided certificate-arn is deprecated and would be
	// removed in future.
	CertificateArn *string

	// The certificate generated by emr control plane on customer behalf to secure the
	// managed endpoint.
	CertificateAuthority *Certificate

	// The configuration settings that are used to override existing configurations
	// for endpoints.
	ConfigurationOverrides *ConfigurationOverrides

	// The date and time when the endpoint was created.
	CreatedAt *time.Time

	// The execution role ARN of the endpoint.
	ExecutionRoleArn *string

	// The reasons why the endpoint has failed.
	FailureReason FailureReason

	// The ID of the endpoint.
	Id *string

	// The name of the endpoint.
	Name *string

	// The EMR release version to be used for the endpoint.
	ReleaseLabel *string

	// The security group configuration of the endpoint.
	SecurityGroup *string

	// The server URL of the endpoint.
	ServerUrl *string

	// The state of the endpoint.
	State EndpointState

	// Additional details of the endpoint state.
	StateDetails *string

	// The subnet IDs of the endpoint.
	SubnetIds []string

	// The tags of the endpoint.
	Tags map[string]string

	// The type of the endpoint.
	Type *string

	// The ID of the endpoint's virtual cluster.
	VirtualClusterId *string
	// contains filtered or unexported fields
}

This entity represents the endpoint that is managed by Amazon EMR on EKS.

type EndpointState

type EndpointState string
const (
	EndpointStateCreating             EndpointState = "CREATING"
	EndpointStateActive               EndpointState = "ACTIVE"
	EndpointStateTerminating          EndpointState = "TERMINATING"
	EndpointStateTerminated           EndpointState = "TERMINATED"
	EndpointStateTerminatedWithErrors EndpointState = "TERMINATED_WITH_ERRORS"
)

Enum values for EndpointState

func (EndpointState) Values

func (EndpointState) Values() []EndpointState

Values returns all known values for EndpointState. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type FailureReason

type FailureReason string
const (
	FailureReasonInternalError      FailureReason = "INTERNAL_ERROR"
	FailureReasonUserError          FailureReason = "USER_ERROR"
	FailureReasonValidationError    FailureReason = "VALIDATION_ERROR"
	FailureReasonClusterUnavailable FailureReason = "CLUSTER_UNAVAILABLE"
)

Enum values for FailureReason

func (FailureReason) Values

func (FailureReason) Values() []FailureReason

Values returns all known values for FailureReason. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type InTransitEncryptionConfiguration added in v1.28.0

type InTransitEncryptionConfiguration struct {

	// TLS certificate-related configuration input for the security configuration.
	TlsCertificateConfiguration *TLSCertificateConfiguration
	// contains filtered or unexported fields
}

Configurations related to in-transit encryption for the security configuration.

type InternalServerException

type InternalServerException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

This is an internal server exception.

func (*InternalServerException) Error

func (e *InternalServerException) Error() string

func (*InternalServerException) ErrorCode

func (e *InternalServerException) ErrorCode() string

func (*InternalServerException) ErrorFault

func (e *InternalServerException) ErrorFault() smithy.ErrorFault

func (*InternalServerException) ErrorMessage

func (e *InternalServerException) ErrorMessage() string

type JobDriver

type JobDriver struct {

	// The job driver for job type.
	SparkSqlJobDriver *SparkSqlJobDriver

	// The job driver parameters specified for spark submit.
	SparkSubmitJobDriver *SparkSubmitJobDriver
	// contains filtered or unexported fields
}

Specify the driver that the job runs on. Exactly one of the two available job drivers is required, either sparkSqlJobDriver or sparkSubmitJobDriver.

type JobRun

type JobRun struct {

	// The ARN of job run.
	Arn *string

	// The client token used to start a job run.
	ClientToken *string

	// The configuration settings that are used to override default configuration.
	ConfigurationOverrides *ConfigurationOverrides

	// The date and time when the job run was created.
	CreatedAt *time.Time

	// The user who created the job run.
	CreatedBy *string

	// The execution role ARN of the job run.
	ExecutionRoleArn *string

	// The reasons why the job run has failed.
	FailureReason FailureReason

	// The date and time when the job run has finished.
	FinishedAt *time.Time

	// The ID of the job run.
	Id *string

	// Parameters of job driver for the job run.
	JobDriver *JobDriver

	// The name of the job run.
	Name *string

	// The release version of Amazon EMR.
	ReleaseLabel *string

	// The configuration of the retry policy that the job runs on.
	RetryPolicyConfiguration *RetryPolicyConfiguration

	// The current status of the retry policy executed on the job.
	RetryPolicyExecution *RetryPolicyExecution

	// The state of the job run.
	State JobRunState

	// Additional details of the job run state.
	StateDetails *string

	// The assigned tags of the job run.
	Tags map[string]string

	// The ID of the job run's virtual cluster.
	VirtualClusterId *string
	// contains filtered or unexported fields
}

This entity describes a job run. A job run is a unit of work, such as a Spark jar, PySpark script, or SparkSQL query, that you submit to Amazon EMR on EKS.

type JobRunState

type JobRunState string
const (
	JobRunStatePending       JobRunState = "PENDING"
	JobRunStateSubmitted     JobRunState = "SUBMITTED"
	JobRunStateRunning       JobRunState = "RUNNING"
	JobRunStateFailed        JobRunState = "FAILED"
	JobRunStateCancelled     JobRunState = "CANCELLED"
	JobRunStateCancelPending JobRunState = "CANCEL_PENDING"
	JobRunStateCompleted     JobRunState = "COMPLETED"
)

Enum values for JobRunState

func (JobRunState) Values

func (JobRunState) Values() []JobRunState

Values returns all known values for JobRunState. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type JobTemplate added in v1.15.0

type JobTemplate struct {

	// The job template data which holds values of StartJobRun API request.
	//
	// This member is required.
	JobTemplateData *JobTemplateData

	// The ARN of the job template.
	Arn *string

	// The date and time when the job template was created.
	CreatedAt *time.Time

	// The user who created the job template.
	CreatedBy *string

	// The error message in case the decryption of job template fails.
	DecryptionError *string

	// The ID of the job template.
	Id *string

	// The KMS key ARN used to encrypt the job template.
	KmsKeyArn *string

	// The name of the job template.
	Name *string

	// The tags assigned to the job template.
	Tags map[string]string
	// contains filtered or unexported fields
}

This entity describes a job template. Job template stores values of StartJobRun API request in a template and can be used to start a job run. Job template allows two use cases: avoid repeating recurring StartJobRun API request values, enforcing certain values in StartJobRun API request.

type JobTemplateData added in v1.15.0

type JobTemplateData struct {

	// The execution role ARN of the job run.
	//
	// This member is required.
	ExecutionRoleArn *string

	// Specify the driver that the job runs on. Exactly one of the two available job
	// drivers is required, either sparkSqlJobDriver or sparkSubmitJobDriver.
	//
	// This member is required.
	JobDriver *JobDriver

	// The release version of Amazon EMR.
	//
	// This member is required.
	ReleaseLabel *string

	// The configuration settings that are used to override defaults configuration.
	ConfigurationOverrides *ParametricConfigurationOverrides

	// The tags assigned to jobs started using the job template.
	JobTags map[string]string

	// The configuration of parameters existing in the job template.
	ParameterConfiguration map[string]TemplateParameterConfiguration
	// contains filtered or unexported fields
}

The values of StartJobRun API requests used in job runs started using the job template.

type LakeFormationConfiguration added in v1.28.0

type LakeFormationConfiguration struct {

	// The session tag to authorize Amazon EMR on EKS for API calls to Lake Formation.
	AuthorizedSessionTagValue *string

	// The query engine IAM role ARN that is tied to the secure Spark job. The
	// QueryEngine role assumes the JobExecutionRole to execute all the Lake Formation
	// calls.
	QueryEngineRoleArn *string

	// The namespace input of the system job.
	SecureNamespaceInfo *SecureNamespaceInfo
	// contains filtered or unexported fields
}

Lake Formation related configuration inputs for the security configuration.

type MonitoringConfiguration

type MonitoringConfiguration struct {

	// Monitoring configurations for CloudWatch.
	CloudWatchMonitoringConfiguration *CloudWatchMonitoringConfiguration

	// Enable or disable container log rotation.
	ContainerLogRotationConfiguration *ContainerLogRotationConfiguration

	// Monitoring configurations for the persistent application UI.
	PersistentAppUI PersistentAppUI

	// Amazon S3 configuration for monitoring log publishing.
	S3MonitoringConfiguration *S3MonitoringConfiguration
	// contains filtered or unexported fields
}

Configuration setting for monitoring.

type ParametricCloudWatchMonitoringConfiguration added in v1.15.0

type ParametricCloudWatchMonitoringConfiguration struct {

	// The name of the log group for log publishing.
	LogGroupName *string

	// The specified name prefix for log streams.
	LogStreamNamePrefix *string
	// contains filtered or unexported fields
}

A configuration for CloudWatch monitoring. You can configure your jobs to send log information to CloudWatch Logs. This data type allows job template parameters to be specified within.

type ParametricConfigurationOverrides added in v1.15.0

type ParametricConfigurationOverrides struct {

	// The configurations for the application running by the job run.
	ApplicationConfiguration []Configuration

	// The configurations for monitoring.
	MonitoringConfiguration *ParametricMonitoringConfiguration
	// contains filtered or unexported fields
}

A configuration specification to be used to override existing configurations. This data type allows job template parameters to be specified within.

type ParametricMonitoringConfiguration added in v1.15.0

type ParametricMonitoringConfiguration struct {

	// Monitoring configurations for CloudWatch.
	CloudWatchMonitoringConfiguration *ParametricCloudWatchMonitoringConfiguration

	// Monitoring configurations for the persistent application UI.
	PersistentAppUI *string

	// Amazon S3 configuration for monitoring log publishing.
	S3MonitoringConfiguration *ParametricS3MonitoringConfiguration
	// contains filtered or unexported fields
}

Configuration setting for monitoring. This data type allows job template parameters to be specified within.

type ParametricS3MonitoringConfiguration added in v1.15.0

type ParametricS3MonitoringConfiguration struct {

	// Amazon S3 destination URI for log publishing.
	LogUri *string
	// contains filtered or unexported fields
}

Amazon S3 configuration for monitoring log publishing. You can configure your jobs to send log information to Amazon S3. This data type allows job template parameters to be specified within.

type PersistentAppUI

type PersistentAppUI string
const (
	PersistentAppUIEnabled  PersistentAppUI = "ENABLED"
	PersistentAppUIDisabled PersistentAppUI = "DISABLED"
)

Enum values for PersistentAppUI

func (PersistentAppUI) Values

func (PersistentAppUI) Values() []PersistentAppUI

Values returns all known values for PersistentAppUI. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type RequestThrottledException added in v1.18.0

type RequestThrottledException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The request throttled.

func (*RequestThrottledException) Error added in v1.18.0

func (e *RequestThrottledException) Error() string

func (*RequestThrottledException) ErrorCode added in v1.18.0

func (e *RequestThrottledException) ErrorCode() string

func (*RequestThrottledException) ErrorFault added in v1.18.0

func (*RequestThrottledException) ErrorMessage added in v1.18.0

func (e *RequestThrottledException) ErrorMessage() string

type ResourceNotFoundException

type ResourceNotFoundException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The specified resource was not found.

func (*ResourceNotFoundException) Error

func (e *ResourceNotFoundException) Error() string

func (*ResourceNotFoundException) ErrorCode

func (e *ResourceNotFoundException) ErrorCode() string

func (*ResourceNotFoundException) ErrorFault

func (*ResourceNotFoundException) ErrorMessage

func (e *ResourceNotFoundException) ErrorMessage() string

type RetryPolicyConfiguration added in v1.17.0

type RetryPolicyConfiguration struct {

	// The maximum number of attempts on the job's driver.
	//
	// This member is required.
	MaxAttempts *int32
	// contains filtered or unexported fields
}

The configuration of the retry policy that the job runs on.

type RetryPolicyExecution added in v1.17.0

type RetryPolicyExecution struct {

	// The current number of attempts made on the driver of the job.
	//
	// This member is required.
	CurrentAttemptCount *int32
	// contains filtered or unexported fields
}

The current status of the retry policy executed on the job.

type S3MonitoringConfiguration

type S3MonitoringConfiguration struct {

	// Amazon S3 destination URI for log publishing.
	//
	// This member is required.
	LogUri *string
	// contains filtered or unexported fields
}

Amazon S3 configuration for monitoring log publishing. You can configure your jobs to send log information to Amazon S3.

type SecureNamespaceInfo added in v1.28.0

type SecureNamespaceInfo struct {

	// The ID of the Amazon EKS cluster where Amazon EMR on EKS jobs run.
	ClusterId *string

	// The namespace of the Amazon EKS cluster where the system jobs run.
	Namespace *string
	// contains filtered or unexported fields
}

Namespace inputs for the system job.

type SecurityConfiguration added in v1.28.0

type SecurityConfiguration struct {

	// The ARN (Amazon Resource Name) of the security configuration.
	Arn *string

	// The date and time that the job run was created.
	CreatedAt *time.Time

	// The user who created the job run.
	CreatedBy *string

	// The ID of the security configuration.
	Id *string

	// The name of the security configuration.
	Name *string

	// Security configuration inputs for the request.
	SecurityConfigurationData *SecurityConfigurationData

	// The tags to assign to the security configuration.
	Tags map[string]string
	// contains filtered or unexported fields
}

Inputs related to the security configuration. Security configurations in Amazon EMR on EKS are templates for different security setups. You can use security configurations to configure the Lake Formation integration setup. You can also create a security configuration to re-use a security setup each time you create a virtual cluster.

type SecurityConfigurationData added in v1.28.0

type SecurityConfigurationData struct {

	// Authorization-related configuration input for the security configuration.
	AuthorizationConfiguration *AuthorizationConfiguration
	// contains filtered or unexported fields
}

Configurations related to the security configuration for the request.

type SparkSqlJobDriver added in v1.14.0

type SparkSqlJobDriver struct {

	// The SQL file to be executed.
	EntryPoint *string

	// The Spark parameters to be included in the Spark SQL command.
	SparkSqlParameters *string
	// contains filtered or unexported fields
}

The job driver for job type.

type SparkSubmitJobDriver

type SparkSubmitJobDriver struct {

	// The entry point of job application.
	//
	// This member is required.
	EntryPoint *string

	// The arguments for job application.
	EntryPointArguments []string

	// The Spark submit parameters that are used for job runs.
	SparkSubmitParameters *string
	// contains filtered or unexported fields
}

The information about job driver for Spark submit.

type TLSCertificateConfiguration added in v1.28.0

type TLSCertificateConfiguration struct {

	// The TLS certificate type. Acceptable values: PEM or Custom .
	CertificateProviderType CertificateProviderType

	// Secrets Manager ARN that contains the private TLS certificate contents, used
	// for communication between the user job and the system job.
	PrivateCertificateSecretArn *string

	// Secrets Manager ARN that contains the public TLS certificate contents, used for
	// communication between the user job and the system job.
	PublicCertificateSecretArn *string
	// contains filtered or unexported fields
}

Configurations related to the TLS certificate for the security configuration.

type TemplateParameterConfiguration added in v1.15.0

type TemplateParameterConfiguration struct {

	// The default value for the job template parameter.
	DefaultValue *string

	// The type of the job template parameter. Allowed values are: ‘STRING’, ‘NUMBER’.
	Type TemplateParameterDataType
	// contains filtered or unexported fields
}

The configuration of a job template parameter.

type TemplateParameterDataType added in v1.15.0

type TemplateParameterDataType string
const (
	TemplateParameterDataTypeNumber TemplateParameterDataType = "NUMBER"
	TemplateParameterDataTypeString TemplateParameterDataType = "STRING"
)

Enum values for TemplateParameterDataType

func (TemplateParameterDataType) Values added in v1.15.0

Values returns all known values for TemplateParameterDataType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type UnknownUnionMember

type UnknownUnionMember struct {
	Tag   string
	Value []byte
	// contains filtered or unexported fields
}

UnknownUnionMember is returned when a union member is returned over the wire, but has an unknown tag.

type ValidationException

type ValidationException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

There are invalid parameters in the client request.

func (*ValidationException) Error

func (e *ValidationException) Error() string

func (*ValidationException) ErrorCode

func (e *ValidationException) ErrorCode() string

func (*ValidationException) ErrorFault

func (e *ValidationException) ErrorFault() smithy.ErrorFault

func (*ValidationException) ErrorMessage

func (e *ValidationException) ErrorMessage() string

type VirtualCluster

type VirtualCluster struct {

	// The ARN of the virtual cluster.
	Arn *string

	// The container provider of the virtual cluster.
	ContainerProvider *ContainerProvider

	// The date and time when the virtual cluster is created.
	CreatedAt *time.Time

	// The ID of the virtual cluster.
	Id *string

	// The name of the virtual cluster.
	Name *string

	// The ID of the security configuration.
	SecurityConfigurationId *string

	// The state of the virtual cluster.
	State VirtualClusterState

	// The assigned tags of the virtual cluster.
	Tags map[string]string
	// contains filtered or unexported fields
}

This entity describes a virtual cluster. A virtual cluster is a Kubernetes namespace that Amazon EMR is registered with. Amazon EMR uses virtual clusters to run jobs and host endpoints. Multiple virtual clusters can be backed by the same physical cluster. However, each virtual cluster maps to one namespace on an Amazon EKS cluster. Virtual clusters do not create any active resources that contribute to your bill or that require lifecycle management outside the service.

type VirtualClusterState

type VirtualClusterState string
const (
	VirtualClusterStateRunning     VirtualClusterState = "RUNNING"
	VirtualClusterStateTerminating VirtualClusterState = "TERMINATING"
	VirtualClusterStateTerminated  VirtualClusterState = "TERMINATED"
	VirtualClusterStateArrested    VirtualClusterState = "ARRESTED"
)

Enum values for VirtualClusterState

func (VirtualClusterState) Values

Values returns all known values for VirtualClusterState. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

Jump to

Keyboard shortcuts

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