AWSEC2ModifyManagedPrefixListRequest
Objective-C
@interface AWSEC2ModifyManagedPrefixListRequest
Swift
class AWSEC2ModifyManagedPrefixListRequest
-
One or more entries to add to the prefix list.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSEC2AddPrefixListEntry *> *_Nullable addEntries;
Swift
var addEntries: [AWSEC2AddPrefixListEntry]? { get set }
-
The current version of the prefix list.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable currentVersion;
Swift
var currentVersion: NSNumber? { get set }
-
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 maximum number of entries for the prefix list. You cannot modify the entries of a prefix list and modify the size of a prefix list at the same time.
If any of the resources that reference the prefix list cannot support the new maximum size, the modify operation fails. Check the state message for the IDs of the first ten resources that do not support the new maximum size.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable maxEntries;
Swift
var maxEntries: NSNumber? { get set }
-
The ID of the prefix list.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable prefixListId;
Swift
var prefixListId: String? { get set }
-
A name for the prefix list.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable prefixListName;
Swift
var prefixListName: String? { get set }
-
One or more entries to remove from the prefix list.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSEC2RemovePrefixListEntry *> *_Nullable removeEntries;
Swift
var removeEntries: [AWSEC2RemovePrefixListEntry]? { get set }