CreateEnvironmentEC2Request

public struct CreateEnvironmentEC2Request : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The number of minutes until the running instance is shut down after the environment has last been used.

    Declaration

    Swift

    public let automaticStopTimeMinutes: Int?
  • A unique, case-sensitive string that helps AWS Cloud9 to ensure this operation completes no more than one time. For more information, see Client Tokens in the Amazon EC2 API Reference.

    Declaration

    Swift

    public let clientRequestToken: String?
  • The connection type used for connecting to an Amazon EC2 environment.

    Declaration

    Swift

    public let connectionType: ConnectionType?
  • The description of the environment to create.

    Declaration

    Swift

    public let description: String?
  • The type of instance to connect to the environment (for example, t2.micro).

    Declaration

    Swift

    public let instanceType: String
  • The name of the environment to create. This name is visible to other AWS IAM users in the same AWS account.

    Declaration

    Swift

    public let name: String
  • The Amazon Resource Name (ARN) of the environment owner. This ARN can be the ARN of any AWS IAM principal. If this value is not specified, the ARN defaults to this environment’s creator.

    Declaration

    Swift

    public let ownerArn: String?
  • The ID of the subnet in Amazon VPC that AWS Cloud9 will use to communicate with the Amazon EC2 instance.

    Declaration

    Swift

    public let subnetId: String?
  • An array of key-value pairs that will be associated with the new AWS Cloud9 development environment.

    Declaration

    Swift

    public let tags: [Tag]?
  • Undocumented

    Declaration

    Swift

    public init(automaticStopTimeMinutes: Int? = nil, clientRequestToken: String? = nil, connectionType: ConnectionType? = nil, description: String? = nil, instanceType: String, name: String, ownerArn: String? = nil, subnetId: String? = nil, tags: [Tag]? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws