CreateUserProfileRequest

public struct CreateUserProfileRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name that will be displayed as the friendly name for the user in AWS CodeStar.

    Declaration

    Swift

    public let displayName: String
  • The email address that will be displayed as part of the user’s profile in AWS CodeStar.

    Declaration

    Swift

    public let emailAddress: String
  • The SSH public key associated with the user in AWS CodeStar. If a project owner allows the user remote access to project resources, this public key will be used along with the user’s private key for SSH access.

    Declaration

    Swift

    public let sshPublicKey: String?
  • The Amazon Resource Name (ARN) of the user in IAM.

    Declaration

    Swift

    public let userArn: String
  • Undocumented

    Declaration

    Swift

    public init(displayName: String, emailAddress: String, sshPublicKey: String? = nil, userArn: String)
  • Declaration

    Swift

    public func validate(name: String) throws