AWSEC2UpdateSecurityGroupRuleDescriptionsEgressRequest
Objective-C
@interface AWSEC2UpdateSecurityGroupRuleDescriptionsEgressRequest
Swift
class AWSEC2UpdateSecurityGroupRuleDescriptionsEgressRequest
-
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is
DryRunOperation
. Otherwise, it isUnauthorizedOperation
.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable dryRun;
Swift
var dryRun: NSNumber? { get set }
-
The ID of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable groupId;
Swift
var groupId: String? { get set }
-
[Default VPC] The name of the security group. You must specify either the security group ID or the security group name.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable groupName;
Swift
var groupName: String? { get set }
-
The IP permissions for the security group rule. You must specify either the IP permissions or the description.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSEC2IpPermission *> *_Nullable ipPermissions;
Swift
var ipPermissions: [AWSEC2IpPermission]? { get set }
-
The description for the egress security group rules. You must specify either the description or the IP permissions.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSEC2SecurityGroupRuleDescription *> *_Nullable securityGroupRuleDescriptions;
Swift
var securityGroupRuleDescriptions: [AWSEC2SecurityGroupRuleDescription]? { get set }