RevokeClusterSecurityGroupIngressMessage
public struct RevokeClusterSecurityGroupIngressMessage : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The IP range for which to revoke access. This range must be a valid Classless Inter-Domain Routing (CIDR) block of IP addresses. If CIDRIP is specified, EC2SecurityGroupName and EC2SecurityGroupOwnerId cannot be provided.
Declaration
Swift
public let cidrip: String?
-
The name of the security Group from which to revoke the ingress rule.
Declaration
Swift
public let clusterSecurityGroupName: String
-
The name of the EC2 Security Group whose access is to be revoked. If EC2SecurityGroupName is specified, EC2SecurityGroupOwnerId must also be provided and CIDRIP cannot be provided.
Declaration
Swift
public let eC2SecurityGroupName: String?
-
The AWS account number of the owner of the security group specified in the EC2SecurityGroupName parameter. The AWS access key ID is not an acceptable value. If EC2SecurityGroupOwnerId is specified, EC2SecurityGroupName must also be provided. and CIDRIP cannot be provided. Example: 111122223333
Declaration
Swift
public let eC2SecurityGroupOwnerId: String?
-
Undocumented
Declaration
Swift
public init(cidrip: String? = nil, clusterSecurityGroupName: String, eC2SecurityGroupName: String? = nil, eC2SecurityGroupOwnerId: String? = nil)