2018/07/26 - Amazon Simple Systems Manager (SSM) - 1 new4 updated api methods
Changes Update ssm client to latest version
See also: AWS API Documentation
Request Syntax
client.label_parameter_version( Name='string', ParameterVersion=123, Labels=[ 'string', ] )
string
[REQUIRED]
integer
list
[REQUIRED]
(string) --
dict
Response Syntax
{ 'InvalidLabels': [ 'string', ] }
Response Structure
(dict) --
InvalidLabels (list) --
(string) --
{'Parameter': {'ARN': 'string', 'LastModifiedDate': 'timestamp', 'Selector': 'string', 'SourceResult': 'string'}}
Get information about a parameter by using the parameter name. Don't confuse this API action with the GetParameters API action.
See also: AWS API Documentation
Request Syntax
client.get_parameter( Name='string', WithDecryption=True|False )
string
[REQUIRED]
The name of the parameter you want to query.
boolean
Return decrypted values for secure string parameters. This flag is ignored for String and StringList parameter types.
dict
Response Syntax
{ 'Parameter': { 'Name': 'string', 'Type': 'String'|'StringList'|'SecureString', 'Value': 'string', 'Version': 123, 'Selector': 'string', 'SourceResult': 'string', 'LastModifiedDate': datetime(2015, 1, 1), 'ARN': 'string' } }
Response Structure
(dict) --
Parameter (dict) --
Information about a parameter.
Name (string) --
The name of the parameter.
Type (string) --
The type of parameter. Valid values include the following: String, String list, Secure string.
Value (string) --
The parameter value.
Version (integer) --
The parameter version.
Selector (string) --
Either the version number or the label used to retrieve the parameter value. Specify selectors by using one of the following formats:
parameter_name:version
parameter_name:label
SourceResult (string) --
Applies to parameters that reference information in other AWS services. SourceResult is the raw result or response from the source.
LastModifiedDate (datetime) --
Date the parameter was last changed or updated and the parameter version was created.
ARN (string) --
The Amazon Resource Name (ARN) of the parameter.
{'Parameters': {'Labels': ['string']}}
Query a list of all parameters used by the AWS account.
See also: AWS API Documentation
Request Syntax
client.get_parameter_history( Name='string', WithDecryption=True|False, MaxResults=123, NextToken='string' )
string
[REQUIRED]
The name of a parameter you want to query.
boolean
Return decrypted values for secure string parameters. This flag is ignored for String and StringList parameter types.
integer
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
string
The token for the next set of items to return. (You received this token from a previous call.)
dict
Response Syntax
{ 'Parameters': [ { 'Name': 'string', 'Type': 'String'|'StringList'|'SecureString', 'KeyId': 'string', 'LastModifiedDate': datetime(2015, 1, 1), 'LastModifiedUser': 'string', 'Description': 'string', 'Value': 'string', 'AllowedPattern': 'string', 'Version': 123, 'Labels': [ 'string', ] }, ], 'NextToken': 'string' }
Response Structure
(dict) --
Parameters (list) --
A list of parameters returned by the request.
(dict) --
Information about parameter usage.
Name (string) --
The name of the parameter.
Type (string) --
The type of parameter used.
KeyId (string) --
The ID of the query key used for this parameter.
LastModifiedDate (datetime) --
Date the parameter was last changed or updated.
LastModifiedUser (string) --
Amazon Resource Name (ARN) of the AWS user who last changed the parameter.
Description (string) --
Information about the parameter.
Value (string) --
The parameter value.
AllowedPattern (string) --
Parameter names can include the following letters and symbols.
a-zA-Z0-9_.-
Version (integer) --
The parameter version.
Labels (list) --
Labels assigned to the parameter version.
(string) --
NextToken (string) --
The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.
{'Parameters': {'ARN': 'string', 'LastModifiedDate': 'timestamp', 'Selector': 'string', 'SourceResult': 'string'}}
Get details of a parameter. Don't confuse this API action with the GetParameter API action.
See also: AWS API Documentation
Request Syntax
client.get_parameters( Names=[ 'string', ], WithDecryption=True|False )
list
[REQUIRED]
Names of the parameters for which you want to query information.
(string) --
boolean
Return decrypted secure string value. Return decrypted values for secure string parameters. This flag is ignored for String and StringList parameter types.
dict
Response Syntax
{ 'Parameters': [ { 'Name': 'string', 'Type': 'String'|'StringList'|'SecureString', 'Value': 'string', 'Version': 123, 'Selector': 'string', 'SourceResult': 'string', 'LastModifiedDate': datetime(2015, 1, 1), 'ARN': 'string' }, ], 'InvalidParameters': [ 'string', ] }
Response Structure
(dict) --
Parameters (list) --
A list of details for a parameter.
(dict) --
An Amazon EC2 Systems Manager parameter in Parameter Store.
Name (string) --
The name of the parameter.
Type (string) --
The type of parameter. Valid values include the following: String, String list, Secure string.
Value (string) --
The parameter value.
Version (integer) --
The parameter version.
Selector (string) --
Either the version number or the label used to retrieve the parameter value. Specify selectors by using one of the following formats:
parameter_name:version
parameter_name:label
SourceResult (string) --
Applies to parameters that reference information in other AWS services. SourceResult is the raw result or response from the source.
LastModifiedDate (datetime) --
Date the parameter was last changed or updated and the parameter version was created.
ARN (string) --
The Amazon Resource Name (ARN) of the parameter.
InvalidParameters (list) --
A list of parameters that are not formatted correctly or do not run when executed.
(string) --
{'Parameters': {'ARN': 'string', 'LastModifiedDate': 'timestamp', 'Selector': 'string', 'SourceResult': 'string'}}
Retrieve parameters in a specific hierarchy. For more information, see Working with Systems Manager Parameters in the AWS Systems Manager User Guide.
Request results are returned on a best-effort basis. If you specify MaxResults in the request, the response includes information up to the limit specified. The number of items returned, however, can be between zero and the value of MaxResults. If the service reaches an internal limit while processing the results, it stops the operation and returns the matching values up to that point and a NextToken. You can specify the NextToken in a subsequent call to get the next set of results.
See also: AWS API Documentation
Request Syntax
client.get_parameters_by_path( Path='string', Recursive=True|False, ParameterFilters=[ { 'Key': 'string', 'Option': 'string', 'Values': [ 'string', ] }, ], WithDecryption=True|False, MaxResults=123, NextToken='string' )
string
[REQUIRED]
The hierarchy for the parameter. Hierarchies start with a forward slash (/) and end with the parameter name. A parameter name hierarchy can have a maximum of 15 levels. Here is an example of a hierarchy: /Finance/Prod/IAD/WinServ2016/license33
boolean
Retrieve all parameters within a hierarchy.
list
Filters to limit the request results.
(dict) --
One or more filters. Use a filter to return a more specific list of results.
Key (string) -- [REQUIRED]
The name of the filter.
Option (string) --
Valid options are Equals and BeginsWith. For Path filter, valid options are Recursive and OneLevel.
Values (list) --
The value you want to search for.
(string) --
boolean
Retrieve all parameters in a hierarchy with their value decrypted.
integer
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
string
A token to start the list. Use this token to get the next set of results.
dict
Response Syntax
{ 'Parameters': [ { 'Name': 'string', 'Type': 'String'|'StringList'|'SecureString', 'Value': 'string', 'Version': 123, 'Selector': 'string', 'SourceResult': 'string', 'LastModifiedDate': datetime(2015, 1, 1), 'ARN': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) --
Parameters (list) --
A list of parameters found in the specified hierarchy.
(dict) --
An Amazon EC2 Systems Manager parameter in Parameter Store.
Name (string) --
The name of the parameter.
Type (string) --
The type of parameter. Valid values include the following: String, String list, Secure string.
Value (string) --
The parameter value.
Version (integer) --
The parameter version.
Selector (string) --
Either the version number or the label used to retrieve the parameter value. Specify selectors by using one of the following formats:
parameter_name:version
parameter_name:label
SourceResult (string) --
Applies to parameters that reference information in other AWS services. SourceResult is the raw result or response from the source.
LastModifiedDate (datetime) --
Date the parameter was last changed or updated and the parameter version was created.
ARN (string) --
The Amazon Resource Name (ARN) of the parameter.
NextToken (string) --
The token for the next set of items to return. Use this token to get the next set of results.