def put_parameter()

in modular_cli_sdk/client/ssm_client.py [0:0]


    def put_parameter(self, name: str, value: SecretValue,
                      _type='SecureString') -> bool:
        self.client.secrets.kv.v2.create_or_update_secret(
            path=name,
            secret={self.key: value},
            mount_point=self.mount_point
        )
        return True