ModifyClusterIamRolesMessage

public struct ModifyClusterIamRolesMessage : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Zero or more IAM roles to associate with the cluster. The roles must be in their Amazon Resource Name (ARN) format. You can associate up to 10 IAM roles with a single cluster in a single request.

    Declaration

    Swift

    public let addIamRoles: [String]?
  • The unique identifier of the cluster for which you want to associate or disassociate IAM roles.

    Declaration

    Swift

    public let clusterIdentifier: String
  • Zero or more IAM roles in ARN format to disassociate from the cluster. You can disassociate up to 10 IAM roles from a single cluster in a single request.

    Declaration

    Swift

    public let removeIamRoles: [String]?
  • Undocumented

    Declaration

    Swift

    public init(addIamRoles: [String]? = nil, clusterIdentifier: String, removeIamRoles: [String]? = nil)