UpdateVirtualNodeInput

public struct UpdateVirtualNodeInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.

    Declaration

    Swift

    public let clientToken: String?
  • The name of the service mesh that the virtual node resides in.

    Declaration

    Swift

    public let meshName: String
  • The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it’s the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

    Declaration

    Swift

    public let meshOwner: String?
  • The new virtual node specification to apply. This overwrites the existing data.

    Declaration

    Swift

    public let spec: VirtualNodeSpec
  • The name of the virtual node to update.

    Declaration

    Swift

    public let virtualNodeName: String
  • Undocumented

    Declaration

    Swift

    public init(clientToken: String? = UpdateVirtualNodeInput.idempotencyToken(), meshName: String, meshOwner: String? = nil, spec: VirtualNodeSpec, virtualNodeName: String)
  • Declaration

    Swift

    public func validate(name: String) throws