2021/08/26 - Amazon Elastic Compute Cloud - 1 updated api methods
Changes Support added for resizing VPC prefix lists
{'MaxEntries': 'integer'}
Modifies the specified managed prefix list.
Adding or removing entries in a prefix list creates a new version of the prefix list. Changing the name of the prefix list does not affect the version.
If you specify a current version number that does not match the true current version number, the request fails.
See also: AWS API Documentation
Request Syntax
client.modify_managed_prefix_list( DryRun=True|False, PrefixListId='string', CurrentVersion=123, PrefixListName='string', AddEntries=[ { 'Cidr': 'string', 'Description': 'string' }, ], RemoveEntries=[ { 'Cidr': 'string' }, ], MaxEntries=123 )
boolean
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 is UnauthorizedOperation .
string
[REQUIRED]
The ID of the prefix list.
integer
The current version of the prefix list.
string
A name for the prefix list.
list
One or more entries to add to the prefix list.
(dict) --
An entry for a prefix list.
Cidr (string) -- [REQUIRED]
The CIDR block.
Description (string) --
A description for the entry.
Constraints: Up to 255 characters in length.
list
One or more entries to remove from the prefix list.
(dict) --
An entry for a prefix list.
Cidr (string) -- [REQUIRED]
The CIDR block.
integer
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.
dict
Response Syntax
{ 'PrefixList': { 'PrefixListId': 'string', 'AddressFamily': 'string', 'State': 'create-in-progress'|'create-complete'|'create-failed'|'modify-in-progress'|'modify-complete'|'modify-failed'|'restore-in-progress'|'restore-complete'|'restore-failed'|'delete-in-progress'|'delete-complete'|'delete-failed', 'StateMessage': 'string', 'PrefixListArn': 'string', 'PrefixListName': 'string', 'MaxEntries': 123, 'Version': 123, 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'OwnerId': 'string' } }
Response Structure
(dict) --
PrefixList (dict) --
Information about the prefix list.
PrefixListId (string) --
The ID of the prefix list.
AddressFamily (string) --
The IP address version.
State (string) --
The state of the prefix list.
StateMessage (string) --
The state message.
PrefixListArn (string) --
The Amazon Resource Name (ARN) for the prefix list.
PrefixListName (string) --
The name of the prefix list.
MaxEntries (integer) --
The maximum number of entries for the prefix list.
Version (integer) --
The version of the prefix list.
Tags (list) --
The tags for the prefix list.
(dict) --
Describes a tag.
Key (string) --
The key of the tag.
Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with aws: .
Value (string) --
The value of the tag.
Constraints: Tag values are case-sensitive and accept a maximum of 255 Unicode characters.
OwnerId (string) --
The ID of the owner of the prefix list.