Python botocore.exceptions.AliasConflictParameterError() Examples
The following are 8
code examples of botocore.exceptions.AliasConflictParameterError().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
botocore.exceptions
, or try the search function
.
Example #1
Source File: handlers.py From faces with GNU General Public License v2.0 | 5 votes |
def alias_parameter_in_call(self, params, model, **kwargs): if model.input_shape: # Only consider accepting the alias if it is modeled in the # input shape. if self._original_name in model.input_shape.members: if self._alias_name in params: if self._original_name in params: raise AliasConflictParameterError( original=self._original_name, alias=self._alias_name, operation=model.name ) # Remove the alias parameter value and use the old name # instead. params[self._original_name] = params.pop(self._alias_name)
Example #2
Source File: handlers.py From faces with GNU General Public License v2.0 | 5 votes |
def alias_parameter_in_call(self, params, model, **kwargs): if model.input_shape: # Only consider accepting the alias if it is modeled in the # input shape. if self._original_name in model.input_shape.members: if self._alias_name in params: if self._original_name in params: raise AliasConflictParameterError( original=self._original_name, alias=self._alias_name, operation=model.name ) # Remove the alias parameter value and use the old name # instead. params[self._original_name] = params.pop(self._alias_name)
Example #3
Source File: handlers.py From deepWordBug with Apache License 2.0 | 5 votes |
def alias_parameter_in_call(self, params, model, **kwargs): if model.input_shape: # Only consider accepting the alias if it is modeled in the # input shape. if self._original_name in model.input_shape.members: if self._alias_name in params: if self._original_name in params: raise AliasConflictParameterError( original=self._original_name, alias=self._alias_name, operation=model.name ) # Remove the alias parameter value and use the old name # instead. params[self._original_name] = params.pop(self._alias_name)
Example #4
Source File: handlers.py From bash-lambda-layer with MIT License | 5 votes |
def alias_parameter_in_call(self, params, model, **kwargs): if model.input_shape: # Only consider accepting the alias if it is modeled in the # input shape. if self._original_name in model.input_shape.members: if self._alias_name in params: if self._original_name in params: raise AliasConflictParameterError( original=self._original_name, alias=self._alias_name, operation=model.name ) # Remove the alias parameter value and use the old name # instead. params[self._original_name] = params.pop(self._alias_name)
Example #5
Source File: handlers.py From AWS-Transit-Gateway-Demo-MultiAccount with MIT License | 5 votes |
def alias_parameter_in_call(self, params, model, **kwargs): if model.input_shape: # Only consider accepting the alias if it is modeled in the # input shape. if self._original_name in model.input_shape.members: if self._alias_name in params: if self._original_name in params: raise AliasConflictParameterError( original=self._original_name, alias=self._alias_name, operation=model.name ) # Remove the alias parameter value and use the old name # instead. params[self._original_name] = params.pop(self._alias_name)
Example #6
Source File: handlers.py From AWS-Transit-Gateway-Demo-MultiAccount with MIT License | 5 votes |
def alias_parameter_in_call(self, params, model, **kwargs): if model.input_shape: # Only consider accepting the alias if it is modeled in the # input shape. if self._original_name in model.input_shape.members: if self._alias_name in params: if self._original_name in params: raise AliasConflictParameterError( original=self._original_name, alias=self._alias_name, operation=model.name ) # Remove the alias parameter value and use the old name # instead. params[self._original_name] = params.pop(self._alias_name)
Example #7
Source File: handlers.py From aws-extender with MIT License | 5 votes |
def alias_parameter_in_call(self, params, model, **kwargs): if model.input_shape: # Only consider accepting the alias if it is modeled in the # input shape. if self._original_name in model.input_shape.members: if self._alias_name in params: if self._original_name in params: raise AliasConflictParameterError( original=self._original_name, alias=self._alias_name, operation=model.name ) # Remove the alias parameter value and use the old name # instead. params[self._original_name] = params.pop(self._alias_name)
Example #8
Source File: handlers.py From aws-builders-fair-projects with Apache License 2.0 | 5 votes |
def alias_parameter_in_call(self, params, model, **kwargs): if model.input_shape: # Only consider accepting the alias if it is modeled in the # input shape. if self._original_name in model.input_shape.members: if self._alias_name in params: if self._original_name in params: raise AliasConflictParameterError( original=self._original_name, alias=self._alias_name, operation=model.name ) # Remove the alias parameter value and use the old name # instead. params[self._original_name] = params.pop(self._alias_name)