ExecutionEngineConfig

public struct ExecutionEngineConfig : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • id

    The unique identifier of the execution engine. For an EMR cluster, this is the cluster ID.

    Declaration

    Swift

    public let id: String
  • An optional unique ID of an EC2 security group to associate with the master instance of the EMR cluster for this notebook execution. For more information see Specifying EC2 Security Groups for EMR Notebooks in the EMR Management Guide.

    Declaration

    Swift

    public let masterInstanceSecurityGroupId: String?
  • The type of execution engine. A value of EMR specifies an EMR cluster.

    Declaration

    Swift

    public let type: ExecutionEngineType?
  • Undocumented

    Declaration

    Swift

    public init(id: String, masterInstanceSecurityGroupId: String? = nil, type: ExecutionEngineType? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws